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
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
|
-- =================================================================
-- Copyright (c) 2004-2015 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: RPR private MIB. Description of entity extend properties for
-- IEEE-802DOT17-RPR-MIB
-- Reference: IEEE-802DOT17-RPR-MIB
-- Version: V1.2
-- History:
-- V1.0 created by qinxia
-- V1.1 modified by hexuefei,Add the RPR packet drop counters table.
-- V1.2 2015-04-30 Bug fixed by songhao
-- =================================================================
HH3C-RPR-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
rprTopoImageEntry, rprTopoImageMacAddress, rprTopoImageInetAddress
FROM IEEE-802DOT17-RPR-MIB
InterfaceIndex
FROM IF-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
RowStatus, TruthValue, MacAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Gauge32, Counter64, Integer32
FROM SNMPv2-SMI
InetAddress
FROM INET-ADDRESS-MIB;
hh3cRpr MODULE-IDENTITY
LAST-UPDATED "200503161000Z" -- March 16, 2005 at 10:18:41 GMT
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"This MIB manages RPR(Resilient Packet Ring)interfaces by
providing an operational table which controls parameters
of each RPR interface and reports alarm conditions.
A RPR ring is composed of two fiber rings: Outer and Inner."
REVISION "200503161000Z" -- March 16, 2005 at 10:18:41 GMT
DESCRIPTION
"First published version."
::= { hh3cCommon 60 }
--
-- Textual conventions
--
Hh3cRprRingletID ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the path on which data flow is selected.
The valid value is ringlet0 and ringlet1. They indicate
two RPR fiber rings. Ringlet0 refers to outer ring and
ringlet1 refers to inner ring."
REFERENCE
"IEEE 802.17 V3.3 Subclause 11.2.1.1 Span and
ringlet parameterization."
SYNTAX INTEGER
{
ringlet0(1),
ringlet1(2)
}
Hh3cRprServiceClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the service class of RPR.
The valid value is ClassC, ClassB, ClassA1 and ClassA0."
REFERENCE
"IEEE 802.17 V3.3 Subclause 7.3 Service class."
SYNTAX INTEGER
{
classC(1),
classB(2),
classA1(3),
classA0(4)
}
hh3cRprObjects OBJECT IDENTIFIER ::= { hh3cRpr 1 }
-- RPR maximum define table
hh3cRprMaxmumDefine OBJECT IDENTIFIER ::= { hh3cRprObjects 1 }
hh3cRprMaxmumDefineTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprMaxmumDefineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the specs of RPR ring."
::= { hh3cRprMaxmumDefine 1 }
hh3cRprMaxmumDefineEntry OBJECT-TYPE
SYNTAX Hh3cRprMaxmumDefineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of RPR Maximum Table."
INDEX { hh3cRprMaxMumIfIndex }
::= { hh3cRprMaxmumDefineTable 1 }
Hh3cRprMaxmumDefineEntry ::=
SEQUENCE {
hh3cRprMaxMumIfIndex
InterfaceIndex,
hh3cRprMaxStationNumDefine
INTEGER,
hh3cRprMaxReservedRateDefine
Gauge32
}
hh3cRprMaxMumIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of this RPR interface."
::= { hh3cRprMaxmumDefineEntry 1 }
hh3cRprMaxStationNumDefine OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max station number supported by RPR ring."
::= { hh3cRprMaxmumDefineEntry 2 }
hh3cRprMaxReservedRateDefine OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max reserved rate supported by each RPR ringlet.
An estimate of the interface's current bandwidth in
units of 1,000,000 bits per second. If this object
reports a value of 'n' then the speed of the interface
is somewhere in the range of 'n-500,000' to
'n+499,999'. For interfaces which do not vary in
bandwidth or for those where no accurate estimation
can be made, this object should contain the nominal
bandwidth. For a sub-layer which has no concept of
bandwidth, this object should be zero."
::= { hh3cRprMaxmumDefineEntry 3 }
hh3cRprTopoImage OBJECT IDENTIFIER ::= { hh3cRprObjects 2 }
-- extension to the RPR topology table
hh3cRprTopoImageXTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprTopoImageXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains additional objects
for the rprTopoImageTable in IEEE-802DOT17-RPR-MIB."
REFERENCE
"rprTopoImageTable in IEEE-802DOT17-RPR-MIB."
::= { hh3cRprTopoImage 1 }
hh3cRprTopoImageXEntry OBJECT-TYPE
SYNTAX Hh3cRprTopoImageXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information specific to a particular
station on the ring. The table has at least one entry for
the station itself, this entry indicates zero hops on each
ringlet."
AUGMENTS { rprTopoImageEntry }
::= { hh3cRprTopoImageXTable 1 }
Hh3cRprTopoImageXEntry ::=
SEQUENCE {
hh3cRprTopoImageXWestEdgeStatus
TruthValue,
hh3cRprTopoImageXEastEdgeStatus
TruthValue,
hh3cRprTopoImageXStationName
SnmpAdminString
}
hh3cRprTopoImageXWestEdgeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current edge status of the west span.
If an edge exists,the hh3cRprTopoImageXWestEdgeStatus is true.
Otherwise, the hh3cRprTopoImageXWestEdgeStatus is false."
REFERENCE
"IEEE 802.17 V3.3 Subclause 11.1.1.5, Edges"
::= { hh3cRprTopoImageXEntry 3 }
hh3cRprTopoImageXEastEdgeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current edge status of the east span.
If an edge exists, the hh3cRprTopoImageXEastEdgeStatus is true.
Otherwise, the hh3cRprTopoImageXEastEdgeStatus is false."
REFERENCE
"IEEE 802.17 V3.3 Subclause 11.1.1.5, Edges"
::= { hh3cRprTopoImageXEntry 4 }
hh3cRprTopoImageXStationName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The operator assigned station name. The operator can assigned it
by hh3cRprTopoImageXStationName."
REFERENCE
"IEEE 802.17 V3.3 Subclause 11.2.6, stationName."
::= { hh3cRprTopoImageXEntry 5 }
hh3cRprSpanCounters OBJECT IDENTIFIER ::= { hh3cRprObjects 3 }
-- RPR source mac counters table
hh3cRprSrcMacCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprSrcMacCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Source Mac Count Table contains the cumulative sum
of frames and octects from the particular source station."
::= { hh3cRprSpanCounters 1 }
hh3cRprSrcMacCountEntry OBJECT-TYPE
SYNTAX Hh3cRprSrcMacCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Source Mac Count Table."
INDEX { hh3cRprSrcMacCountIfIndex, hh3cRprSrcMacCountBySrcAddress }
::= { hh3cRprSrcMacCountTable 1 }
Hh3cRprSrcMacCountEntry ::=
SEQUENCE {
hh3cRprSrcMacCountIfIndex
InterfaceIndex,
hh3cRprSrcMacCountBySrcAddress
MacAddress,
hh3cRprSrcMacCountReceivedFrames
Counter64,
hh3cRprSrcMacCountReceivedOctets
Counter64
}
hh3cRprSrcMacCountIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of this RPR interface."
REFERENCE
"RFC 2863, ifIndex."
::= { hh3cRprSrcMacCountEntry 1 }
hh3cRprSrcMacCountBySrcAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MAC address of the source station where the frames come from."
::= { hh3cRprSrcMacCountEntry 2 }
hh3cRprSrcMacCountReceivedFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frames received from a particular MAC address of source station."
::= { hh3cRprSrcMacCountEntry 3 }
hh3cRprSrcMacCountReceivedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Octets received from a particular MAC address of source station."
::= { hh3cRprSrcMacCountEntry 4 }
-- RPR destination mac counters table
hh3cRprDestMacCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprDestMacCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Destination MAC Count Table contains the cumulative sum
of frames and octects to the particular destination station."
::= { hh3cRprSpanCounters 2 }
hh3cRprDestMacCountEntry OBJECT-TYPE
SYNTAX Hh3cRprDestMacCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR MAC Destination Count Table."
INDEX { hh3cRprDestMacCountIfIndex, hh3cRprDestMacCountByDestAddress }
::= { hh3cRprDestMacCountTable 1 }
Hh3cRprDestMacCountEntry ::=
SEQUENCE {
hh3cRprDestMacCountIfIndex
InterfaceIndex,
hh3cRprDestMacCountByDestAddress
MacAddress,
hh3cRprDestMacCountReceivedFrames
Counter64,
hh3cRprDestMacCountReceivedOctets
Counter64
}
hh3cRprDestMacCountIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprDestMacCountEntry 1 }
hh3cRprDestMacCountByDestAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MAC address of the destination station where the frames are sent
to."
::= { hh3cRprDestMacCountEntry 2 }
hh3cRprDestMacCountReceivedFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frames sent to a particular MAC address of destination station."
::= { hh3cRprDestMacCountEntry 3 }
hh3cRprDestMacCountReceivedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Octets sent to a particular MAC address of destination station."
::= { hh3cRprDestMacCountEntry 4 }
-- RPR packet drop counters table
hh3cRprPktDropCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprPktDropCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Packet Drop Count Table contains the cumulative sum
of packets dropped for congestion."
::= { hh3cRprSpanCounters 3 }
hh3cRprPktDropCountEntry OBJECT-TYPE
SYNTAX Hh3cRprPktDropCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Packet Drop Count Table."
INDEX { hh3cRprPktDropCntIfIndex, hh3cRprPktDropCntRingletID }
::= { hh3cRprPktDropCountTable 1 }
Hh3cRprPktDropCountEntry ::=
SEQUENCE {
hh3cRprPktDropCntIfIndex
InterfaceIndex,
hh3cRprPktDropCntRingletID
Hh3cRprRingletID,
hh3cRprDownFlowClassAPktDrops
Counter64,
hh3cRprUpFlowClassAPktDrops
Counter64,
hh3cRprDownFlowClassBPktDrops
Counter64,
hh3cRprUpFlowClassBPktDrops
Counter64,
hh3cRprDownFlowClassCPktDrops
Counter64,
hh3cRprUpFlowClassCPktDrops
Counter64
}
hh3cRprPktDropCntIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of this RPR interface."
REFERENCE
"RFC 2863, ifIndex."
::= { hh3cRprPktDropCountEntry 1 }
hh3cRprPktDropCntRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Ringlet of the station through which the packets transmit."
::= { hh3cRprPktDropCountEntry 2 }
hh3cRprDownFlowClassAPktDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total dropped number of Class A packets which transmit
down from the host."
::= { hh3cRprPktDropCountEntry 3 }
hh3cRprUpFlowClassAPktDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total dropped number of Class A packets which transmit
up to the host."
::= { hh3cRprPktDropCountEntry 4 }
hh3cRprDownFlowClassBPktDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total dropped number of Class B packets which transmit
down from the host."
::= { hh3cRprPktDropCountEntry 5 }
hh3cRprUpFlowClassBPktDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total dropped number of Class B packets which transmit
up to the host."
::= { hh3cRprPktDropCountEntry 6 }
hh3cRprDownFlowClassCPktDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total dropped number of Class C packets which transmit
down from the host."
::= { hh3cRprPktDropCountEntry 7 }
hh3cRprUpFlowClassCPktDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total dropped number of Class C packets which transmit
up to the host."
::= { hh3cRprPktDropCountEntry 8 }
hh3cRprRS OBJECT IDENTIFIER ::= { hh3cRprObjects 4 }
-- The RPR static ring selection table
hh3cRprStaticRSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprStaticRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Static Ring Selection table contains the static
ring selection information by the way of configuration."
::= { hh3cRprRS 1 }
hh3cRprStaticRSEntry OBJECT-TYPE
SYNTAX Hh3cRprStaticRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Static Ring Selection table."
INDEX { hh3cRprStaticRSIfIndex, hh3cRprStaticRSMacAddress }
::= { hh3cRprStaticRSTable 1 }
Hh3cRprStaticRSEntry ::=
SEQUENCE {
hh3cRprStaticRSIfIndex
InterfaceIndex,
hh3cRprStaticRSMacAddress
MacAddress,
hh3cRprStaticRSRingletID
Hh3cRprRingletID,
hh3cRprStaticRSTtl
INTEGER,
hh3cRprStaticRSValid
TruthValue,
hh3cRprStaticRSRowStatus
RowStatus
}
hh3cRprStaticRSIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprStaticRSEntry 1 }
hh3cRprStaticRSMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address of the station on the ring."
::= { hh3cRprStaticRSEntry 2 }
hh3cRprStaticRSRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The identifier of the ring which frames are sent
from one station to another. Ringlet0 refers to outer ring,
while ringlet1 does inner."
::= { hh3cRprStaticRSEntry 3 }
hh3cRprStaticRSTtl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from source station to destination station by the
selected ringlet."
::= { hh3cRprStaticRSEntry 4 }
hh3cRprStaticRSValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The flag identify whether the configed ringlet is valid.
If it is true, the configed ringlet is valid, otherwise
it's invalid."
::= { hh3cRprStaticRSEntry 5 }
hh3cRprStaticRSRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry.
The status includes createAndGo, active and destroy."
::= { hh3cRprStaticRSEntry 6 }
-- The RPR Ipv4 dynamic ring selection table
hh3cRprIpv4DynamicRSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprIpv4DynamicRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Ipv4Dynamic Ring Selection Table that contains the
dynamic ring selection information by shortest path."
::= { hh3cRprRS 2 }
hh3cRprIpv4DynamicRSEntry OBJECT-TYPE
SYNTAX Hh3cRprIpv4DynamicRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Ipv4Dynamic Ring Selection Table."
INDEX { hh3cRprIpv4DynamicRSIfIndex, hh3cRprIpv4DynamicRSMacAddress }
::= { hh3cRprIpv4DynamicRSTable 1 }
Hh3cRprIpv4DynamicRSEntry ::=
SEQUENCE {
hh3cRprIpv4DynamicRSIfIndex
InterfaceIndex,
hh3cRprIpv4DynamicRSMacAddress
MacAddress,
hh3cRprIpv4DynamicRSRingletID
Hh3cRprRingletID,
hh3cRprIpv4DynamicRSTtl
INTEGER
}
hh3cRprIpv4DynamicRSIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprIpv4DynamicRSEntry 1 }
hh3cRprIpv4DynamicRSMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv4 MAC address of destination station on the ring."
::= { hh3cRprIpv4DynamicRSEntry 2 }
hh3cRprIpv4DynamicRSRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the ring which frames are sent
from the source station to the destination station."
::= { hh3cRprIpv4DynamicRSEntry 3 }
hh3cRprIpv4DynamicRSTtl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from source station to destination station by the
selected ringlet."
::= { hh3cRprIpv4DynamicRSEntry 4 }
-- The RPR Ipv6 dynamic ring selection table
hh3cRprIpv6DynamicRSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprIpv6DynamicRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Ipv6 Dynamic Ring Selection Table that contains the Ipv6
ring selection information by dynamic ring selection and static
ring selection."
::= { hh3cRprRS 3 }
hh3cRprIpv6DynamicRSEntry OBJECT-TYPE
SYNTAX Hh3cRprIpv6DynamicRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Ipv6 Ring Selection Table."
INDEX { hh3cRprIpv6DynamicRSIfIndex, hh3cRprIpv6DynamicRSMacAddress }
::= { hh3cRprIpv6DynamicRSTable 1 }
Hh3cRprIpv6DynamicRSEntry ::=
SEQUENCE {
hh3cRprIpv6DynamicRSIfIndex
InterfaceIndex,
hh3cRprIpv6DynamicRSMacAddress
MacAddress,
hh3cRprIpv6DynamicRSRingletID
Hh3cRprRingletID,
hh3cRprIpv6DynamicRSTtl
INTEGER
}
hh3cRprIpv6DynamicRSIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprIpv6DynamicRSEntry 1 }
hh3cRprIpv6DynamicRSMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv6 MAC address of the destination station on the ring."
::= { hh3cRprIpv6DynamicRSEntry 2 }
hh3cRprIpv6DynamicRSRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the ring which frames are sent
from the source station to the destination station."
::= { hh3cRprIpv6DynamicRSEntry 3 }
hh3cRprIpv6DynamicRSTtl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from source station to destination station by selected
ringlet."
::= { hh3cRprIpv6DynamicRSEntry 4 }
-- The RPR Ipv4 overall ring selection table
hh3cRprIpv4OverallRSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprIpv4OverallRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Ipv4 Overall Ring Selection Table that contains the
overall and active ring selection infomation by dynamic ring
selection and static ring selection."
::= { hh3cRprRS 4 }
hh3cRprIpv4OverallRSEntry OBJECT-TYPE
SYNTAX Hh3cRprIpv4OverallRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Overall Ring Selection Table."
INDEX { hh3cRprIpv4OverallRSIfIndex, hh3cRprIpv4OverallRSMacAddress }
::= { hh3cRprIpv4OverallRSTable 1 }
Hh3cRprIpv4OverallRSEntry ::=
SEQUENCE {
hh3cRprIpv4OverallRSIfIndex
InterfaceIndex,
hh3cRprIpv4OverallRSMacAddress
MacAddress,
hh3cRprIpv4OverallRSType
INTEGER,
hh3cRprIpv4OverallRSRingletID
Hh3cRprRingletID,
hh3cRprIpv4OverallRSTtl
INTEGER
}
hh3cRprIpv4OverallRSIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprIpv4OverallRSEntry 1 }
hh3cRprIpv4OverallRSMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address of the destination station on the ring."
::= { hh3cRprIpv4OverallRSEntry 2 }
hh3cRprIpv4OverallRSType OBJECT-TYPE
SYNTAX INTEGER {
static(1),
dynamic(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ring selection item type indicates static or dynamic."
::= { hh3cRprIpv4OverallRSEntry 3 }
hh3cRprIpv4OverallRSRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the ring which frames are sent
from the source station to the destination station."
::= { hh3cRprIpv4OverallRSEntry 4 }
hh3cRprIpv4OverallRSTtl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from source station to destination station by
selected ringlet."
::= { hh3cRprIpv4OverallRSEntry 5 }
-- The RPR VRRP ring selection table
hh3cRprVrrpRSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprVrrpRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR VRRP Ring Selection Table that contains the ring
selection information when the vrrp group is configured."
::= { hh3cRprRS 5 }
hh3cRprVrrpRSEntry OBJECT-TYPE
SYNTAX Hh3cRprVrrpRSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR VRRP Ring Selection Table."
INDEX { hh3cRprVrrpRSIfIndex, hh3cRprVrrpRSVirtualMacAddress }
::= { hh3cRprVrrpRSTable 1 }
Hh3cRprVrrpRSEntry ::=
SEQUENCE {
hh3cRprVrrpRSIfIndex
InterfaceIndex,
hh3cRprVrrpRSVirtualMacAddress
MacAddress,
hh3cRprVrrpRSMacAddress
MacAddress,
hh3cRprVrrpRSRingletID
Hh3cRprRingletID,
hh3cRprVrrpRSTtl
INTEGER
}
hh3cRprVrrpRSIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprVrrpRSEntry 1 }
hh3cRprVrrpRSVirtualMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The virtual MAC address of the staion in VRRP group."
::= { hh3cRprVrrpRSEntry 2 }
hh3cRprVrrpRSMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the station that is the master in VRRP group."
::= { hh3cRprVrrpRSEntry 3 }
hh3cRprVrrpRSRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the ring which frames are sent
from the source station to the destination station."
::= { hh3cRprVrrpRSEntry 4 }
hh3cRprVrrpRSTtl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from source station to destination station by
selected ringlet."
::= { hh3cRprVrrpRSEntry 5 }
-- The RPR default ring identifier config Table
hh3cRprDefaultRingIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprDefaultRingIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Default RingID Table specify the default ringID."
::= { hh3cRprRS 6 }
hh3cRprDefaultRingIDEntry OBJECT-TYPE
SYNTAX Hh3cRprDefaultRingIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Default RingID Table."
INDEX { hh3cRprDefaultRingIDIfIndex }
::= { hh3cRprDefaultRingIDTable 1 }
Hh3cRprDefaultRingIDEntry ::=
SEQUENCE {
hh3cRprDefaultRingIDIfIndex
InterfaceIndex,
hh3cRprDefaultConfigRingletID
Hh3cRprRingletID,
hh3cRprDefaultActiveRingID
Hh3cRprRingletID
}
hh3cRprDefaultRingIDIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprDefaultRingIDEntry 1 }
hh3cRprDefaultConfigRingletID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default identifier of the ring configured by user."
::= { hh3cRprDefaultRingIDEntry 2 }
hh3cRprDefaultActiveRingID OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the default ring which is active currently.
The default ring configured by user may be inactive."
::= { hh3cRprDefaultRingIDEntry 3 }
-- The RPR defect report table
hh3cRprDefect OBJECT IDENTIFIER ::= { hh3cRprObjects 5 }
hh3cRprDefectReportTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprDefectReportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Defect Report Table that contains the trap information on
the ring."
::= { hh3cRprDefect 1 }
hh3cRprDefectReportEntry OBJECT-TYPE
SYNTAX Hh3cRprDefectReportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Defect Report Table."
INDEX { hh3cRprDefectIfIndex }
::= { hh3cRprDefectReportTable 1 }
Hh3cRprDefectReportEntry ::=
SEQUENCE {
hh3cRprDefectIfIndex
InterfaceIndex,
hh3cRprDefectCurrentStatus
BITS
}
hh3cRprDefectIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprDefectReportEntry 1 }
hh3cRprDefectCurrentStatus OBJECT-TYPE
SYNTAX BITS {
topologyOpenRing(0),
topoInstability(1),
topoInconsistent(2),
dulpMacAddress(3),
dulpIPAddress(4),
lrttDefect(5),
protCfgDefect(6),
jumboCfgDefect(7),
excessReservedRateDefect(8),
excessMaxStationNum(9),
miscabling(10),
backPressure(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of RPR ring.
This attribute is used to notify the management system that
alarms generate or clear about some RPR ring."
REFERENCE
"IEEE 802.17 V3.3 Subclause 11.2.9."
::= { hh3cRprDefectReportEntry 2 }
-- The priority to RPR service class map table
hh3cRprPriorityMap OBJECT IDENTIFIER ::= { hh3cRprObjects 6 }
hh3cRprPriority2ClassMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprPriority2ClassMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Table is for Class Of Service and RPR Service Class Mapping."
::= { hh3cRprPriorityMap 1 }
hh3cRprPriority2ClassMapEntry OBJECT-TYPE
SYNTAX Hh3cRprPriority2ClassMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the COS to Service Class Map Table."
INDEX { hh3cRprPriority2ClassMapIfIndex,
hh3cRprPriority2ClassMapType,
hh3cRprPriorityValue
}
::= { hh3cRprPriority2ClassMapTable 1 }
Hh3cRprPriority2ClassMapEntry ::=
SEQUENCE {
hh3cRprPriority2ClassMapIfIndex
InterfaceIndex,
hh3cRprPriority2ClassMapType
INTEGER,
hh3cRprPriorityValue
INTEGER,
hh3cRprPriority2ClassMap
Hh3cRprServiceClass
}
hh3cRprPriority2ClassMapIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprPriority2ClassMapEntry 1 }
hh3cRprPriority2ClassMapType OBJECT-TYPE
SYNTAX INTEGER {
tag(1),
mpls(2),
ip(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of Priority,include tag, mpls, ip."
::= { hh3cRprPriority2ClassMapEntry 2 }
hh3cRprPriorityValue OBJECT-TYPE
SYNTAX INTEGER {
pri0(1),
pri1(2),
pri2(3),
pri3(4),
pri4(5),
pri5(6),
pri6(7),
pri7(8)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The priority of tag,mpls and ip, the value range is 0~7."
::= { hh3cRprPriority2ClassMapEntry 3 }
hh3cRprPriority2ClassMap OBJECT-TYPE
SYNTAX Hh3cRprServiceClass
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The RPR service class."
REFERENCE
"IEEE 802.17 V3.3 Subclause 7.3 Service class."
::= { hh3cRprPriority2ClassMapEntry 4 }
-- The RPR rate-limit config table
hh3cRprRateLimitConfig OBJECT IDENTIFIER ::= { hh3cRprObjects 7 }
hh3cRprRateLimitConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprRateLimitConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Rate Limit Configuration Table that contains the rate
limit infomation of RPR serviec class."
::= { hh3cRprRateLimitConfig 1 }
hh3cRprRateLimitConfigEntry OBJECT-TYPE
SYNTAX Hh3cRprRateLimitConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Rate Limit Configuration Table."
INDEX { hh3cRprRateLimitConfigIfIndex,
hh3cRprRateLimitConfigRingletId,
hh3cRprRateLimitConfigServiceClass
}
::= { hh3cRprRateLimitConfigTable 1 }
Hh3cRprRateLimitConfigEntry ::=
SEQUENCE {
hh3cRprRateLimitConfigIfIndex
InterfaceIndex,
hh3cRprRateLimitConfigRingletId
Hh3cRprRingletID,
hh3cRprRateLimitConfigServiceClass
Hh3cRprServiceClass,
hh3cRprRateLimitConfigValue
Integer32
}
hh3cRprRateLimitConfigIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprRateLimitConfigEntry 1 }
hh3cRprRateLimitConfigRingletId OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The identifier of the ring of RPR ringlet."
::= { hh3cRprRateLimitConfigEntry 2 }
hh3cRprRateLimitConfigServiceClass OBJECT-TYPE
SYNTAX Hh3cRprServiceClass
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR service class."
REFERENCE
"IEEE 802.17 V3.3 Subclause 7.3 Service class."
::= { hh3cRprRateLimitConfigEntry 3 }
hh3cRprRateLimitConfigValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of rate-limit that configured for diffrent service class.
The unit is permillage."
::= { hh3cRprRateLimitConfigEntry 4 }
-- The RPR mac address learning config table
hh3cRprMacAddrLearn OBJECT IDENTIFIER ::= { hh3cRprObjects 8 }
hh3cRprMacLearnCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprMacLearnCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR MAC Address Table."
::= { hh3cRprMacAddrLearn 1 }
hh3cRprMacLearnCfgEntry OBJECT-TYPE
SYNTAX Hh3cRprMacLearnCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of RPR MAC Address Table."
INDEX { hh3cRprMacLearnIfIndex, hh3cRprMacLearnRprMac }
::= { hh3cRprMacLearnCfgTable 1 }
Hh3cRprMacLearnCfgEntry ::=
SEQUENCE {
hh3cRprMacLearnIfIndex
InterfaceIndex,
hh3cRprMacLearnRprMac
MacAddress,
hh3cRprMacLearnType
INTEGER,
hh3cRprMacLearnDestMac
MacAddress,
hh3cRprMacLearnVlanId
Integer32,
hh3cRprMacLearnRinglet
Hh3cRprRingletID,
hh3cRprMacLearnTtl
INTEGER,
hh3cRprMacLearnIsValid
TruthValue,
hh3cRprMacLearnRowStatus
RowStatus
}
hh3cRprMacLearnIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of RPR interface."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprMacLearnCfgEntry 1 }
hh3cRprMacLearnRprMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address of the RPR station."
::= { hh3cRprMacLearnCfgEntry 2 }
hh3cRprMacLearnType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of MAC address item that the user built. The type
includes static and dynamic."
::= { hh3cRprMacLearnCfgEntry 3 }
hh3cRprMacLearnDestMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination of MAC address."
::= { hh3cRprMacLearnCfgEntry 4 }
hh3cRprMacLearnVlanId OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The vlan ID that the MAC address learned from by RPR staion."
::= { hh3cRprMacLearnCfgEntry 5 }
hh3cRprMacLearnRinglet OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The identifier of the ring which frames are sent
from the source station to the destination station."
::= { hh3cRprMacLearnCfgEntry 6 }
hh3cRprMacLearnTtl OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from source station to destination station on the
selected ringlet."
::= { hh3cRprMacLearnCfgEntry 7 }
hh3cRprMacLearnIsValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The flag identify whether the configured mac address is valid.
If it is true, the configured mac address is valid,
otherwise it's invalid."
::= { hh3cRprMacLearnCfgEntry 8 }
hh3cRprMacLearnRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry.
The status includes createAndGo, active and destroy."
::= { hh3cRprMacLearnCfgEntry 9 }
-- The RPR table for trap
hh3cRprTrapVar OBJECT IDENTIFIER ::= { hh3cRprObjects 9 }
hh3cRprTrapVarTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRprTrapVarEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPR Defect Report Table that contains varible that
used to bind in trap."
::= { hh3cRprTrapVar 1 }
hh3cRprTrapVarEntry OBJECT-TYPE
SYNTAX Hh3cRprTrapVarEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the RPR Trap Var Table."
INDEX { hh3cRprTrapIfIndex }
::= { hh3cRprTrapVarTable 1 }
Hh3cRprTrapVarEntry ::=
SEQUENCE {
hh3cRprTrapIfIndex
InterfaceIndex,
hh3cRprTrapRinglet
Hh3cRprRingletID,
hh3cRprTrapTopoMacAddress
MacAddress,
hh3cRprTrapIpAddress
InetAddress
}
hh3cRprTrapIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The ifIndex of RPR interface. It is only used for trap to bind."
REFERENCE
"RFC 2863, ifIndex"
::= { hh3cRprTrapVarEntry 1 }
hh3cRprTrapRinglet OBJECT-TYPE
SYNTAX Hh3cRprRingletID
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The span of RPR station. It is only used for trap to bind."
::= { hh3cRprTrapVarEntry 2 }
hh3cRprTrapTopoMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The MAC address of RPR station. It is only used for trap to bind."
::= { hh3cRprTrapVarEntry 3 }
hh3cRprTrapIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP address of RPR station. It is only used for trap to bind."
::= { hh3cRprTrapVarEntry 4 }
-- The RPR Traps
hh3cRprTrap OBJECT IDENTIFIER ::= { hh3cRprObjects 10 }
hh3cRprTopologyOpenRing NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapRinglet }
STATUS current
DESCRIPTION
"The topology openRing trap indicates that the RPR ring is opened."
REFERENCE
"IEEE 802.17 Subclause 3.2.77 open ring."
::= { hh3cRprTrap 1 }
hh3cRprTopologyCloseRing NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapRinglet }
STATUS current
DESCRIPTION
"The topology openRing trap indicates that the RPR ring is closed."
REFERENCE
"IEEE 802.17 Subclause 3.2.77 close ring."
::= { hh3cRprTrap 2 }
hh3cRprTopologyInconsistent NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex }
STATUS current
DESCRIPTION
"The topology inconsistent trap indicates that the topology of
RPR is inconsistent."
REFERENCE
"IEEE 802.17 Subclause 11.6.6.1 topology consistency."
::= { hh3cRprTrap 3 }
hh3cRprTopologyInstability NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex }
STATUS current
DESCRIPTION
"The topology instability trap indicates that the topology of
RPR is instability."
::= { hh3cRprTrap 4 }
hh3cRprDuplicateMacAddress NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapTopoMacAddress}
STATUS current
DESCRIPTION
"The duplicate MAC address trap indicates that the mac address
of the station on the ring is dulplicate. That means there is the
same MAC address between two stations on the ring."
::= { hh3cRprTrap 5 }
hh3cRprDulplicateIPAddress NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapIpAddress }
STATUS current
DESCRIPTION
"The dulplicate IP address trap indicates that the IP address of
the station on the ring is dulplicate. That means there is the same
IP address between two stations on the ring."
::= { hh3cRprTrap 6 }
hh3cRprIncompleteLRTT NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex }
STATUS current
DESCRIPTION
"The incomplete LRTT trap indicates that LRTT is not completed."
::= { hh3cRprTrap 7 }
hh3cRprProtecConfigInconsistent NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex }
STATUS current
DESCRIPTION
"The protection configuration inconsistent trap indicates that
the configuration of protection mode on the ring is inconsistent.
That is one station is configured steer mode while the other is
configured wrap mode."
::= { hh3cRprTrap 8 }
hh3cRprJumboConfigInconsistent NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex }
STATUS current
DESCRIPTION
"The jumbo configuration inconsistent trap indicates that the
configuration of jumbo mode on the ring is inconsistent.
That is one station supports jumbo frame while the other
doesn't support jumbo frame."
::= { hh3cRprTrap 9 }
hh3cRprExceedMaxReservRate NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapRinglet }
STATUS current
DESCRIPTION
"The exceeded max reserved rate trap indicates that the rate
on the ringlet exceeded the max reserved rate. The operator can
configure reserved rate for every station, but the sum of all
stations' reserved rate of each RPR ringlet can't exceed maximum."
::= { hh3cRprTrap 10 }
hh3cRprExceedMaxStationNum NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex }
STATUS current
DESCRIPTION
"The exceeded max station number trap indicates that the number
of the stations on the ring exceeded the max station number."
::= { hh3cRprTrap 11 }
hh3cRprMiscabling NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapRinglet }
STATUS current
DESCRIPTION
"The miscabling trap indicates that the miscabling event occurred."
REFERENCE
"IEEE 802.17 V3.0 Subclause 11.9.2.1 miscabling defect."
::= { hh3cRprTrap 12 }
hh3cRprBackPressure NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapRinglet, hh3cRprPriority2ClassMap}
STATUS current
DESCRIPTION
"The back pressure trap indicates that the backpressure is generated
on the ringlet. That is the data flow on the ringlet exceeded
the range of rate-limit configured."
::= { hh3cRprTrap 13 }
hh3cRprBackPressureOver NOTIFICATION-TYPE
OBJECTS { hh3cRprTrapIfIndex, hh3cRprTrapRinglet, hh3cRprPriority2ClassMap }
STATUS current
DESCRIPTION
"The back pressure over trap indicates that the backpressure is
disappeared on the ringlet."
::= { hh3cRprTrap 14 }
END
|