-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpSwitchStack.mib
568 lines (496 loc) · 22.4 KB
/
hpSwitchStack.mib
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
HP-SwitchStack-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, Integer32, IpAddress
FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
RowStatus, MacAddress
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID;
hpSwitchVirtualStackMib MODULE-IDENTITY
LAST-UPDATED "201010291946Z" -- October 29, 2010
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module describes objects for managing
the Stacking features of devices in the HP
Integrated Communication Facility product line."
REVISION "201010291946Z" -- October 29, 2010
DESCRIPTION "Added hpSwitchStackMemberPasswordLong to
hpSwitchStackConfigMemberEntry."
REVISION "200011032344Z" -- November 3, 2000
DESCRIPTION "Initial version of this MIB module."
::= { hpSwitch 10 }
-- Configuration support for Stacking
hpSwitchStackConfig OBJECT IDENTIFIER ::= { hpSwitchVirtualStackMib 1 }
hpSwitchStackAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
candidate(1),
disabled(2),
member(3),
command(4),
pending(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the stacking feature."
::= { hpSwitchStackConfig 1 }
hpSwitchStackCommandAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This variable is only valid if
'hpSwitchStackAdminStatus' has been set 'member'.
This is the MAC address of the command switch for
this member."
::= { hpSwitchStackConfig 2 }
hpSwitchStackName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This variable is only valid if
'hpSwitchStackAdminStatus' has been set
'command-switch'. This is the name of the stack for
which this switch is serving as the command switch
(maximum length of 20 characters)."
::= { hpSwitchStackConfig 3 }
hpSwitchStackPropagate OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable/disable SNMP community propagation. This
variable is only valid if 'hpSwitchStackAdminStatus'
has been set to 'command-switch'."
::= { hpSwitchStackConfig 4 }
hpSwitchStackAutoJoin OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable/disable auto join on stack. This variable
is only valid for candidate switch."
::= { hpSwitchStackConfig 5 }
hpSwitchStackAutoGrab OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable/disable auto grab on stack. This variable
is only valid if 'hpSwitchStackAdminStatus' has been
set to 'command-switch'."
::= { hpSwitchStackConfig 6 }
hpSwitchStackConfigMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchStackConfigMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains a group of member switches
configured to be in this switch's stack."
::= { hpSwitchVirtualStackMib 2 }
hpSwitchStackConfigMemberEntry OBJECT-TYPE
SYNTAX HpSwitchStackConfigMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A group of member switches configured to be in this
switch's stack."
INDEX { hpSwitchStackMemberSwitchNum }
::= { hpSwitchStackConfigMemberTable 1 }
HpSwitchStackConfigMemberEntry ::=
SEQUENCE {
hpSwitchStackMemberSwitchNum Integer32,
hpSwitchStackMemberMacAddr MacAddress,
hpSwitchStackMemberPassword OCTET STRING,
hpSwitchStackMemberEntryStatus RowStatus,
hpSwitchStackMemberPasswordLong OCTET STRING
}
hpSwitchStackMemberSwitchNum OBJECT-TYPE
SYNTAX Integer32 (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An index that uniquely identifies the member switch
associated with this row entry."
::= { hpSwitchStackConfigMemberEntry 1 }
hpSwitchStackMemberMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The MAC Address that identifies the member switch."
::= { hpSwitchStackConfigMemberEntry 2 }
hpSwitchStackMemberPassword OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..17))
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION "The manager password configured on the member switch.
This object represents the first 17 octets of the
object hpSwitchStackMemberPasswordLong; reading or
writing a value to this object will also read or write
hpSwitchStackMemberPasswordLong, truncating the length
to 17 octets.
This object always returns a 0 length octet string
when read."
::= { hpSwitchStackConfigMemberEntry 3 }
hpSwitchStackMemberEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of a stack member entry."
::= { hpSwitchStackConfigMemberEntry 4 }
hpSwitchStackMemberPasswordLong OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1025))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The manager password configured on the member switch.
This object always returns a 0 length octet string
when read. The exact size of this object is implementation
dependent; consult the product documentation to determine
the supported size for a specific product."
::= { hpSwitchStackConfigMemberEntry 5 }
-- Status support for Stacking
hpStackStats OBJECT IDENTIFIER ::= { hpSwitchVirtualStackMib 3 }
hpStackStatsName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The stack name of this switch."
::= { hpStackStats 1 }
hpStackStatsMembersNum OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of member switches that have joined this
switch's stack. This variable is only valid if this
switch has been set as a 'command-switch'."
::= { hpStackStats 2 }
hpStackStatsMembersUnreachable OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of unreachable member switches. This
variable is only valid if this switch has been set as
a 'command-switch'."
::= { hpStackStats 3 }
hpStackStatsMemberID OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number by which member switch is known on the
stack."
::= { hpStackStats 4 }
hpStackStatsMgmtIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address of the Stack manager switch (command
switch). This variable is only valid if this switch
has been set as a 'member-switch'."
::= { hpStackStats 5 }
hpStackStatsStackingStatus OBJECT-TYPE
SYNTAX INTEGER {
joined(1), -- joined successfully
pending(2), -- join pending
noReponse(3), -- No response from command switch
notCommand(4), -- Not a command switch
stackFull(5), -- Stack full on command switch
remoteFailure(6), -- Unknown remote failure
unknownFailure(7), -- Unknown failure
evicted(8), -- Evicted by command switch
commandUp(9), -- command switch is up
commandDown(10), -- command switch is down
unusedStatus(11), -- Status not currently used
undiscovered(12) -- Undiscovered switch
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The status of this switch. This variable is only
valid if this switch has been set as a 'member-switch'."
::= { hpStackStats 6 }
hpStackStatsMembersTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpStackStatsMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing the member switches that have
joined this switch's stack."
::= { hpSwitchVirtualStackMib 4 }
hpStackStatsMemberEntry OBJECT-TYPE
SYNTAX HpStackStatsMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each row in the
member table."
INDEX { hpStackStatsMemberSwitchIndx }
::= { hpStackStatsMembersTable 1 }
HpStackStatsMemberEntry ::=
SEQUENCE {
hpStackStatsMemberSwitchIndx Integer32,
hpStackStatsMemberMacAddr MacAddress,
hpStackStatsMemberSystemName OCTET STRING,
hpStackStatsMemberDeviceType OCTET STRING,
hpStackStatsMemberOperStatus INTEGER
}
hpStackStatsMemberSwitchIndx OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index identifying the member switch."
::= { hpStackStatsMemberEntry 1 }
hpStackStatsMemberMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of the member switch."
::= { hpStackStatsMemberEntry 2 }
hpStackStatsMemberSystemName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The system name of the member switch."
::= { hpStackStatsMemberEntry 3 }
hpStackStatsMemberDeviceType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The device type of the member switch."
::= { hpStackStatsMemberEntry 4 }
hpStackStatsMemberOperStatus OBJECT-TYPE
SYNTAX INTEGER {
pending(1), -- join pending
joined(2), -- joined
noReponse(3), -- No response from
-- member switch
stackingDisabled(4), -- Stacking disabled
invalidPassword(5), -- Invalid password
commanderAnotherStack(6), -- Commander of another
-- stack
remoteFailure(7), -- Remote failure
unknownFailure(8), -- Unknown failure
rejected(9), -- rejected by command
-- switch
memberUp(10), -- member switch is up
memberDown(11), -- member switch is down
commanderThisStack(12), -- Commander of this stack
unusedStatus(13), -- Status not currently
-- being used
undiscovered(14) -- Undiscovered switch
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current state of the member switch."
::= { hpStackStatsMemberEntry 5 }
-- Configuration support for Discovery Protocol
hpSwitchDiscoveryConfig OBJECT IDENTIFIER ::=
{ hpSwitchVirtualStackMib 5 }
hpSwitchDiscoveryAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the discovery protocol."
::= { hpSwitchDiscoveryConfig 1 }
hpSwitchDiscoveryTransmissionInterval OBJECT-TYPE
SYNTAX Integer32 (1..300)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The interval between the sending out of new
discovery packets."
::= { hpSwitchDiscoveryConfig 2 }
-- Status support for Discovery Protocol
hpDiscoverStatsCandidatesTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpDiscoverStatsCandidateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing the switches that have been
discovered as a candidate to form a stack."
::= { hpSwitchVirtualStackMib 6 }
hpDiscoverStatsCandidateEntry OBJECT-TYPE
SYNTAX HpDiscoverStatsCandidateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each row in the
candidate table."
INDEX { hpDiscoverStatsCandidateMacAddr }
::= { hpDiscoverStatsCandidatesTable 1 }
HpDiscoverStatsCandidateEntry ::=
SEQUENCE {
hpDiscoverStatsCandidateMacAddr MacAddress,
hpDiscoverStatsCandidateSystemName OCTET STRING,
hpDiscoverStatsCandidateDeviceType OCTET STRING
}
hpDiscoverStatsCandidateMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of the candidate switch. Used as
an index identifying row in the table."
::= { hpDiscoverStatsCandidateEntry 1 }
hpDiscoverStatsCandidateSystemName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The system name of the candidate switch."
::= { hpDiscoverStatsCandidateEntry 2 }
hpDiscoverStatsCandidateDeviceType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The device type of the candidate switch."
::= { hpDiscoverStatsCandidateEntry 3 }
hpDiscoverStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpDiscoverStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing the switches that have been
discovered on the network."
::= { hpSwitchVirtualStackMib 7 }
hpDiscoverStatsEntry OBJECT-TYPE
SYNTAX HpDiscoverStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each row in the
discover table."
INDEX { hpDiscoverStatsSwitchIndex }
::= { hpDiscoverStatsTable 1 }
HpDiscoverStatsEntry ::=
SEQUENCE {
hpDiscoverStatsSwitchIndex Integer32,
hpDiscoverStatsSwitchStackName OCTET STRING,
hpDiscoverStatsSwitchMacAddr MacAddress,
hpDiscoverStatsSwitchSystemName OCTET STRING,
hpDiscoverStatsSwitchStatus OCTET STRING
}
hpDiscoverStatsSwitchIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index identifying the row in the table."
::= { hpDiscoverStatsEntry 1 }
hpDiscoverStatsSwitchStackName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The stack name of the discovered switch."
::= { hpDiscoverStatsEntry 2 }
hpDiscoverStatsSwitchMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of the discovered switch."
::= { hpDiscoverStatsEntry 3 }
hpDiscoverStatsSwitchSystemName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The system name of the discovered switch."
::= { hpDiscoverStatsEntry 4 }
hpDiscoverStatsSwitchStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..35))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The status of the discovered switch."
::= { hpDiscoverStatsEntry 5 }
hpSwitchVirtualStackMibConformance
OBJECT IDENTIFIER ::= { hpSwitchVirtualStackMib 8 }
hpSwitchVirtualStackMibCompliances
OBJECT IDENTIFIER ::= { hpSwitchVirtualStackMibConformance 1}
hpSwitchVirtualStackMibGroups
OBJECT IDENTIFIER ::= { hpSwitchVirtualStackMibConformance 2}
hpSwitchVirtualStackMibCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION "The compliance statement for devices implementing the
HP Stack Mib."
MODULE
MANDATORY-GROUPS { hpSwitchStackConfigGroup,
hpSwitchStackStatsGroup,
hpSwitchDiscoverConfigGroup,
hpDiscoverStatsGroup }
::= { hpSwitchVirtualStackMibCompliances 1 }
hpSwitchVirtualStackMibCompliance1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for devices implementing the
HP Stack Mib."
MODULE
MANDATORY-GROUPS { hpSwitchStackConfigGroup1,
hpSwitchStackStatsGroup,
hpSwitchDiscoverConfigGroup,
hpDiscoverStatsGroup }
::= { hpSwitchVirtualStackMibCompliances 2 }
hpSwitchStackConfigGroup OBJECT-GROUP
OBJECTS { hpSwitchStackAdminStatus,
hpSwitchStackCommandAddr,
hpSwitchStackName,
hpSwitchStackPropagate,
hpSwitchStackAutoJoin,
hpSwitchStackAutoGrab,
hpSwitchStackMemberSwitchNum,
hpSwitchStackMemberMacAddr,
hpSwitchStackMemberPassword,
hpSwitchStackMemberEntryStatus
}
STATUS deprecated
DESCRIPTION "A collection of objects for configuring a stack."
::= { hpSwitchVirtualStackMibGroups 1 }
hpSwitchStackStatsGroup OBJECT-GROUP
OBJECTS { hpStackStatsName,
hpStackStatsMembersNum,
hpStackStatsMembersUnreachable,
hpStackStatsMemberID,
hpStackStatsMgmtIpAddr,
hpStackStatsStackingStatus,
hpStackStatsMemberSwitchIndx,
hpStackStatsMemberMacAddr,
hpStackStatsMemberSystemName,
hpStackStatsMemberDeviceType,
hpStackStatsMemberOperStatus
}
STATUS current
DESCRIPTION "A collection of objects for determining state
and status of a stack."
::= { hpSwitchVirtualStackMibGroups 2 }
hpSwitchDiscoverConfigGroup OBJECT-GROUP
OBJECTS { hpSwitchDiscoveryAdminStatus,
hpSwitchDiscoveryTransmissionInterval
}
STATUS current
DESCRIPTION "A collection of objects for configuring the
state of the stack discovery protocol."
::= { hpSwitchVirtualStackMibGroups 3 }
hpDiscoverStatsGroup OBJECT-GROUP
OBJECTS { hpDiscoverStatsCandidateMacAddr,
hpDiscoverStatsCandidateSystemName,
hpDiscoverStatsCandidateDeviceType,
hpDiscoverStatsSwitchIndex,
hpDiscoverStatsSwitchStackName,
hpDiscoverStatsSwitchMacAddr,
hpDiscoverStatsSwitchSystemName,
hpDiscoverStatsSwitchStatus
}
STATUS current
DESCRIPTION "A collection of objects for viewing the
discovered devices by the stack discovery
protocol."
::= { hpSwitchVirtualStackMibGroups 4 }
hpSwitchStackConfigGroup1 OBJECT-GROUP
OBJECTS { hpSwitchStackAdminStatus,
hpSwitchStackCommandAddr,
hpSwitchStackName,
hpSwitchStackPropagate,
hpSwitchStackAutoJoin,
hpSwitchStackAutoGrab,
hpSwitchStackMemberSwitchNum,
hpSwitchStackMemberMacAddr,
hpSwitchStackMemberPasswordLong,
hpSwitchStackMemberEntryStatus
}
STATUS current
DESCRIPTION "A collection of objects for configuring a stack."
::= { hpSwitchVirtualStackMibGroups 5 }
END