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
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
|
-- *****************************************************************
-- TN-MPLS-MIB.mib : TN MPLS-TP private MIB
--
-- Copyright (c) 2015 by Transition Networks, Inc.
-- All rights reserved.
--
-- *****************************************************************
TN-MPLS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
tnProducts
FROM TRANSITION-SMI
Counter64 FROM SNMPv2-SMI
Integer32 FROM SNMPv2-SMI
IpAddress FROM SNMPv2-SMI
Unsigned32 FROM SNMPv2-SMI
MacAddress FROM SNMPv2-TC
TruthValue FROM SNMPv2-TC
TNDisplayString FROM TN-TC
TNInterfaceIndex FROM TN-TC
TNRowEditorState FROM TN-TC
TNUnsigned16 FROM TN-TC
TNUnsigned8 FROM TN-TC
;
tnMplsMib MODULE-IDENTITY
LAST-UPDATED "201504200000Z"
ORGANIZATION "Transition Networks, Inc."
CONTACT-INFO
"Transition Networks
Technical Support
10900 Red Circle Drive
Minnetonka, MN 55343 USA
Tel: +1-800-526-9267
E-mail: techsupport@transition.com"
DESCRIPTION
"The mib module for MPLS settings."
REVISION "201504200000Z"
DESCRIPTION
"Initial Revision of this module"
::= { tnProducts 144 }
TNMplsStateType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the MPLS state."
SYNTAX INTEGER { unconfigured(0), configured(1), up(2), down(3) }
TNMplsTagType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the MPLS tag type."
SYNTAX INTEGER { untagged(0), ctagged(1), stagged(2) }
TNMplsTunnelMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the MPLS tunnel mode."
SYNTAX INTEGER { pipe(0), shortpipe(1), uniform(2), useglobal(3) }
TNMplsVccvType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the MPLS Vccv type."
SYNTAX INTEGER { none(0), vccv1(1), vccv2(2), vccv3(3), vccv4(4) }
tnMplsMibObjects OBJECT IDENTIFIER
::= { tnMplsMib 1 }
tnMplsCapabilities OBJECT IDENTIFIER
::= { tnMplsMibObjects 1 }
tnMplsCapabilitiesMaxLinks OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of links."
::= { tnMplsCapabilities 1 }
tnMplsCapabilitiesMaxTunnels OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of tunnels."
::= { tnMplsCapabilities 2 }
tnMplsCapabilitiesMaxPw OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of pseudo wires."
::= { tnMplsCapabilities 3 }
tnMplsCapabilitiesMaxLsp OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of LSP and xc."
::= { tnMplsCapabilities 4 }
tnMplsCapabilitiesMaxCosMap OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of Class of Service maps."
::= { tnMplsCapabilities 5 }
tnMplsCapabilitiesMaxTunnelNameLen OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of characters in tunnel name."
::= { tnMplsCapabilities 6 }
tnMplsConfig OBJECT IDENTIFIER
::= { tnMplsMibObjects 2 }
tnMplsConfigGlobal OBJECT IDENTIFIER
::= { tnMplsConfig 1 }
tnMplsConfigGlobalMain OBJECT IDENTIFIER
::= { tnMplsConfigGlobal 1 }
tnMplsConfigGlobalMainTunnelMode OBJECT-TYPE
SYNTAX TNMplsTunnelMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tunnel Mode"
::= { tnMplsConfigGlobalMain 1 }
tnMplsConfigGlobalMainGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global ID (for OAM)"
::= { tnMplsConfigGlobalMain 2 }
tnMplsConfigGlobalMainNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Node ID (for OAM)"
::= { tnMplsConfigGlobalMain 3 }
tnMplsConfigGlobalMainIccCarrierCode OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..6))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ITU-T M.1400 Carrier Code (ICC)."
::= { tnMplsConfigGlobalMain 4 }
tnMplsConfigLink OBJECT IDENTIFIER
::= { tnMplsConfig 2 }
tnMplsConfigLinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsConfigLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the MPLS Link configuration table."
::= { tnMplsConfigLink 1 }
tnMplsConfigLinkEntry OBJECT-TYPE
SYNTAX TNMplsConfigLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an MPLS Link."
INDEX { tnMplsConfigLinkGroupIfIndex }
::= { tnMplsConfigLinkTable 1 }
TNMplsConfigLinkEntry ::= SEQUENCE {
tnMplsConfigLinkGroupIfIndex TNInterfaceIndex,
tnMplsConfigLinkPort TNInterfaceIndex,
tnMplsConfigLinkMACAddressNextHop MacAddress,
tnMplsConfigLinkMACAddress MacAddress,
tnMplsConfigLinkVLANTagType TNMplsTagType,
tnMplsConfigLinkVLANId TNUnsigned16,
tnMplsConfigLinkVLANpcp Unsigned32,
tnMplsConfigLinkVLANdei TNUnsigned8,
tnMplsConfigLinkSrcNodeId IpAddress,
tnMplsConfigLinkSrcGlobalId Unsigned32,
tnMplsConfigLinkDstNodeId IpAddress,
tnMplsConfigLinkDstGlobalId Unsigned32,
tnMplsConfigLinkDstIfNum Unsigned32,
tnMplsConfigLinkSrcNodeIdValid TruthValue,
tnMplsConfigLinkSrcGlobalIdValid TruthValue,
tnMplsConfigLinkDstGlobalIdValid TruthValue,
tnMplsConfigLinkAction TNRowEditorState
}
tnMplsConfigLinkGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsConfigLinkEntry 1 }
tnMplsConfigLinkPort OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Physical port interface index."
::= { tnMplsConfigLinkEntry 2 }
tnMplsConfigLinkMACAddressNextHop OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MAC address of peer (next hop) MPLS node."
::= { tnMplsConfigLinkEntry 3 }
tnMplsConfigLinkMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MAC address of this MPLS interface."
::= { tnMplsConfigLinkEntry 4 }
tnMplsConfigLinkVLANTagType OBJECT-TYPE
SYNTAX TNMplsTagType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN tag type."
::= { tnMplsConfigLinkEntry 5 }
tnMplsConfigLinkVLANId OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN ID, if tag_type isn't untagged."
::= { tnMplsConfigLinkEntry 6 }
tnMplsConfigLinkVLANpcp OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN PCP; only relevant if tagged."
::= { tnMplsConfigLinkEntry 7 }
tnMplsConfigLinkVLANdei OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN DEI; only relevant if tagged."
::= { tnMplsConfigLinkEntry 8 }
tnMplsConfigLinkSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigLinkEntry 9 }
tnMplsConfigLinkSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigLinkEntry 10 }
tnMplsConfigLinkDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigLinkEntry 11 }
tnMplsConfigLinkDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigLinkEntry 12 }
tnMplsConfigLinkDstIfNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination interface number (for OAM)."
::= { tnMplsConfigLinkEntry 13 }
tnMplsConfigLinkSrcNodeIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID valid (for OAM)."
::= { tnMplsConfigLinkEntry 14 }
tnMplsConfigLinkSrcGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID valid (for OAM)."
::= { tnMplsConfigLinkEntry 15 }
tnMplsConfigLinkDstGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID valid (for OAM)."
::= { tnMplsConfigLinkEntry 16 }
tnMplsConfigLinkAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigLinkEntry 100 }
tnMplsConfigLinkRowEditor OBJECT IDENTIFIER
::= { tnMplsConfigLink 2 }
tnMplsConfigLinkRowEditorGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsConfigLinkRowEditor 1 }
tnMplsConfigLinkRowEditorPort OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Physical port interface index."
::= { tnMplsConfigLinkRowEditor 2 }
tnMplsConfigLinkRowEditorMACAddressNextHop OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MAC address of peer (next hop) MPLS node."
::= { tnMplsConfigLinkRowEditor 3 }
tnMplsConfigLinkRowEditorMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MAC address of this MPLS interface."
::= { tnMplsConfigLinkRowEditor 4 }
tnMplsConfigLinkRowEditorVLANTagType OBJECT-TYPE
SYNTAX TNMplsTagType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN tag type."
::= { tnMplsConfigLinkRowEditor 5 }
tnMplsConfigLinkRowEditorVLANId OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN ID, if tag_type isn't untagged."
::= { tnMplsConfigLinkRowEditor 6 }
tnMplsConfigLinkRowEditorVLANpcp OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN PCP; only relevant if tagged."
::= { tnMplsConfigLinkRowEditor 7 }
tnMplsConfigLinkRowEditorVLANdei OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN DEI; only relevant if tagged."
::= { tnMplsConfigLinkRowEditor 8 }
tnMplsConfigLinkRowEditorSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigLinkRowEditor 9 }
tnMplsConfigLinkRowEditorSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigLinkRowEditor 10 }
tnMplsConfigLinkRowEditorDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigLinkRowEditor 11 }
tnMplsConfigLinkRowEditorDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigLinkRowEditor 12 }
tnMplsConfigLinkRowEditorDstIfNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination interface number (for OAM)."
::= { tnMplsConfigLinkRowEditor 13 }
tnMplsConfigLinkRowEditorSrcNodeIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID valid (for OAM)."
::= { tnMplsConfigLinkRowEditor 14 }
tnMplsConfigLinkRowEditorSrcGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID valid (for OAM)."
::= { tnMplsConfigLinkRowEditor 15 }
tnMplsConfigLinkRowEditorDstGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID valid (for OAM)."
::= { tnMplsConfigLinkRowEditor 16 }
tnMplsConfigLinkRowEditorAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigLinkRowEditor 100 }
tnMplsConfigTunnel OBJECT IDENTIFIER
::= { tnMplsConfig 3 }
tnMplsConfigTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsConfigTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the MPLS Tunnel configuration table."
::= { tnMplsConfigTunnel 1 }
tnMplsConfigTunnelEntry OBJECT-TYPE
SYNTAX TNMplsConfigTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an MPLS Tunnel."
INDEX { tnMplsConfigTunnelGroupIfIndex }
::= { tnMplsConfigTunnelTable 1 }
TNMplsConfigTunnelEntry ::= SEQUENCE {
tnMplsConfigTunnelGroupIfIndex TNInterfaceIndex,
tnMplsConfigTunnelTunnelName TNDisplayString,
tnMplsConfigTunnelTunnelMode TNMplsTunnelMode,
tnMplsConfigTunnelSrcNodeId IpAddress,
tnMplsConfigTunnelSrcGlobalId Unsigned32,
tnMplsConfigTunnelDstNodeId IpAddress,
tnMplsConfigTunnelDstGlobalId Unsigned32,
tnMplsConfigTunnelDstTunnelTpNum Unsigned32,
tnMplsConfigTunnelSrcTunnelTpNum TNUnsigned16,
tnMplsConfigTunnelSrcLspNum TNUnsigned16,
tnMplsConfigTunnelDstLspNum TNUnsigned16,
tnMplsConfigTunnelIsSpme TruthValue,
tnMplsConfigTunnelSrcNodeIsValid TruthValue,
tnMplsConfigTunnelSrcGlobalIdValid TruthValue,
tnMplsConfigTunnelDstGlobalIdValid TruthValue,
tnMplsConfigTunnelIngressLabel Unsigned32,
tnMplsConfigTunnelEgressLabel Unsigned32,
tnMplsConfigTunnelAttachInterface TNInterfaceIndex,
tnMplsConfigTunnelTrafficClass TNUnsigned8,
tnMplsConfigTunnelTtl TNUnsigned8,
tnMplsConfigTunnelInCosMapId TNUnsigned8,
tnMplsConfigTunnelOutCosMapId TNUnsigned8,
tnMplsConfigTunnelIsLLsp TruthValue,
tnMplsConfigTunnelLLspCos TNUnsigned8,
tnMplsConfigTunnelAction TNRowEditorState
}
tnMplsConfigTunnelGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsConfigTunnelEntry 1 }
tnMplsConfigTunnelTunnelName OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tunnel name."
::= { tnMplsConfigTunnelEntry 2 }
tnMplsConfigTunnelTunnelMode OBJECT-TYPE
SYNTAX TNMplsTunnelMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DiffServ tunnel modes for Traffic Class and TTL."
::= { tnMplsConfigTunnelEntry 3 }
tnMplsConfigTunnelSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigTunnelEntry 4 }
tnMplsConfigTunnelSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigTunnelEntry 5 }
tnMplsConfigTunnelDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigTunnelEntry 6 }
tnMplsConfigTunnelDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigTunnelEntry 7 }
tnMplsConfigTunnelDstTunnelTpNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination tunnel ID number (for OAM)."
::= { tnMplsConfigTunnelEntry 8 }
tnMplsConfigTunnelSrcTunnelTpNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source tunnel ID number (if SPME, for OAM)."
::= { tnMplsConfigTunnelEntry 9 }
tnMplsConfigTunnelSrcLspNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source LSP number (if SPME, for OAM)."
::= { tnMplsConfigTunnelEntry 10 }
tnMplsConfigTunnelDstLspNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination LSP number (if SPME, for OAM)."
::= { tnMplsConfigTunnelEntry 11 }
tnMplsConfigTunnelIsSpme OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE if tunnel endpoint is an SPME (OAM)."
::= { tnMplsConfigTunnelEntry 12 }
tnMplsConfigTunnelSrcNodeIsValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID valid (for OAM)."
::= { tnMplsConfigTunnelEntry 13 }
tnMplsConfigTunnelSrcGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID valid (for OAM)."
::= { tnMplsConfigTunnelEntry 14 }
tnMplsConfigTunnelDstGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID valid (for OAM)."
::= { tnMplsConfigTunnelEntry 15 }
tnMplsConfigTunnelIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigTunnelEntry 16 }
tnMplsConfigTunnelEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigTunnelEntry 17 }
tnMplsConfigTunnelAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS link interface or MPLS tunnel endpoint interface that tunnel
endpoint is attached to."
::= { tnMplsConfigTunnelEntry 18 }
tnMplsConfigTunnelTrafficClass OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Traffic class used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigTunnelEntry 19 }
tnMplsConfigTunnelTtl OBJECT-TYPE
SYNTAX TNUnsigned8 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time-to-live used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigTunnelEntry 20 }
tnMplsConfigTunnelInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 for no mapping."
::= { tnMplsConfigTunnelEntry 21 }
tnMplsConfigTunnelOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for no mapping."
::= { tnMplsConfigTunnelEntry 22 }
tnMplsConfigTunnelIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the tnMplsConfigTunnelLLspCos field."
::= { tnMplsConfigTunnelEntry 23 }
tnMplsConfigTunnelLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (tnMplsConfigTunnelIsLLsp == TRUE)"
::= { tnMplsConfigTunnelEntry 24 }
tnMplsConfigTunnelAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigTunnelEntry 100 }
tnMplsConfigTunnelRowEditor OBJECT IDENTIFIER
::= { tnMplsConfigTunnel 2 }
tnMplsConfigTunnelRowEditorGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsConfigTunnelRowEditor 1 }
tnMplsConfigTunnelRowEditorTunnelName OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tunnel name."
::= { tnMplsConfigTunnelRowEditor 2 }
tnMplsConfigTunnelRowEditorTunnelMode OBJECT-TYPE
SYNTAX TNMplsTunnelMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DiffServ tunnel modes for Traffic Class and TTL."
::= { tnMplsConfigTunnelRowEditor 3 }
tnMplsConfigTunnelRowEditorSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigTunnelRowEditor 4 }
tnMplsConfigTunnelRowEditorSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigTunnelRowEditor 5 }
tnMplsConfigTunnelRowEditorDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigTunnelRowEditor 6 }
tnMplsConfigTunnelRowEditorDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigTunnelRowEditor 7 }
tnMplsConfigTunnelRowEditorDstTunnelTpNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination tunnel ID number (for OAM)."
::= { tnMplsConfigTunnelRowEditor 8 }
tnMplsConfigTunnelRowEditorSrcTunnelTpNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source tunnel ID number (if SPME, for OAM)."
::= { tnMplsConfigTunnelRowEditor 9 }
tnMplsConfigTunnelRowEditorSrcLspNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source LSP number (if SPME, for OAM)."
::= { tnMplsConfigTunnelRowEditor 10 }
tnMplsConfigTunnelRowEditorDstLspNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination LSP number (if SPME, for OAM)."
::= { tnMplsConfigTunnelRowEditor 11 }
tnMplsConfigTunnelRowEditorIsSpme OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE if tunnel endpoint is an SPME (OAM)."
::= { tnMplsConfigTunnelRowEditor 12 }
tnMplsConfigTunnelRowEditorSrcNodeIsValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID valid (for OAM)."
::= { tnMplsConfigTunnelRowEditor 13 }
tnMplsConfigTunnelRowEditorSrcGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID valid (for OAM)."
::= { tnMplsConfigTunnelRowEditor 14 }
tnMplsConfigTunnelRowEditorDstGlobalIdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID valid (for OAM)."
::= { tnMplsConfigTunnelRowEditor 15 }
tnMplsConfigTunnelRowEditorIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigTunnelRowEditor 16 }
tnMplsConfigTunnelRowEditorEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigTunnelRowEditor 17 }
tnMplsConfigTunnelRowEditorAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS link interface or MPLS tunnel endpoint interface that tunnel
endpoint is attached to."
::= { tnMplsConfigTunnelRowEditor 18 }
tnMplsConfigTunnelRowEditorTrafficClass OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Traffic class used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigTunnelRowEditor 19 }
tnMplsConfigTunnelRowEditorTtl OBJECT-TYPE
SYNTAX TNUnsigned8 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time-to-live used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigTunnelRowEditor 20 }
tnMplsConfigTunnelRowEditorInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 for no mapping."
::= { tnMplsConfigTunnelRowEditor 21 }
tnMplsConfigTunnelRowEditorOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for no mapping."
::= { tnMplsConfigTunnelRowEditor 22 }
tnMplsConfigTunnelRowEditorIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the tnMplsConfigTunnelLLspCos field."
::= { tnMplsConfigTunnelRowEditor 23 }
tnMplsConfigTunnelRowEditorLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (tnMplsConfigTunnelIsLLsp == TRUE)"
::= { tnMplsConfigTunnelRowEditor 24 }
tnMplsConfigTunnelRowEditorAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigTunnelRowEditor 100 }
tnMplsConfigLsp OBJECT IDENTIFIER
::= { tnMplsConfig 4 }
tnMplsConfigLspTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsConfigLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the MPLS Lsp configuration table."
::= { tnMplsConfigLsp 1 }
tnMplsConfigLspEntry OBJECT-TYPE
SYNTAX TNMplsConfigLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an MPLS Lsp."
INDEX { tnMplsConfigLspGroupIndex }
::= { tnMplsConfigLspTable 1 }
TNMplsConfigLspEntry ::= SEQUENCE {
tnMplsConfigLspGroupIndex Integer32,
tnMplsConfigLspXcName TNDisplayString,
tnMplsConfigLspSrcNodeId IpAddress,
tnMplsConfigLspSrcNodeIdIsDefined TruthValue,
tnMplsConfigLspSrcGlobalId Unsigned32,
tnMplsConfigLspSrcGlobalIdIsDefined TruthValue,
tnMplsConfigLspSrcTunnelTpNum TNUnsigned16,
tnMplsConfigLspDstNodeId IpAddress,
tnMplsConfigLspDstGlobalId Unsigned32,
tnMplsConfigLspDstGlobalIdIsDefined TruthValue,
tnMplsConfigLspDstTunnelTpNum TNUnsigned16,
tnMplsConfigLspSrcLspNumber TNUnsigned16,
tnMplsConfigLspDstLspNumber TNUnsigned16,
tnMplsConfigLspForwardIngressLabel Unsigned32,
tnMplsConfigLspForwardEgressLabel Unsigned32,
tnMplsConfigLspForwardAttachInterface TNInterfaceIndex,
tnMplsConfigLspForwardInCosMapId TNUnsigned8,
tnMplsConfigLspForwardOutCosMapId TNUnsigned8,
tnMplsConfigLspForwardIsLLsp TruthValue,
tnMplsConfigLspForwardHQoSId TNUnsigned16,
tnMplsConfigLspForwardLLspCos TNUnsigned8,
tnMplsConfigLspReverseIngressLabel Unsigned32,
tnMplsConfigLspReverseEgressLabel Unsigned32,
tnMplsConfigLspReverseAttachInterface TNInterfaceIndex,
tnMplsConfigLspReverseInCosMapId TNUnsigned8,
tnMplsConfigLspReverseOutCosMapId TNUnsigned8,
tnMplsConfigLspReverseIsLLsp TruthValue,
tnMplsConfigLspReverseLLspCos TNUnsigned8,
tnMplsConfigLspReverseHQoSId TNUnsigned16,
tnMplsConfigLspAction TNRowEditorState
}
tnMplsConfigLspGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsConfigLspEntry 1 }
tnMplsConfigLspXcName OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LSP cross-connect name."
::= { tnMplsConfigLspEntry 2 }
tnMplsConfigLspSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigLspEntry 3 }
tnMplsConfigLspSrcNodeIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source node ID (for OAM) is defined."
::= { tnMplsConfigLspEntry 4 }
tnMplsConfigLspSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigLspEntry 5 }
tnMplsConfigLspSrcGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source global ID (for OAM) is defined."
::= { tnMplsConfigLspEntry 6 }
tnMplsConfigLspSrcTunnelTpNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source tunnel ID number (for OAM)."
::= { tnMplsConfigLspEntry 7 }
tnMplsConfigLspDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigLspEntry 8 }
tnMplsConfigLspDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigLspEntry 9 }
tnMplsConfigLspDstGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Destination global ID (for OAM) is defined."
::= { tnMplsConfigLspEntry 10 }
tnMplsConfigLspDstTunnelTpNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination tunnel ID number (for OAM)."
::= { tnMplsConfigLspEntry 11 }
tnMplsConfigLspSrcLspNumber OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source LSP number (for OAM)."
::= { tnMplsConfigLspEntry 12 }
tnMplsConfigLspDstLspNumber OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination LSP number (for OAM)."
::= { tnMplsConfigLspEntry 13 }
tnMplsConfigLspForwardIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspEntry 14 }
tnMplsConfigLspForwardEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspEntry 15 }
tnMplsConfigLspForwardAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS link interface or MPLS tunnel interface for forward part of
LSP cross-connect."
::= { tnMplsConfigLspEntry 16 }
tnMplsConfigLspForwardInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 for forward part of LSP
cross-connect."
::= { tnMplsConfigLspEntry 17 }
tnMplsConfigLspForwardOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for forward part of LSP
cross-connect."
::= { tnMplsConfigLspEntry 18 }
tnMplsConfigLspForwardIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the tnMplsConfigLspForwardLLspCos
field."
::= { tnMplsConfigLspEntry 19 }
tnMplsConfigLspForwardHQoSId OBJECT-TYPE
SYNTAX TNUnsigned16 (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HQoS Id for forward direction (1..256) or 0 for none"
::= { tnMplsConfigLspEntry 20 }
tnMplsConfigLspForwardLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (ForwardIsLLsp == TRUE)"
::= { tnMplsConfigLspEntry 21 }
tnMplsConfigLspReverseIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspEntry 22 }
tnMplsConfigLspReverseEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspEntry 23 }
tnMplsConfigLspReverseAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS link interface or MPLS tunnel endpoint interface for
reverse part of LSP cross-connect."
::= { tnMplsConfigLspEntry 24 }
tnMplsConfigLspReverseInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 for reverse part of LSP
cross-connect."
::= { tnMplsConfigLspEntry 25 }
tnMplsConfigLspReverseOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for reverse part of LSP
cross-connect."
::= { tnMplsConfigLspEntry 26 }
tnMplsConfigLspReverseIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the tnMplsConfigLspReverseLLspCos
field."
::= { tnMplsConfigLspEntry 27 }
tnMplsConfigLspReverseLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (ReverseIsLLsp == TRUE)"
::= { tnMplsConfigLspEntry 28 }
tnMplsConfigLspReverseHQoSId OBJECT-TYPE
SYNTAX TNUnsigned16 (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HQoS Id for reverse direction (1..256) or 0 for none"
::= { tnMplsConfigLspEntry 29 }
tnMplsConfigLspAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigLspEntry 100 }
tnMplsConfigLspRowEditor OBJECT IDENTIFIER
::= { tnMplsConfigLsp 2 }
tnMplsConfigLspRowEditorGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsConfigLspRowEditor 1 }
tnMplsConfigLspRowEditorXcName OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LSP cross-connect name."
::= { tnMplsConfigLspRowEditor 2 }
tnMplsConfigLspRowEditorSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigLspRowEditor 3 }
tnMplsConfigLspRowEditorSrcNodeIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source node ID (for OAM) is defined."
::= { tnMplsConfigLspRowEditor 4 }
tnMplsConfigLspRowEditorSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigLspRowEditor 5 }
tnMplsConfigLspRowEditorSrcGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source global ID (for OAM) is defined."
::= { tnMplsConfigLspRowEditor 6 }
tnMplsConfigLspRowEditorSrcTunnelTpNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source tunnel ID number (for OAM)."
::= { tnMplsConfigLspRowEditor 7 }
tnMplsConfigLspRowEditorDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigLspRowEditor 8 }
tnMplsConfigLspRowEditorDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigLspRowEditor 9 }
tnMplsConfigLspRowEditorDstGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Destination global ID (for OAM) is defined."
::= { tnMplsConfigLspRowEditor 10 }
tnMplsConfigLspRowEditorDstTunnelTpNum OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination tunnel ID number (for OAM)."
::= { tnMplsConfigLspRowEditor 11 }
tnMplsConfigLspRowEditorSrcLspNumber OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source LSP number (for OAM)."
::= { tnMplsConfigLspRowEditor 12 }
tnMplsConfigLspRowEditorDstLspNumber OBJECT-TYPE
SYNTAX TNUnsigned16
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination LSP number (for OAM)."
::= { tnMplsConfigLspRowEditor 13 }
tnMplsConfigLspRowEditorForwardIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspRowEditor 14 }
tnMplsConfigLspRowEditorForwardEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspRowEditor 15 }
tnMplsConfigLspRowEditorForwardAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS link interface or MPLS tunnel interface for forward part of
LSP cross-connect."
::= { tnMplsConfigLspRowEditor 16 }
tnMplsConfigLspRowEditorForwardInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 for forward part of LSP
cross-connect."
::= { tnMplsConfigLspRowEditor 17 }
tnMplsConfigLspRowEditorForwardOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for forward part of LSP
cross-connect."
::= { tnMplsConfigLspRowEditor 18 }
tnMplsConfigLspRowEditorForwardIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the tnMplsConfigLspForwardLLspCos
field."
::= { tnMplsConfigLspRowEditor 19 }
tnMplsConfigLspRowEditorForwardHQoSId OBJECT-TYPE
SYNTAX TNUnsigned16 (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HQoS Id for forward direction (1..256) or 0 for none"
::= { tnMplsConfigLspRowEditor 20 }
tnMplsConfigLspRowEditorForwardLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (ForwardIsLLsp == TRUE)"
::= { tnMplsConfigLspRowEditor 21 }
tnMplsConfigLspRowEditorReverseIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspRowEditor 22 }
tnMplsConfigLspRowEditorReverseEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigLspRowEditor 23 }
tnMplsConfigLspRowEditorReverseAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress MPLS link interface or MPLS tunnel endpoint interface for
reverse part of LSP cross-connect."
::= { tnMplsConfigLspRowEditor 24 }
tnMplsConfigLspRowEditorReverseInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 for reverse part of LSP
cross-connect."
::= { tnMplsConfigLspRowEditor 25 }
tnMplsConfigLspRowEditorReverseOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for reverse part of LSP
cross-connect."
::= { tnMplsConfigLspRowEditor 26 }
tnMplsConfigLspRowEditorReverseIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the tnMplsConfigLspReverseLLspCos
field."
::= { tnMplsConfigLspRowEditor 27 }
tnMplsConfigLspRowEditorReverseLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (ReverseIsLLsp == TRUE)"
::= { tnMplsConfigLspRowEditor 28 }
tnMplsConfigLspRowEditorReverseHQoSId OBJECT-TYPE
SYNTAX TNUnsigned16 (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HQoS Id for reverse direction (1..256) or 0 for none"
::= { tnMplsConfigLspRowEditor 29 }
tnMplsConfigLspRowEditorAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigLspRowEditor 100 }
tnMplsConfigPw OBJECT IDENTIFIER
::= { tnMplsConfig 5 }
tnMplsConfigPwTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsConfigPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the MPLS Pseudo Wire configuration table."
::= { tnMplsConfigPw 1 }
tnMplsConfigPwEntry OBJECT-TYPE
SYNTAX TNMplsConfigPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an MPLS Pseudo Wire."
INDEX { tnMplsConfigPwGroupIfIndex }
::= { tnMplsConfigPwTable 1 }
TNMplsConfigPwEntry ::= SEQUENCE {
tnMplsConfigPwGroupIfIndex TNInterfaceIndex,
tnMplsConfigPwInLabel Unsigned32,
tnMplsConfigPwOutLabel Unsigned32,
tnMplsConfigPwControlWord Unsigned32,
tnMplsConfigPwUseControlWord TruthValue,
tnMplsConfigPwTunnelMode TNMplsTunnelMode,
tnMplsConfigPwTrafficClass TNUnsigned8,
tnMplsConfigPwTtl TNUnsigned8,
tnMplsConfigPwInCosMapId TNUnsigned8,
tnMplsConfigPwOutCosMapId TNUnsigned8,
tnMplsConfigPwIsLLsp TruthValue,
tnMplsConfigPwLLspCos TNUnsigned8,
tnMplsConfigPwAttachInterface TNInterfaceIndex,
tnMplsConfigPwStitchPwInterface TNInterfaceIndex,
tnMplsConfigPwVccvType TNMplsVccvType,
tnMplsConfigPwHQoSId TNUnsigned16,
tnMplsConfigPwSrcNodeId IpAddress,
tnMplsConfigPwSrcNodeIdIsDefined TruthValue,
tnMplsConfigPwSrcGlobalId Unsigned32,
tnMplsConfigPwSrcGlobalIdIsDefined TruthValue,
tnMplsConfigPwDstNodeId IpAddress,
tnMplsConfigPwDstGlobalId Unsigned32,
tnMplsConfigPwDstGlobalIdIsDefined TruthValue,
tnMplsConfigPwSrcAcId Unsigned32,
tnMplsConfigPwDstAcId Unsigned32,
tnMplsConfigPwSrcAgiValue OCTET STRING,
tnMplsConfigPwDstAgiValue OCTET STRING,
tnMplsConfigPwSrcAgiType TNUnsigned8,
tnMplsConfigPwSrcAgiLength TNUnsigned8,
tnMplsConfigPwDstAgiType TNUnsigned8,
tnMplsConfigPwDstAgiLength TNUnsigned8,
tnMplsConfigPwAction TNRowEditorState
}
tnMplsConfigPwGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsConfigPwEntry 1 }
tnMplsConfigPwInLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PW local/ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigPwEntry 2 }
tnMplsConfigPwOutLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PW remote/egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigPwEntry 3 }
tnMplsConfigPwControlWord OBJECT-TYPE
SYNTAX Unsigned32 (0..268435455)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PW control word value to use on egress."
::= { tnMplsConfigPwEntry 4 }
tnMplsConfigPwUseControlWord OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE: Use control word on egress and ingress, FALSE: Do not use."
::= { tnMplsConfigPwEntry 5 }
tnMplsConfigPwTunnelMode OBJECT-TYPE
SYNTAX TNMplsTunnelMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DiffServ tunnel modes for Traffic Class and TTL."
::= { tnMplsConfigPwEntry 6 }
tnMplsConfigPwTrafficClass OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Traffic class used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigPwEntry 7 }
tnMplsConfigPwTtl OBJECT-TYPE
SYNTAX TNUnsigned8 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time-to-live used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigPwEntry 8 }
tnMplsConfigPwInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 no mapping."
::= { tnMplsConfigPwEntry 9 }
tnMplsConfigPwOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for no mapping."
::= { tnMplsConfigPwEntry 10 }
tnMplsConfigPwIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the LLspCos field."
::= { tnMplsConfigPwEntry 11 }
tnMplsConfigPwLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (IsLLsp == TRUE)"
::= { tnMplsConfigPwEntry 12 }
tnMplsConfigPwAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS link interface or MPLS tunnel endpoint number that PW is attached
to."
::= { tnMplsConfigPwEntry 13 }
tnMplsConfigPwStitchPwInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS PW interface index to stitch this PW with, 0 for no stitch."
::= { tnMplsConfigPwEntry 14 }
tnMplsConfigPwVccvType OBJECT-TYPE
SYNTAX TNMplsVccvType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS PW OAM Vccv type."
::= { tnMplsConfigPwEntry 15 }
tnMplsConfigPwHQoSId OBJECT-TYPE
SYNTAX TNUnsigned16 (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HQoS Id (1..256) or 0 for none. Will only take effect for stitched PWs."
::= { tnMplsConfigPwEntry 16 }
tnMplsConfigPwSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigPwEntry 17 }
tnMplsConfigPwSrcNodeIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source node ID (for OAM) is defined."
::= { tnMplsConfigPwEntry 18 }
tnMplsConfigPwSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigPwEntry 19 }
tnMplsConfigPwSrcGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source global ID (for OAM) is defined."
::= { tnMplsConfigPwEntry 20 }
tnMplsConfigPwDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigPwEntry 21 }
tnMplsConfigPwDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigPwEntry 22 }
tnMplsConfigPwDstGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Destination global ID (for OAM) is defined."
::= { tnMplsConfigPwEntry 23 }
tnMplsConfigPwSrcAcId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AC_ID (for OAM)."
::= { tnMplsConfigPwEntry 24 }
tnMplsConfigPwDstAcId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AC_ID (for OAM)."
::= { tnMplsConfigPwEntry 25 }
tnMplsConfigPwSrcAgiValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AGI Value (for OAM)."
::= { tnMplsConfigPwEntry 26 }
tnMplsConfigPwDstAgiValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AGI Value (for OAM).."
::= { tnMplsConfigPwEntry 27 }
tnMplsConfigPwSrcAgiType OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AGI Type (for OAM)."
::= { tnMplsConfigPwEntry 28 }
tnMplsConfigPwSrcAgiLength OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AGI Length 0-7 (for OAM)."
::= { tnMplsConfigPwEntry 29 }
tnMplsConfigPwDstAgiType OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AGI Type (for OAM)."
::= { tnMplsConfigPwEntry 30 }
tnMplsConfigPwDstAgiLength OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AGI Length 0-7 (for OAM)."
::= { tnMplsConfigPwEntry 31 }
tnMplsConfigPwAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigPwEntry 100 }
tnMplsConfigPwRowEditor OBJECT IDENTIFIER
::= { tnMplsConfigPw 2 }
tnMplsConfigPwRowEditorGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsConfigPwRowEditor 1 }
tnMplsConfigPwRowEditorInLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PW local/ingress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigPwRowEditor 2 }
tnMplsConfigPwRowEditorOutLabel OBJECT-TYPE
SYNTAX Unsigned32 (16..1048575)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PW remote/egress MPLS label value or TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsConfigPwRowEditor 3 }
tnMplsConfigPwRowEditorControlWord OBJECT-TYPE
SYNTAX Unsigned32 (0..268435455)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PW control word value to use on egress."
::= { tnMplsConfigPwRowEditor 4 }
tnMplsConfigPwRowEditorUseControlWord OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE: Use control word on egress and ingress, FALSE: Do not use."
::= { tnMplsConfigPwRowEditor 5 }
tnMplsConfigPwRowEditorTunnelMode OBJECT-TYPE
SYNTAX TNMplsTunnelMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DiffServ tunnel modes for Traffic Class and TTL."
::= { tnMplsConfigPwRowEditor 6 }
tnMplsConfigPwRowEditorTrafficClass OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Traffic class used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigPwRowEditor 7 }
tnMplsConfigPwRowEditorTtl OBJECT-TYPE
SYNTAX TNUnsigned8 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time-to-live used on egress unless overruled by uniform tunnel mode."
::= { tnMplsConfigPwRowEditor 8 }
tnMplsConfigPwRowEditorInCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service Map ID or 0 no mapping."
::= { tnMplsConfigPwRowEditor 9 }
tnMplsConfigPwRowEditorOutCosMapId OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Egress Class of Service Map ID or 0 for no mapping."
::= { tnMplsConfigPwRowEditor 10 }
tnMplsConfigPwRowEditorIsLLsp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRUE for L-LSP, FALSE for E-LSP. Note that for L-LSP, the Ingress Class
of Service Map only maps the ingress Traffic Class to Drop Precedence.
The Class of Service is given by the LLspCos field."
::= { tnMplsConfigPwRowEditor 11 }
tnMplsConfigPwRowEditorLLspCos OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Class of Service for L-LSP (IsLLsp == TRUE)"
::= { tnMplsConfigPwRowEditor 12 }
tnMplsConfigPwRowEditorAttachInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS link interface or MPLS tunnel endpoint number that PW is attached
to."
::= { tnMplsConfigPwRowEditor 13 }
tnMplsConfigPwRowEditorStitchPwInterface OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS PW interface index to stitch this PW with, 0 for no stitch."
::= { tnMplsConfigPwRowEditor 14 }
tnMplsConfigPwRowEditorVccvType OBJECT-TYPE
SYNTAX TNMplsVccvType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS PW OAM Vccv type."
::= { tnMplsConfigPwRowEditor 15 }
tnMplsConfigPwRowEditorHQoSId OBJECT-TYPE
SYNTAX TNUnsigned16 (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HQoS Id (1..256) or 0 for none. Will only take effect for stitched PWs."
::= { tnMplsConfigPwRowEditor 16 }
tnMplsConfigPwRowEditorSrcNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source node ID (for OAM)."
::= { tnMplsConfigPwRowEditor 17 }
tnMplsConfigPwRowEditorSrcNodeIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source node ID (for OAM) is defined."
::= { tnMplsConfigPwRowEditor 18 }
tnMplsConfigPwRowEditorSrcGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source global ID (for OAM)."
::= { tnMplsConfigPwRowEditor 19 }
tnMplsConfigPwRowEditorSrcGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Source global ID (for OAM) is defined."
::= { tnMplsConfigPwRowEditor 20 }
tnMplsConfigPwRowEditorDstNodeId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination node ID (for OAM)."
::= { tnMplsConfigPwRowEditor 21 }
tnMplsConfigPwRowEditorDstGlobalId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination global ID (for OAM)."
::= { tnMplsConfigPwRowEditor 22 }
tnMplsConfigPwRowEditorDstGlobalIdIsDefined OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if Destination global ID (for OAM) is defined."
::= { tnMplsConfigPwRowEditor 23 }
tnMplsConfigPwRowEditorSrcAcId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AC_ID (for OAM)."
::= { tnMplsConfigPwRowEditor 24 }
tnMplsConfigPwRowEditorDstAcId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AC_ID (for OAM)."
::= { tnMplsConfigPwRowEditor 25 }
tnMplsConfigPwRowEditorSrcAgiValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AGI Value (for OAM)."
::= { tnMplsConfigPwRowEditor 26 }
tnMplsConfigPwRowEditorDstAgiValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AGI Value (for OAM).."
::= { tnMplsConfigPwRowEditor 27 }
tnMplsConfigPwRowEditorSrcAgiType OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AGI Type (for OAM)."
::= { tnMplsConfigPwRowEditor 28 }
tnMplsConfigPwRowEditorSrcAgiLength OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source AGI Length 0-7 (for OAM)."
::= { tnMplsConfigPwRowEditor 29 }
tnMplsConfigPwRowEditorDstAgiType OBJECT-TYPE
SYNTAX TNUnsigned8
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AGI Type (for OAM)."
::= { tnMplsConfigPwRowEditor 30 }
tnMplsConfigPwRowEditorDstAgiLength OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination AGI Length 0-7 (for OAM)."
::= { tnMplsConfigPwRowEditor 31 }
tnMplsConfigPwRowEditorAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigPwRowEditor 100 }
tnMplsConfigCosMap OBJECT IDENTIFIER
::= { tnMplsConfig 6 }
tnMplsConfigCosMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsConfigCosMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the MPLS Class of Service map configuration table."
::= { tnMplsConfigCosMap 1 }
tnMplsConfigCosMapEntry OBJECT-TYPE
SYNTAX TNMplsConfigCosMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an MPLS Class of Service mapping."
INDEX { tnMplsConfigCosMapGroupIndex }
::= { tnMplsConfigCosMapTable 1 }
TNMplsConfigCosMapEntry ::= SEQUENCE {
tnMplsConfigCosMapGroupIndex Integer32,
tnMplsConfigCosMapInTcToCos0 TNUnsigned8,
tnMplsConfigCosMapInTcToCos1 TNUnsigned8,
tnMplsConfigCosMapInTcToCos2 TNUnsigned8,
tnMplsConfigCosMapInTcToCos3 TNUnsigned8,
tnMplsConfigCosMapInTcToCos4 TNUnsigned8,
tnMplsConfigCosMapInTcToCos5 TNUnsigned8,
tnMplsConfigCosMapInTcToCos6 TNUnsigned8,
tnMplsConfigCosMapInTcToCos7 TNUnsigned8,
tnMplsConfigCosMapInTcToDp0 TNUnsigned8,
tnMplsConfigCosMapInTcToDp1 TNUnsigned8,
tnMplsConfigCosMapInTcToDp2 TNUnsigned8,
tnMplsConfigCosMapInTcToDp3 TNUnsigned8,
tnMplsConfigCosMapInTcToDp4 TNUnsigned8,
tnMplsConfigCosMapInTcToDp5 TNUnsigned8,
tnMplsConfigCosMapInTcToDp6 TNUnsigned8,
tnMplsConfigCosMapInTcToDp7 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc00 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc10 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc20 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc30 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc40 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc50 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc60 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc70 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc01 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc11 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc21 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc31 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc41 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc51 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc61 TNUnsigned8,
tnMplsConfigCosMapOutCosDpToTc71 TNUnsigned8,
tnMplsConfigCosMapAction TNRowEditorState
}
tnMplsConfigCosMapGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsConfigCosMapEntry 1 }
tnMplsConfigCosMapInTcToCos0 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 10 }
tnMplsConfigCosMapInTcToCos1 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 11 }
tnMplsConfigCosMapInTcToCos2 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 12 }
tnMplsConfigCosMapInTcToCos3 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 13 }
tnMplsConfigCosMapInTcToCos4 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 14 }
tnMplsConfigCosMapInTcToCos5 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 15 }
tnMplsConfigCosMapInTcToCos6 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 16 }
tnMplsConfigCosMapInTcToCos7 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapEntry 17 }
tnMplsConfigCosMapInTcToDp0 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 20 }
tnMplsConfigCosMapInTcToDp1 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 21 }
tnMplsConfigCosMapInTcToDp2 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 22 }
tnMplsConfigCosMapInTcToDp3 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 23 }
tnMplsConfigCosMapInTcToDp4 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 24 }
tnMplsConfigCosMapInTcToDp5 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 25 }
tnMplsConfigCosMapInTcToDp6 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 26 }
tnMplsConfigCosMapInTcToDp7 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapEntry 27 }
tnMplsConfigCosMapOutCosDpToTc00 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 30 }
tnMplsConfigCosMapOutCosDpToTc10 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 31 }
tnMplsConfigCosMapOutCosDpToTc20 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 32 }
tnMplsConfigCosMapOutCosDpToTc30 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 33 }
tnMplsConfigCosMapOutCosDpToTc40 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 34 }
tnMplsConfigCosMapOutCosDpToTc50 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 35 }
tnMplsConfigCosMapOutCosDpToTc60 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 36 }
tnMplsConfigCosMapOutCosDpToTc70 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapEntry 37 }
tnMplsConfigCosMapOutCosDpToTc01 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 40 }
tnMplsConfigCosMapOutCosDpToTc11 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 41 }
tnMplsConfigCosMapOutCosDpToTc21 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 42 }
tnMplsConfigCosMapOutCosDpToTc31 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 43 }
tnMplsConfigCosMapOutCosDpToTc41 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 44 }
tnMplsConfigCosMapOutCosDpToTc51 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 45 }
tnMplsConfigCosMapOutCosDpToTc61 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 46 }
tnMplsConfigCosMapOutCosDpToTc71 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapEntry 47 }
tnMplsConfigCosMapAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigCosMapEntry 100 }
tnMplsConfigCosMapRowEditor OBJECT IDENTIFIER
::= { tnMplsConfigCosMap 2 }
tnMplsConfigCosMapRowEditorGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsConfigCosMapRowEditor 1 }
tnMplsConfigCosMapRowEditorInTcToCos0 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 10 }
tnMplsConfigCosMapRowEditorInTcToCos1 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 11 }
tnMplsConfigCosMapRowEditorInTcToCos2 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 12 }
tnMplsConfigCosMapRowEditorInTcToCos3 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 13 }
tnMplsConfigCosMapRowEditorInTcToCos4 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 14 }
tnMplsConfigCosMapRowEditorInTcToCos5 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 15 }
tnMplsConfigCosMapRowEditorInTcToCos6 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 16 }
tnMplsConfigCosMapRowEditorInTcToCos7 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Class of Service mapping"
::= { tnMplsConfigCosMapRowEditor 17 }
tnMplsConfigCosMapRowEditorInTcToDp0 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 20 }
tnMplsConfigCosMapRowEditorInTcToDp1 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 21 }
tnMplsConfigCosMapRowEditorInTcToDp2 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 22 }
tnMplsConfigCosMapRowEditorInTcToDp3 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 23 }
tnMplsConfigCosMapRowEditorInTcToDp4 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 24 }
tnMplsConfigCosMapRowEditorInTcToDp5 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 25 }
tnMplsConfigCosMapRowEditorInTcToDp6 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 26 }
tnMplsConfigCosMapRowEditorInTcToDp7 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ingress Traffic Class to Drop Precedence mapping."
::= { tnMplsConfigCosMapRowEditor 27 }
tnMplsConfigCosMapRowEditorOutCosDpToTc00 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 30 }
tnMplsConfigCosMapRowEditorOutCosDpToTc10 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 31 }
tnMplsConfigCosMapRowEditorOutCosDpToTc20 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 32 }
tnMplsConfigCosMapRowEditorOutCosDpToTc30 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 33 }
tnMplsConfigCosMapRowEditorOutCosDpToTc40 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 34 }
tnMplsConfigCosMapRowEditorOutCosDpToTc50 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 35 }
tnMplsConfigCosMapRowEditorOutCosDpToTc60 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 36 }
tnMplsConfigCosMapRowEditorOutCosDpToTc70 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (0) to Traffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 37 }
tnMplsConfigCosMapRowEditorOutCosDpToTc01 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 40 }
tnMplsConfigCosMapRowEditorOutCosDpToTc11 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 41 }
tnMplsConfigCosMapRowEditorOutCosDpToTc21 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 42 }
tnMplsConfigCosMapRowEditorOutCosDpToTc31 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 43 }
tnMplsConfigCosMapRowEditorOutCosDpToTc41 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 44 }
tnMplsConfigCosMapRowEditorOutCosDpToTc51 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 45 }
tnMplsConfigCosMapRowEditorOutCosDpToTc61 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 46 }
tnMplsConfigCosMapRowEditorOutCosDpToTc71 OBJECT-TYPE
SYNTAX TNUnsigned8 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of Service (0-7) and Egress Drop Precedence (1) toTraffic Class
mapping."
::= { tnMplsConfigCosMapRowEditor 47 }
tnMplsConfigCosMapRowEditorAction OBJECT-TYPE
SYNTAX TNRowEditorState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action"
::= { tnMplsConfigCosMapRowEditor 100 }
tnMplsStatus OBJECT IDENTIFIER
::= { tnMplsMibObjects 3 }
tnMplsStatusGlobal OBJECT IDENTIFIER
::= { tnMplsStatus 1 }
tnMplsStatusLink OBJECT IDENTIFIER
::= { tnMplsStatus 2 }
tnMplsStatusLinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatusLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Link status per MPLS group."
::= { tnMplsStatusLink 1 }
tnMplsStatusLinkEntry OBJECT-TYPE
SYNTAX TNMplsStatusLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status."
INDEX { tnMplsStatusLinkGroupIfIndex }
::= { tnMplsStatusLinkTable 1 }
TNMplsStatusLinkEntry ::= SEQUENCE {
tnMplsStatusLinkGroupIfIndex TNInterfaceIndex,
tnMplsStatusLinkOamActive TruthValue
}
tnMplsStatusLinkGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsStatusLinkEntry 1 }
tnMplsStatusLinkOamActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether Oam is currently active or not on this Link."
::= { tnMplsStatusLinkEntry 2 }
tnMplsStatusTunnel OBJECT IDENTIFIER
::= { tnMplsStatus 3 }
tnMplsStatusTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatusTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Tunnel status per MPLS group."
::= { tnMplsStatusTunnel 1 }
tnMplsStatusTunnelEntry OBJECT-TYPE
SYNTAX TNMplsStatusTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status."
INDEX { tnMplsStatusTunnelGroupIfIndex }
::= { tnMplsStatusTunnelTable 1 }
TNMplsStatusTunnelEntry ::= SEQUENCE {
tnMplsStatusTunnelGroupIfIndex TNInterfaceIndex,
tnMplsStatusTunnelOamActive TruthValue,
tnMplsStatusTunnelState TNMplsStateType,
tnMplsStatusTunnelIngressLabel Unsigned32,
tnMplsStatusTunnelEgressLabel Unsigned32,
tnMplsStatusTunnelWorkingActive TruthValue
}
tnMplsStatusTunnelGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsStatusTunnelEntry 1 }
tnMplsStatusTunnelOamActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether Oam is currently active or not on this Tunnel."
::= { tnMplsStatusTunnelEntry 2 }
tnMplsStatusTunnelState OBJECT-TYPE
SYNTAX TNMplsStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current MPLS-TP Tunnel state."
::= { tnMplsStatusTunnelEntry 3 }
tnMplsStatusTunnelIngressLabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current MPLS-TP Tunnel ingress MPLS label value or
TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsStatusTunnelEntry 4 }
tnMplsStatusTunnelEgressLabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current MPLS-TP Tunnel egress MPLS label value or
TN_APPL_MPLSTP_LABEL_NONE."
::= { tnMplsStatusTunnelEntry 5 }
tnMplsStatusTunnelWorkingActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TRUE if working tunnel is active in a protection setup, FALSE if
protection tunnel is active. Always TRUE for non-protection case."
::= { tnMplsStatusTunnelEntry 6 }
tnMplsStatusLsp OBJECT IDENTIFIER
::= { tnMplsStatus 4 }
tnMplsStatusLspTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatusLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Lsp status per MPLS group."
::= { tnMplsStatusLsp 1 }
tnMplsStatusLspEntry OBJECT-TYPE
SYNTAX TNMplsStatusLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status."
INDEX { tnMplsStatusLspGroupIndex }
::= { tnMplsStatusLspTable 1 }
TNMplsStatusLspEntry ::= SEQUENCE {
tnMplsStatusLspGroupIndex Integer32,
tnMplsStatusLspOamActive TruthValue,
tnMplsStatusLspState TNMplsStateType
}
tnMplsStatusLspGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsStatusLspEntry 1 }
tnMplsStatusLspOamActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether Oam is currently active or not on this LSP."
::= { tnMplsStatusLspEntry 2 }
tnMplsStatusLspState OBJECT-TYPE
SYNTAX TNMplsStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current MPLS-TP LSP state."
::= { tnMplsStatusLspEntry 3 }
tnMplsStatusPw OBJECT IDENTIFIER
::= { tnMplsStatus 5 }
tnMplsStatusPwTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatusPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Pseudo Wire status per MPLS group."
::= { tnMplsStatusPw 1 }
tnMplsStatusPwEntry OBJECT-TYPE
SYNTAX TNMplsStatusPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status."
INDEX { tnMplsStatusPwGroupIfIndex }
::= { tnMplsStatusPwTable 1 }
TNMplsStatusPwEntry ::= SEQUENCE {
tnMplsStatusPwGroupIfIndex TNInterfaceIndex,
tnMplsStatusPwOamActive TruthValue,
tnMplsStatusPwState TNMplsStateType
}
tnMplsStatusPwGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsStatusPwEntry 1 }
tnMplsStatusPwOamActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether Oam is currently active or not on this Pseudo Wire."
::= { tnMplsStatusPwEntry 2 }
tnMplsStatusPwState OBJECT-TYPE
SYNTAX TNMplsStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current MPLS-TP Pseudo Wire state."
::= { tnMplsStatusPwEntry 3 }
tnMplsControl OBJECT IDENTIFIER
::= { tnMplsMibObjects 4 }
tnMplsControlGlobal OBJECT IDENTIFIER
::= { tnMplsControl 1 }
tnMplsControlLsp OBJECT IDENTIFIER
::= { tnMplsControl 2 }
tnMplsControlLspTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsControlLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of created instance MPLS-TP LSP control parameters"
::= { tnMplsControlLsp 1 }
tnMplsControlLspEntry OBJECT-TYPE
SYNTAX TNMplsControlLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a created instance MPLS-TP LSP control parameters"
INDEX { tnMplsControlLspGroupIndex }
::= { tnMplsControlLspTable 1 }
TNMplsControlLspEntry ::= SEQUENCE {
tnMplsControlLspGroupIndex Integer32,
tnMplsControlLspClear TruthValue
}
tnMplsControlLspGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsControlLspEntry 1 }
tnMplsControlLspClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clear statistics counters"
::= { tnMplsControlLspEntry 2 }
tnMplsControlIf OBJECT IDENTIFIER
::= { tnMplsControl 3 }
tnMplsControlIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsControlIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of created instance MPLS-TP tunnel or PW control
parameters"
::= { tnMplsControlIf 1 }
tnMplsControlIfEntry OBJECT-TYPE
SYNTAX TNMplsControlIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a created instance MPLS-TP tunnel or PW control parameters"
INDEX { tnMplsControlIfGroupIfIndex }
::= { tnMplsControlIfTable 1 }
TNMplsControlIfEntry ::= SEQUENCE {
tnMplsControlIfGroupIfIndex TNInterfaceIndex,
tnMplsControlIfClear TruthValue
}
tnMplsControlIfGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsControlIfEntry 1 }
tnMplsControlIfClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clear statistics counters"
::= { tnMplsControlIfEntry 2 }
tnMplsStatistics OBJECT IDENTIFIER
::= { tnMplsMibObjects 5 }
tnMplsStatisticsGlobal OBJECT IDENTIFIER
::= { tnMplsStatistics 1 }
tnMplsStatisticsLink OBJECT IDENTIFIER
::= { tnMplsStatistics 2 }
tnMplsStatisticsTunnel OBJECT IDENTIFIER
::= { tnMplsStatistics 3 }
tnMplsStatisticsTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatisticsTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Tunnel Counters."
::= { tnMplsStatisticsTunnel 1 }
tnMplsStatisticsTunnelEntry OBJECT-TYPE
SYNTAX TNMplsStatisticsTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Counters."
INDEX { tnMplsStatisticsTunnelGroupIfIndex }
::= { tnMplsStatisticsTunnelTable 1 }
TNMplsStatisticsTunnelEntry ::= SEQUENCE {
tnMplsStatisticsTunnelGroupIfIndex TNInterfaceIndex,
tnMplsStatisticsTunnelRxGreenFrames Counter64,
tnMplsStatisticsTunnelRxGreenBytes Counter64,
tnMplsStatisticsTunnelRxYellowFrames Counter64,
tnMplsStatisticsTunnelRxYellowBytes Counter64,
tnMplsStatisticsTunnelRxRedFrames Counter64,
tnMplsStatisticsTunnelRxRedBytes Counter64,
tnMplsStatisticsTunnelRxDiscardFrames Counter64,
tnMplsStatisticsTunnelRxDiscardBytes Counter64,
tnMplsStatisticsTunnelTxGreenFrames Counter64,
tnMplsStatisticsTunnelTxGreenBytes Counter64,
tnMplsStatisticsTunnelTxYellowFrames Counter64,
tnMplsStatisticsTunnelTxYellowBytes Counter64,
tnMplsStatisticsTunnelTxDiscardFrames Counter64,
tnMplsStatisticsTunnelTxDiscardBytes Counter64
}
tnMplsStatisticsTunnelGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsStatisticsTunnelEntry 1 }
tnMplsStatisticsTunnelRxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green frames."
::= { tnMplsStatisticsTunnelEntry 3 }
tnMplsStatisticsTunnelRxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green bytes."
::= { tnMplsStatisticsTunnelEntry 4 }
tnMplsStatisticsTunnelRxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow frames."
::= { tnMplsStatisticsTunnelEntry 5 }
tnMplsStatisticsTunnelRxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow bytes."
::= { tnMplsStatisticsTunnelEntry 6 }
tnMplsStatisticsTunnelRxRedFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red frames."
::= { tnMplsStatisticsTunnelEntry 7 }
tnMplsStatisticsTunnelRxRedBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red bytes."
::= { tnMplsStatisticsTunnelEntry 8 }
tnMplsStatisticsTunnelRxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded frames."
::= { tnMplsStatisticsTunnelEntry 9 }
tnMplsStatisticsTunnelRxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded bytes."
::= { tnMplsStatisticsTunnelEntry 10 }
tnMplsStatisticsTunnelTxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green frames."
::= { tnMplsStatisticsTunnelEntry 11 }
tnMplsStatisticsTunnelTxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green bytes."
::= { tnMplsStatisticsTunnelEntry 12 }
tnMplsStatisticsTunnelTxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow frames."
::= { tnMplsStatisticsTunnelEntry 13 }
tnMplsStatisticsTunnelTxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow bytes."
::= { tnMplsStatisticsTunnelEntry 14 }
tnMplsStatisticsTunnelTxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded frames."
::= { tnMplsStatisticsTunnelEntry 15 }
tnMplsStatisticsTunnelTxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded bytes."
::= { tnMplsStatisticsTunnelEntry 16 }
tnMplsStatisticsLsp OBJECT IDENTIFIER
::= { tnMplsStatistics 4 }
tnMplsStatisticsLspTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatisticsLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Lsp Counters."
::= { tnMplsStatisticsLsp 1 }
tnMplsStatisticsLspEntry OBJECT-TYPE
SYNTAX TNMplsStatisticsLspEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Counters."
INDEX { tnMplsStatisticsLspGroupIndex }
::= { tnMplsStatisticsLspTable 1 }
TNMplsStatisticsLspEntry ::= SEQUENCE {
tnMplsStatisticsLspGroupIndex Integer32,
tnMplsStatisticsLspFwdRxGreenFrames Counter64,
tnMplsStatisticsLspFwdRxGreenBytes Counter64,
tnMplsStatisticsLspFwdRxYellowFrames Counter64,
tnMplsStatisticsLspFwdRxYellowBytes Counter64,
tnMplsStatisticsLspFwdRxRedFrames Counter64,
tnMplsStatisticsLspFwdRxRedBytes Counter64,
tnMplsStatisticsLspFwdRxDiscardFrames Counter64,
tnMplsStatisticsLspFwdRxDiscardBytes Counter64,
tnMplsStatisticsLspFwdTxGreenFrames Counter64,
tnMplsStatisticsLspFwdTxGreenBytes Counter64,
tnMplsStatisticsLspFwdTxYellowFrames Counter64,
tnMplsStatisticsLspFwdTxYellowBytes Counter64,
tnMplsStatisticsLspFwdTxDiscardFrames Counter64,
tnMplsStatisticsLspFwdTxDiscardBytes Counter64,
tnMplsStatisticsLspRewRxGreenFrames Counter64,
tnMplsStatisticsLspRewRxGreenBytes Counter64,
tnMplsStatisticsLspRewRxYellowFrames Counter64,
tnMplsStatisticsLspRewRxYellowBytes Counter64,
tnMplsStatisticsLspRewRxRedFrames Counter64,
tnMplsStatisticsLspRewRxRedBytes Counter64,
tnMplsStatisticsLspRewRxDiscardFrames Counter64,
tnMplsStatisticsLspRewRxDiscardBytes Counter64,
tnMplsStatisticsLspRewTxGreenFrames Counter64,
tnMplsStatisticsLspRewTxGreenBytes Counter64,
tnMplsStatisticsLspRewTxYellowFrames Counter64,
tnMplsStatisticsLspRewTxYellowBytes Counter64,
tnMplsStatisticsLspRewTxDiscardFrames Counter64,
tnMplsStatisticsLspRewTxDiscardBytes Counter64
}
tnMplsStatisticsLspGroupIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group index number. Valid range is (1..max groups). The maximum
group number is platform-specific and can be retrieved from the MPLS
capabilities."
::= { tnMplsStatisticsLspEntry 1 }
tnMplsStatisticsLspFwdRxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green frames."
::= { tnMplsStatisticsLspEntry 3 }
tnMplsStatisticsLspFwdRxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green bytes."
::= { tnMplsStatisticsLspEntry 4 }
tnMplsStatisticsLspFwdRxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow frames."
::= { tnMplsStatisticsLspEntry 5 }
tnMplsStatisticsLspFwdRxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow bytes."
::= { tnMplsStatisticsLspEntry 6 }
tnMplsStatisticsLspFwdRxRedFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red frames."
::= { tnMplsStatisticsLspEntry 7 }
tnMplsStatisticsLspFwdRxRedBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red bytes."
::= { tnMplsStatisticsLspEntry 8 }
tnMplsStatisticsLspFwdRxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded frames."
::= { tnMplsStatisticsLspEntry 9 }
tnMplsStatisticsLspFwdRxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded bytes."
::= { tnMplsStatisticsLspEntry 10 }
tnMplsStatisticsLspFwdTxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green frames."
::= { tnMplsStatisticsLspEntry 11 }
tnMplsStatisticsLspFwdTxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green bytes."
::= { tnMplsStatisticsLspEntry 12 }
tnMplsStatisticsLspFwdTxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow frames."
::= { tnMplsStatisticsLspEntry 13 }
tnMplsStatisticsLspFwdTxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow bytes."
::= { tnMplsStatisticsLspEntry 14 }
tnMplsStatisticsLspFwdTxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded frames."
::= { tnMplsStatisticsLspEntry 15 }
tnMplsStatisticsLspFwdTxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded bytes."
::= { tnMplsStatisticsLspEntry 16 }
tnMplsStatisticsLspRewRxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green frames."
::= { tnMplsStatisticsLspEntry 17 }
tnMplsStatisticsLspRewRxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green bytes."
::= { tnMplsStatisticsLspEntry 18 }
tnMplsStatisticsLspRewRxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow frames."
::= { tnMplsStatisticsLspEntry 19 }
tnMplsStatisticsLspRewRxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow bytes."
::= { tnMplsStatisticsLspEntry 20 }
tnMplsStatisticsLspRewRxRedFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red frames."
::= { tnMplsStatisticsLspEntry 21 }
tnMplsStatisticsLspRewRxRedBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red bytes."
::= { tnMplsStatisticsLspEntry 22 }
tnMplsStatisticsLspRewRxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded frames."
::= { tnMplsStatisticsLspEntry 23 }
tnMplsStatisticsLspRewRxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded bytes."
::= { tnMplsStatisticsLspEntry 24 }
tnMplsStatisticsLspRewTxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green frames."
::= { tnMplsStatisticsLspEntry 25 }
tnMplsStatisticsLspRewTxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green bytes."
::= { tnMplsStatisticsLspEntry 26 }
tnMplsStatisticsLspRewTxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow frames."
::= { tnMplsStatisticsLspEntry 27 }
tnMplsStatisticsLspRewTxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow bytes."
::= { tnMplsStatisticsLspEntry 28 }
tnMplsStatisticsLspRewTxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded frames."
::= { tnMplsStatisticsLspEntry 29 }
tnMplsStatisticsLspRewTxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded bytes."
::= { tnMplsStatisticsLspEntry 30 }
tnMplsStatisticsPw OBJECT IDENTIFIER
::= { tnMplsStatistics 5 }
tnMplsStatisticsPwTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMplsStatisticsPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MPLS Tunnel Counters."
::= { tnMplsStatisticsPw 1 }
tnMplsStatisticsPwEntry OBJECT-TYPE
SYNTAX TNMplsStatisticsPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Counters."
INDEX { tnMplsStatisticsPwGroupIfIndex }
::= { tnMplsStatisticsPwTable 1 }
TNMplsStatisticsPwEntry ::= SEQUENCE {
tnMplsStatisticsPwGroupIfIndex TNInterfaceIndex,
tnMplsStatisticsPwRxGreenFrames Counter64,
tnMplsStatisticsPwRxGreenBytes Counter64,
tnMplsStatisticsPwRxYellowFrames Counter64,
tnMplsStatisticsPwRxYellowBytes Counter64,
tnMplsStatisticsPwRxRedFrames Counter64,
tnMplsStatisticsPwRxRedBytes Counter64,
tnMplsStatisticsPwRxDiscardFrames Counter64,
tnMplsStatisticsPwRxDiscardBytes Counter64,
tnMplsStatisticsPwTxGreenFrames Counter64,
tnMplsStatisticsPwTxGreenBytes Counter64,
tnMplsStatisticsPwTxYellowFrames Counter64,
tnMplsStatisticsPwTxYellowBytes Counter64,
tnMplsStatisticsPwTxDiscardFrames Counter64,
tnMplsStatisticsPwTxDiscardBytes Counter64
}
tnMplsStatisticsPwGroupIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MPLS group interface index. Valid range is BASE+GROUP where the base is
specified in the interface index textual convention and the group
number range is 1..maximum group number. This maximum is
platform-specific and can be retrieved from the MPLS capabilities."
::= { tnMplsStatisticsPwEntry 1 }
tnMplsStatisticsPwRxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green frames."
::= { tnMplsStatisticsPwEntry 3 }
tnMplsStatisticsPwRxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received green bytes."
::= { tnMplsStatisticsPwEntry 4 }
tnMplsStatisticsPwRxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow frames."
::= { tnMplsStatisticsPwEntry 5 }
tnMplsStatisticsPwRxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received yellow bytes."
::= { tnMplsStatisticsPwEntry 6 }
tnMplsStatisticsPwRxRedFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red frames."
::= { tnMplsStatisticsPwEntry 7 }
tnMplsStatisticsPwRxRedBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received red bytes."
::= { tnMplsStatisticsPwEntry 8 }
tnMplsStatisticsPwRxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded frames."
::= { tnMplsStatisticsPwEntry 9 }
tnMplsStatisticsPwRxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received discarded bytes."
::= { tnMplsStatisticsPwEntry 10 }
tnMplsStatisticsPwTxGreenFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green frames."
::= { tnMplsStatisticsPwEntry 11 }
tnMplsStatisticsPwTxGreenBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted green bytes."
::= { tnMplsStatisticsPwEntry 12 }
tnMplsStatisticsPwTxYellowFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow frames."
::= { tnMplsStatisticsPwEntry 13 }
tnMplsStatisticsPwTxYellowBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted yellow bytes."
::= { tnMplsStatisticsPwEntry 14 }
tnMplsStatisticsPwTxDiscardFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded frames."
::= { tnMplsStatisticsPwEntry 15 }
tnMplsStatisticsPwTxDiscardBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of egress discarded bytes."
::= { tnMplsStatisticsPwEntry 16 }
tnMplsMibConformance OBJECT IDENTIFIER
::= { tnMplsMib 2 }
tnMplsMibCompliances OBJECT IDENTIFIER
::= { tnMplsMibConformance 1 }
tnMplsMibGroups OBJECT IDENTIFIER
::= { tnMplsMibConformance 2 }
tnMplsCapabilitiesInfoGroup OBJECT-GROUP
OBJECTS { tnMplsCapabilitiesMaxLinks, tnMplsCapabilitiesMaxTunnels,
tnMplsCapabilitiesMaxPw, tnMplsCapabilitiesMaxLsp,
tnMplsCapabilitiesMaxCosMap,
tnMplsCapabilitiesMaxTunnelNameLen }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 1 }
tnMplsConfigGlobalMainInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigGlobalMainTunnelMode,
tnMplsConfigGlobalMainGlobalId,
tnMplsConfigGlobalMainNodeId,
tnMplsConfigGlobalMainIccCarrierCode }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 2 }
tnMplsConfigLinkTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigLinkPort, tnMplsConfigLinkMACAddressNextHop,
tnMplsConfigLinkMACAddress, tnMplsConfigLinkVLANTagType,
tnMplsConfigLinkVLANId, tnMplsConfigLinkVLANpcp,
tnMplsConfigLinkVLANdei, tnMplsConfigLinkSrcNodeId,
tnMplsConfigLinkSrcGlobalId, tnMplsConfigLinkDstNodeId,
tnMplsConfigLinkDstGlobalId, tnMplsConfigLinkDstIfNum,
tnMplsConfigLinkSrcNodeIdValid,
tnMplsConfigLinkSrcGlobalIdValid,
tnMplsConfigLinkDstGlobalIdValid, tnMplsConfigLinkAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 3 }
tnMplsConfigLinkRowEditorInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigLinkRowEditorGroupIfIndex,
tnMplsConfigLinkRowEditorPort,
tnMplsConfigLinkRowEditorMACAddressNextHop,
tnMplsConfigLinkRowEditorMACAddress,
tnMplsConfigLinkRowEditorVLANTagType,
tnMplsConfigLinkRowEditorVLANId,
tnMplsConfigLinkRowEditorVLANpcp,
tnMplsConfigLinkRowEditorVLANdei,
tnMplsConfigLinkRowEditorSrcNodeId,
tnMplsConfigLinkRowEditorSrcGlobalId,
tnMplsConfigLinkRowEditorDstNodeId,
tnMplsConfigLinkRowEditorDstGlobalId,
tnMplsConfigLinkRowEditorDstIfNum,
tnMplsConfigLinkRowEditorSrcNodeIdValid,
tnMplsConfigLinkRowEditorSrcGlobalIdValid,
tnMplsConfigLinkRowEditorDstGlobalIdValid,
tnMplsConfigLinkRowEditorAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 4 }
tnMplsConfigTunnelTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigTunnelTunnelName, tnMplsConfigTunnelTunnelMode,
tnMplsConfigTunnelSrcNodeId, tnMplsConfigTunnelSrcGlobalId,
tnMplsConfigTunnelDstNodeId, tnMplsConfigTunnelDstGlobalId,
tnMplsConfigTunnelDstTunnelTpNum,
tnMplsConfigTunnelSrcTunnelTpNum,
tnMplsConfigTunnelSrcLspNum, tnMplsConfigTunnelDstLspNum,
tnMplsConfigTunnelIsSpme, tnMplsConfigTunnelSrcNodeIsValid,
tnMplsConfigTunnelSrcGlobalIdValid,
tnMplsConfigTunnelDstGlobalIdValid,
tnMplsConfigTunnelIngressLabel,
tnMplsConfigTunnelEgressLabel,
tnMplsConfigTunnelAttachInterface,
tnMplsConfigTunnelTrafficClass, tnMplsConfigTunnelTtl,
tnMplsConfigTunnelInCosMapId,
tnMplsConfigTunnelOutCosMapId, tnMplsConfigTunnelIsLLsp,
tnMplsConfigTunnelLLspCos, tnMplsConfigTunnelAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 5 }
tnMplsConfigTunnelRowEditorInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigTunnelRowEditorGroupIfIndex,
tnMplsConfigTunnelRowEditorTunnelName,
tnMplsConfigTunnelRowEditorTunnelMode,
tnMplsConfigTunnelRowEditorSrcNodeId,
tnMplsConfigTunnelRowEditorSrcGlobalId,
tnMplsConfigTunnelRowEditorDstNodeId,
tnMplsConfigTunnelRowEditorDstGlobalId,
tnMplsConfigTunnelRowEditorDstTunnelTpNum,
tnMplsConfigTunnelRowEditorSrcTunnelTpNum,
tnMplsConfigTunnelRowEditorSrcLspNum,
tnMplsConfigTunnelRowEditorDstLspNum,
tnMplsConfigTunnelRowEditorIsSpme,
tnMplsConfigTunnelRowEditorSrcNodeIsValid,
tnMplsConfigTunnelRowEditorSrcGlobalIdValid,
tnMplsConfigTunnelRowEditorDstGlobalIdValid,
tnMplsConfigTunnelRowEditorIngressLabel,
tnMplsConfigTunnelRowEditorEgressLabel,
tnMplsConfigTunnelRowEditorAttachInterface,
tnMplsConfigTunnelRowEditorTrafficClass,
tnMplsConfigTunnelRowEditorTtl,
tnMplsConfigTunnelRowEditorInCosMapId,
tnMplsConfigTunnelRowEditorOutCosMapId,
tnMplsConfigTunnelRowEditorIsLLsp,
tnMplsConfigTunnelRowEditorLLspCos,
tnMplsConfigTunnelRowEditorAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 6 }
tnMplsConfigLspTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigLspXcName, tnMplsConfigLspSrcNodeId,
tnMplsConfigLspSrcNodeIdIsDefined,
tnMplsConfigLspSrcGlobalId,
tnMplsConfigLspSrcGlobalIdIsDefined,
tnMplsConfigLspSrcTunnelTpNum, tnMplsConfigLspDstNodeId,
tnMplsConfigLspDstGlobalId,
tnMplsConfigLspDstGlobalIdIsDefined,
tnMplsConfigLspDstTunnelTpNum, tnMplsConfigLspSrcLspNumber,
tnMplsConfigLspDstLspNumber,
tnMplsConfigLspForwardIngressLabel,
tnMplsConfigLspForwardEgressLabel,
tnMplsConfigLspForwardAttachInterface,
tnMplsConfigLspForwardInCosMapId,
tnMplsConfigLspForwardOutCosMapId,
tnMplsConfigLspForwardIsLLsp, tnMplsConfigLspForwardHQoSId,
tnMplsConfigLspForwardLLspCos,
tnMplsConfigLspReverseIngressLabel,
tnMplsConfigLspReverseEgressLabel,
tnMplsConfigLspReverseAttachInterface,
tnMplsConfigLspReverseInCosMapId,
tnMplsConfigLspReverseOutCosMapId,
tnMplsConfigLspReverseIsLLsp,
tnMplsConfigLspReverseLLspCos,
tnMplsConfigLspReverseHQoSId, tnMplsConfigLspAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 7 }
tnMplsConfigLspRowEditorInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigLspRowEditorGroupIndex,
tnMplsConfigLspRowEditorXcName,
tnMplsConfigLspRowEditorSrcNodeId,
tnMplsConfigLspRowEditorSrcNodeIdIsDefined,
tnMplsConfigLspRowEditorSrcGlobalId,
tnMplsConfigLspRowEditorSrcGlobalIdIsDefined,
tnMplsConfigLspRowEditorSrcTunnelTpNum,
tnMplsConfigLspRowEditorDstNodeId,
tnMplsConfigLspRowEditorDstGlobalId,
tnMplsConfigLspRowEditorDstGlobalIdIsDefined,
tnMplsConfigLspRowEditorDstTunnelTpNum,
tnMplsConfigLspRowEditorSrcLspNumber,
tnMplsConfigLspRowEditorDstLspNumber,
tnMplsConfigLspRowEditorForwardIngressLabel,
tnMplsConfigLspRowEditorForwardEgressLabel,
tnMplsConfigLspRowEditorForwardAttachInterface,
tnMplsConfigLspRowEditorForwardInCosMapId,
tnMplsConfigLspRowEditorForwardOutCosMapId,
tnMplsConfigLspRowEditorForwardIsLLsp,
tnMplsConfigLspRowEditorForwardHQoSId,
tnMplsConfigLspRowEditorForwardLLspCos,
tnMplsConfigLspRowEditorReverseIngressLabel,
tnMplsConfigLspRowEditorReverseEgressLabel,
tnMplsConfigLspRowEditorReverseAttachInterface,
tnMplsConfigLspRowEditorReverseInCosMapId,
tnMplsConfigLspRowEditorReverseOutCosMapId,
tnMplsConfigLspRowEditorReverseIsLLsp,
tnMplsConfigLspRowEditorReverseLLspCos,
tnMplsConfigLspRowEditorReverseHQoSId,
tnMplsConfigLspRowEditorAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 8 }
tnMplsConfigPwTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigPwInLabel, tnMplsConfigPwOutLabel,
tnMplsConfigPwControlWord, tnMplsConfigPwUseControlWord,
tnMplsConfigPwTunnelMode, tnMplsConfigPwTrafficClass,
tnMplsConfigPwTtl, tnMplsConfigPwInCosMapId,
tnMplsConfigPwOutCosMapId, tnMplsConfigPwIsLLsp,
tnMplsConfigPwLLspCos, tnMplsConfigPwAttachInterface,
tnMplsConfigPwStitchPwInterface, tnMplsConfigPwVccvType,
tnMplsConfigPwHQoSId, tnMplsConfigPwSrcNodeId,
tnMplsConfigPwSrcNodeIdIsDefined,
tnMplsConfigPwSrcGlobalId,
tnMplsConfigPwSrcGlobalIdIsDefined,
tnMplsConfigPwDstNodeId, tnMplsConfigPwDstGlobalId,
tnMplsConfigPwDstGlobalIdIsDefined, tnMplsConfigPwSrcAcId,
tnMplsConfigPwDstAcId, tnMplsConfigPwSrcAgiValue,
tnMplsConfigPwDstAgiValue, tnMplsConfigPwSrcAgiType,
tnMplsConfigPwSrcAgiLength, tnMplsConfigPwDstAgiType,
tnMplsConfigPwDstAgiLength, tnMplsConfigPwAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 9 }
tnMplsConfigPwRowEditorInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigPwRowEditorGroupIfIndex,
tnMplsConfigPwRowEditorInLabel,
tnMplsConfigPwRowEditorOutLabel,
tnMplsConfigPwRowEditorControlWord,
tnMplsConfigPwRowEditorUseControlWord,
tnMplsConfigPwRowEditorTunnelMode,
tnMplsConfigPwRowEditorTrafficClass,
tnMplsConfigPwRowEditorTtl,
tnMplsConfigPwRowEditorInCosMapId,
tnMplsConfigPwRowEditorOutCosMapId,
tnMplsConfigPwRowEditorIsLLsp,
tnMplsConfigPwRowEditorLLspCos,
tnMplsConfigPwRowEditorAttachInterface,
tnMplsConfigPwRowEditorStitchPwInterface,
tnMplsConfigPwRowEditorVccvType,
tnMplsConfigPwRowEditorHQoSId,
tnMplsConfigPwRowEditorSrcNodeId,
tnMplsConfigPwRowEditorSrcNodeIdIsDefined,
tnMplsConfigPwRowEditorSrcGlobalId,
tnMplsConfigPwRowEditorSrcGlobalIdIsDefined,
tnMplsConfigPwRowEditorDstNodeId,
tnMplsConfigPwRowEditorDstGlobalId,
tnMplsConfigPwRowEditorDstGlobalIdIsDefined,
tnMplsConfigPwRowEditorSrcAcId,
tnMplsConfigPwRowEditorDstAcId,
tnMplsConfigPwRowEditorSrcAgiValue,
tnMplsConfigPwRowEditorDstAgiValue,
tnMplsConfigPwRowEditorSrcAgiType,
tnMplsConfigPwRowEditorSrcAgiLength,
tnMplsConfigPwRowEditorDstAgiType,
tnMplsConfigPwRowEditorDstAgiLength,
tnMplsConfigPwRowEditorAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 10 }
tnMplsConfigCosMapTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigCosMapInTcToCos0, tnMplsConfigCosMapInTcToCos1,
tnMplsConfigCosMapInTcToCos2, tnMplsConfigCosMapInTcToCos3,
tnMplsConfigCosMapInTcToCos4, tnMplsConfigCosMapInTcToCos5,
tnMplsConfigCosMapInTcToCos6, tnMplsConfigCosMapInTcToCos7,
tnMplsConfigCosMapInTcToDp0, tnMplsConfigCosMapInTcToDp1,
tnMplsConfigCosMapInTcToDp2, tnMplsConfigCosMapInTcToDp3,
tnMplsConfigCosMapInTcToDp4, tnMplsConfigCosMapInTcToDp5,
tnMplsConfigCosMapInTcToDp6, tnMplsConfigCosMapInTcToDp7,
tnMplsConfigCosMapOutCosDpToTc00,
tnMplsConfigCosMapOutCosDpToTc10,
tnMplsConfigCosMapOutCosDpToTc20,
tnMplsConfigCosMapOutCosDpToTc30,
tnMplsConfigCosMapOutCosDpToTc40,
tnMplsConfigCosMapOutCosDpToTc50,
tnMplsConfigCosMapOutCosDpToTc60,
tnMplsConfigCosMapOutCosDpToTc70,
tnMplsConfigCosMapOutCosDpToTc01,
tnMplsConfigCosMapOutCosDpToTc11,
tnMplsConfigCosMapOutCosDpToTc21,
tnMplsConfigCosMapOutCosDpToTc31,
tnMplsConfigCosMapOutCosDpToTc41,
tnMplsConfigCosMapOutCosDpToTc51,
tnMplsConfigCosMapOutCosDpToTc61,
tnMplsConfigCosMapOutCosDpToTc71, tnMplsConfigCosMapAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 11 }
tnMplsConfigCosMapRowEditorInfoGroup OBJECT-GROUP
OBJECTS { tnMplsConfigCosMapRowEditorGroupIndex,
tnMplsConfigCosMapRowEditorInTcToCos0,
tnMplsConfigCosMapRowEditorInTcToCos1,
tnMplsConfigCosMapRowEditorInTcToCos2,
tnMplsConfigCosMapRowEditorInTcToCos3,
tnMplsConfigCosMapRowEditorInTcToCos4,
tnMplsConfigCosMapRowEditorInTcToCos5,
tnMplsConfigCosMapRowEditorInTcToCos6,
tnMplsConfigCosMapRowEditorInTcToCos7,
tnMplsConfigCosMapRowEditorInTcToDp0,
tnMplsConfigCosMapRowEditorInTcToDp1,
tnMplsConfigCosMapRowEditorInTcToDp2,
tnMplsConfigCosMapRowEditorInTcToDp3,
tnMplsConfigCosMapRowEditorInTcToDp4,
tnMplsConfigCosMapRowEditorInTcToDp5,
tnMplsConfigCosMapRowEditorInTcToDp6,
tnMplsConfigCosMapRowEditorInTcToDp7,
tnMplsConfigCosMapRowEditorOutCosDpToTc00,
tnMplsConfigCosMapRowEditorOutCosDpToTc10,
tnMplsConfigCosMapRowEditorOutCosDpToTc20,
tnMplsConfigCosMapRowEditorOutCosDpToTc30,
tnMplsConfigCosMapRowEditorOutCosDpToTc40,
tnMplsConfigCosMapRowEditorOutCosDpToTc50,
tnMplsConfigCosMapRowEditorOutCosDpToTc60,
tnMplsConfigCosMapRowEditorOutCosDpToTc70,
tnMplsConfigCosMapRowEditorOutCosDpToTc01,
tnMplsConfigCosMapRowEditorOutCosDpToTc11,
tnMplsConfigCosMapRowEditorOutCosDpToTc21,
tnMplsConfigCosMapRowEditorOutCosDpToTc31,
tnMplsConfigCosMapRowEditorOutCosDpToTc41,
tnMplsConfigCosMapRowEditorOutCosDpToTc51,
tnMplsConfigCosMapRowEditorOutCosDpToTc61,
tnMplsConfigCosMapRowEditorOutCosDpToTc71,
tnMplsConfigCosMapRowEditorAction }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 12 }
tnMplsStatusLinkTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatusLinkOamActive }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 13 }
tnMplsStatusTunnelTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatusTunnelOamActive, tnMplsStatusTunnelState,
tnMplsStatusTunnelIngressLabel,
tnMplsStatusTunnelEgressLabel,
tnMplsStatusTunnelWorkingActive }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 14 }
tnMplsStatusLspTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatusLspOamActive, tnMplsStatusLspState }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 15 }
tnMplsStatusPwTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatusPwOamActive, tnMplsStatusPwState }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 16 }
tnMplsControlLspTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsControlLspClear }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 17 }
tnMplsControlIfTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsControlIfClear }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 18 }
tnMplsStatisticsTunnelTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatisticsTunnelRxGreenFrames,
tnMplsStatisticsTunnelRxGreenBytes,
tnMplsStatisticsTunnelRxYellowFrames,
tnMplsStatisticsTunnelRxYellowBytes,
tnMplsStatisticsTunnelRxRedFrames,
tnMplsStatisticsTunnelRxRedBytes,
tnMplsStatisticsTunnelRxDiscardFrames,
tnMplsStatisticsTunnelRxDiscardBytes,
tnMplsStatisticsTunnelTxGreenFrames,
tnMplsStatisticsTunnelTxGreenBytes,
tnMplsStatisticsTunnelTxYellowFrames,
tnMplsStatisticsTunnelTxYellowBytes,
tnMplsStatisticsTunnelTxDiscardFrames,
tnMplsStatisticsTunnelTxDiscardBytes }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 19 }
tnMplsStatisticsLspTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatisticsLspFwdRxGreenFrames,
tnMplsStatisticsLspFwdRxGreenBytes,
tnMplsStatisticsLspFwdRxYellowFrames,
tnMplsStatisticsLspFwdRxYellowBytes,
tnMplsStatisticsLspFwdRxRedFrames,
tnMplsStatisticsLspFwdRxRedBytes,
tnMplsStatisticsLspFwdRxDiscardFrames,
tnMplsStatisticsLspFwdRxDiscardBytes,
tnMplsStatisticsLspFwdTxGreenFrames,
tnMplsStatisticsLspFwdTxGreenBytes,
tnMplsStatisticsLspFwdTxYellowFrames,
tnMplsStatisticsLspFwdTxYellowBytes,
tnMplsStatisticsLspFwdTxDiscardFrames,
tnMplsStatisticsLspFwdTxDiscardBytes,
tnMplsStatisticsLspRewRxGreenFrames,
tnMplsStatisticsLspRewRxGreenBytes,
tnMplsStatisticsLspRewRxYellowFrames,
tnMplsStatisticsLspRewRxYellowBytes,
tnMplsStatisticsLspRewRxRedFrames,
tnMplsStatisticsLspRewRxRedBytes,
tnMplsStatisticsLspRewRxDiscardFrames,
tnMplsStatisticsLspRewRxDiscardBytes,
tnMplsStatisticsLspRewTxGreenFrames,
tnMplsStatisticsLspRewTxGreenBytes,
tnMplsStatisticsLspRewTxYellowFrames,
tnMplsStatisticsLspRewTxYellowBytes,
tnMplsStatisticsLspRewTxDiscardFrames,
tnMplsStatisticsLspRewTxDiscardBytes }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 20 }
tnMplsStatisticsPwTableInfoGroup OBJECT-GROUP
OBJECTS { tnMplsStatisticsPwRxGreenFrames,
tnMplsStatisticsPwRxGreenBytes,
tnMplsStatisticsPwRxYellowFrames,
tnMplsStatisticsPwRxYellowBytes,
tnMplsStatisticsPwRxRedFrames,
tnMplsStatisticsPwRxRedBytes,
tnMplsStatisticsPwRxDiscardFrames,
tnMplsStatisticsPwRxDiscardBytes,
tnMplsStatisticsPwTxGreenFrames,
tnMplsStatisticsPwTxGreenBytes,
tnMplsStatisticsPwTxYellowFrames,
tnMplsStatisticsPwTxYellowBytes,
tnMplsStatisticsPwTxDiscardFrames,
tnMplsStatisticsPwTxDiscardBytes }
STATUS current
DESCRIPTION
"A collection of objects suitable for bulk operations."
::= { tnMplsMibGroups 21 }
tnMplsMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the implementation."
MODULE -- this module
MANDATORY-GROUPS { tnMplsCapabilitiesInfoGroup,
tnMplsConfigGlobalMainInfoGroup,
tnMplsConfigLinkTableInfoGroup,
tnMplsConfigLinkRowEditorInfoGroup,
tnMplsConfigTunnelTableInfoGroup,
tnMplsConfigTunnelRowEditorInfoGroup,
tnMplsConfigLspTableInfoGroup,
tnMplsConfigLspRowEditorInfoGroup,
tnMplsConfigPwTableInfoGroup,
tnMplsConfigPwRowEditorInfoGroup,
tnMplsConfigCosMapTableInfoGroup,
tnMplsConfigCosMapRowEditorInfoGroup,
tnMplsStatusLinkTableInfoGroup,
tnMplsStatusTunnelTableInfoGroup,
tnMplsStatusLspTableInfoGroup,
tnMplsStatusPwTableInfoGroup,
tnMplsControlLspTableInfoGroup,
tnMplsControlIfTableInfoGroup,
tnMplsStatisticsTunnelTableInfoGroup,
tnMplsStatisticsLspTableInfoGroup,
tnMplsStatisticsPwTableInfoGroup }
::= { tnMplsMibCompliances 1 }
END
|