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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
-- ============================================================================
-- Copyright (C) by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description:
-- Reference:
-- Version: V1.0
-- History:
--
--
-- ============================================================================
HUAWEI-RBRP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
InterfaceIndex
FROM IF-MIB
OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Integer32, Counter32, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus, MacAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
hwRBRPMIB MODULE-IDENTITY
LAST-UPDATED "200703310130Z" -- March 31, 2007 at 01:30 GMT
ORGANIZATION
"Huawei Technologies co.,Ltd."
CONTACT-INFO
" R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com "
DESCRIPTION
"The MIB module for RBRP feature.
RPR Bridge Redundancy Protocol (RBRP) is the protocol for detecting
and initializing the intersection ring configuration, and providing
protection for data transfer from one rpr ring to another one via
intersection rpr stations."
::= { hwDatacomm 117 }
EnabledStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A simple status value for the object."
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
-- ----------------------------------------------------
hwRBRPMibObject OBJECT IDENTIFIER ::= { hwRBRPMIB 1 }
hwRBRPLocalDeviceID OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the identity which distinguishes local device
from other devices in a specific group."
::= { hwRBRPMibObject 1 }
hwRBRPWrapToNormalTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWRBRPWrapToNormalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains WrapToNormalDelay information in the ring-if ."
::= { hwRBRPMibObject 2 }
hwRBRPWrapToNormalEntry OBJECT-TYPE
SYNTAX HWRBRPWrapToNormalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains WrapToNormalDelay information of ring-if
in the device."
INDEX { hwRBRPRingIfIndex }
::= { hwRBRPWrapToNormalTable 1 }
HWRBRPWrapToNormalEntry ::=
SEQUENCE {
hwRBRPRingIfIndex
InterfaceIndex,
hwRBRPWrapToNormalVal
INTEGER
}
hwRBRPRingIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RPR logic interface index."
::= { hwRBRPWrapToNormalEntry 1 }
hwRBRPWrapToNormalVal OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets WrapToNormalDelay time of ring-if."
::= { hwRBRPWrapToNormalEntry 11 }
hwRBRPGroupCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWRBRPGroupCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains group based configuration information
for RBRP."
::= { hwRBRPMibObject 3 }
hwRBRPGroupCfgEntry OBJECT-TYPE
SYNTAX HWRBRPGroupCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry, which contains configuration information for
a specific group, is created for each group in the device
and deleted when the device exit the group."
INDEX { hwRBRPGroupCfgGroupID }
::= { hwRBRPGroupCfgTable 1 }
HWRBRPGroupCfgEntry ::=
SEQUENCE {
hwRBRPGroupCfgGroupID
Integer32,
hwRBRPPriorityValue
INTEGER,
hwRBRPPreemptedEnable
EnabledStatus,
hwRBRPStatePromptSwitchEnable
EnabledStatus,
hwRBRPPreemptDelayValue
Integer32,
hwRBRPGroupCfgRowStatus
RowStatus
}
hwRBRPGroupCfgGroupID OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object distinguishes a specific group from other
groups in the device."
::= { hwRBRPGroupCfgEntry 1 }
hwRBRPPriorityValue OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the device's priority which
determines the status of a device in a specific group.
The non-unready device with the largest priority value
is in active status.
When a device's priority is equal to another device's,
the DeviceId will be the determining factor of a device's
status."
DEFVAL { 100 }
::= { hwRBRPGroupCfgEntry 11 }
hwRBRPPreemptedEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If PreemptedEnable is configured in a device which is
in active status in a specific group, its status could
be preempted by device with larger priority value."
DEFVAL { disabled }
::= { hwRBRPGroupCfgEntry 12 }
hwRBRPStatePromptSwitchEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If StatePromptSwitchEnable is configured on a common station which
belongs to a specific group, The common station moves from standby
state to active state promptly when multiple-site faults occur to
the primary ring."
DEFVAL { disabled }
::= { hwRBRPGroupCfgEntry 13 }
hwRBRPPreemptDelayValue OBJECT-TYPE
SYNTAX Integer32 (60..1200)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to set the delay for the station moving from the active state
to the ready state after preempted."
DEFVAL { 120 }
::= { hwRBRPGroupCfgEntry 14 }
hwRBRPGroupCfgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, Now support three value:CreateAndGo,Active,Destroy."
::= { hwRBRPGroupCfgEntry 51 }
hwRBRPPGRingIfCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRBRPPGRingIfCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains configuration information of ring-if in
specific group."
::= { hwRBRPMibObject 4 }
hwRBRPPGRingIfCfgEntry OBJECT-TYPE
SYNTAX HwRBRPPGRingIfCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains configuration information of ring-if in
specific group."
INDEX { hwRBRPPGGroupID, hwRBRPRingType }
::= { hwRBRPPGRingIfCfgTable 1 }
HwRBRPPGRingIfCfgEntry ::=
SEQUENCE {
hwRBRPPGGroupID
Integer32,
hwRBRPRingType
Integer32,
hwRBRPRGRingIfIndex
InterfaceIndex,
hwRBRPGroupRowStatus
RowStatus
}
hwRBRPPGGroupID OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object distinguishes a specific group from other
groups in the device."
::= { hwRBRPPGRingIfCfgEntry 1 }
hwRBRPRingType OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates a ring-if is on the primary rpr ring
or on the secondary rpr ring."
::= { hwRBRPPGRingIfCfgEntry 2 }
hwRBRPRGRingIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RPR logic interface index."
::= { hwRBRPPGRingIfCfgEntry 11 }
hwRBRPGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, Now support three value:CreateAndGo,Active,Destroy."
::= { hwRBRPPGRingIfCfgEntry 51 }
hwRBRPPStatisTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWRBRPPStatisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains statistics information of RBRP packets."
::= { hwRBRPMibObject 5 }
hwRBRPPStatisEntry OBJECT-TYPE
SYNTAX HWRBRPPStatisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains statistics information of RBRP packets."
INDEX { hwRBRPStatisGroupID }
::= { hwRBRPPStatisTable 1 }
HWRBRPPStatisEntry ::=
SEQUENCE {
hwRBRPStatisGroupID
Integer32,
hwRBRPStatisRevPacketsNum
Counter32,
hwRBRPStatisRevByteNum
Counter32,
hwRBRPStatisSendPacketsNum
Counter32,
hwRBRPStatisSendByteNum
Counter32,
hwRBRPClearStatisticPacket
EnabledStatus
}
hwRBRPStatisGroupID OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object distinguishes a specific group from other
groups in the device."
::= { hwRBRPPStatisEntry 1 }
hwRBRPStatisRevPacketsNum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of RBRP packets received
from a specific group."
::= { hwRBRPPStatisEntry 11 }
hwRBRPStatisRevByteNum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of RBRP bytes received
from a specific group."
::= { hwRBRPPStatisEntry 12 }
hwRBRPStatisSendPacketsNum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of RBRP packets sendedd
to a specific group."
::= { hwRBRPPStatisEntry 13 }
hwRBRPStatisSendByteNum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of RBRP bytes sendedd
to a specific group."
::= { hwRBRPPStatisEntry 14 }
hwRBRPClearStatisticPacket OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clear the statistics information of RBRP packets."
::= { hwRBRPPStatisEntry 15 }
hwRBRPGroupInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRBRPGroupInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains RBRP group information."
::= { hwRBRPMibObject 6 }
hwRBRPGroupInfoEntry OBJECT-TYPE
SYNTAX HwRBRPGroupInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains RBRP group information."
INDEX { hwRBRPGroupID, hwRBRPDeviceId }
::= { hwRBRPGroupInfoTable 1 }
HwRBRPGroupInfoEntry ::=
SEQUENCE {
hwRBRPGroupID
Integer32,
hwRBRPDeviceId
IpAddress,
hwRBRPPrimaryRPRMacAddress
MacAddress,
hwRBRPSecondaryRPRMacAddress
MacAddress,
hwRBRPPriority
Integer32,
hwRBRPCurrentStatus
Integer32
}
hwRBRPGroupID OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object distinguishes a specific group from other
groups in the device."
::= { hwRBRPGroupInfoEntry 1 }
hwRBRPDeviceId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object distinguishes a specific device from other
devices in the groups."
::= { hwRBRPGroupInfoEntry 2 }
hwRBRPPrimaryRPRMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mac address of rpr station on the
primary rpr ring."
::= { hwRBRPGroupInfoEntry 11 }
hwRBRPSecondaryRPRMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mac address of rpr station on the
secondary rpr ring."
::= { hwRBRPGroupInfoEntry 12 }
hwRBRPPriority OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the priority of a device
in specific group."
::= { hwRBRPGroupInfoEntry 13 }
hwRBRPCurrentStatus OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of a device
in specific group.
Now support four state:Unready, Ready, Standby, and Active."
::= { hwRBRPGroupInfoEntry 14 }
hwRBRPTraps OBJECT IDENTIFIER ::= { hwRBRPMIB 2 }
hwRBRPDeviceIDConflict NOTIFICATION-TYPE
OBJECTS { hwRBRPCurrentStatus }
STATUS current
DESCRIPTION
"The device id conflict defect.
When a device id conflict defect is present,
a notification may be generated."
::= { hwRBRPTraps 1 }
hwRBRPUnreadyStatus NOTIFICATION-TYPE
OBJECTS { hwRBRPPreemptedEnable }
STATUS current
DESCRIPTION
"The Unready status defect.
When an Unready status defect is present,
a notification may be generated."
::= { hwRBRPTraps 2 }
hwRBRPClearUnreadyStatus NOTIFICATION-TYPE
OBJECTS { hwRBRPPreemptedEnable }
STATUS current
DESCRIPTION
"The Unready status restore.
When a Ready status is present,
a notification may be generated."
::= { hwRBRPTraps 3 }
hwRBRPConformance OBJECT IDENTIFIER ::= { hwRBRPMIB 3 }
hwRBRPGroups OBJECT IDENTIFIER ::= { hwRBRPConformance 1 }
hwRBRPLoclaDeveceIDGroup OBJECT-GROUP
OBJECTS { hwRBRPLocalDeviceID }
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 1 }
hwRBRPWrapToNormalGroup OBJECT-GROUP
OBJECTS { hwRBRPWrapToNormalVal }
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 2 }
hwRBRPGroupCfgGroup OBJECT-GROUP
OBJECTS { hwRBRPPriorityValue, hwRBRPPreemptDelayValue, hwRBRPGroupCfgRowStatus, hwRBRPStatePromptSwitchEnable, hwRBRPPreemptedEnable
}
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 3 }
hwRBRPPGRingIfCfgGroup OBJECT-GROUP
OBJECTS { hwRBRPRGRingIfIndex, hwRBRPGroupRowStatus }
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 4 }
hwRBRPPStatisGroup OBJECT-GROUP
OBJECTS { hwRBRPStatisRevPacketsNum, hwRBRPStatisRevByteNum, hwRBRPStatisSendPacketsNum, hwRBRPStatisSendByteNum, hwRBRPClearStatisticPacket
}
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 5 }
hwRBRPGroupInfoGroup OBJECT-GROUP
OBJECTS { hwRBRPCurrentStatus, hwRBRPPriority, hwRBRPSecondaryRPRMacAddress, hwRBRPPrimaryRPRMacAddress }
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 6 }
hwRBRPTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwRBRPClearUnreadyStatus, hwRBRPDeviceIDConflict, hwRBRPUnreadyStatus }
STATUS current
DESCRIPTION
"Description."
::= { hwRBRPGroups 7 }
END
--
-- HUAWEI-RBRP-MIB.my
--
|