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
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
|
-- ==================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
-- Description: This MIB is used for defining the HUAWEI private
-- extended Multiprotocol Label Switching (MPLS) MIB
-- object. All MIB objects are used to describe private
-- managed objects and trap definitions for MPLS.
-- Reference:
-- Version: V2.46
-- History:
-- V2.45 Siju Samuel, 2017-4-25, modify for hwMplsTunnelDelegationReturn/hwMplsTunnelDelegationReturnClear alarm
-- V2.44 jiangweisheng, 2017-3-4, modify for hwMplsLspBfdDown/hwMplsLspBfdDownClear add te keyword in the name
-- V2.43 zhangka, 2016-12-13, modify for hwMplsLspBfdDown/hwMplsLspBfdDownClear
-- V2.42 chujianping, 2016-06-13, modify for hwMplsTunnelBfdPathMismatch/hwMplsTunnelBfdPathMismatchClear bind VB
-- V2.41 liujialei, 2016-01-11, delete for type BITS
-- V2.40 zhangtan, 2016-01-06, modify for hwMplsTunnelBfdPathMismatch/hwMplsTunnelBfdPathMismatchClear
-- V2.39 zhangtan, 2015-09-08, modify for hwMplsTunnelHotstandbySwitch/hwMplsTunnelHotstandbyResume
-- V2.38 zhangtan, 2015-04-11, modify for hwMplsResourceType
-- V2.37 xuejianguo, 2015-03-31, add for hwMplsTunnelStatisticsTable
-- V2.36 zhangtan, 2015-03-19, modify for hwMplsResourceType
-- V2.35 wangbin, 2015-01-22, modify for hwMplsIngressLsrId, hwMplsEgressLsrId
-- V2.34 wangbin, 2015-01-12, modify for TE OPT
-- V2.33 zhangtan, 2014-11-21, modify for mpls te commit
-- V2.32 wangbin, 2014-11-14, modify for BiStatic Lsp LoopBack
-- V2.31 wangxinhai, 2014-11-06, modify for hwMplsResourceType
-- V2.30 hanyeting, 2014-08-12, modify for hwMplsResourceType
-- V2.29 zhangka, 2014-07-21, modify for private network bgp lsp threshold trap
-- V2.28 longyong, 2014-06-16, add for hwMplsResourceThresholdExceed, hwMplsResourceThresholdExceedClear, hwMplsResourceTotalCountExceed, hwMplsResourceTotalCountExceedClear
-- V2.27 denghuan, 2014-02-17, modify for hwStaticLspDownReason add reason for ring invalid
-- V2.26 wangxinhai, 2014-02-07, modify for hwStaticLspDownReason add reason for static lsp configure update
-- V2.25 wangxinhai, 2014-01-27, modify for static LSP/CR-LSP down-reason for tunnel down
-- V2.24 wangxinhai, 2014-01-13, modify for ldp frr/rsvp lsp/total lsp/total cr lsp threshold trap
-- V2.23 zhangaifen, 2013-11-07, modify for bgp lsp threshold trap
-- V2.09 DouZongxin, 2012-09-14, modify for TE last error vb type
-- V2.08 DouZongxin, 2012-08-24, modify for TE last error opt project
-- V2.07 WangHonglei, 2012-07-05, revision
-- ==================================================================
-- ==================================================================
--
-- Variables and types be imported
--
-- ==================================================================
HUAWEI-MPLS-EXTEND-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
ifIndex, ifName
FROM IF-MIB
MplsIndexType
FROM MPLS-LSR-STD-MIB
MplsTunnelIndex, MplsTunnelInstanceIndex, MplsExtendedTunnelId, MplsLsrIdentifier
FROM MPLS-TC-STD-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
Integer32, Unsigned32, Counter32, IpAddress, Counter64, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
mplsTunnelAdminStatus, mplsTunnelOperStatus
FROM MPLS-TE-STD-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB;
-- 1.3.6.1.4.1.2011.5.25.121
hwMplsExtendMib MODULE-IDENTITY
LAST-UPDATED "201708171640Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"This MIB is used for defining the HUAWEI private
extended Multiprotocol Label Switching (MPLS) MIB
object. All MIB objects are used to describe private
managed objects and trap definitions for MPLS."
-- Revision history
REVISION "201708171640Z"
DESCRIPTION "V2.46, modify descroption of three item"
REVISION "201704251600Z"
DESCRIPTION "V2.45, modify for hwMplsTunnelDelegationReturn/hwMplsTunnelDelegationReturnClear alarm."
REVISION "201703041600Z"
DESCRIPTION "V2.44, change alarm name hwMplsLspBfdDown hwMplsLspBfdDownClear to hwMplsTeLspBfdDown hwMplsTeLspBfdDownClear."
REVISION "201612131600Z"
DESCRIPTION "V2.43, add a new alarm, hwMplsLspBfdDown hwMplsLspBfdDownClear."
REVISION "201606131600Z"
DESCRIPTION "V2.42, modify hwMplsTunnelBfdPathMismatch hwMplsTunnelBfdPathMismatchClear bind VB."
REVISION "201601111600Z"
DESCRIPTION "V2.41, delete a type BITS. It is a basic type now."
REVISION "201601061200Z"
DESCRIPTION "V2.40, add a new alarm, hwMplsTunnelBfdPathMismatch hwMplsTunnelBfdPathMismatchClear."
REVISION "201508011200Z"
DESCRIPTION "V2.39, add a new alarm, hwMplsTunnelHotstandbySwitch hwMplsTunnelHotstandbyResume."
REVISION "201504111200Z"
DESCRIPTION "V2.38, modify enum hwMplsResourceType for supporting MPLS CSPF resource total exceed alarm."
REVISION "201503311419Z"
DESCRIPTION "V2.37, add for hwMplsTunnelStatisticsTable."
REVISION "201503191700Z"
DESCRIPTION "V2.36, add enum hwMplsResourceType for supporting MPLS CSPF resource total exceed alarm."
REVISION "201501221916Z"
DESCRIPTION "V2.35, modify hwMplsIngressLsrId hwMplsEgressLsrId."
REVISION "201501122016Z"
DESCRIPTION "V2.34, modify hwMplsTeFrrSwitch."
REVISION "201411211800Z"
DESCRIPTION "V2.33, add hwMplsTunnelCommitLost hwMplsTunnelCommitLostClear."
REVISION "201411141800Z"
DESCRIPTION "V2.32, add hwMplsLspLoopBack hwMplsLspLoopBackClear hwMplsSessionTunnelId hwMplsLocalLspId hwMplsIngressLsrId hwMplsEgressLsrId hwMplsLspName."
REVISION "201411061630Z"
DESCRIPTION "V2.31, add enum ldpTotalLocalAdjacency to hwMplsResourceType for supporting MPLS resource total and threshold exceed alarm."
REVISION "201408121450Z"
DESCRIPTION "V2.30, add enum outSegment and autoPrimaryTunnelIf to hwMplsResourceType for supporting MPLS resource total exceed alarm."
REVISION "201407211427Z"
DESCRIPTION "V2.29, add enum privateNetBgp to hwMplsLspProtocol for supporting private network bgp lsp threshold alarm."
REVISION "201406161417Z"
DESCRIPTION "V2.28, add traps: hwMplsResourceThresholdExceed, hwMplsResourceThresholdExceedClear, hwMplsResourceTotalCountExceed, hwMplsResourceTotalCountExceedClear."
REVISION "201402171905Z"
DESCRIPTION "V2.27, modify hwStaticLspDownReason for add invalid ring reason ."
REVISION "201402071100Z"
DESCRIPTION "V2.26, modify hwStaticLspDownReason for configure update."
REVISION "201401271100Z"
DESCRIPTION "V2.25, modify hwStaticLspDownReason for tunnel dowm."
REVISION "201401131345Z"
DESCRIPTION "V2.24, add enum ldpfrr, rsvp, totalLsp and totalCrLsp to hwMplsLspProtocol for supporting ldp frr, rsvp lsp, total lsp, total cr lsp threshold alarm."
REVISION "201311071745Z"
DESCRIPTION "V2.23, add enum bgp and bgpv6 to hwMplsLspProtocol for supporting bgp and bgp ipv6 lsp threshold alarm."
REVISION "201309111745Z"
DESCRIPTION "V2.22, add table: hwMplsTrafficStatisticsStaticLspTable."
REVISION "201304131652Z"
DESCRIPTION "V2.21, modify hwMplsRingSwitch, hwMplsRingResume."
REVISION "201301141525Z"
DESCRIPTION "V2.20, add the description of hwmplsDynamicLabelThresholdexceed,hwmplsDynamicLabelThresholdexceedClear,hwmplsDynamicLabeltotalcountexceed,hwmplsDynamicLabeltotalcountexceedClear."
REVISION "201207052025Z"
DESCRIPTION "V2.07, modify the description of hwMplsLspTotalCountExceed."
REVISION "201206081405Z"
DESCRIPTION "V2.06, add traps: hwmplslspThresholdexceed, hwmplslspthresholdexceedclear, hwmplslsptotalcountexceed, hwmplslsptotalcountexceedclear."
REVISION "201206051100Z"
DESCRIPTION "V2.05, add traps: hwmplstunneldelete; modify hwmplsoamtunnellock to hwmplsoamlocallock; modify hwmplstunnellockrecovery to hwmplslocallockrecovery."
REVISION "201205091100Z"
DESCRIPTION "V2.05, add traps: from hwMplsRingWestOamLoss to hwMplsRingEastOamUnexpectedMepClear."
REVISION "201205041100Z"
DESCRIPTION "V2.04, add traps: hwMplsoamTunnellock, hwMplsoamTunnellockRecovery."
REVISION "201111291100Z"
DESCRIPTION "V2.03, add traps: hwMplsExtTunnelDown, hwMplsExtTunnelDownClear."
REVISION "201111181100Z"
DESCRIPTION "V2.02, add traps: hwMplsTunnelBBSwitch, hwMplsTunnelBBResume."
REVISION "201110241100Z"
DESCRIPTION "V2.01, add traps: hwMplsTeAutoTunnelDownClear, hwMplsTeAutoTunnelPrimaryDownClear."
REVISION "201107301100Z"
DESCRIPTION "V2.00, delete Defval clause in these nodes: hwMplsTunnelDownReason, hwMplsTunnelLspType."
REVISION "201011231155Z"
DESCRIPTION "V1.02, modified the MIB description."
REVISION "201007131535Z"
DESCRIPTION "V1.01, modified the MIB description."
REVISION "200606301554Z"
DESCRIPTION "V1.00, initial LSPM MIB."
::= { hwDatacomm 121 }
--
-- Node definitions
--
-- 1.3.6.1.4.1.2011.5.25.121.1
hwMplsExtendMibTunnel OBJECT IDENTIFIER ::= { hwMplsExtendMib 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1
hwMplsTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A tunnel needs to be uniquely identified across
an MPLS network. Indexes hwMplsTunnelIndex and
hwMplsTunnelInstance uniquely identify a tunnel
on the LSR originating the tunnel.
hwMplsTunnelIngressLSRId uniquely identifies a
tunnel across an MPLS network. The last index
hwMplsTunnelEgressLSRId is useful in identifying
all instances of a tunnel that are terminated on
the same egress LSR.
The indexes of this table are hwMplsTunnelIndex,
hwMplsTunnelInstance, hwMplsTunnelIngressLSRId and
hwMplsTunnelEgressLSRId."
::= { hwMplsExtendMibTunnel 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1
hwMplsTunnelEntry OBJECT-TYPE
SYNTAX HwMplsTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A tunnel needs to be uniquely identified across
an MPLS network. Indexes hwMplsTunnelIndex and
hwMplsTunnelInstance uniquely identify a tunnel
on the LSR originating the tunnel.
hwMplsTunnelIngressLSRId uniquely identifies a
tunnel across an MPLS network. The last index
hwMplsTunnelEgressLSRId is useful in identifying
all instances of a tunnel that are terminated on
the same egress LSR.
The indexes of this entry are hwMplsTunnelIndex,
hwMplsTunnelInstance, hwMplsTunnelIngressLSRId and
hwMplsTunnelEgressLSRId."
REFERENCE
"1. RFC 2863 - The Interfaces Group MIB, McCloghrie,
K., and F. Kastenholtz, June 2000 "
INDEX { hwMplsTunnelIndex, hwMplsTunnelInstance, hwMplsTunnelIngressLSRId, hwMplsTunnelEgressLSRId }
::= { hwMplsTunnelTable 1 }
HwMplsTunnelEntry ::=
SEQUENCE {
hwMplsTunnelIndex
MplsTunnelIndex,
hwMplsTunnelInstance
MplsTunnelInstanceIndex,
hwMplsTunnelIngressLSRId
MplsExtendedTunnelId,
hwMplsTunnelEgressLSRId
MplsExtendedTunnelId,
hwMplsTunnelClassType
INTEGER,
hwMplsTunnelBandwidth
Integer32,
hwMplsTunnelAdminStatus
INTEGER,
hwMplsTunnelOperStatus
INTEGER,
hwMplsTunnelSessionAttr
BITS,
hwMplsTunnelFrrSetupPrio
Unsigned32,
hwMplsTunnelFrrHoldingPrio
Unsigned32,
hwMplsTunnelFrrBandwidth
Unsigned32,
hwMplsTunnelFrrSwitchover
Counter32,
hwMplsTunnelFrrBypassTableIndex
Unsigned32,
hwMplsTunnelFrrARHopTableIndex
Unsigned32,
hwMplsTunnelName
SnmpAdminString,
hwMplsTunnelIfIndex
Unsigned32,
hwMplsTunnelPreBandwidth
Unsigned32,
hwMplsTunnelNextBandwidth
Unsigned32,
hwMplsTunnelCt0Bandwidth
Unsigned32,
hwMplsTunnelCt1Bandwidth
Unsigned32,
hwMplsTunnelCt2Bandwidth
Unsigned32,
hwMplsTunnelCt3Bandwidth
Unsigned32,
hwMplsTunnelCt4Bandwidth
Unsigned32,
hwMplsTunnelCt5Bandwidth
Unsigned32,
hwMplsTunnelCt6Bandwidth
Unsigned32,
hwMplsTunnelCt7Bandwidth
Unsigned32,
hwMplsTunnelLspType
INTEGER,
hwMplsTunnelInterfaceName
SnmpAdminString,
hwMplsTunnelSignalProto
INTEGER,
hwMplsTunnelType
INTEGER
}
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.1
hwMplsTunnelIndex OBJECT-TYPE
SYNTAX MplsTunnelIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a set of tunnel instances
between a pair of ingress and egress LSRs.
When the MPLS signalling protocol is rsvp(2), this value
equals to the value signaled in the Tunnel ID
of the SESSION object. When the MPLS signalling protocol
is crldp(3), this value equals to the value
signaled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.2
hwMplsTunnelInstance OBJECT-TYPE
SYNTAX MplsTunnelInstanceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a particular instance of a
tunnel between a pair of ingress and egress LSRs.
It is used to identify multiple instances of
tunnels for backup and parallel tunnels.
When the MPLS signaling protocol is
rsvp(2), this value equals to the LSP ID
of the Sender Template object. When the signaling
protocol is crldp(3) there is no equivalent
signaling object. Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.3
hwMplsTunnelIngressLSRId OBJECT-TYPE
SYNTAX MplsExtendedTunnelId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ingress LSR ID of this tunnel.
When the MPLS signalling protocol
is rsvp(2), this value equals to the Tunnel
Sender Address in the Sender Template object and may
equal to the Extended Tunnel ID in the
SESSION object. When the MPLS signalling protocol is
crldp(3), this value equals to the Ingress
LSR Router ID in the LSPID TLV object.
Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.4
hwMplsTunnelEgressLSRId OBJECT-TYPE
SYNTAX MplsExtendedTunnelId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the egress LSR ID of this
tunnel. Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.5
hwMplsTunnelClassType OBJECT-TYPE
SYNTAX INTEGER
{
bc0(1),
bc1(2),
invalidValue(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the bandwidth type used by this tunnel.
Options:
1. bc0(1) -indicates the bandwidth type is bc0.
2. bc1(2) -indicates the bandwidth type is bc1.
3. invalidValue(3) -indicates the invalid value.
"
::= { hwMplsTunnelEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.6
hwMplsTunnelBandwidth OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the bandwidth used by this tunnel.
Unit: kbit/s
"
::= { hwMplsTunnelEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.7
hwMplsTunnelAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the management status of this
tunnel.Reference to MPLS-TE-STD-MIB.
Options:
1. up(1) -indicates the management status of this tunnel is up.
2. down(2) -indicates the management status of this tunnel is down.
3. testing(3) -indicates the tunnel is used in some test mode.
"
::= { hwMplsTunnelEntry 7 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.8
hwMplsTunnelOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
testing(3),
unknown(4),
dormant(5),
notPresent(6),
lowerLayerDown(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the actual operational status of this tunnel,
which is but not limited to the status of this tunnel of
a certain period.Reference to MPLS-TE-STD-MIB.
Options:
1. up(1) -indicates that the operational status of this tunnel is up.
2. down(2) -indicates that the operational status of this tunnel is down.
3. testing(3) -indicates that the tunnel is used in some test mode.
4. unknown(4) -indicates the invalid value.
5. dormant(5) -indicates that the status cannot be determined.
6. notPresent(6) -indicates that some component is missing
7. lowerLayerDown(7) -indicates the Down state due to the state of lower layer interfaces.
"
::= { hwMplsTunnelEntry 8 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.9
hwMplsTunnelSessionAttr OBJECT-TYPE
SYNTAX BITS
{
localProtectionDesired(0),
nodeProtectionDesired(1),
bandwidthProtectionDesired(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates protection types desired by the primary
tunnel, such as node protection, link protection or
bandwidth protection.
Options:
1. localProtectionDesired(0) -indicates link protection.
2. nodeProtectionDesired(1) -indicates node protection.
3. bandwidthProtectionDesired(2) -indicates bandwidth protection.
"
::= { hwMplsTunnelEntry 9 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.10
hwMplsTunnelFrrSetupPrio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the setup PRI of auto-bypass tunnel.
Range: 0-7
Default: 7
"
::= { hwMplsTunnelEntry 10 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.11
hwMplsTunnelFrrHoldingPrio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the holding PRI of auto-bypass tunnel.
Range: 0-7
Default: 7
"
::= { hwMplsTunnelEntry 11 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.12
hwMplsTunnelFrrBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the protecting bandwidth of auto-bypass tunnel.
Its value is defined by the configuration on the primary
tunnel.
Unit: kbit/s"
::= { hwMplsTunnelEntry 12 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.13
hwMplsTunnelFrrSwitchover OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates FRR switching times"
::= { hwMplsTunnelEntry 13 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.14
hwMplsTunnelFrrBypassTableIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the index of the bypass tunnel table, that is,
the LSP ID of the bypass tunnel. The bypass table shows
interfaces protected by specified bypass tunnel."
::= { hwMplsTunnelEntry 14 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.15
hwMplsTunnelFrrARHopTableIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the table index of the protection type adopted
by each hop of the primary tunnel."
::= { hwMplsTunnelEntry 15 }
hwMplsTunnelName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the tunnel name. The name can refer to the tunnel
on the console port of the LSR. If mplsTunnelIsIf is set to
True, the IfName of the interface corresponding to this tunnel
should have a value equal to hwMplsTunnelName.
Reference to the description of IfName in RFC 2863."
::= { hwMplsTunnelEntry 16 }
hwMplsTunnelIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the interface index of the tunnel. It uniquely
identifies the tunnel name."
::= { hwMplsTunnelEntry 17 }
hwMplsTunnelPreBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the original bandwidth of the tunnel
when the tunnel is in the Modify state.
Unit: kbit/s"
::= { hwMplsTunnelEntry 18 }
hwMplsTunnelNextBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the bandwidth of the tunnel that is to be changed
when the tunnel is in the Modify state.
Unit: kbit/s"
::= { hwMplsTunnelEntry 19 }
hwMplsTunnelCt0Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 0 (CT0) in this tunnel, in kbit/s.
If all CT bandwidths are 0s, it means that this tunnel's Class-Type
is CT0, and bandwidth is 0 kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 20 }
hwMplsTunnelCt1Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 1 (CT1) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 21 }
hwMplsTunnelCt2Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 2 (CT2) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 22 }
hwMplsTunnelCt3Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 3 (CT3) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 23 }
hwMplsTunnelCt4Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 4 (CT4) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 24 }
hwMplsTunnelCt5Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 5 (CT5) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 25 }
hwMplsTunnelCt6Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 6 (CT6) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 26 }
hwMplsTunnelCt7Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 7 (CT7) in this tunnel, in kbit/s.
Unit: kbit/s"
::= { hwMplsTunnelEntry 27 }
hwMplsTunnelLspType OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
primary(1),
primaryModifing(2),
hotStandby(3),
hotStandbyModifing(4),
ordinary(5),
ordinaryModifing(6),
bestEffort(7),
bestEffortModifing(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is meaningful only at the ingress of the tunnel. It indicates LSP types.
Options:
0. invalid(0) -indicates that the LSP type is invalid, the possible cause is that the LSP is not created at an ingress.
1. primary(1) -indicates the primary LSP
2. primaryModifing(2) -indicates the LSP that will replace the primary LSP
3. hotStandby(3) -indicates the hot-standby LSP
4. hotStandbyModifing(4) -indicates the LSP that will replace the hot-standby LSP
5. ordinary(5) -indicates the ordinary LSP
6. ordinaryModifing(6) -indicates the LSP that will replace the ordinary LSP
7. bestEffort(7) -indicates the Best-Effort LSP
8. bestEffortModifing(8) -indicates the LSP that will replace the Best-Effort LSP
Modifying LSPs are created when users modify the make-before-break attribute of the corresponding LSP types. After being created, modifying LSPs replace the corresponding LSPs to transmit traffic.
"
::= { hwMplsTunnelEntry 28 }
hwMplsTunnelInterfaceName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the tunnel interface name. The object is
only valid at the ingress."
::= { hwMplsTunnelEntry 29 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.30
hwMplsTunnelSignalProto OBJECT-TYPE
SYNTAX INTEGER
{
rsvpTE(1),
static(2),
staticCR(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the signal protocol of this tunnel"
::= { hwMplsTunnelEntry 30 }
-- 1.3.6.1.4.1.2011.5.25.121.1.1.1.31
hwMplsTunnelType OBJECT-TYPE
SYNTAX INTEGER
{
invalid(1),
primaryTunnel(2),
bypassTunnel(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is meaningful only at the ingress of the tunnel. It indicates tunnel types.
Options:
1. invalid(1) -indicates that the tunnel type is invalid, the possible cause is that it is not ingress node of this tunnel
2. primaryTunnel(2) -indicates that this is a primary tunnel
3. bypassTunnel(3) -indicates that this is a bypass tunnel
"
::= { hwMplsTunnelEntry 31 }
-- 1.3.6.1.4.1.2011.5.25.121.1.2
hwTunnelFrrBypassTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelFrrBypassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the bypass tunnel. The indexes of this table are
hwTunnelFrrBypassListIndex and hwTunnelFrrBypassIndex."
::= { hwMplsExtendMibTunnel 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.2.1
hwTunnelFrrBypassEntry OBJECT-TYPE
SYNTAX HwTunnelFrrBypassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the bypass tunnel.The indexes of this entry are
hwTunnelFrrBypassListIndex and hwTunnelFrrBypassIndex."
INDEX { hwTunnelFrrBypassListIndex, hwTunnelFrrBypassIndex }
::= { hwTunnelFrrBypassTable 1 }
HwTunnelFrrBypassEntry ::=
SEQUENCE {
hwTunnelFrrBypassListIndex
Unsigned32,
hwTunnelFrrBypassIndex
Unsigned32,
hwTunnelFrrBypassProtIfIndex
Unsigned32
}
-- 1.3.6.1.4.1.2011.5.25.121.1.2.1.1
hwTunnelFrrBypassListIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the index of the bypass tunnel table, that is, the LSP ID of the bypass tunnel."
::= { hwTunnelFrrBypassEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.2.1.2
hwTunnelFrrBypassIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the index of the bypass tunnel interface."
::= { hwTunnelFrrBypassEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.2.1.3
hwTunnelFrrBypassProtIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the index of the interface protected by the bypass tunnel."
::= { hwTunnelFrrBypassEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.3
hwTunnelFrrARHopTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelFrrARHopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the FrrARHopTable, which will show every hop's frr
protect information of the tunnel.
The indexes of this table are hwTunnelFrrARHopListIndex and hwTunnelFrrARHopIndex."
::= { hwMplsExtendMibTunnel 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.3.1
hwTunnelFrrARHopEntry OBJECT-TYPE
SYNTAX HwTunnelFrrARHopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the FrrARHopTable, which will show every hop's frr
protect information of the tunnel.
The indexes of this entry are hwTunnelFrrARHopListIndex and hwTunnelFrrARHopIndex."
INDEX { hwTunnelFrrARHopListIndex, hwTunnelFrrARHopIndex }
::= { hwTunnelFrrARHopTable 1 }
HwTunnelFrrARHopEntry ::=
SEQUENCE {
hwTunnelFrrARHopListIndex
Unsigned32,
hwTunnelFrrARHopIndex
Unsigned32,
hwTunnelFrrARHopProtDesired
BITS,
hwTunnelFrrARHopProtActual
BITS
}
-- 1.3.6.1.4.1.2011.5.25.121.1.3.1.1
hwTunnelFrrARHopListIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the table index of each hop along the primary tunnel."
::= { hwTunnelFrrARHopEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.3.1.2
hwTunnelFrrARHopIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the index of each hop along the primary tunnel."
::= { hwTunnelFrrARHopEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.3.1.3
hwTunnelFrrARHopProtDesired OBJECT-TYPE
SYNTAX BITS
{
localProtection(0),
nodeProtection(1),
bandwidthProtection(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the FRR protection types desired by the primary tunnel interface, including:
0: link protection,
1: node protection,
2: bandwidth protection
"
::= { hwTunnelFrrARHopEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.3.1.4
hwTunnelFrrARHopProtActual OBJECT-TYPE
SYNTAX BITS
{
localProtection(0),
nodeProtection(1),
bandwidthProtection(2),
protectionInuse(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the actual FRR protection types of the primary tunnel interface, including:
0: link protection,
1: node protection,
2: bandwidth protection,
3: primary tunnel protection in use
"
::= { hwTunnelFrrARHopEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4
hwTunnelFrrRouteDBTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelFrrRouteDBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the primary tunnel is protected by which bypass tunnel. The indexes of this
table are hwTunnelFrrRouteDBTunnelIndex, hwTunnelFrrRouteDBTunnelInstance,
hwTunnelFrrRouteDBTunnelIngressLSRId and hwTunnelFrrRouteDBTunnelEngressLSRId."
::= { hwMplsExtendMibTunnel 4 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1
hwTunnelFrrRouteDBEntry OBJECT-TYPE
SYNTAX HwTunnelFrrRouteDBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the primary tunnel is protected by which bypass tunnel. The indexes of this
entry are hwTunnelFrrRouteDBTunnelIndex, hwTunnelFrrRouteDBTunnelInstance,
hwTunnelFrrRouteDBTunnelIngressLSRId and hwTunnelFrrRouteDBTunnelEngressLSRId."
INDEX { hwTunnelFrrRouteDBTunnelIndex, hwTunnelFrrRouteDBTunnelInstance, hwTunnelFrrRouteDBTunnelIngressLSRId, hwTunnelFrrRouteDBTunnelEngressLSRId }
::= { hwTunnelFrrRouteDBTable 1 }
HwTunnelFrrRouteDBEntry ::=
SEQUENCE {
hwTunnelFrrRouteDBTunnelIndex
Unsigned32,
hwTunnelFrrRouteDBTunnelInstance
Unsigned32,
hwTunnelFrrRouteDBTunnelIngressLSRId
Unsigned32,
hwTunnelFrrRouteDBTunnelEngressLSRId
Unsigned32,
hwTunnelFrrRouteDBBypassIfIndex
Unsigned32,
hwTunnelFrrRouteDBInnerLabel
Unsigned32
}
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1.1
hwTunnelFrrRouteDBTunnelIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifies the index of the primary. Manager obtains new index
values for row creation in this table by reading mplsTunnelIndexNext.
When the MPLS signaling protocol is rsvp(2), this value equals to
the value signaled in the Tunnel ID of the SESSION object. When
the MPLS signaling protocol is crldp(3), this value equals to the
value signaled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwTunnelFrrRouteDBEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1.2
hwTunnelFrrRouteDBTunnelInstance OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a particular instance of a
tunnel between a pair of ingress and egress LSRs.
It is the object identifies multiple instances of
tunnels for the purposes of backup and parallel
tunnels. When the MPLS signaling protocol is
rsvp(2), this value equals to the LSP ID
of the Sender Template object. When the signaling
protocol is crldp(3), there is no equivalent
signaling object. Reference to MPLS-TE-STD-MIB."
::= { hwTunnelFrrRouteDBEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1.3
hwTunnelFrrRouteDBTunnelIngressLSRId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifies the ingress LSR ID of the primary tunnel.
When the MPLS signalling protocol is rsvp(2),LSR ID
equals to the Tunnel Sender Address in the Sender
Template object or the Extended Tunnel Id in the
SESSION object. When the MPLS signalling protocol is
crldp(3), LSR ID equals to the Ingress
LSR Router ID in the LSPID TLV object."
::= { hwTunnelFrrRouteDBEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1.4
hwTunnelFrrRouteDBTunnelEngressLSRId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifies the egress LSR ID of the primary tunnel.
Reference to MPLS-TE-STD-MIB."
::= { hwTunnelFrrRouteDBEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1.5
hwTunnelFrrRouteDBBypassIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the interface index of the bypass tunnel."
::= { hwTunnelFrrRouteDBEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.1.4.1.6
hwTunnelFrrRouteDBInnerLabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the inner label of the primary tunnel and bypass tunnel."
::= { hwTunnelFrrRouteDBEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5
hwStaticLspTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwStaticLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A static LSP is created by a network administrator by using
static MPLS. Note that only point-to-point static LSP segments
are supported. Each static MPLS LSP can thus have one out-segment
originating at this LSR and/or one in-segment terminating at
this LSR. The indexes of this table are hwStaticLspIndex,
hwStaticLspInSegmentIndex, and hwStaticLspOutSegmentIndex."
::= { hwMplsExtendMibTunnel 5 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1
hwStaticLspEntry OBJECT-TYPE
SYNTAX HwStaticLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A static LSP is created by a network administrator by using
static MPLS. Note that only point-to-point static LSP segments
are supported. Each static MPLS LSP can thus have one out-segment
originating at this LSR and/or one in-segment terminating at
this LSR. The indexes of this entry are hwStaticLspIndex,
hwStaticLspInSegmentIndex, and hwStaticLspOutSegmentIndex."
INDEX { hwStaticLspIndex, hwStaticLspInSegmentIndex, hwStaticLspOutSegmentIndex }
::= { hwStaticLspTable 1 }
HwStaticLspEntry ::=
SEQUENCE {
hwStaticLspIndex
MplsIndexType,
hwStaticLspInSegmentIndex
MplsIndexType,
hwStaticLspOutSegmentIndex
MplsIndexType,
hwStaticLspOwner
INTEGER,
hwStaticLspName
SnmpAdminString,
hwStaticLspStatus
INTEGER,
hwStaticLspClassType
INTEGER,
hwStaticLspBandwidth
Unsigned32
}
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1.1
hwStaticLspIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the index of the static LSP. If the string is 0x00,
it means that the index is invalid."
::= { hwStaticLspEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1.2
hwStaticLspInSegmentIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the incoming label index of the static LSP/CR-LSP.
If the string is 0x00, it means that the index is invalid.
In this case, no corresponding mplsInSegmentEntry exists.
Reference to MPLS-LSR-STD-MIB."
::= { hwStaticLspEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1.3
hwStaticLspOutSegmentIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the outgoing index of the static LSP/CR-LSP.
If the entry is used to identify the incoming node or
intermediate node of the LSP, this object cannot be set
to the string 0x00. Because corresponding mplsOutSegmentEntry
exists. If the entry is used to identify the outgoing node
of the LSP, this object must be set to the string 0x00. Because
no corresponding mplsOutSegmentEntry exists.
Reference to MPLS-LSR-STD-MIB."
::= { hwStaticLspEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1.4
hwStaticLspOwner OBJECT-TYPE
SYNTAX INTEGER
{
static(1),
crstatic(2),
other(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Denotes the entity that creates and manages the static LSP. See MPLS-LSR-STD-MIB.
Options:
1. static(1) -indicates the static LSP.
2. crstatic(2) -indicates the static CR-LSP.
3. other(3) -indicates the LSP of another type.
"
::= { hwStaticLspEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1.5
hwStaticLspName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the name of the static LSP or CR-LSP.
The name is appointed when the static LSP or CR-LSP
is created."
REFERENCE
"RFC 2863 - The Interfaces Group MIB, McCloghrie, K.,
and F. Kastenholtz, June 2000"
::= { hwStaticLspEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.1.5.1.6
hwStaticLspStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the actual operation status of the static LSP/CR-LSP.
Options:
1. up(1) -indicates that the static LSP/CR-LSP is in Up state.
2. down(2) -indicates that the static LSP/CR-LSP is in down state.
3. testing(3) -indicates that the static LSP/CR-LSP is used in test mode.
"
::= { hwStaticLspEntry 6 }
hwStaticLspClassType OBJECT-TYPE
SYNTAX INTEGER
{
ct0(1),
ct1(2),
ct2(3),
ct3(4),
ct4(5),
ct5(6),
ct6(7),
ct7(8),
none(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Class-Type of this static lsp.
Options:
1. ct0(1) -indicates that the class type is ct0.
2. ct1(2) -indicates that the class type is ct1.
3. ct2(3) -indicates that the class type is ct2.
4. ct3(4) -indicates that the class type is ct3.
5. ct4(5) -indicates that the class type is ct4.
6. ct5(6) -indicates that the class type is ct5.
7. ct6(7) -indicates that the class type is ct6.
8. ct7(8) -indicates that the class type is ct7.
9. none(9) -indicates that the class type is unconfiged.
"
::= { hwStaticLspEntry 7 }
hwStaticLspBandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of this static lsp.
Unit: kbit/s"
::= { hwStaticLspEntry 8 }
hwMplsTeClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsTeClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"TE-class mapping is a set of a maximum of eight TE-class items.
TE-class is a <Class-Type, Priority> pair, such as TE-Class[1] = <CT0, 5>.
A (setup/holding) priority associated with an LSP valid only if it appears
as a pair with the Class-Type. Class-Types and priorities can be randomly
paired up. You can define a maximum of eight <Class-Type, Priority> pairs.
The LSR is considered to support a particular Class-Type only if it appears
in the definition of the eight possible TE-Classes. It is suggested that all
the LSRs in the domain use the same TE-Class mapping. The index of this table
is hwMplsTeClassId."
::= { hwMplsExtendMibTunnel 6 }
hwMplsTeClassEntry OBJECT-TYPE
SYNTAX HwMplsTeClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"TE-class mapping is a set of a maximum of eight TE-class items.
TE-class is a <Class-Type, Priority> pair, such as TE-Class[1] = <CT0, 5>.
A (setup/holding) priority associated with an LSP valid only if it appears
as a pair with the Class-Type. Class-Types and priorities can be randomly
paired up. You can define a maximum of eight <Class-Type, Priority> pairs.
The LSR is considered to support a particular Class-Type only if it appears
in the definition of the eight possible TE-Classes. It is suggested that all
the LSRs in the domain use the same TE-Class mapping. The index of this entry
is hwMplsTeClassId."
INDEX { hwMplsTeClassId }
::= { hwMplsTeClassTable 1 }
HwMplsTeClassEntry ::=
SEQUENCE {
hwMplsTeClassId
Unsigned32,
hwMplsTeClassClassType
INTEGER,
hwMplsTeClassPriority
Unsigned32,
hwMplsTeClassDescription
OCTET STRING
}
hwMplsTeClassId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This value represents the index of the TE-Class configured
on this LSR."
::= { hwMplsTeClassEntry 1 }
hwMplsTeClassClassType OBJECT-TYPE
SYNTAX INTEGER
{
ct0(1),
ct1(2),
ct2(3),
ct3(4),
ct4(5),
ct5(6),
ct6(7),
ct7(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value represents a Class-Type supported on the LSR.
Options:
1. ct0(1) -indicates that the class type of static CR-LSP is ct0.
2. ct1(2) -indicates that the class type of static CR-LSP is ct1.
3. ct2(3) -indicates that the class type of static CR-LSP is ct2.
4. ct3(4) -indicates that the class type of static CR-LSP is ct3.
5. ct4(5) -indicates that the class type of static CR-LSP is ct4.
6. ct5(6) -indicates that the class type of static CR-LSP is ct5.
7. ct6(7) -indicates that the class type of static CR-LSP is ct6.
8. ct7(8) -indicates that the class type of static CR-LSP is ct7.
"
::= { hwMplsTeClassEntry 2 }
hwMplsTeClassPriority OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value represents the preemption priority (setup or holding)
supported for a particular class-type, on the LSR.
Range: 0-7
Default: 7
"
::= { hwMplsTeClassEntry 3 }
hwMplsTeClassDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Textual description of the TE-Class defined by this row."
::= { hwMplsTeClassEntry 4 }
hwMplsIfBcTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsIfBcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes bandwidth constraints associated with MPLS TE
enabled interfaces. The index of this table is ifIndex."
::= { hwMplsExtendMibTunnel 7 }
hwMplsIfBcEntry OBJECT-TYPE
SYNTAX HwMplsIfBcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes bandwidth constraints associated with MPLS TE
enabled interfaces. The index of this entry is ifIndex."
INDEX { ifIndex }
::= { hwMplsIfBcTable 1 }
HwMplsIfBcEntry ::=
SEQUENCE {
hwMplsIfMaxResvBandwidth
Unsigned32,
hwMplsIfBc0Bandwidth
Unsigned32,
hwMplsIfBc1Bandwidth
Unsigned32,
hwMplsIfBc2Bandwidth
Unsigned32,
hwMplsIfBc3Bandwidth
Unsigned32,
hwMplsIfBc4Bandwidth
Unsigned32,
hwMplsIfBc5Bandwidth
Unsigned32,
hwMplsIfBc6Bandwidth
Unsigned32,
hwMplsIfBc7Bandwidth
Unsigned32
}
hwMplsIfMaxResvBandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum reservable bandwidth on this interface.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 1 }
hwMplsIfBc0Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 0 (CT0) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 2 }
hwMplsIfBc1Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 1 (CT1) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 3 }
hwMplsIfBc2Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 2 (CT2) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 4 }
hwMplsIfBc3Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 3 (CT3) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 5 }
hwMplsIfBc4Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 4 (CT4) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 6 }
hwMplsIfBc5Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 5 (CT5) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 7 }
hwMplsIfBc6Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 6 (CT6) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 8 }
hwMplsIfBc7Bandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilobits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth of Class-Type 7 (CT7) in this tunnel.
Unit: kbit/s
"
::= { hwMplsIfBcEntry 9 }
hwStaticLspTnlTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwStaticLspTnlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwStaticLspTnlTable is used to display static LSP token of
a static LSP of a specified name. The index of this table
is hwStaticLspTnlName."
::= { hwMplsExtendMibTunnel 8 }
hwStaticLspTnlEntry OBJECT-TYPE
SYNTAX HwStaticLspTnlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwStaticLspTnlTable is used to display static LSP token of
a static LSP of a specified name. The index of this entry
is hwStaticLspTnlName."
INDEX { hwStaticLspTnlName }
::= { hwStaticLspTnlTable 1 }
HwStaticLspTnlEntry ::=
SEQUENCE {
hwStaticLspTnlName
SnmpAdminString,
hwStaticLspTnlToken
Unsigned32
}
hwStaticLspTnlName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the name of the Static Lsp."
::= { hwStaticLspTnlEntry 1 }
hwStaticLspTnlToken OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the token of the Static Lsp."
::= { hwStaticLspTnlEntry 2 }
hwMplsTeVpnQosTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsTeVpnQosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to display VPN QoS information of a specified TE Tunnel according to TunnelID.
The index of this table is hwMplsTnlID."
::= { hwMplsExtendMibTunnel 9 }
hwMplsTeVpnQosEntry OBJECT-TYPE
SYNTAX HwMplsTeVpnQosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to display VPN QoS information of a specified TE Tunnel according to TunnelID.
The index of this entry is hwMplsTnlID."
INDEX { hwMplsTnlID }
::= { hwMplsTeVpnQosTable 1 }
HwMplsTeVpnQosEntry ::=
SEQUENCE {
hwMplsTnlID
Unsigned32,
hwMplsTeVpnMaxBandwidth
Unsigned32,
hwMplsTeVpnAllocatedBandwidth
Unsigned32
}
hwMplsTnlID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the TE tunnel ID."
::= { hwMplsTeVpnQosEntry 1 }
hwMplsTeVpnMaxBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the bandwidth the TE tunnel can provide for VPN QoS.
Unit: kbit/s"
::= { hwMplsTeVpnQosEntry 2 }
hwMplsTeVpnAllocatedBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the bandwidth used by VPN QoS, in Kbps.
Unit: kbit/s"
::= { hwMplsTeVpnQosEntry 3 }
hwStaticLspInIfIndex OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates the inbound interface index of a static LSP/CR-LSP."
::= { hwMplsExtendMibTunnel 11 }
-- 1.3.6.1.4.1.2011.5.25.121.1.12
hwStaticLspInIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates the name of an inbound interface of a static LSP/CR-LSP."
::= { hwMplsExtendMibTunnel 12 }
-- 1.3.6.1.4.1.2011.5.25.121.1.13
hwStaticLspDownReason OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates the reason for static LSP/CR-LSP Down:
0. Other
1. Static LSP/CR-LSP up
2. MPLS disabled on an interface
3. MPLS TE disabled on an interface
4. Route change
5. Tunnel binding associated with the static LSP/CR-LSP deleted
6. Static LSP/CR-LSP configuration delete
7. Inbound interface Down
8. Outbound interface Down
9. Tunnel associated with the static LSP/CR-LSP has been shut down
10. Static LSP/CR-LSP configuration update
11. The bound ring is invalid."
::= { hwMplsExtendMibTunnel 13 }
-- 1.3.6.1.4.1.2011.5.25.121.1.14
hwMplsTunnelStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsTunnelStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A tunnel needs to be uniquely identified across
an MPLS network. hwMplsTunnelStatisticsTunnelIndex
uniquely identifies a tunnel on the LSR originating
the tunnel. hwMplsTunnelStatisticsIngressLSRId
uniquely identifies a tunnel across an MPLS network.
The last index hwMplsTunnelStatisticsEgressLSRId is
useful in identifying all instances of a tunnel that
are terminated on the same egress LSR.
The indexes of this table are
hwMplsTunnelStatisticsTunnelIndex,
hwMplsTunnelStatisticsIngressLSRId and
hwMplsTunnelStatisticsEgressLSRId."
::= { hwMplsExtendMibTunnel 14 }
-- 1.3.6.1.4.1.2011.5.25.121.1.14.1
hwMplsTunnelStatisticsEntry OBJECT-TYPE
SYNTAX HwMplsTunnelStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A tunnel needs to be uniquely identified across
an MPLS network. hwMplsTunnelStatisticsTunnelIndex
uniquely identifies a tunnel on the LSR originating
the tunnel. hwMplsTunnelStatisticsIngressLSRId uniquely
identifies a tunnel across an MPLS network. The last
index hwMplsTunnelStatisticsEgressLSRId is useful in
identifying all instances of a tunnel that are terminated
on the same egress LSR.
The indexes of this table are
hwMplsTunnelStatisticsTunnelIndex,
hwMplsTunnelStatisticsIngressLSRId and
hwMplsTunnelStatisticsEgressLSRId."
REFERENCE
"1. RFC 2863 - The Interfaces Group MIB, McCloghrie,
K., and F. Kastenholtz, June 2000 "
INDEX { hwMplsTunnelStatisticsTunnelIndex, hwMplsTunnelStatisticsIngressLSRId, hwMplsTunnelStatisticsEgressLSRId }
::= { hwMplsTunnelStatisticsTable 1 }
HwMplsTunnelStatisticsEntry ::=
SEQUENCE {
hwMplsTunnelStatisticsTunnelIndex
Unsigned32,
hwMplsTunnelStatisticsIngressLSRId
IpAddress,
hwMplsTunnelStatisticsEgressLSRId
IpAddress,
hwMplsTunnelStatisticsHCInOctets
Counter64,
hwMplsTunnelStatisticsHCOutOctets
Counter64
}
-- 1.3.6.1.4.1.2011.5.25.121.1.14.1.1
hwMplsTunnelStatisticsTunnelIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a set of tunnel instances
between a pair of ingress and egress LSRs.
When the MPLS signalling protocol is rsvp(2), this value
equals to the value signaled in the Tunnel ID
of the SESSION object. When the MPLS signalling protocol
is crldp(3), this value equals to the value
signaled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelStatisticsEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.1.14.1.2
hwMplsTunnelStatisticsIngressLSRId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ingress LSR ID of this tunnel.
When the MPLS signalling protocol
is rsvp(2), this value equals to the Tunnel
Sender Address in the Sender Template object and may
equal to the Extended Tunnel ID in the
SESSION object. When the MPLS signalling protocol is
crldp(3), this value equals to the Ingress
LSR Router ID in the LSPID TLV object.
Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelStatisticsEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.1.14.1.3
hwMplsTunnelStatisticsEgressLSRId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the egress LSR ID of this
tunnel. Reference to MPLS-TE-STD-MIB."
::= { hwMplsTunnelStatisticsEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.1.14.1.4
hwMplsTunnelStatisticsHCInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on the interface,
including framing characters."
::= { hwMplsTunnelStatisticsEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.121.1.14.1.5
hwMplsTunnelStatisticsHCOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted out of the
interface, including framing characters."
::= { hwMplsTunnelStatisticsEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.2
hwMplsExtendTrap OBJECT IDENTIFIER ::= { hwMplsExtendMib 2 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1
hwLspTrap OBJECT IDENTIFIER ::= { hwMplsExtendTrap 1 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.1
hwMplsStaticLspUp NOTIFICATION-TYPE
OBJECTS { hwStaticLspName, hwStaticLspStatus, ifName, hwStaticLspInIfIndex, hwStaticLspInIfName, hwStaticLspDownReason }
STATUS current
DESCRIPTION
"This notification indicates that the status of referred static LSP changes to Up."
::= { hwLspTrap 1 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.2
hwMplsStaticLspDown NOTIFICATION-TYPE
OBJECTS { hwStaticLspName, hwStaticLspStatus, ifName, hwStaticLspInIfIndex, hwStaticLspInIfName, hwStaticLspDownReason }
STATUS current
DESCRIPTION
"This notification indicates that the status of referred static LSP changes to Down."
::= { hwLspTrap 2 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.3
hwMplsStaticCRLspUp NOTIFICATION-TYPE
OBJECTS { hwStaticLspName, hwStaticLspStatus, ifName, hwStaticLspInIfIndex, hwStaticLspInIfName, hwStaticLspDownReason }
STATUS current
DESCRIPTION
"This notification indicates that the status of referred static CR-LSP changes to Up."
::= { hwLspTrap 3 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.4
hwMplsStaticCRLspDown NOTIFICATION-TYPE
OBJECTS { hwStaticLspName, hwStaticLspStatus, ifName, hwStaticLspInIfIndex, hwStaticLspInIfName, hwStaticLspDownReason }
STATUS current
DESCRIPTION
"This notification indicates that the status of referred static CR-LSP changes to Down."
::= { hwLspTrap 4 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.5
hwMplsTeFrrProtAval NOTIFICATION-TYPE
OBJECTS { hwTunnelFrrRouteDBBypassIfIndex, hwTunnelFrrRouteDBInnerLabel }
STATUS current
DESCRIPTION
"This notification indicates that the primary tunnel is bound to TE FRR bypass tunnel."
::= { hwLspTrap 5 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.6
hwMplsTeFrrProtNotAval NOTIFICATION-TYPE
OBJECTS { hwTunnelFrrRouteDBBypassIfIndex }
STATUS current
DESCRIPTION
"This notification indicates that the primary tunnel is unbound to bypass tunnel."
::= { hwLspTrap 6 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.7
hwMplsTeFrrSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus, hwMplsSessionTunnelId, hwMplsLocalLspId, hwMplsIngressLsrId, hwMplsEgressLsrId}
STATUS current
DESCRIPTION
"This notification indicates that the primary tunnel is switches to the TE FRR bypass tunnel."
::= { hwLspTrap 7 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.8
hwMplsTeFrrResume NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that the primary tunnel is switched back from the TE FRR bypass tunnel."
::= { hwLspTrap 8 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.9
hwMplsTunnelHSBSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that the data is switched from the primary CR-LSP to the HSB CR-LSP."
::= { hwLspTrap 9 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.10
hwMplsTunnelHSBResume NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that the data is switched from the HSB CR-LSP to the primary CR-LSP."
::= { hwLspTrap 10 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.11
hwMplsTunnelOBSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that the primary CR-LSP is down and the Ordinary backup CR-LSP is up."
::= { hwLspTrap 11 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.12
hwMplsTunnelOBResume NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that the data is switched from the Ordinary backup CR-LSP to the primary CR-LSP."
::= { hwLspTrap 12 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.13
hwMplsTunnelUp NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS obsolete
DESCRIPTION
"The hwMplsTunnelUp trap indicates that the staus of the tunnel changes into Up."
::= { hwLspTrap 13 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.14
hwMplsTunnelDown NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS obsolete
DESCRIPTION
"The hwMplsTunnelDown trap indicates that the staus of the tunnel changes into Down."
::= { hwLspTrap 14 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.15
hwMplsTunnelChangeBw NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelIfIndex, hwMplsTunnelPreBandwidth, hwMplsTunnelNextBandwidth }
STATUS current
DESCRIPTION
"This notification indicates that the bandwidth of the tunnel is changed."
::= { hwLspTrap 15 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.16
hwMplsTunnelTpOamLossSD NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"This object indicates that the loss ratio of the packets carried by the tunnel exceeded the first threshold."
::= { hwLspTrap 16 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.17
hwMplsOamSDRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the loss ratio of the packets carried by the tunnel dropped below the first threshold.
"
::= { hwLspTrap 17 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.18
hwMplsOamLoss NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto, ifName}
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected tunnel connectivity faults.
"
::= { hwLspTrap 18 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.19
hwMplsOamLossRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM did not detect tunnel connectivity faults.
"
::= { hwLspTrap 19 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.20
hwMplsOamAis NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected an alarm indication signal.
"
::= { hwLspTrap 20 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.21
hwMplsOamAisRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM no longer detected alarm indication signals.
"
::= { hwLspTrap 21 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.22
hwMplsOamRdi NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto, ifName}
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected remote defects.
"
::= { hwLspTrap 22 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.23
hwMplsOamRdiRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the remote defects detected by TP OAM were removed.
"
::= { hwLspTrap 23 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.24
hwMplsOamMeg NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the names configured on the two ends of the tunnel are inconsistent.
"
::= { hwLspTrap 24 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.25
hwMplsOamMegRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the names configured on the two ends of the tunnel now are consistent.
"
::= { hwLspTrap 25 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.26
hwMplsOamMep NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the MEP-IDs configured on the two ends of the tunnel are inconsistent.
"
::= { hwLspTrap 26 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.27
hwMplsOamMepRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the MEP-IDs configured on the two ends of the tunnel now are consistent.
"
::= { hwLspTrap 27 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.28
hwMplsOamSF NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the loss ratio of the packets carried by the tunnel exceeded the second threshold in the local link.
"
::= { hwLspTrap 28 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.29
hwMplsOamSFRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the loss ratio of the packets carried by the tunnel dropped below the second threshold in the local link.
"
::= { hwLspTrap 29 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.30
hwMplsOamPeriod NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the TP OAM detection periods on the two ends of the tunnel are inconsistent.
"
::= { hwLspTrap 30 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.31
hwMplsOamPeriodRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that the TP OAM detection periods on the two ends of the tunnel now are consistent.
"
::= { hwLspTrap 31 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.32
hwMplsOamLck NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected the service level of the tunnel has been locked.
"
::= { hwLspTrap 32 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.33
hwMplsOamLckRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected the service level of the tunnel has not been locked.
"
::= { hwLspTrap 33 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.34
hwMplsOamExcess NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received excess alarm.
"
::= { hwLspTrap 34 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.35
hwMplsOamExcessRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received excess alarm end.
"
::= { hwLspTrap 35 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.36
hwMplsOamMisMatch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received MisMatch alarm.
"
::= { hwLspTrap 36 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.37
hwMplsOamMisMatchRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received MisMatch alarm end.
"
::= { hwLspTrap 37 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.38
hwMplsOamMisMerge NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received MisMerge alarm.
"
::= { hwLspTrap 38 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.39
hwMplsOamMisMergeRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received MisMerge alarm end.
"
::= { hwLspTrap 39 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.40
hwMplsOamUnknown NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received Unknown alarm.
"
::= { hwLspTrap 40 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.41
hwMplsOamUnknownRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received Unknown alarm end.
"
::= { hwLspTrap 41 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.42
hwMplsOamBDI NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto, ifName}
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received BDI alarm.
"
::= { hwLspTrap 42 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.43
hwMplsOamBDIRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received BDI alarm end.
"
::= { hwLspTrap 43 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.44
hwMplsOamFail NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto, ifName}
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received OAMFAIL alarm.
"
::= { hwLspTrap 44 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.45
hwMplsOamFailRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that MPLS OAM detected the tunnel received OAMFAIL alarm end.
"
::= { hwLspTrap 45 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.46
hwMplsTunnelPrimaryUp NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Primary LSP changes to Up."
::= { hwLspTrap 46 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.47
hwMplsTunnelPrimaryDown NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelDownReason, hwMplsTunnelDownLSRID, hwMplsTunnelDownIfIpAddrType, hwMplsTunnelDownIfIpAddr }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Primary LSP changes to Down."
::= { hwLspTrap 47 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.48
hwMplsTunnelHotstandbyUp NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Hot-standby LSP changes to Up."
::= { hwLspTrap 48 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.49
hwMplsTunnelHotstandbyDown NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelDownReason, hwMplsTunnelDownLSRID, hwMplsTunnelDownIfIpAddrType, hwMplsTunnelDownIfIpAddr}
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Hot-standby LSP changes to Down."
::= { hwLspTrap 49 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.50
hwMplsTunnelOrdinaryUp NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Ordinary LSP changes to Up."
::= { hwLspTrap 50 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.51
hwMplsTunnelOrdinaryDown NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelDownReason, hwMplsTunnelDownLSRID, hwMplsTunnelDownIfIpAddrType, hwMplsTunnelDownIfIpAddr }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Ordinary LSP changes to Down."
::= { hwLspTrap 51 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.52
hwMplsTunnelBesteffortUp NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Best-effort LSP changes to Up."
::= { hwLspTrap 52 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.53
hwMplsTunnelBesteffortDown NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelDownReason, hwMplsTunnelDownLSRID, hwMplsTunnelDownIfIpAddrType, hwMplsTunnelDownIfIpAddr }
STATUS current
DESCRIPTION
"This notification indicates that the status of the RSVP-TE Best-effort LSP changes to Down."
::= { hwLspTrap 53 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.54
hwMplsTeAutoTunnelDownClear NOTIFICATION-TYPE
OBJECTS { mplsTunnelAdminStatus, mplsTunnelOperStatus, hwMplsTunnelIfName }
STATUS current
DESCRIPTION
"This notification indicates that the TE Auto tunnel Down alarm was cleared."
::= { hwLspTrap 54 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.55
hwMplsTeAutoTunnelPrimaryDownClear NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the Down alarm about the primary LSP in the TE Auto tunnel was cleared."
::= { hwLspTrap 55 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.56
hwMplsTunnelBBSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that the primary CR-LSP is Down and the Best-effort backup CR-LSP is Up."
::= { hwLspTrap 56 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.57
hwMplsTunnelBBResume NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus }
STATUS current
DESCRIPTION
"This notification indicates that data is switched from the Best-effort backup CR-LSP to the primary CR-LSP."
::= { hwLspTrap 57 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.58
hwMplsExtTunnelDown NOTIFICATION-TYPE
OBJECTS {hwMplsTunnelInterfaceName, hwMplsTunnelType, hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus, hwMplsTunnelDownReason, ifName, hwMplsTunnelDownLSRID, hwMplsTunnelDownIfIpAddrType, hwMplsTunnelDownIfIpAddr}
STATUS current
DESCRIPTION
"This notification indicates that the status of te tunnel changes to Down."
::= { hwLspTrap 58 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.59
hwMplsExtTunnelDownClear NOTIFICATION-TYPE
OBJECTS {hwMplsTunnelInterfaceName, hwMplsTunnelType, hwMplsTunnelAdminStatus, hwMplsTunnelOperStatus, hwMplsTunnelDownReason, ifName}
STATUS current
DESCRIPTION
"This notification indicates that the down alarm of te tunnel was cleared."
::= { hwLspTrap 59 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.60
hwMplsOamLocalLock NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected the tunnel has been locked.
"
::= { hwLspTrap 60 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.61
hwMplsOamLocalLockRecovery NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto }
STATUS current
DESCRIPTION
"
This object indicates that TP OAM detected the tunnel has not been locked.
"
::= { hwLspTrap 61 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.62
hwMplsTunnelDelete NOTIFICATION-TYPE
OBJECTS {mplsTunnelAdminStatus,mplsTunnelOperStatus,hwMplsTunnelIfName}
STATUS current
DESCRIPTION
"This notification indicates that the mpls te tunnel was deleted."
::= { hwLspTrap 62 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.63
hwMplsLspThresholdExceed NOTIFICATION-TYPE
OBJECTS { hwMplsLspProtocol, hwMplsLspCurrentCount, hwMplsLspThreshold, hwMplsLspTotalCount }
STATUS current
DESCRIPTION
"
This object indicates that lsp count has exceeded the threshold.
"
::= { hwLspTrap 63 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.64
hwMplsLspThresholdExceedClear NOTIFICATION-TYPE
OBJECTS { hwMplsLspProtocol }
STATUS current
DESCRIPTION
"
This object indicates that lsp count has resumed from exceeding the threshold.
"
::= { hwLspTrap 64 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.65
hwMplsLspTotalCountExceed NOTIFICATION-TYPE
OBJECTS { hwMplsLspProtocol, hwMplsLspTotalCount }
STATUS current
DESCRIPTION
"
This object indicates that lsp count has reached the total count.
"
::= { hwLspTrap 65 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.66
hwMplsLspTotalCountExceedClear NOTIFICATION-TYPE
OBJECTS { hwMplsLspProtocol }
STATUS current
DESCRIPTION
"
This object indicates that lsp count has resumed from reaching the total count.
"
::= { hwLspTrap 66 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.67
hwMplsDynamicLabelThresholdExceed NOTIFICATION-TYPE
OBJECTS { hwMplsDynamicLabelTotalCount, hwMplsDynamicLabelCurrentCount, hwMplsDynamicLabelThresholdUpperLimit, hwMplsDynamicLabelThresholdLowerLimit }
STATUS current
DESCRIPTION
"
This object indicates that label usage has exceeded the threshold.
"
::= { hwLspTrap 67 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.68
hwMplsDynamicLabelThresholdExceedClear NOTIFICATION-TYPE
OBJECTS { hwMplsDynamicLabelTotalCount, hwMplsDynamicLabelCurrentCount, hwMplsDynamicLabelThresholdUpperLimit, hwMplsDynamicLabelThresholdLowerLimit }
STATUS current
DESCRIPTION
"
This object indicates that label usage has resumed from exceeding the threshold.
"
::= { hwLspTrap 68 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.69
hwMplsDynamicLabelTotalCountExceed NOTIFICATION-TYPE
OBJECTS { hwMplsDynamicLabelTotalCount, hwMplsDynamicLabelCurrentCount }
STATUS current
DESCRIPTION
"
This object indicates that label count has reached the total count.
"
::= { hwLspTrap 69 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.70
hwMplsDynamicLabelTotalCountExceedClear NOTIFICATION-TYPE
OBJECTS { hwMplsDynamicLabelTotalCount, hwMplsDynamicLabelCurrentCount }
STATUS current
DESCRIPTION
"
This object indicates that label usage count has resumed from reaching the total count.
"
::= { hwLspTrap 70 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.71
hwMplsResourceThresholdExceed NOTIFICATION-TYPE
OBJECTS { hwMplsResourceType, hwMplsResourceCurrentCount, hwMplsResourceThreshold, hwMplsResourceTotalCount }
STATUS current
DESCRIPTION
"
This object indicates that the number of MPLS resources has exceeded the upper threshold.
"
::= { hwLspTrap 71 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.72
hwMplsResourceThresholdExceedClear NOTIFICATION-TYPE
OBJECTS { hwMplsResourceType }
STATUS current
DESCRIPTION
"
This object indicates that the number of MPLS resources has fallen below the lower threshold.
"
::= { hwLspTrap 72 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.73
hwMplsResourceTotalCountExceed NOTIFICATION-TYPE
OBJECTS { hwMplsResourceType, hwMplsResourceTotalCount }
STATUS current
DESCRIPTION
"
This object indicates that the number of MPLS resources has reached the maximum number.
"
::= { hwLspTrap 73 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.74
hwMplsResourceTotalCountExceedClear NOTIFICATION-TYPE
OBJECTS { hwMplsResourceType }
STATUS current
DESCRIPTION
"
This object indicates that the number of MPLS resources fallen below the recovery number.
"
::= { hwLspTrap 74 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.75
hwMplsLspLoopBack NOTIFICATION-TYPE
OBJECTS { hwMplsSessionTunnelId, hwMplsLocalLspId, hwMplsIngressLsrId, hwMplsEgressLsrId, hwMplsLspName }
STATUS current
DESCRIPTION
"
This object indicates that the lsp was looped back.
"
::= { hwLspTrap 75 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.76
hwMplsLspLoopBackClear NOTIFICATION-TYPE
OBJECTS { hwMplsSessionTunnelId, hwMplsLocalLspId, hwMplsIngressLsrId, hwMplsEgressLsrId, hwMplsLspName }
STATUS current
DESCRIPTION
"
This object indicates that loopback of the LSP is restored.
"
::= { hwLspTrap 76 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.77
hwMplsTunnelCommitLost NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"
This object indicates that, after the device saves MPLS TE tunnel configurations, the device commits only some MPLS tunnel configurations.
"
::= { hwLspTrap 77 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.78
hwMplsTunnelCommitLostClear NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"
This object indicates that, after the device saves MPLS TE tunnel configurations, the device commits all MPLS tunnel configurations.
"
::= { hwLspTrap 78 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.79
hwMplsTunnelHotstandbySwitch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the data is switched from the primary CR-LSP to the HSB CR-LSP."
::= { hwLspTrap 79 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.80
hwMplsTunnelHotstandbyResume NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the data is switched from the HSB CR-LSP to the primary CR-LSP."
::= { hwLspTrap 80 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.81
hwMplsTunnelBfdPathMismatch NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsSessionTunnelId, hwMplsLocalLspId, hwMplsIngressLsrId, hwMplsEgressLsrId, hwMplsTunnelIfName }
STATUS current
DESCRIPTION
"This notification indicates the forward primary LSP path is the same as the reverse hot-standby LSP path, and the reverse primary LSP path is the same as the forward hot-standby LSP path, causing path mismatches."
::= { hwLspTrap 81 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.82
hwMplsTunnelBfdPathMismatchClear NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsSessionTunnelId, hwMplsLocalLspId, hwMplsIngressLsrId, hwMplsEgressLsrId, hwMplsTunnelIfName }
STATUS current
DESCRIPTION
"This notification indicates that either or both path mismatches were rectified."
::= { hwLspTrap 82 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.83
hwMplsTeLspBfdDown NOTIFICATION-TYPE
OBJECTS {hwMplsTunnelInterfaceName, hwMplsTunnelLspType }
STATUS current
DESCRIPTION
"This notification indicates the bfd status of te-lsp changes to down. "
::= { hwLspTrap 83 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.84
hwMplsTeLspBfdDownClear NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName, hwMplsTunnelLspType }
STATUS current
DESCRIPTION
"This notification indicates that the down alarm of bfd was cleared."
::= { hwLspTrap 84 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.85
hwMplsTunnelDelegationReturn NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the delegation of Tunnel LSP is returned by server."
::= { hwLspTrap 85 }
-- 1.3.6.1.4.1.2011.5.25.121.2.1.85
hwMplsTunnelDelegationReturnClear NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelInterfaceName }
STATUS current
DESCRIPTION
"This notification indicates that the delegation of Tunnel LSP is returned by server."
::= { hwLspTrap 86 }
-- 1.3.6.1.4.1.2011.5.25.121.2.2
hwMplsTrapObjects OBJECT IDENTIFIER ::= { hwMplsExtendTrap 2 }
hwMplsTunnelIfName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS obsolete
DESCRIPTION
"The Tunnel Interface name."
::= { hwMplsTrapObjects 1 }
hwMplsTunnelFrrConfigOper OBJECT-TYPE
SYNTAX INTEGER
{
unconfig(0),
config(1),
unknow(2)
}
MAX-ACCESS accessible-for-notify
STATUS obsolete
DESCRIPTION
"The value of this object identifies the operation that an FRR configuration is committed on the tunnel.
Options:
1.unconfig(0) -indicates the configuration of the undo mpls te fast-reroute command is committed.
2.config(1) -indicates the configuration of the mpls te fast-reroute command is committed.
3.unknow(2) -indicates an unknown operation."
::= { hwMplsTrapObjects 2 }
hwMplsTunnelDownReason OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
staticLspDown(2),
staticCrlspDown(3),
outIfDown(4),
resourcePreempted(5),
rsvpMessageTimeout(6),
rsvpNeighborLost(7),
bypassTunnelDownOrUnbinded(8),
cspfComputeFail(9),
userShutdown(10),
tpoamLossOfContinuity(11),
tpoamAlarmIndicationSignal(12),
tpoamRemoteDefectIndication(13),
tpoamUnexpectedMEG(14),
tpoamUnexpectedMEP(15),
tpoamLossSF(16),
tpoamPeriod(17),
mplsOamLocv(18),
mplsOamExcess(19),
mplsOamMisMatch(20),
mplsOamMisMerge(21),
mplsOamUnknown(22),
mplsOamBdi(23),
mplsOamFdi(24),
mplsOamSF(25),
mplsOamSD(26),
mplsOamDOamFail(27),
serviceResume(28),
serviceDelete(29),
clear(100)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates the alarm reason as below:
1. Other;
2. Static LSP down;
3. Static CR-LSP down;
4. The out interface of the RSVP LSP ingress is down;
5. The resource of RSVP LSP is preempted;
6. RSVP message timeout;
7. RSVP neighbor lost;
8. The bypass-tunnel is down or is unbinded with main tunnel, as bypass-tunnel is in used;
9. CSPF compute fail;
10.User shutdown the tunnel;
11.TPOAM indicates the connectivity fault of the link;
12.TPOAM indicates receive alarm indication signal defect of the link;
13.TPOAM indicates the remote defect of the link;
14.TPOAM indicates receive unexpected MEG-ID defect of the link;
15.TPOAM indicates receive unexpected MEP-ID defect of the link;
16.TPOAM indicates packet lost exceed signal fault threshold in the local link;
17.TPOAM indicates packet unexpected period defect of the link;
18.MPLS OAM connectivity fault;
19.MPLS OAM TTSI excess;
20.MPLS OAM TTSI mismatch;
21.MPLS OAM TTSI merge error;
22.MPLS OAM unknown error;
23.MPLS OAM BDI;
24.MPLS OAM FDI;
25.MPLS OAM signal fail;
26.MPLS OAM signal degrade;
27.MPLS OAM fail;
28.Service resume;
29.Service delete;
100. Clear."
::= { hwMplsTrapObjects 3 }
hwMplsLspProtocol OBJECT-TYPE
SYNTAX INTEGER
{
ldp(1),
bgp(2),
bgpv6(3),
ldpfrr(4),
rsvp(5),
totalLsp(6),
totalCrLsp(7),
ldpIngress(8),
ldpTransit(9),
ldpEgress(10),
bgpIngress(11),
bgpEgress(12),
bgpv6Ingress(13),
bgpv6Egress(14),
rsvpIngress(15),
rsvpTransit(16),
rsvpEgress(17),
totalLspIngress(18),
totalLspTransit(19),
totalLspEgress(20),
totalCrLspIngress(21),
totalCrLspTransit(22),
totalCrLspEgress(23),
totalPublicNetLspIngressTransit(24),
totalPublicNetLspTransitEgress(25),
privateNetBgp(26),
unknown(100)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the protocol of the lsp which exceeds the threshold or total count.
Options:
1.ldp(1) -indicates the lsp is ldp lsp.
2.bgp(2) -indicates the lsp is bgp lsp.
3.bgpv6(3) -indicates the lsp is bgpv6 lsp.
4.ldpfrr(4) -indicates the lsp is ldp frr lsp.
5.rsvp(5) -indicates the lsp is rsvp te lsp.
6.totalLsp(6) -indicates the lsp is total lsp.
7.totalCrLsp(7) -indicates the lsp is total cr-lsp.
8.ldpIngress(8) -indicates the lsp is ldp ingress lsp.
9.ldpTransit(9) -indicates the lsp is ldp transit lsp.
10.ldpEgress(10) -indicates the lsp is ldp egress lsp.
11.bgpIngress(11) -indicates the lsp is bgp ingress lsp.
12.bgpEgress(12) -indicates the lsp is bgp egress lsp.
13.bgpv6Ingress(13) -indicates the lsp is bgpv6 ingress lsp.
14.bgpv6Egress(14) -indicates the lsp is bgpv6 egress lsp.
15.rsvpIngress(15) -indicates the lsp is rsvp te ingress lsp.
16.rsvpTransit(16) -indicates the lsp is rsvp te transit lsp.
17.rsvpEgress(17) -indicates the lsp is rsvp te egress lsp.
18.totalLspIngress(18) -indicates the lsp is total ingress lsp.
19.totalLspTransit(19) -indicates the lsp is total transit lsp.
20.totalLspEgress(20) -indicates the lsp is total egress lsp.
21.totalCrLspIngress(21) -indicates the lsp is total ingress cr-lsp.
22.totalCrLspTransit(22) -indicates the lsp is total transit cr-lsp.
23.totalCrLspEgress(23) -indicates the lsp is total egress cr-lsp.
24.totalPublicNetLspIngressTransit(24) -indicates the lsp is total ingress and transit public netwrok lsp.
25.totalPublicNetLspTransitEgress(25) -indicates the lsp is total transit and egress public network cr-lsp.
26.privateNetBgp(26) -indicates the lsp is private network bgp lsp.
27.unknown(100) -indicates the lsp type is unknown. "
::= { hwMplsTrapObjects 4 }
hwMplsLspThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the threshold of the lsp."
::= { hwMplsTrapObjects 5 }
hwMplsLspTotalCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the total permit count of lsp."
::= { hwMplsTrapObjects 6 }
hwMplsLspCurrentCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the current count of the lsp."
::= { hwMplsTrapObjects 7 }
hwMplsTunnelDownLSRID OBJECT-TYPE
SYNTAX MplsLsrIdentifier
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the LSR ID of the error node on a tunnel."
::= { hwMplsTrapObjects 8 }
hwMplsTunnelDownIfIpAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the IP address of the error interface on a tunnel."
::= { hwMplsTrapObjects 9 }
hwMplsTunnelDownIfIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the IP address type of the error interface on a tunnel."
::= { hwMplsTrapObjects 10 }
hwMplsResourceType OBJECT-TYPE
SYNTAX INTEGER
{
autoBypassTunnelIf(1),
p2mpAutoTunnelIf(2),
teBfd(3),
ldpBfd(4),
mldpTotalTree(5),
mldpTotalBranch(6),
ldpTotalRemoteAdjacency(7),
outSegment(8),
autoPrimaryTunnelIf(9),
ldpTotalLocalAdjacency(10),
cspfNode(11),
cspfLink(12),
cspfNlsa(13),
cspfSrlg(14),
unknown(100)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies that the number of MPLS resources has exceeded the threshold or the maximum number.
Options:
1.autoBypassTunnelIf(1) -Indicates that the resource is auto bypass tunnel interface.
2.p2mpAutoTunnelIf(2) -Indicates that the resource is P2MP auto tunnel interface.
3.teBfd(3) -Indicates that the resource is dynamic BFD for TE LSP.
4.ldpBfd(4) -Indicates that the resource is dynamic BFD for LDP LSP.
5.mldpTotalTree(5) -Indicates that the resource is the total number of MLDP trees.
6.mldpTotalBranch(6) -Indicates that the resource is the total number of MLDP branches.
7.ldpTotalRemoteAdjacency(7) -Indicates that the resource is LDP total remote adjacency.
8.outSegment(8) -Indicates that the resource is LDP outSegment.
9.autoPrimaryTunnelIf(9) -Indicates that the resource is auto primary tunnel interface.
10.ldpTotalLocalAdjacency(10) -Indicates that the resource is LDP total local adjacency.
11.cspfNode(11) -Indicates that the resource is cspf node.
12.cspfLink(12) -Indicates that the resource is cspf link.
13.cspfNlsa(13) -Indicates that the resource is cspf nlsa.
14.cspfSrlg(14) -Indicates that the resource is cspf srlg.
15.unknown(100) -Indicates that the resource type is unknown. "
::= { hwMplsTrapObjects 11 }
hwMplsResourceCurrentCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the number of the resources."
::= { hwMplsTrapObjects 12 }
hwMplsResourceThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the threshold for the number of the resources."
::= { hwMplsTrapObjects 13 }
hwMplsResourceTotalCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the maximum number of allowed resources."
::= { hwMplsTrapObjects 14 }
hwMplsSessionTunnelId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the Tunnel ID."
::= { hwMplsTrapObjects 15 }
hwMplsLocalLspId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the LSP ID."
::= { hwMplsTrapObjects 16 }
hwMplsIngressLsrId OBJECT-TYPE
SYNTAX MplsLsrIdentifier
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the ingress LSR ID."
::= { hwMplsTrapObjects 17 }
hwMplsEgressLsrId OBJECT-TYPE
SYNTAX MplsLsrIdentifier
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object identifies the egress LSR ID."
::= { hwMplsTrapObjects 18 }
hwMplsLspName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the name of an bidirectional static CR-LSP."
::= { hwMplsTrapObjects 19 }
hwMplsTunnelFrrConfigChange NOTIFICATION-TYPE
OBJECTS { hwMplsTunnelIfName, hwMplsTunnelFrrConfigOper }
STATUS obsolete
DESCRIPTION
"When the trap indicating that TE-Frr configuration of Tunnel is changed is sent, the cause for the change of TE-FRR configuration of Tunnel is displayed."
::= { hwMplsExtendTrap 3 }
hwMplsGlobalObject OBJECT IDENTIFIER ::= { hwMplsExtendMib 3 }
hwMplsGlobalWorkMode OBJECT-TYPE
SYNTAX INTEGER
{
standard(1),
nonstandard(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The work mode of DS-TE system, default mode is nonstandard.
Options:
1. standard(1) -indicates work mode of DS-TE system is standard
2. nonstandard(2) -indicates work mode of DS-TE system is nonstandard"
::= { hwMplsGlobalObject 1 }
hwMplsGlobalBcModel OBJECT-TYPE
SYNTAX INTEGER
{
rdm(1),
mam(2),
extendMam(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bandwidth Constraint Model currently used by this LSR.
Options:
1. rdm(1) -indicates that the bandwidth constraint model is RDM.
2. mam(2) -indicates that the bandwidth constraint model is MAM.
3. extendMam(3) -indicates that the bandwidth constraint model is ExtendMam."
::= { hwMplsGlobalObject 2 }
hwMplsDynamicLabelTotalCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the total permit count of dynamic label."
::= { hwMplsGlobalObject 3 }
hwMplsDynamicLabelCurrentCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the current count of the dynamic label."
::= { hwMplsGlobalObject 4 }
hwMplsDynamicLabelThresholdUpperLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper limit threshold value (%) of dynamic label, default value is 80."
::= { hwMplsGlobalObject 5 }
hwMplsDynamicLabelThresholdLowerLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lower limit threshold value (%) of dynamic label, default value is 70."
::= { hwMplsGlobalObject 6 }
hwMplsLspStatistics OBJECT IDENTIFIER ::= { hwMplsExtendMib 4 }
hwMplsLspStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsLspStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwMplsLspStatisticsTable is used to display the number of ingress LSPs,
transit LSPs, or egress LSPs of specified types. The index of this table
is hwMplsLspStatisticsLspType."
::= { hwMplsLspStatistics 1 }
hwMplsLspStatisticsEntry OBJECT-TYPE
SYNTAX HwMplsLspStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwMplsLspStatisticsTable is used to display the number of ingress LSPs,
transit LSPs, or egress LSPs of specified types. The index of this entry
is hwMplsLspStatisticsLspType."
INDEX { hwMplsLspStatisticsLspType }
::= { hwMplsLspStatisticsTable 1 }
HwMplsLspStatisticsEntry ::=
SEQUENCE {
hwMplsLspStatisticsLspType
INTEGER,
hwMplsLspStatisticsIngressLspCount
Unsigned32,
hwMplsLspStatisticsTransitLspCount
Unsigned32,
hwMplsLspStatisticsEgressLspCount
Unsigned32,
hwMplsLspStatisticsTotalLspCount
Unsigned32
}
hwMplsLspStatisticsLspType OBJECT-TYPE
SYNTAX INTEGER
{
staticLsp(1),
staticCrLsp(2),
ldpLsp(3),
rsvpCrLsp(4),
bgpLsp(5),
asbrLsp(6),
bgpIpv6Lsp(7),
l3vpnIpv6Lsp(8)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the LSP type.
Options:
1. staticLsp(1) -indicates the static LSP.
2. staticCrLsp(2) -indicates the static CR-LSP.
3. ldpLsp(3) -indicates the LDP LSP.
4. rsvpCrLsp(4) -indicates the RSVP LSP.
5. bgpLsp(5) -indicates the BGP LSP.
6. asbrLsp(6) -indicates the ASBR LSP.
7. bgpIpv6Lsp(7) -indicates the BGP IPv6 LSP.
8. l3vpnIpv6Lsp(8)-indicates the L3VPN IPv6 LSP.
"
::= { hwMplsLspStatisticsEntry 1 }
hwMplsLspStatisticsIngressLspCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of ingress LSPs of a specified type."
::= { hwMplsLspStatisticsEntry 2 }
hwMplsLspStatisticsTransitLspCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of transit LSPs of a specified type."
::= { hwMplsLspStatisticsEntry 3 }
hwMplsLspStatisticsEgressLspCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of egress LSPs of a specified type."
::= { hwMplsLspStatisticsEntry 4 }
hwMplsLspStatisticsTotalLspCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of the ingress LSPs, transit LSPs and egress LSP of specified types."
::= { hwMplsLspStatisticsEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2
hwMplsTrafficStatisticsStaticLspTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsTrafficStatisticsStaticLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the traffic statistics of a LSP.
The indexes of this table is hwMplsTrafficStatisticsStaticLspName."
::= { hwMplsLspStatistics 2 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1
hwMplsTrafficStatisticsStaticLspEntry OBJECT-TYPE
SYNTAX HwMplsTrafficStatisticsStaticLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the traffic statistics of a LSP. The indexes of this entry is
hwMplsTrafficStatisticsStaticLspName."
INDEX { hwMplsTrafficStatisticsStaticLspName }
::= { hwMplsTrafficStatisticsStaticLspTable 1 }
HwMplsTrafficStatisticsStaticLspEntry ::=
SEQUENCE {
hwMplsTrafficStatisticsStaticLspName
SnmpAdminString,
hwMplsTrafficStatisticsStaticLspForwardInBytes
Counter64,
hwMplsTrafficStatisticsStaticLspForwardInPackets
Counter64,
hwMplsTrafficStatisticsStaticLspForwardOutBytes
Counter64,
hwMplsTrafficStatisticsStaticLspForwardOutPackets
Counter64,
hwMplsTrafficStatisticsStaticLspBackwardInBytes
Counter64,
hwMplsTrafficStatisticsStaticLspBackwardInPackets
Counter64,
hwMplsTrafficStatisticsStaticLspBackwardOutBytes
Counter64,
hwMplsTrafficStatisticsStaticLspBackwardOutPackets
Counter64
}
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.1
hwMplsTrafficStatisticsStaticLspName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the name of the static LSP or CR-LSP.
The name is appointed when the static LSP or CR-LSP
is created."
::= { hwMplsTrafficStatisticsStaticLspEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.2
hwMplsTrafficStatisticsStaticLspForwardInBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the forward of bistatic LSP's current incoming traffic statistics
in units of bytes.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: bytes"
::= { hwMplsTrafficStatisticsStaticLspEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.3
hwMplsTrafficStatisticsStaticLspForwardInPackets OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the forward of bistatic LSP's current incoming traffic statistics
in units of packets.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: packets"
::= { hwMplsTrafficStatisticsStaticLspEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.4
hwMplsTrafficStatisticsStaticLspForwardOutBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the forward of bistatic LSP's current outgoing traffic statistics
in units of bytes.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: bytes"
::= { hwMplsTrafficStatisticsStaticLspEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.5
hwMplsTrafficStatisticsStaticLspForwardOutPackets OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the forward of bistatic LSP's current outgoing traffic statistics
in units of packets.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: packets"
::= { hwMplsTrafficStatisticsStaticLspEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.6
hwMplsTrafficStatisticsStaticLspBackwardInBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the backward of bistatic LSP's current incoming traffic statistics
in units of bytes.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: bytes"
::= { hwMplsTrafficStatisticsStaticLspEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.7
hwMplsTrafficStatisticsStaticLspBackwardInPackets OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the backward of bistatic LSP's current incoming traffic statistics
in units of packets.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: packets"
::= { hwMplsTrafficStatisticsStaticLspEntry 7 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.8
hwMplsTrafficStatisticsStaticLspBackwardOutBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the backward of bistatic LSP's current outgoing traffic statistics
in units of bytes.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: bytes"
::= { hwMplsTrafficStatisticsStaticLspEntry 8 }
-- 1.3.6.1.4.1.2011.5.25.121.4.2.1.9
hwMplsTrafficStatisticsStaticLspBackwardOutPackets OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the backward of bistatic LSP's current outgoing traffic statistics
in units of packets.
For a sub-layer which has no concept of
traffic statistics, this object should be zero.
Unit: packets"
::= { hwMplsTrafficStatisticsStaticLspEntry 9 }
hwMplsExtendConformance OBJECT IDENTIFIER ::= { hwMplsExtendMib 6 }
hwMplsExtendGroups OBJECT IDENTIFIER ::= { hwMplsExtendConformance 1 }
hwMplsTunnelGroup OBJECT-GROUP
OBJECTS { hwTunnelFrrRouteDBInnerLabel, hwTunnelFrrRouteDBBypassIfIndex, hwTunnelFrrARHopProtActual, hwTunnelFrrARHopProtDesired, hwTunnelFrrBypassProtIfIndex,
hwStaticLspOwner, hwMplsTunnelClassType, hwMplsTunnelSessionAttr, hwMplsTunnelFrrARHopTableIndex, hwMplsTunnelName,
hwMplsTunnelIfIndex, hwMplsTunnelPreBandwidth, hwMplsTunnelNextBandwidth, hwMplsTunnelFrrSwitchover, hwMplsTunnelFrrBandwidth,
hwMplsTunnelOperStatus, hwMplsTunnelAdminStatus, hwMplsTunnelBandwidth, hwMplsTeVpnMaxBandwidth, hwMplsTeVpnAllocatedBandwidth,
hwMplsTunnelFrrHoldingPrio, hwMplsTunnelFrrSetupPrio, hwMplsTunnelFrrBypassTableIndex, hwMplsTunnelLspType,hwMplsTunnelInterfaceName, hwMplsTunnelSignalProto, hwMplsTunnelType }
STATUS current
DESCRIPTION
"Indicate the atrributes of the tunnel."
::= { hwMplsExtendGroups 1 }
hwStaticLspGroup OBJECT-GROUP
OBJECTS { hwStaticLspName, hwStaticLspStatus, hwStaticLspTnlToken, hwStaticLspInIfIndex, hwStaticLspInIfName, hwStaticLspDownReason }
STATUS current
DESCRIPTION
"Indicate the atrributes of the static lsp."
::= { hwMplsExtendGroups 2 }
hwMplsDsTeGroup OBJECT-GROUP
OBJECTS { hwMplsTunnelCt0Bandwidth, hwMplsTunnelCt1Bandwidth, hwMplsTunnelCt2Bandwidth, hwMplsTunnelCt3Bandwidth, hwMplsTunnelCt4Bandwidth,
hwMplsTunnelCt5Bandwidth, hwMplsTunnelCt6Bandwidth, hwMplsTunnelCt7Bandwidth, hwStaticLspClassType, hwStaticLspBandwidth,
hwMplsTeClassClassType, hwMplsTeClassPriority, hwMplsTeClassDescription, hwMplsGlobalBcModel, hwMplsGlobalWorkMode,
hwMplsIfBc7Bandwidth, hwMplsIfBc6Bandwidth, hwMplsIfBc5Bandwidth, hwMplsIfBc4Bandwidth, hwMplsIfBc3Bandwidth,
hwMplsIfBc2Bandwidth, hwMplsIfBc1Bandwidth, hwMplsIfBc0Bandwidth, hwMplsIfMaxResvBandwidth }
STATUS current
DESCRIPTION
"Indicate the atrributes about DS-TE."
::= { hwMplsExtendGroups 3 }
hwMplsLspStatisticsGroup OBJECT-GROUP
OBJECTS { hwMplsLspStatisticsIngressLspCount, hwMplsLspStatisticsTransitLspCount, hwMplsLspStatisticsEgressLspCount, hwMplsLspStatisticsTotalLspCount }
STATUS current
DESCRIPTION
"Indicate LSP statistics."
::= { hwMplsExtendGroups 4 }
hwMplsObsoleteGroup OBJECT-GROUP
OBJECTS { hwMplsTunnelIfName, hwMplsTunnelFrrConfigOper }
STATUS obsolete
DESCRIPTION
"Indicate the OBSOLETE objects of MPLS."
::= { hwMplsExtendGroups 5 }
hwMplsTrapGroup OBJECT-GROUP
OBJECTS { hwMplsTunnelDownReason, hwMplsTunnelDownLSRID, hwMplsTunnelDownIfIpAddrType, hwMplsTunnelDownIfIpAddr }
STATUS current
DESCRIPTION
"For mpls trap object."
::= { hwMplsExtendGroups 6 }
hwMplsRingGroup OBJECT-GROUP
OBJECTS { hwMplsRingNodeID, hwMplsRingName, hwMplsRingDirection, hwMplsRingSwitchReason }
STATUS current
DESCRIPTION
"For mpls ring trap object."
::= { hwMplsExtendGroups 7 }
hwMplsGlobalGroup OBJECT-GROUP
OBJECTS { hwMplsDynamicLabelTotalCount, hwMplsDynamicLabelCurrentCount, hwMplsDynamicLabelThresholdUpperLimit, hwMplsDynamicLabelThresholdLowerLimit }
STATUS current
DESCRIPTION
"For mpls global object."
::= { hwMplsExtendGroups 8 }
hwMplsLspGroup OBJECT-GROUP
OBJECTS { hwMplsLspCurrentCount, hwMplsLspTotalCount, hwMplsLspProtocol, hwMplsLspThreshold }
STATUS current
DESCRIPTION
"For mpls lsp object."
::= { hwMplsExtendGroups 9 }
hwMplsLspTrafficStatisticGroup OBJECT-GROUP
OBJECTS { hwMplsTrafficStatisticsStaticLspForwardInBytes, hwMplsTrafficStatisticsStaticLspForwardInPackets,
hwMplsTrafficStatisticsStaticLspForwardOutBytes, hwMplsTrafficStatisticsStaticLspForwardOutPackets,
hwMplsTrafficStatisticsStaticLspBackwardInBytes, hwMplsTrafficStatisticsStaticLspBackwardInPackets,
hwMplsTrafficStatisticsStaticLspBackwardOutBytes, hwMplsTrafficStatisticsStaticLspBackwardOutPackets }
STATUS current
DESCRIPTION
"Indicate the traffic statistic of the LSP."
::= { hwMplsExtendGroups 10 }
hwMplsResourceGroup OBJECT-GROUP
OBJECTS { hwMplsResourceType, hwMplsResourceCurrentCount, hwMplsResourceThreshold, hwMplsResourceTotalCount }
STATUS current
DESCRIPTION
"For mpls resource object."
::= { hwMplsExtendGroups 11 }
hwMplsExtendCompliances OBJECT IDENTIFIER ::= { hwMplsExtendConformance 2 }
hwExtendTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwMplsTeFrrProtAval, hwMplsTeFrrProtNotAval, hwMplsStaticLspUp, hwMplsStaticLspDown, hwMplsStaticCRLspUp,
hwMplsStaticCRLspDown, hwMplsTeFrrSwitch, hwMplsTeFrrResume, hwMplsTunnelHSBSwitch, hwMplsTunnelHSBResume,
hwMplsTunnelOBSwitch, hwMplsTunnelOBResume, hwMplsTunnelChangeBw, hwMplsTunnelTpOamLossSD, hwMplsOamSDRecovery,
hwMplsOamLoss, hwMplsOamLossRecovery, hwMplsOamAis, hwMplsOamAisRecovery, hwMplsOamRdi, hwMplsOamRdiRecovery,
hwMplsOamMeg, hwMplsOamMegRecovery, hwMplsOamMep, hwMplsOamMepRecovery, hwMplsOamSF, hwMplsOamSFRecovery,
hwMplsOamPeriod, hwMplsOamPeriodRecovery, hwMplsOamLck, hwMplsOamLckRecovery, hwMplsOamExcess, hwMplsOamExcessRecovery,
hwMplsOamMisMatch, hwMplsOamMisMatchRecovery, hwMplsOamMisMerge, hwMplsOamMisMergeRecovery, hwMplsOamUnknown, hwMplsOamUnknownRecovery,
hwMplsOamBDI, hwMplsOamBDIRecovery, hwMplsOamFail, hwMplsOamFailRecovery,
hwMplsTunnelPrimaryUp, hwMplsTunnelPrimaryDown, hwMplsTunnelHotstandbyUp, hwMplsTunnelHotstandbyDown,
hwMplsTunnelOrdinaryUp, hwMplsTunnelOrdinaryDown, hwMplsTunnelBesteffortUp, hwMplsTunnelBesteffortDown, hwMplsTeAutoTunnelDownClear, hwMplsTeAutoTunnelPrimaryDownClear,
hwMplsTunnelBBSwitch, hwMplsTunnelBBResume, hwMplsExtTunnelDown, hwMplsExtTunnelDownClear, hwMplsOamLocalLock, hwMplsOamLocalLockRecovery, hwMplsRingWestOamLoss, hwMplsRingWestOamLossClear, hwMplsRingEastOamLoss,
hwMplsRingEastOamLossClear, hwMplsRingWestOamRDI, hwMplsRingWestOamRDIClear, hwMplsRingEastOamRDI, hwMplsRingEastOamRDIClear, hwMplsRingWestOamUnexpectedMEG,
hwMplsRingWestOamUnexpectedMEGClear, hwMplsRingEastOamUnexpectedMEG, hwMplsRingEastOamUnexpectedMEGClear, hwMplsRingWestOamUnexpectedPeriod, hwMplsRingWestOamUnexpectedPeriodClear,
hwMplsRingEastOamUnexpectedPeriod, hwMplsRingEastOamUnexpectedPeriodClear, hwMplsRingWestOamExcess, hwMplsRingWestOamExcessClear, hwMplsRingEastOamExcess,
hwMplsRingEastOamExcessClear, hwMplsRingWestOamSD, hwMplsRingWestOamSDClear, hwMplsRingEastOamSD, hwMplsRingEastOamSDClear, hwMplsRingWestOamSF, hwMplsRingWestOamSFClear,
hwMplsRingEastOamSF, hwMplsRingEastOamSFClear, hwMplsRingWestAPSSwitch, hwMplsRingWestAPSResume, hwMplsRingEastAPSSwitch, hwMplsRingEastAPSResume,
hwMplsRingWestAPSSwitchFail, hwMplsRingWestAPSSwitchFailClear, hwMplsRingEastAPSSwitchFail, hwMplsRingEastAPSSwitchFailClear, hwMplsRingSwitch, hwMplsRingResume,
hwMplsRingWestAPSLost, hwMplsRingWestAPSLostClear, hwMplsRingEastAPSLost, hwMplsRingEastAPSLostClear, hwMplsRingWestAPSMismatch, hwMplsRingWestAPSMismatchClear,
hwMplsRingEastAPSMismatch, hwMplsRingEastAPSMismatchClear,hwMplsRingWestOamUnexpectedMEP, hwMplsRingWestOamUnexpectedMEPClear, hwMplsRingEastOamUnexpectedMEP, hwMplsRingEastOamUnexpectedMEPClear, hwMplsTunnelDelete,
hwMplsLspTotalCountExceed, hwMplsLspThresholdExceed, hwMplsLspTotalCountExceedClear, hwMplsLspThresholdExceedClear, hwMplsDynamicLabelThresholdExceed,
hwMplsDynamicLabelThresholdExceedClear, hwMplsDynamicLabelTotalCountExceed, hwMplsDynamicLabelTotalCountExceedClear,
hwMplsResourceThresholdExceed, hwMplsResourceThresholdExceedClear, hwMplsResourceTotalCountExceed, hwMplsResourceTotalCountExceedClear,
hwMplsLspLoopBack, hwMplsLspLoopBackClear, hwMplsTunnelCommitLost, hwMplsTunnelCommitLostClear, hwMplsTunnelHotstandbySwitch, hwMplsTunnelHotstandbyResume, hwMplsTunnelBfdPathMismatch, hwMplsTunnelBfdPathMismatchClear,
hwMplsTeLspBfdDown, hwMplsTeLspBfdDownClear, hwMplsTunnelDelegationReturn, hwMplsTunnelDelegationReturnClear
}
STATUS current
DESCRIPTION
"Indicate the traps."
::= { hwMplsExtendCompliances 1 }
hwObsoleteTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwMplsTunnelFrrConfigChange, hwMplsTunnelUp, hwMplsTunnelDown, hwMplsRingSwitch, hwMplsRingResume }
STATUS obsolete
DESCRIPTION
"Indicate the Obsolete traps."
::= { hwMplsExtendCompliances 2 }
hwMplsModuleCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"hwMplsModuleCompliance"
MODULE HUAWEI-MPLS-EXTEND-MIB
MANDATORY-GROUPS { hwStaticLspGroup, hwMplsTunnelGroup, hwMplsDsTeGroup, hwMplsRingGroup }
::= { hwMplsExtendCompliances 3 }
-- 1.3.6.1.4.1.2011.5.25.121.7
hwMplsRingMib OBJECT IDENTIFIER ::= { hwMplsExtendMib 7 }
-- 1.3.6.1.4.1.2011.5.25.121.7.1
hwMplsRingTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMplsRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the table information of the MPLS ring."
::= { hwMplsRingMib 1 }
-- 1.3.6.1.4.1.2011.5.25.121.7.1.1
hwMplsRingEntry OBJECT-TYPE
SYNTAX HwMplsRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the table information of the MPLS ring."
INDEX {hwMplsRingID}
::= { hwMplsRingTable 1 }
HwMplsRingEntry ::=
SEQUENCE {
hwMplsRingID
Unsigned32,
hwMplsRingNodeID
Unsigned32,
hwMplsRingName
OCTET STRING,
hwMplsRingDirection
OCTET STRING,
hwMplsRingSwitchReason
OCTET STRING
}
-- 1.3.6.1.4.1.2011.5.25.121.7.1.1.1
hwMplsRingID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ID of the MPLS ring. "
::= { hwMplsRingEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.121.7.1.1.2
hwMplsRingNodeID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the ID of the current Node on the MPLS ring."
::= { hwMplsRingEntry 2 }
hwMplsRingName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the name of MPLS ring."
::= { hwMplsRingEntry 3 }
hwMplsRingDirection OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the direction of the MPLS ring."
::= { hwMplsRingEntry 4 }
hwMplsRingSwitchReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the switch reason of the MPLS ring."
::= { hwMplsRingEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2
hwMplsRingTrap OBJECT IDENTIFIER ::= { hwMplsRingMib 2 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.1
hwMplsRingSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsRingNodeID, hwMplsRingName, hwMplsRingDirection, hwMplsRingSwitchReason}
STATUS obsolete
DESCRIPTION
"
The notification indicates that the MPLS ring switched.
"
::= { hwMplsRingTrap 1 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.2
hwMplsRingResume NOTIFICATION-TYPE
OBJECTS { hwMplsRingNodeID, hwMplsRingName, hwMplsRingDirection }
STATUS obsolete
DESCRIPTION
"
The notification indicates that the MPLS ring resumed.
"
::= { hwMplsRingTrap 2 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.3
hwMplsRingWestOamLoss NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that no expected CV/FFD packet is received for three consecutive cycles in the west of the MPLS ring.
"
::= { hwMplsRingTrap 3 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.4
hwMplsRingWestOamLossClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamLoss alarm was cleared.
"
::= { hwMplsRingTrap 4 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.5
hwMplsRingEastOamLoss NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that no expected CV/FFD packet is received for three consecutive cycles in the east of the MPLS ring.
"
::= { hwMplsRingTrap 5 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.6
hwMplsRingEastOamLossClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamLoss alarm was cleared.
"
::= { hwMplsRingTrap 6 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.7
hwMplsRingWestOamRDI NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that RDI packets are received in the west of the MPLS ring, indicating that a fault occurs on the forward ring.
"
::= { hwMplsRingTrap 7 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.8
hwMplsRingWestOamRDIClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamRDI alarm was cleared.
"
::= { hwMplsRingTrap 8 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.9
hwMplsRingEastOamRDI NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that RDI packets are received in the east of the MPLS ring, indicating that a fault occurs on the forward ring.
"
::= { hwMplsRingTrap 9 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.10
hwMplsRingEastOamRDIClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamRDI alarm was cleared.
"
::= { hwMplsRingTrap 10 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.11
hwMplsRingWestOamUnexpectedMEG NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that a CCM frame carrying a correct MEG level but incorrect MEG ID is received in the west of the MPLS ring.
"
::= { hwMplsRingTrap 11 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.12
hwMplsRingWestOamUnexpectedMEGClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamUnexpectedMEG alarm was cleared.
"
::= { hwMplsRingTrap 12 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.13
hwMplsRingEastOamUnexpectedMEG NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that a CCM frame carrying a correct MEG level but incorrect MEG ID is received in the east of the MPLS ring.
"
::= { hwMplsRingTrap 13 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.14
hwMplsRingEastOamUnexpectedMEGClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamUnexpectedMEG alarm was cleared.
"
::= { hwMplsRingTrap 14 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.15
hwMplsRingWestOamUnexpectedPeriod NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that a CCM frame carrying a correct MEG level, MEG ID,
and MEP ID but incorrect period value is received in the west MEP of the MPLS ring.
"
::= { hwMplsRingTrap 15 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.16
hwMplsRingWestOamUnexpectedPeriodClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamUnexpectedPeriod alarm was cleared.
"
::= { hwMplsRingTrap 16 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.17
hwMplsRingEastOamUnexpectedPeriod NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that a CCM frame carrying a correct MEG level, MEG ID,
and MEP ID but incorrect period value is received in the east MEP of the MPLS ring.
"
::= { hwMplsRingTrap 17 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.18
hwMplsRingEastOamUnexpectedPeriodClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamUnexpectedPeriod alarm was cleared.
"
::= { hwMplsRingTrap 18 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.19
hwMplsRingWestOamExcess NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that five or more CV/FFD packets are correctly received
within three consecutive cycles in the west of the MPLS ring.
"
::= { hwMplsRingTrap 19 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.20
hwMplsRingWestOamExcessClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamExcess alarm was cleared.
"
::= { hwMplsRingTrap 20 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.21
hwMplsRingEastOamExcess NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that five or more CV/FFD packets are correctly received
within three consecutive cycles in the east of the MPLS ring.
"
::= { hwMplsRingTrap 21 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.22
hwMplsRingEastOamExcessClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamExcess alarm was cleared.
"
::= { hwMplsRingTrap 22 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.23
hwMplsRingWestOamSD NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the number of packets for connectivity check received
in the west of the MPLS ring is smaller than the SD threshold.
"
::= { hwMplsRingTrap 23 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.24
hwMplsRingWestOamSDClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamSD alarm was cleared.
"
::= { hwMplsRingTrap 24 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.25
hwMplsRingEastOamSD NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the number of packets for connectivity check received
in the east of the MPLS ring is smaller than the SD threshold.
"
::= { hwMplsRingTrap 25 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.26
hwMplsRingEastOamSDClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamSD alarm was cleared.
"
::= { hwMplsRingTrap 26 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.27
hwMplsRingWestOamSF NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the number of packets for connectivity check received in
the west of the MPLS ring is smaller than the SF threshold.
"
::= { hwMplsRingTrap 27 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.28
hwMplsRingWestOamSFClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamSF alarm was cleared.
"
::= { hwMplsRingTrap 28 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.29
hwMplsRingEastOamSF NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the number of packets for connectivity check received in
the east of the MPLS ring is smaller than the SF threshold.
"
::= { hwMplsRingTrap 29 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.30
hwMplsRingEastOamSFClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamSF alarm was cleared.
"
::= { hwMplsRingTrap 30 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.31
hwMplsRingWestAPSSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that APS switching occurs in the west of the MPLS ring.
"
::= { hwMplsRingTrap 31 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.32
hwMplsRingWestAPSResume NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that APS switches back in the west of the MPLS ring.
"
::= { hwMplsRingTrap 32 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.33
hwMplsRingEastAPSSwitch NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that APS switching occurs in the east of the MPLS ring.
"
::= { hwMplsRingTrap 33 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.34
hwMplsRingEastAPSResume NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that APS switches back in the east of the MPLS ring.
"
::= { hwMplsRingTrap 34 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.35
hwMplsRingWestAPSSwitchFail NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the remote APS switching fails in the west of the MPLS ring.
"
::= { hwMplsRingTrap 35 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.36
hwMplsRingWestAPSSwitchFailClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestAPSSwitchFail alarm was cleared.
"
::= { hwMplsRingTrap 36 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.37
hwMplsRingEastAPSSwitchFail NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the remote APS switching fails in the east of the MPLS ring.
"
::= { hwMplsRingTrap 37 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.38
hwMplsRingEastAPSSwitchFailClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastAPSSwitchFail alarm was cleared.
"
::= { hwMplsRingTrap 38 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.39
hwMplsRingWestAPSLost NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that APS packets are missing in the west of the MPLS ring.
"
::= { hwMplsRingTrap 39 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.40
hwMplsRingWestAPSLostClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestAPSLost alarm was cleared.
"
::= { hwMplsRingTrap 40 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.41
hwMplsRingEastAPSLost NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that APS packets are missing in the east of the MPLS ring.
"
::= { hwMplsRingTrap 41 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.42
hwMplsRingEastAPSLostClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastAPSLost alarm was cleared.
"
::= { hwMplsRingTrap 42 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.43
hwMplsRingWestAPSMismatch NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the source ID carried by APS packets received in the west
is different from the peer source ID configured for the west state machine on the MPLS ring.
"
::= { hwMplsRingTrap 43 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.44
hwMplsRingWestAPSMismatchClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestAPSMismatch alarm was cleared.
"
::= { hwMplsRingTrap 44 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.45
hwMplsRingEastAPSMismatch NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the source ID carried by APS packets received in the east
is different from the peer source ID configured for the east state machine on the MPLS ring.
"
::= { hwMplsRingTrap 45 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.46
hwMplsRingEastAPSMismatchClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastAPSMismatch alarm was cleared.
"
::= { hwMplsRingTrap 46 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.47
hwMplsRingWestOamUnexpectedMEP NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that a CCM frame carrying a correct MEG level and correct MEG ID but not the expected MEP ID is received in the west of the MPLS ring.
"
::= { hwMplsRingTrap 47 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.48
hwMplsRingWestOamUnexpectedMEPClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingWestOamUnexpectedMEP alarm was cleared.
"
::= { hwMplsRingTrap 48 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.49
hwMplsRingEastOamUnexpectedMEP NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that a CCM frame carrying a correct MEG level and correct MEG ID but not the expected MEP ID is received in the east of the MPLS ring.
"
::= { hwMplsRingTrap 49 }
-- 1.3.6.1.4.1.2011.5.25.121.7.2.50
hwMplsRingEastOamUnexpectedMEPClear NOTIFICATION-TYPE
OBJECTS { hwMplsRingName }
STATUS current
DESCRIPTION
"
The notification indicates that the hwMplsRingEastOamUnexpectedMEP alarm was cleared.
"
::= { hwMplsRingTrap 50 }
END
--
-- HUAWEI-MPLS-EXTEND-MIB.mib
--
|