1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
BROCADE-VCS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Gauge32,
Counter32, Unsigned32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
TruthValue, TEXTUAL-CONVENTION,
DisplayString FROM SNMPv2-TC
InetAddress, InetAddressType FROM INET-ADDRESS-MIB
FcWwn FROM Brocade-TC
bcsiModules FROM Brocade-REG-MIB;
brocadeVcsMIB MODULE-IDENTITY
LAST-UPDATED "201504080000Z"
ORGANIZATION
"Brocade Communications Systems Inc."
CONTACT-INFO
"130 Holger Way,
San Jose, CA
95134 USA.
Phone: +1-408-333-8000
Email: vivekk@brocade.com"
DESCRIPTION
"The MIB module for the monitoring of VCS fabrics. VCS
fabrics is a proprietary technology of Brocade.
A VCS fabric consists of a set of inter-connected
Brocade VDX switches. These set of switches together
behave like a single L2 switch to the outside world.
The cluster can operate in 2 modes: fabric mode and
Logical chassis mode.
In fabric mode, the switches together behave like a
single L2 switch - but configuration on each switch
is independent of the other.
In logical chassis mode, one switch in the fabric is
elected as the principal switch. All configurations
need to be done only from the principal switch.
This is synced across to all the switches in the fabric.
Thus the configuration information is the same on all
the switches."
REVISION "201504080000Z"
DESCRIPTION
"Initial version."
::= { bcsiModules 6 }
brocadeVcsMIBObjects OBJECT IDENTIFIER ::= { brocadeVcsMIB 1 }
brocadeVcsMIBConformance OBJECT IDENTIFIER ::= { brocadeVcsMIB 2 }
VcsConfigMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The configuration mode that is in effect in the VCS
fabric.
local(1) - configuration is local to the switch.
distributed(2) - configuration is to be done from the
principal switch and will be the same
across all the switches in the fabric."
SYNTAX INTEGER {
local(1),
distributed(2)
}
VcsOperationMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The operational mode of the fabric.
fabricCluster(1) - the entire set of switches in the
cluster behaves like a single L2
switch to the outer world. However,
configuration is local to each switch.
logicalChassis(2) - in this case the fabric behaves
like a single L2 switch and the
configuration is driven from the
principal switch and is the same
across all switches in the fabric."
SYNTAX INTEGER {
fabricCluster(1),
logicalChassis(2)
}
VcsIdentifier ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A number that uniquely identifies a fabric. Two different
fabrics would have different identifiers."
SYNTAX Unsigned32 (1 .. 8192)
VcsRbridgeId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A number that uniquely identifies a switch within a fabric."
SYNTAX Unsigned32 (1 .. 239)
VcsClusterCondition ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The state of the fabric as a whole.
good(1) - indicates that all switches are in good
condition and cluster is fine.
degraded(2) - indicates that one or more switches are
offline and cluster has degraded.
error(3) - Internal error state."
SYNTAX INTEGER {
good(1),
degraded(2),
error(3)
}
vcsConfigMode OBJECT-TYPE
SYNTAX VcsConfigMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configuration mode of this cluster that is in effect."
::= { brocadeVcsMIBObjects 1 }
vcsModeOfOperation OBJECT-TYPE
SYNTAX VcsOperationMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational mode of this cluster."
::= { brocadeVcsMIBObjects 2 }
vcsIdentifier OBJECT-TYPE
SYNTAX VcsIdentifier
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique identifier of this cluster."
::= { brocadeVcsMIBObjects 3 }
vcsVirtualIpV4Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual IPv4 address of the cluster. Management
stations can use this address to send requests."
::= { brocadeVcsMIBObjects 4 }
vcsVirtualIpV6Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual IPv6 address of the cluster. Management
stations can use this address to send requests."
::= { brocadeVcsMIBObjects 5 }
vcsVirtualIpAssociatedRbridgeId OBJECT-TYPE
SYNTAX VcsRbridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The rbridge-id of the switch that hosts the virtual IP
address."
::= { brocadeVcsMIBObjects 6 }
vcsVirtualIpInterfaceId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface Id that is configured in the case of
inband configuration. If it is not inband configuration,
then this object will contain the value 0."
::= { brocadeVcsMIBObjects 7 }
vcsVirtualIpV4OperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the virtual IPv4 address."
::= { brocadeVcsMIBObjects 8 }
vcsVirtualIpV6OperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the virtual IPv6 address."
::= { brocadeVcsMIBObjects 9 }
vcsNumNodesInCluster OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of switches in the cluster that are currently
online."
::= { brocadeVcsMIBObjects 10 }
vcsClusterCondition OBJECT-TYPE
SYNTAX VcsClusterCondition
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The condition of the cluster as a whole."
::= { brocadeVcsMIBObjects 11 }
vcsFabricIslTable OBJECT-TYPE
SYNTAX SEQUENCE OF VcsFabricIslEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all the ISLs (Inter Switch Link) on
the local device."
::= { brocadeVcsMIBObjects 12 }
vcsFabricIslEntry OBJECT-TYPE
SYNTAX VcsFabricIslEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single Inter Switch Link (ISL) on this
switch."
INDEX { vcsFabricIslIndex }
::= { vcsFabricIslTable 1 }
VcsFabricIslEntry ::= SEQUENCE {
vcsFabricIslIndex Unsigned32,
vcsFabricIslIntfName DisplayString,
vcsFabricIslNbrIntfName DisplayString,
vcsFabricIslNbrWWN FcWwn,
vcsFabricIslNbrName DisplayString,
vcsFabricIslBW Unsigned32,
vcsFabricIslIsTrunk TruthValue
}
vcsFabricIslIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique id to distinguish this ISL from others on the
local device."
::= { vcsFabricIslEntry 1 }
vcsFabricIslIntfName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface name (ifName) of the interface on which
the ISL is formed on this switch."
::= { vcsFabricIslEntry 2 }
vcsFabricIslNbrIntfName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface name (ifName) of the interface on the
neighboring switch for this ISL."
::= { vcsFabricIslEntry 3 }
vcsFabricIslNbrWWN OBJECT-TYPE
SYNTAX FcWwn
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The World Wide Name (WWN) of the neighboring switch
for this ISL."
::= { vcsFabricIslEntry 4 }
vcsFabricIslNbrName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the neighboring switch on which this ISL
is formed."
::= { vcsFabricIslEntry 5 }
vcsFabricIslBW OBJECT-TYPE
SYNTAX Unsigned32
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The band-width of this ISL."
::= { vcsFabricIslEntry 6 }
vcsFabricIslIsTrunk OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication whether this ISL is a trunk interface.
A value of true(1) means it is a trunk.
A value of false(2) means it is not a trunk."
::= { vcsFabricIslEntry 7 }
-- Conformance information
brocadeVcsConformanceGroups
OBJECT IDENTIFIER ::= { brocadeVcsMIBConformance 1 }
brocadeVcsCompliances
OBJECT IDENTIFIER ::= { brocadeVcsMIBConformance 2 }
-- Compliance statements
brocadeVcsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance information for this MIB."
MODULE -- this module
MANDATORY-GROUPS { brocadeVcsObjectsGroup }
::= { brocadeVcsCompliances 1 }
-- units of conformance
brocadeVcsObjectsGroup OBJECT-GROUP
OBJECTS { vcsConfigMode,
vcsModeOfOperation,
vcsIdentifier,
vcsVirtualIpV4Address,
vcsVirtualIpV6Address,
vcsVirtualIpAssociatedRbridgeId,
vcsVirtualIpInterfaceId,
vcsVirtualIpV4OperStatus,
vcsVirtualIpV6OperStatus,
vcsNumNodesInCluster,
vcsClusterCondition,
vcsFabricIslIndex,
vcsFabricIslIntfName,
vcsFabricIslNbrIntfName,
vcsFabricIslNbrWWN,
vcsFabricIslNbrName,
vcsFabricIslBW,
vcsFabricIslIsTrunk
}
STATUS current
DESCRIPTION
"The MIB objects related to VCS monitoring."
::= { brocadeVcsConformanceGroups 1 }
END
|