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
|
NBS-REDUNDANCY-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
nbsCmmcChassisIndex, nbsCmmcSlotIndex, nbsCmmcPortIndex
FROM NBS-CMMC-MIB
nbs
FROM NBS-MIB
;
nbsRedundancyMib MODULE-IDENTITY
LAST-UPDATED "201505010000Z"
ORGANIZATION "NBS"
CONTACT-INFO
"For technical support, please contact your service channel"
DESCRIPTION
"Information Base for redundancy settings."
::= { nbs 221 }
-- *******************************************************************
-- Groups in NBS-REDUNDANCY-MIB
-- *******************************************************************
nbsRedundCfgGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Redundancy settings"
::= { nbsRedundancyMib 1 }
nbsRedundEventGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Redundancy-related events"
::= { nbsRedundancyMib 100 }
nbsYcableTraps OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Y-cable Traps or Notifications"
::= { nbsRedundEventGrp 0 }
-- ********************************************************************
--
-- nbsRedundCfgGrp
--
-- ********************************************************************
nbsRedundCfgTableSize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in nbsRedundCfgTable."
::= { nbsRedundCfgGrp 1 }
nbsRedundCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsRedundCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists all ports that can be redundant group
members."
::= { nbsRedundCfgGrp 2 }
nbsRedundCfgEntry OBJECT-TYPE
SYNTAX NbsRedundCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Redundancy status of a port."
INDEX { nbsRedundCfgNdx }
::= { nbsRedundCfgTable 1 }
NbsRedundCfgEntry ::= SEQUENCE {
nbsRedundCfgNdx InterfaceIndex,
nbsRedundCfgPartnerNdxAdmin InterfaceIndex,
nbsRedundCfgPartnerNdxOper InterfaceIndex,
nbsRedundCfgStatusAdmin INTEGER,
nbsRedundCfgStatusOper INTEGER,
nbsRedundCfgPreferredAdmin INTEGER,
-- nbsRedundCfgPreferredOper INTEGER,
nbsRedundCfgStandbyTxAdmin INTEGER,
-- nbsRedundCfgStandbyTxOper INTEGER,
nbsRedundCfgStandbyTxToggle INTEGER,
nbsRedundCfgIfTypeAdmin INTEGER,
nbsRedundCfgIfTypeOper INTEGER,
nbsRedundCfgGroupNumberAdmin INTEGER,
nbsRedundCfgGroupNumberOper INTEGER
}
nbsRedundCfgNdx OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index of a redundant port."
::= { nbsRedundCfgEntry 1 }
nbsRedundCfgPartnerNdxAdmin OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively desired InterfaceIndex of the other port in
this port's redundant pair."
::= { nbsRedundCfgEntry 2 }
nbsRedundCfgPartnerNdxOper OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current operational InterfaceIndex of the other port in this
port's redundant pair."
::= { nbsRedundCfgEntry 3 }
nbsRedundCfgStatusAdmin OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
standby (2),
active (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Impulse. Used to trigger an immediate switchover. Equivalent
(aliased) to nbsCmmcPortSelectLink."
::= { nbsRedundCfgEntry 10 }
nbsRedundCfgStatusOper OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
standby (2),
active (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual redundancy status of this port."
::= { nbsRedundCfgEntry 11 }
nbsRedundCfgPreferredAdmin OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
preferNot (2),
preferActive (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. Used to optionally indicate one port in a
redundant pair should always be active if it has ifOperStatus
up(1). Equivalent/aliased to nbsCmmcPortPreferred.
Setting one port to preferActive(3) forces its redundant
partner to preferNot(2).
Setting a port to preferNot(2) has no effect on its redundant
partner."
::= { nbsRedundCfgEntry 20 }
--nbsRedundCfgPreferredOper OBJECT-TYPE
-- SYNTAX INTEGER {
-- notSupported (1),
-- preferNot (2),
-- preferActive (3)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This object holds the same value as nbsRedundCfgPreferredAdmin
-- unless a redundant pair requires a preferred port and the user
-- has not indicated one."
-- ::= { nbsRedundCfgEntry 21 }
nbsRedundCfgStandbyTxAdmin OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
standbyCold (2), -- 1:1
standbyHot (3) -- 1+1
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. Desired transmitter state for this port when it is
in standby. Equivalent/aliased to nbsCmmcPortRedundantTxMode.
If this cannot be selected by the user, this should be
notSupported(1).
For 1+1 redundancy, use standbyHot(3).
For 1:1 redundancy, use standbyCold(2)."
DEFVAL { standbyHot }
::= { nbsRedundCfgEntry 30 }
--nbsRedundCfgStandbyTxOper OBJECT-TYPE
-- SYNTAX INTEGER {
-- notSupported (1),
-- standbyCold (2), -- -- 1:1
-- standbyHot (3) -- -- 1+1
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Persistent. Actual transmitter state for this port when it is
-- in standby..
--
-- For 1+1 redundancy, Agent will report standbyHot(3).
--
-- For 1:1 redundancy, Agent reports standbyCold(2)."
-- DEFVAL { standbyHot }
-- ::= { nbsRedundCfgEntry 31 }
nbsRedundCfgStandbyTxToggle OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
txOff (2),
txToggle (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent. Setting this to txToggle(3) allows a formerly
active port that detects no signal to notify its remote partner
that it is ready to transmit and connectivity is re-established
between them.
Enabling this feature may result in unnecessary switchovers and
dropped traffic."
DEFVAL { txOff }
::= { nbsRedundCfgEntry 40 }
nbsRedundCfgIfTypeAdmin OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
access (2),
trunk (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This port's administratively desired type"
::= { nbsRedundCfgEntry 50 }
nbsRedundCfgIfTypeOper OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
access (2),
trunk (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This port's current operational type"
::= { nbsRedundCfgEntry 51 }
nbsRedundCfgGroupNumberAdmin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This port's administratively desired group."
::= { nbsRedundCfgEntry 60 }
nbsRedundCfgGroupNumberOper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This port's current operational group."
::= { nbsRedundCfgEntry 61 }
nbsRedundGroupCfgTableSize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in nbsRedundGroupCfgTable."
::= { nbsRedundCfgGrp 3 }
nbsRedundGroupCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsRedundGroupCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists all ports in a redundant pair."
::= { nbsRedundCfgGrp 4 }
nbsRedundGroupCfgEntry OBJECT-TYPE
SYNTAX NbsRedundGroupCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Redundancy status of a port."
INDEX { nbsRedundGroupCfgNdx, nbsRedundGroupCfgNumber }
::= { nbsRedundGroupCfgTable 1 }
NbsRedundGroupCfgEntry ::= SEQUENCE {
nbsRedundGroupCfgNdx InterfaceIndex,
nbsRedundGroupCfgNumber INTEGER,
nbsRedundGroupCfgOper OCTET STRING,
nbsRedundGroupCfgModeAdmin INTEGER,
nbsRedundGroupCfgModeOper INTEGER,
nbsRedundGroupCfgYcableAdmin INTEGER,
nbsRedundGroupCfgYcableOper INTEGER,
nbsRedundGroupCfgRowStatus RowStatus
}
nbsRedundGroupCfgNdx OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index of a slot."
::= { nbsRedundGroupCfgEntry 1 }
nbsRedundGroupCfgNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index of a slot's group number."
::= { nbsRedundGroupCfgEntry 2 }
nbsRedundGroupCfgOper OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This bitmask indicates this group's current operational port
membership.
Bit 0 is reserved."
::= { nbsRedundGroupCfgEntry 13 }
nbsRedundGroupCfgModeAdmin OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
modeA (2),
modeB (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This group's administratively desired mode.
For modeA, when a faulty condition occurs on one member, all the
members in the group will take the same action concurrently.
For modeB, only the faulty member will take action."
DEFVAL { modeB }
::= { nbsRedundGroupCfgEntry 15 }
nbsRedundGroupCfgModeOper OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
modeA (2),
modeB (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This group's current operational mode"
::= { nbsRedundGroupCfgEntry 16 }
nbsRedundGroupCfgYcableAdmin OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
disabled (2),
enabled (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to enable and disable Y-Cable redundancy
on a group."
DEFVAL { disabled }
::= { nbsRedundGroupCfgEntry 20 }
nbsRedundGroupCfgYcableOper OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
disabled (2),
enabled (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This Ycable group's current operational status."
::= { nbsRedundGroupCfgEntry 21 }
nbsRedundGroupCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This table RowStatus object to create, modify and delete the rows"
::= { nbsRedundGroupCfgEntry 50 }
-- ********************************************************************
--
-- nbsRedundEventGrp
--
-- ********************************************************************
nbsYcableTrapsStatusChanged NOTIFICATION-TYPE
OBJECTS { nbsCmmcChassisIndex, nbsCmmcSlotIndex, nbsCmmcPortIndex,
nbsRedundCfgStatusOper }
STATUS current
DESCRIPTION
"Sent when the nbsRedundCfgStatusOper of a port changes.
This Notification should be of Severity INFO."
::= { nbsYcableTraps 10 }
END
|