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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
|
-- ==================================================================
-- Copyright (C) 2006 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI LAN Switch RRPP MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2006-02-20 Created by Gurongwei 50539
-- V1.1 2006-06-07 Modify by xingxing 51692
-- V1.2 2006-07-07 Modify by zhouyun 60016423
-- V1.3 2006-09-11 Modify by zhouyun 60016423
-- V1.4 2006-12-29 Modify by zhouyun 60016423
-- V1.5 2007-8-2 Modify by jianglian 60019048
-- 2008-6-5 Modify by yanjiajun 130005
-- ==================================================================
HUAWEI-RRPP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
Counter32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
VlanId
FROM Q-BRIDGE-MIB;
hwRrpp MODULE-IDENTITY
LAST-UPDATED "200607130000Z"
ORGANIZATION
"Huawei Technologies Co. Ltd."
CONTACT-INFO
"Platform Team Huawei Technologies Co. Ltd.
Hai-Dian District Beijing P.R. China
http://www.huawei.com
Zip:100085"
DESCRIPTION
"The RRPP (Rapid Ring Protection protocol) provides
fast protection switching to layer 2 switches
interconnected in an Ethernet ring topology. When
a link in the ring breaks, the RRPP can recover the
data path quickly. Its protection switching is
similar to what can be achieved with the Spanning
Tree Protocol (STP), but the converging time is less
than a second after link failure.
This MIB defines management information used on
products which support RRPP."
::= { hwDatacomm 113 }
EnabledStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A simple status value for the object."
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
hwRrppScalarGroup OBJECT IDENTIFIER ::= { hwRrpp 1 }
hwRrppEnableStatus OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicating whether the RRPP is enabled on this switch."
::= { hwRrppScalarGroup 1 }
hwRrppLinkupDelayTime OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the delay when ports change to Up ."
DEFVAL { '0'b }
::= { hwRrppScalarGroup 2 }
hwRrppTables OBJECT IDENTIFIER ::= { hwRrpp 2 }
hwRrppDomainTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppDomainEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about configurations
and status of a RRPP domain."
::= { hwRrppTables 1 }
hwRrppDomainEntry OBJECT-TYPE
SYNTAX HwRrppDomainEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information of a specified RRPP domain."
INDEX { hwRrppDomainID }
::= { hwRrppDomainTable 1 }
HwRrppDomainEntry ::=
SEQUENCE {
hwRrppDomainID
INTEGER,
hwRrppDomainControlVlanID
INTEGER,
hwRrppDomainProtectedVlan
OCTET STRING,
hwRrppDomainHelloTime
INTEGER,
hwRrppDomainFailTime
INTEGER,
hwRrppDomainRowStatus
RowStatus,
hwRrppDomainResetStatistics
INTEGER,
hwRrppMulSubRingProtection
EnabledStatus
}
hwRrppDomainID OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index uniquely identifies a RRPP domain,
which ranges from 1~8.
This value can't be modified after created."
::= { hwRrppDomainEntry 1 }
hwRrppDomainControlVlanID OBJECT-TYPE
SYNTAX INTEGER (1..4093 | 65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of the control VLAN specified to a domain.
The value 65535 indicates the control VLAN has
not been configured.
The VLAN assigned to a RRPP Domain must not have
been created.
This value can't be modified after created."
DEFVAL { 65535 }
::= { hwRrppDomainEntry 2 }
hwRrppDomainHelloTime OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value indicates the interval between two hello
packets sent by master-node, and its unit is second.
The value ranges from 1s~10s."
DEFVAL { 1 }
::= { hwRrppDomainEntry 3 }
hwRrppDomainFailTime OBJECT-TYPE
SYNTAX INTEGER (3..30)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The expiration value of the fail-period timer and its unit
is second. If not receiving hello packets before this
expires, the master-node considers the ring is broken.
The value of this node ranging from 3s~30s must not be
less than triple hwRrppDomainHelloTime's value."
DEFVAL { 3 }
::= { hwRrppDomainEntry 4 }
hwRrppDomainRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation."
::= { hwRrppDomainEntry 5 }
hwRrppDomainResetStatistics OBJECT-TYPE
SYNTAX INTEGER
{
cleared(1),
unused(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Clears the statistics of packets received and sent on the current domain."
::= { hwRrppDomainEntry 6 }
hwRrppMulSubRingProtection OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicating whether the rrpp mul-sub-ring protection is enabled on this switch."
::= { hwRrppDomainEntry 7 }
hwRrppDomainProtectedVlan OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Information about the instances bound to a domain.
The value ranges from 0 to 48. Both the ID and the number of the instances can be obtained through the value."
::= { hwRrppDomainEntry 8 }
hwRrppRingTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about configurations
and status of a RRPP Ring."
::= { hwRrppTables 2 }
hwRrppRingEntry OBJECT-TYPE
SYNTAX HwRrppRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information of a specified RRPP Ring."
INDEX { hwRrppDomainID, hwRrppRingID }
::= { hwRrppRingTable 1 }
HwRrppRingEntry ::=
SEQUENCE {
hwRrppRingID
INTEGER,
hwRrppRingEnableStatus
EnabledStatus,
hwRrppRingActive
INTEGER,
hwRrppRingState
INTEGER,
hwRrppRingNodeMode
INTEGER,
hwRrppRingPrimaryPort
InterfaceIndex,
hwRrppRingSecondaryPort
InterfaceIndex,
hwRrppRingLevel
INTEGER,
hwRrppRingRowStatus
RowStatus,
hwRrppRingResetStatistics
INTEGER
}
hwRrppRingID OBJECT-TYPE
SYNTAX INTEGER (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index uniquely identifies a RRPP Ring,
which ranges from 1~64.
This value can't be modified after created."
::= { hwRrppRingEntry 1 }
hwRrppRingEnableStatus OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicating whether the RRPP is enabled on this Ring.
NOTE: If major-ring and sub-ring(s) of a domain
coexist on a switch, major-ring must be enabled
before sub-ring is enabled. And sub-ring must be
disabled before major-ring is disabled."
::= { hwRrppRingEntry 2 }
hwRrppRingActive OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
inactive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"As both hwRrppEnableStatus and hwRrppRingEnableStatus
are enabled, the ring is activated. Whereas either of
the two items is disabled, the ring is inactive."
::= { hwRrppRingEntry 3 }
hwRrppRingState OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
health(2),
fault(3),
complete(4),
failed(5),
linkup(6),
linkdown(7),
preforwarding(8),
linkupnotify(9),
linkdownnotify(10),
preforwardnotify(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status (i.e. unknown, health or fault) of the Ethernet
ring."
::= { hwRrppRingEntry 4 }
hwRrppRingNodeMode OBJECT-TYPE
SYNTAX INTEGER
{
master(1),
transit(2),
edge(3),
assistantEdge(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"There are four RRPP node modes for the switch on a RRPP
ring, such as master, transit, edge and assistant-edge.
Each RRPP ring has a single designated master-node. All
other nodes except edge-node and assistant-edge-node on
that ring are referred to as transit-nodes.
The node mode of edge and assistant-edge should be
configured only on sub-ring. When there is a common link
between a sub-ring and its major-ring, the node mode of
the sub-ring must be edge or assistant-edge, and they must
be configured in pairs.
If node mode is designated as edge or assistant-edge,
several points should be noticed:
Major-ring must be created before a sub-ring is created;
Major-ring can't be deleted unless all its sub-rings are
deleted;
The node mode of the switch on major-ring must be
transit;
Major-ring and sub-ring must have only a common port.
This value can't be modified after created."
::= { hwRrppRingEntry 5 }
hwRrppRingPrimaryPort OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the switch is a master-node or transit-node, this value
is ifIndex of the primary port; otherwise, if the switch is an
edge-node or assistant-edge-node, this value is ifIndex of the common
port.
This value is 0, if the port doesn't exist.
This value can't be modified after created."
::= { hwRrppRingEntry 6 }
hwRrppRingSecondaryPort OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the switch is a master-node or transit-node, this value
is ifIndex of the secondary port; otherwise, if the switch is
an edge-node or assistant-edge-node, this value is ifIndex of the edge
port.
This value is 0, if the port doesn't exist.
This value can't be modified after created."
::= { hwRrppRingEntry 7 }
hwRrppRingLevel OBJECT-TYPE
SYNTAX INTEGER
{
majorRing(0),
subRing(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Level of a ring. This field should be set 0 on major-ring
and 1 on the sub-ring.
This value can't be modified after created."
::= { hwRrppRingEntry 8 }
hwRrppRingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation.
To create a new row, hwRrppRingNodeMode,
hwRrppRingPrimaryPort, hwRrppRingSecondaryPort and
hwRrppRingLevel must be specified."
::= { hwRrppRingEntry 9 }
hwRrppRingResetStatistics OBJECT-TYPE
SYNTAX INTEGER
{
cleared(1),
unused(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Clears the statistics of packets received and sent on the current ring."
::= { hwRrppRingEntry 10 }
hwRrppPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about configurations and
status of a RRPP port."
::= { hwRrppTables 3 }
hwRrppPortEntry OBJECT-TYPE
SYNTAX HwRrppPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information of a specified RRPP port."
INDEX { hwRrppDomainID, hwRrppRingID, hwRrppPortID }
::= { hwRrppPortTable 1 }
HwRrppPortEntry ::=
SEQUENCE {
hwRrppPortID
InterfaceIndex,
hwRrppPortType
INTEGER,
hwRrppPortRole
INTEGER,
hwRrppPortState
INTEGER,
hwRrppPortRXError
Counter32,
hwRrppPortRXHello
Counter32,
hwRrppPortRXLinkUp
Counter32,
hwRrppPortRXLinkDown
Counter32,
hwRrppPortRXCommonFlush
Counter32,
hwRrppPortRXCompleteFlush
Counter32,
hwRrppPortRXEdgeHello
Counter32,
hwRrppPortRXMajorFault
Counter32,
hwRrppPortTXError
Counter32,
hwRrppPortTXHello
Counter32,
hwRrppPortTXLinkUp
Counter32,
hwRrppPortTXLinkDown
Counter32,
hwRrppPortTXCommonFlush
Counter32,
hwRrppPortTXCompleteFlush
Counter32,
hwRrppPortTXEdgeHello
Counter32,
hwRrppPortTXMajorFault
Counter32
}
hwRrppPortID OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical index of the interface index."
::= { hwRrppPortEntry 1 }
hwRrppPortType OBJECT-TYPE
SYNTAX INTEGER
{
fe(1),
ge(2),
ve(3),
ethtrunk(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface type of the RRPP port.
(i.e. FE, GE, VE or Eth-Trunk port)."
::= { hwRrppPortEntry 2 }
hwRrppPortRole OBJECT-TYPE
SYNTAX INTEGER
{
primary(1),
secondary(2),
common(3),
edge(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RRPP role of the port.
(i.e. primary, secondary, common or edge port)."
::= { hwRrppPortEntry 3 }
hwRrppPortState OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
unblocked(2),
blocked(3),
down(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of RRPP port, including unknown, unblocked, blocked
and down."
::= { hwRrppPortEntry 4 }
hwRrppPortRXError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of illegal RRPP packets received from
this port."
::= { hwRrppPortEntry 5 }
hwRrppPortRXHello OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of hello packets received from
this port on specified ring."
::= { hwRrppPortEntry 6 }
hwRrppPortRXLinkUp OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of link-up packets received
from this port on specified ring."
::= { hwRrppPortEntry 7 }
hwRrppPortRXLinkDown OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of link-down packets received
from this port on specified ring."
::= { hwRrppPortEntry 8 }
hwRrppPortRXCommonFlush OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of common-flush packets received from
this port on specified ring.
Instruction
When master-node receives valid link-down packets
or link-up packets, it will send common-flush packets,
instructing the other nodes on the ring to flush their
forwarding database.
When the nodes except master-node receive common-flush,
they will flush forwarding database. If there is any
port blocked on that node, it won't be unblocked."
::= { hwRrppPortEntry 9 }
hwRrppPortRXCompleteFlush OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of complete-flush packets received
from this port on specified ring.
Instruction
When the ring recovers, master-node will receive its own
hello packets. It will send complete-flush packets,
instructing the other nodes on the ring to flush their
forwarding database.
When the nodes except master-node receive complete-flush,
they will flush forwarding database. If there is any port
blocked on that node, it will be unblocked."
::= { hwRrppPortEntry 10 }
hwRrppPortRXEdgeHello OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of edge-hello packets received
from this port on specified ring.
Instruction
When edge-node sends edge-hello packets,
assistantEdge-node will receive its own edge-hello
packets from the common link and the master ring."
::= { hwRrppPortEntry 11 }
hwRrppPortRXMajorFault OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of major-fault packets received
from this port on specified ring.
Instruction
When assistantEdge can't receive edge-hello packets
in the specified fault-time,
assistantEdge-node will send its own major-fault
packets from the edge port around the sub ring.
Edge-node will receive the major-fault packets from
its edge port. Then Edge-node will block its edge port."
::= { hwRrppPortEntry 12 }
hwRrppPortTXError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of RRPP packets failed to send out of
this port."
::= { hwRrppPortEntry 13 }
hwRrppPortTXHello OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of hello packets sent from
this port on specified ring."
::= { hwRrppPortEntry 14 }
hwRrppPortTXLinkUp OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of link-up packets sent
from this port on specified ring."
::= { hwRrppPortEntry 15 }
hwRrppPortTXLinkDown OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of link-down packets sent
from this port on specified ring."
::= { hwRrppPortEntry 16 }
hwRrppPortTXCommonFlush OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of common-flush packets sent from
this port on specified ring."
::= { hwRrppPortEntry 17 }
hwRrppPortTXCompleteFlush OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of complete-flush packets sent
from this port on specified ring."
::= { hwRrppPortEntry 18 }
hwRrppPortTXEdgeHello OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of edge-hello packets sent
from this port on specified ring."
::= { hwRrppPortEntry 19 }
hwRrppPortTXMajorFault OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics of major-fault packets sent
from this port on specified ring."
::= { hwRrppPortEntry 20 }
hwRrppTrackInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWRrppTrackInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about tracking port."
::= { hwRrppTables 4 }
hwRrppTrackInterfaceEntry OBJECT-TYPE
SYNTAX HWRrppTrackInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information of a specified RRPP track interface."
INDEX { hwRrppDomainID, hwRrppRingID, hwRrppTrackInterfaceID }
::= { hwRrppTrackInterfaceTable 1 }
HWRrppTrackInterfaceEntry ::=
SEQUENCE {
hwRrppTrackInterfaceID
InterfaceIndex,
hwRrppTrackRowStatus
RowStatus
}
hwRrppTrackInterfaceID OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical index of track interface."
::= { hwRrppTrackInterfaceEntry 1 }
hwRrppTrackRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation."
::= { hwRrppTrackInterfaceEntry 2 }
hwRrppRingGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppRingGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about an RRPP ring group and created without the domain or ring."
::= { hwRrppTables 5 }
hwRrppRingGroupEntry OBJECT-TYPE
SYNTAX HwRrppRingGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information about a specified RRPP ring group."
INDEX { hwRrppRingGroupID }
::= { hwRrppRingGroupTable 1 }
HwRrppRingGroupEntry ::=
SEQUENCE {
hwRrppRingGroupID
Integer32,
hwRrppRingGroupRowStatus
RowStatus
}
hwRrppRingGroupID OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"index of the RRPP ring group,
which ranges from 1~16.
This value can't be modified after created"
::= { hwRrppRingGroupEntry 1 }
hwRrppRingGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status in the ring group configuration table.
hwRrppRingGroupID must be specified to create a row."
::= { hwRrppRingGroupEntry 2 }
hwRrppRingGroupMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppRingGroupMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about the configurations and status of an RRPP ring."
::= { hwRrppTables 6 }
hwRrppRingGroupMemberEntry OBJECT-TYPE
SYNTAX HwRrppRingGroupMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information about a specified RRPP ring group."
INDEX { hwRrppRingGroupID, hwRrppRingGroupMemberDomainID, hwRrppRingGroupMemberRingID }
::= { hwRrppRingGroupMemberTable 1 }
HwRrppRingGroupMemberEntry ::=
SEQUENCE {
hwRrppRingGroupMemberDomainID
Integer32,
hwRrppRingGroupMemberRingID
Integer32,
hwRrppRingGroupIsEdgeHelloProcess
EnabledStatus,
hwRrppRingGroupMemberRowStatus
RowStatus
}
hwRrppRingGroupMemberDomainID OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index, namely, domain ID of the members of a ring group, which ranges from 1 to 8.
This value cannot be modified after created"
::= { hwRrppRingGroupMemberEntry 1 }
hwRrppRingGroupMemberRingID OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index, namely, ring ID of the members of a ring group, which ranges from 1 to 64.
This value cannot be modified after created."
::= { hwRrppRingGroupMemberEntry 2 }
hwRrppRingGroupIsEdgeHelloProcess OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Flag carried in the sent edge-Hello Packet.
This value can be modified after created."
::= { hwRrppRingGroupMemberEntry 3 }
hwRrppRingGroupMemberRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status in the ring group configuration table.
hwRrppRingGroupMemberDomainID, hwRrppRingGroupMemberRingID,
and hwRrppRingGroupIsEdgeHelloSender must be specified to create a row."
::= { hwRrppRingGroupMemberEntry 4 }
hwRrppSnoopingTable OBJECT IDENTIFIER ::= { hwRrpp 3 }
hwRrppSnoopingInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppSnoopingInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about RRPP snooping enable interface."
::= { hwRrppSnoopingTable 1 }
hwRrppSnoopingInterfaceEntry OBJECT-TYPE
SYNTAX HwRrppSnoopingInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information of a specified RRPP snooping enable interface."
INDEX { hwRrppSnoopingInterfaceId }
::= { hwRrppSnoopingInterfaceTable 1 }
HwRrppSnoopingInterfaceEntry ::=
SEQUENCE {
hwRrppSnoopingInterfaceId
InterfaceIndex,
hwRrppSnoopingVsiName
OCTET STRING,
hwRrppSnoopingVlanId
VlanId,
hwRrppSnoopingEnableStatus
EnabledStatus,
hwRrppSnoopingRowStatus
RowStatus
}
hwRrppSnoopingInterfaceId OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical index of the interface index."
::= { hwRrppSnoopingInterfaceEntry 1 }
hwRrppSnoopingVsiName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of VSI which the interface was binding to."
::= { hwRrppSnoopingInterfaceEntry 2 }
hwRrppSnoopingVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN which the intertace added to."
::= { hwRrppSnoopingInterfaceEntry 3 }
hwRrppSnoopingEnableStatus OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicating whether the RRPP snooping is enabled on this switch."
::= { hwRrppSnoopingInterfaceEntry 4 }
hwRrppSnoopingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation."
::= { hwRrppSnoopingInterfaceEntry 5 }
hwRrppSnoopingVsiTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRrppSnoopingVsiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about RRPP snooping relating interface."
::= { hwRrppSnoopingTable 2 }
hwRrppSnoopingVsiEntry OBJECT-TYPE
SYNTAX HwRrppSnoopingVsiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed information of a specified RRPP snooping relating interface."
INDEX { hwRrppSnoopingVsiInterfaceId, hwVsiName}
::= { hwRrppSnoopingVsiTable 1 }
HwRrppSnoopingVsiEntry ::=
SEQUENCE {
hwRrppSnoopingVsiInterfaceId
InterfaceIndex,
hwVsiName
OCTET STRING,
hwRrppSnoopingVsiRowStatus
RowStatus
}
hwRrppSnoopingVsiInterfaceId OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical index of the interface index."
::= { hwRrppSnoopingVsiEntry 1 }
hwVsiName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of VSI."
::= { hwRrppSnoopingVsiEntry 2 }
hwRrppSnoopingVsiRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation."
::= { hwRrppSnoopingVsiEntry 3 }
hwRrppNotifications OBJECT IDENTIFIER ::= { hwRrpp 4 }
hwRrppRingRecover NOTIFICATION-TYPE
OBJECTS { hwRrppRingState }
STATUS current
DESCRIPTION
"Trap message is generated by master-node on
the ring when the ring recovers from fault."
::= { hwRrppNotifications 1 }
hwRrppRingFail NOTIFICATION-TYPE
OBJECTS { hwRrppRingState }
STATUS current
DESCRIPTION
"Trap message is generated by master-node on
the ring when the ring fails."
::= { hwRrppNotifications 2 }
hwRrppMultiMaster NOTIFICATION-TYPE
OBJECTS { hwRrppRingNodeMode }
STATUS current
DESCRIPTION
"Trap message is generated by master-node when
it detects there are more than one master-node
on the ring."
::= { hwRrppNotifications 3 }
hwRrppTrackInterfaceDown NOTIFICATION-TYPE
OBJECTS { hwRrppTrackRowStatus }
STATUS current
DESCRIPTION
"Trap message is generated by RRPP node when
the track interface tracked BFD down."
::= { hwRrppNotifications 4 }
hwRrppTrackInterfaceUp NOTIFICATION-TYPE
OBJECTS { hwRrppTrackRowStatus }
STATUS current
DESCRIPTION
"Trap message is generated by RRPP node when
the track interface tracked BFD up."
::= { hwRrppNotifications 5 }
hwRrppMibGroup OBJECT IDENTIFIER ::= { hwRrpp 5 }
hwRrppGlobalGroup OBJECT-GROUP
OBJECTS { hwRrppEnableStatus, hwRrppLinkupDelayTime }
STATUS current
DESCRIPTION
"The RRPP global group."
::= { hwRrppMibGroup 1 }
hwRrppDomainGroup OBJECT-GROUP
OBJECTS { hwRrppDomainControlVlanID,hwRrppDomainHelloTime, hwRrppDomainFailTime, hwRrppDomainRowStatus,hwRrppDomainResetStatistics, hwRrppMulSubRingProtection, hwRrppDomainProtectedVlan }
STATUS current
DESCRIPTION
"The RRPP domain group."
::= { hwRrppMibGroup 2 }
hwRrppRingGroup OBJECT-GROUP
OBJECTS { hwRrppRingEnableStatus, hwRrppRingActive, hwRrppRingState, hwRrppRingNodeMode, hwRrppRingPrimaryPort,
hwRrppRingSecondaryPort, hwRrppRingLevel, hwRrppRingRowStatus,hwRrppRingResetStatistics }
STATUS current
DESCRIPTION
"The RRPP ring group."
::= { hwRrppMibGroup 3 }
hwRrppPortGroup OBJECT-GROUP
OBJECTS { hwRrppPortType, hwRrppPortRole, hwRrppPortState, hwRrppPortRXError, hwRrppPortRXHello,
hwRrppPortRXLinkUp, hwRrppPortRXLinkDown, hwRrppPortRXCommonFlush, hwRrppPortRXCompleteFlush, hwRrppPortRXEdgeHello,
hwRrppPortRXMajorFault, hwRrppPortTXError, hwRrppPortTXHello, hwRrppPortTXLinkUp, hwRrppPortTXLinkDown,
hwRrppPortTXCommonFlush, hwRrppPortTXCompleteFlush, hwRrppPortTXEdgeHello, hwRrppPortTXMajorFault }
STATUS current
DESCRIPTION
"The RRPP port group."
::= { hwRrppMibGroup 4 }
hwRrppTrackInterfaceGroup OBJECT-GROUP
OBJECTS { hwRrppTrackRowStatus }
STATUS current
DESCRIPTION
"The RRPP Track Interface group."
::= { hwRrppMibGroup 5 }
hwRrppRingGroupGroup OBJECT-GROUP
OBJECTS {hwRrppRingGroupRowStatus }
STATUS current
DESCRIPTION
"The RRPP RingGroup group."
::= { hwRrppMibGroup 6 }
hwRrppRingGroupMemberGroup OBJECT-GROUP
OBJECTS {hwRrppRingGroupIsEdgeHelloProcess,hwRrppRingGroupMemberRowStatus }
STATUS current
DESCRIPTION
"The RRPP RingGroupMember group."
::= { hwRrppMibGroup 7 }
hwRrppSnoopingInterfaceGroup OBJECT-GROUP
OBJECTS { hwRrppSnoopingVsiName, hwRrppSnoopingVlanId, hwRrppSnoopingEnableStatus, hwRrppSnoopingRowStatus }
STATUS current
DESCRIPTION
"The RRPP Snooping enable Interface group."
::= { hwRrppMibGroup 8 }
hwRrppSnoopingVsiGroup OBJECT-GROUP
OBJECTS { hwRrppSnoopingVsiRowStatus }
STATUS current
DESCRIPTION
"The RRPP Snooping associate vsi group."
::= { hwRrppMibGroup 9 }
hwRrppNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwRrppRingRecover, hwRrppRingFail, hwRrppMultiMaster, hwRrppTrackInterfaceDown, hwRrppTrackInterfaceUp}
STATUS current
DESCRIPTION
"The notification group."
::= { hwRrppMibGroup 10 }
END
|