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
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
|
ALCATEL-IND1-TIMETRA-SDP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Gauge32,
Integer32, Unsigned32, IpAddress,
Counter64, Counter32 FROM SNMPv2-SMI
OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
RowStatus, MacAddress, TimeStamp, DisplayString,
TruthValue FROM SNMPv2-TC
InterfaceIndexOrZero FROM IF-MIB
InetAddressType, InetAddress FROM INET-ADDRESS-MIB
ServiceAdminStatus,
TmnxServId, TmnxCustId, TNamedItem, SdpBindId, TNamedItemOrEmpty,
TmnxVRtrMplsLspID, TmnxOperState, TmnxIgmpVersion,
TmnxEnabledDisabled, TItemDescription, TPolicyStatementNameOrEmpty,
TmnxVPNRouteDistinguisher FROM ALCATEL-IND1-TIMETRA-TC-MIB
tmnxServObjs, tmnxServConformance, tmnxServNotifications, tmnxSvcObjs,
custId, svcId, svcVpnId, tstpTraps,
tmnxOtherBridgeId, tmnxCustomerBridgeId, tmnxCustomerRootBridgeId,
tmnxOldSdpBindTlsStpPortState, svcTlsStpDesignatedRoot,
tlsDhcpPacketProblem, svcDhcpLseStateNewCiAddr,
svcDhcpLseStateNewChAddr, svcDhcpLseStateOldCiAddr,
svcDhcpLseStateOldChAddr, svcDhcpClientLease, svcDhcpLseStatePopulateError,
svcTlsMacMoveMaxRate, svcDhcpProxyError, svcDhcpCoAError,
svcDhcpPacketProblem, svcDhcpSubAuthError,
ServObjName, ServObjDesc,
VpnId, SdpId, PWTemplateId, SdpBindTlsBpduTranslation,
TlsLimitMacMoveLevel, TlsLimitMacMove, SdpBindVcType,
StpExceptionCondition, LspIdList, BridgeId, TStpPortState,
StpPortRole, StpProtocol, MvplsPruneState, TdmOptionsSigPkts,
TdmOptionsCasTrunkFraming, SdpBFHundredthsOfPercent, SdpBindBandwidth,
L2ptProtocols, L2RouteOrigin, ConfigStatus FROM ALCATEL-IND1-TIMETRA-SERV-MIB
timetraSRMIBModules FROM ALCATEL-IND1-TIMETRA-GLOBAL-MIB
TFilterID FROM ALCATEL-IND1-TIMETRA-FILTER-MIB
tmnxChassisIndex, tmnxCardSlotNum,
tmnxMDASlotNum FROM ALCATEL-IND1-TIMETRA-CHASSIS-MIB;
timetraServicesSdpMIBModule MODULE-IDENTITY
LAST-UPDATED "0710010000Z"
ORGANIZATION "Alcatel"
CONTACT-INFO
"Alcatel 7x50 Support
Web: http://www.alcatel.com/comps/pages/carrier_support.jhtml"
DESCRIPTION
"This document is the SNMP MIB module to manage and provision
the various services of the Alcatel 7x50 SR system.
Copyright 2003-2008 Alcatel-Lucent. All rights reserved. Reproduction
of this document is authorized on the condition that the
foregoing copyright notice is included.
This SNMP MIB module (Specification) embodies Alcatel's
proprietary intellectual property. Alcatel retains all title
and ownership in the Specification, including any revisions.
Alcatel grants all interested parties a non-exclusive license
to use and distribute an unmodified copy of this Specification
in connection with management of Alcatel products, and without
fee, provided this copyright notice and license appear on all
copies.
This Specification is supplied `as is', and Alcatel makes no
warranty, either express or implied, as to the use, operation,
condition, or performance of the Specification."
--
-- Revision History
--
REVISION "0710010000Z"
DESCRIPTION "Rev 1.0 01 Oct 2007 00:00
1.0 release of the TIMETRA-SDP-MIB from TIMETRA-SERV-MIB."
::= { timetraSRMIBModules 56 }
-- --------------------------------------------------------------------
-- ALCATEL-IND1-TIMETRA-SERV-MIB organisation
-- --------------------------------------------------------------------
tmnxSdpObjs OBJECT IDENTIFIER ::= { tmnxServObjs 4 }
tmnxSdpNotifyObjs OBJECT IDENTIFIER ::= { tmnxSdpObjs 100 }
tmnxSdpConformance OBJECT IDENTIFIER ::= { tmnxServConformance 4 }
sdpTrapsPrefix OBJECT IDENTIFIER ::= { tmnxServNotifications 4 }
sdpTraps OBJECT IDENTIFIER ::= { sdpTrapsPrefix 0 }
-- --------------------------------------------------------------------
-- tmnxSdpObjs group
-- --------------------------------------------------------------------
sdpNumEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of SDPs configured in this
device."
::= { tmnxSdpObjs 1 }
sdpNextFreeId OBJECT-TYPE
SYNTAX SdpId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The next available value for sdpId."
::= { tmnxSdpObjs 2 }
-- ----------------------------
-- SDP Table
-- ----------------------------
sdpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains SDP information."
::= { tmnxSdpObjs 3 }
sdpInfoEntry OBJECT-TYPE
SYNTAX SdpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific SDP."
INDEX { sdpId }
::= { sdpInfoTable 1 }
SdpInfoEntry ::=
SEQUENCE {
sdpId SdpId,
sdpRowStatus RowStatus,
sdpDelivery INTEGER,
sdpFarEndIpAddress IpAddress,
sdpLspList LspIdList,
sdpDescription ServObjDesc,
sdpLabelSignaling INTEGER,
sdpAdminStatus ServiceAdminStatus,
sdpOperStatus INTEGER,
sdpAdminPathMtu INTEGER,
sdpOperPathMtu Integer32,
sdpKeepAliveAdminStatus INTEGER,
sdpKeepAliveOperStatus INTEGER,
sdpKeepAliveHelloTime INTEGER,
sdpKeepAliveMaxDropCount INTEGER,
sdpKeepAliveHoldDownTime INTEGER,
sdpLastMgmtChange TimeStamp,
sdpKeepAliveHelloMessageLength INTEGER,
sdpKeepAliveNumHelloRequestMessages Unsigned32,
sdpKeepAliveNumHelloResponseMessages Unsigned32,
sdpKeepAliveNumLateHelloResponseMessages Unsigned32,
sdpKeepAliveHelloRequestTimeout INTEGER,
sdpLdpEnabled TruthValue,
sdpVlanVcEtype Unsigned32,
sdpAdvertisedVllMtuOverride TruthValue,
sdpOperFlags BITS,
sdpLastStatusChange TimeStamp,
sdpMvplsMgmtService TmnxServId,
sdpMvplsMgmtSdpBndId SdpBindId,
sdpCollectAcctStats TruthValue,
sdpAccountingPolicyId Unsigned32,
sdpClassFwdingEnabled TruthValue,
sdpClassFwdingDefaultLsp TmnxVRtrMplsLspID,
sdpClassFwdingMcLsp TmnxVRtrMplsLspID,
sdpMetric Unsigned32,
sdpAutoSdp TruthValue,
sdpSnmpAllowed TruthValue,
sdpPBBEtype Unsigned32,
sdpBandwidthBookingFactor Unsigned32,
sdpOperBandwidth Unsigned32,
sdpAvailableBandwidth Unsigned32,
sdpMaxBookableBandwidth Unsigned32,
sdpBookedBandwidth Unsigned32,
sdpCreationOrigin L2RouteOrigin
}
sdpId OBJECT-TYPE
SYNTAX SdpId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SDP identifier."
::= { sdpInfoEntry 1 }
sdpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this row. The
only values supported during a set operation are
'createAndGo' and 'destroy'. To delete an entry
from this table, the corresponding SDP must be
administratively down, not bound to any service,
and not in use as a mirror destination."
::= { sdpInfoEntry 2 }
sdpDelivery OBJECT-TYPE
SYNTAX INTEGER {
gre (1),
mpls (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the type of delivery used
by this SDP: e.g. GRE or MPLS. The value of this
object must be specified when the row is created
and cannot be changed while the row status is
'active'."
::= { sdpInfoEntry 3 }
sdpFarEndIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the IP address of the
remote end of the GRE or MPLS tunnel defined
by this SDP. The value of this object must
be set for the row to become 'active', and
can only be changed while the admin status
of the SDP is 'down'."
::= { sdpInfoEntry 4 }
sdpLspList OBJECT-TYPE
SYNTAX LspIdList
MAX-ACCESS read-create
STATUS current
DESCRIPTION "When the SDP delivery specified by sdpDelivery
is 'mpls', this object specifies the list of
LSPs used to reach the far-end ESR device.
All the LSPs in this list must terminate at the
IP address specified by sdpFarEndIpAddress. This
object is otherwise insignificant and should
contain a value of 0.
When this list has more than one element, the
Alcatel 7x50 SR router will use all of the LSPs for
load balancing purposes. Each LSP ID in the list
corresponds to the vRtrMplsLspIndex of the given
MPLS LSP."
::= { sdpInfoEntry 5 }
sdpDescription OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Generic information about this SDP."
DEFVAL { "" }
::= { sdpInfoEntry 6 }
sdpLabelSignaling OBJECT-TYPE
SYNTAX INTEGER {
none (1),
tldp (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the signaling protocol
used to obtain the ingress and egress labels
used in frames transmitted and received on
this SDP. When the value of this object is
'none' then the labels are manually assigned
at the time the SDP is bound to a service. The
value of this object can only be changed while
the admin status of the SDP is 'down'."
DEFVAL { tldp }
::= { sdpInfoEntry 7 }
sdpAdminStatus OBJECT-TYPE
SYNTAX ServiceAdminStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The desired state of this SDP."
DEFVAL { down }
::= { sdpInfoEntry 8 }
sdpOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
notAlive (2),
notReady (3),
invalidEgressInterface (4),
transportTunnelDown (5),
down (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operating state of this SDP. The value
'notAlive' is valid only when keep-alive is
enabled, and it means that the keep-alive
operating status is not alive. The value
'notReady' is valid only when this SDP uses a
label signaling protocol (e.g. TLDP) and it means
that the signaling session with the far-end peer
has not been established. The value
'invalidEgressInterface' indicates that the
IOM's have detected that the egress interface
towards the far-end device is not a network
port."
::= { sdpInfoEntry 9 }
sdpAdminPathMtu OBJECT-TYPE
SYNTAX INTEGER (0|576..9194)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the desired largest service
frame size (in octets) that can be transmitted
through this SDP to the far-end ESR, without
requiring the packet to be fragmented. The default
value of zero indicates that the path MTU should
be computed dynamically from the corresponding
MTU of the tunnel."
DEFVAL { 0 }
::= { sdpInfoEntry 10 }
sdpOperPathMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies the actual largest service
frame size (in octets) that can be transmitted
through this SDP to the far-end ESR, without
requiring the packet to be fragmented. In order
to be able to bind this SDP to a given service,
the value of this object must be equal to or
larger than the MTU of the service, as defined
by its svcMtu."
::= { sdpInfoEntry 11 }
sdpKeepAliveAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object is used to enable or disable the
keep-alive protocol used to determine the
operating status of this SDP."
DEFVAL { disabled }
::= { sdpInfoEntry 12 }
sdpKeepAliveOperStatus OBJECT-TYPE
SYNTAX INTEGER {
alive (1),
noResponse (2),
senderIdInvalid (3),
responderIdError (4),
disabled (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current status of the keep-alive protocol.
The value 'alive' indicates that the far-end
ESR is replying the SDP Echo Requests messages
sent by this device indicating no error condition.
The value 'noResponse' indicates that the number
of consecutive SDP Echo Request messages unack-
nowledged by the far-end ESR exceeded the limit
defined by sdpKeepAliveMaxDropCount. The values
'senderIdInvalid' and 'responderIdError' are
two error conditions detected by the far-end ESR.
The value 'disabled' indicates that the keep-alive
protocol is not enabled."
::= { sdpInfoEntry 13 }
sdpKeepAliveHelloTime OBJECT-TYPE
SYNTAX INTEGER (1..3600)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies how often the SDP Echo
Request messages are transmitted on this SDP."
DEFVAL { 10 }
::= { sdpInfoEntry 14 }
sdpKeepAliveMaxDropCount OBJECT-TYPE
SYNTAX INTEGER (1..5)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the maximum number of
consecutive SDP Echo Request messages that can
be unacknowledged before the keep-alive
protocol reports a fault."
DEFVAL { 3 }
::= { sdpInfoEntry 15 }
sdpKeepAliveHoldDownTime OBJECT-TYPE
SYNTAX INTEGER (0..3600)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the amount of time to
wait before the keep-alive operating status
is eligible to enter the 'alive' state."
DEFVAL { 10 }
::= { sdpInfoEntry 16 }
sdpLastMgmtChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime at the time of the
most recent management-initiated change to
this SDP."
::= { sdpInfoEntry 17 }
sdpKeepAliveHelloMessageLength OBJECT-TYPE
SYNTAX INTEGER (0 | 40..9198)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the length of the
SDP Echo Request messages transmitted on
this SDP. The default value of zero
indicates that the message length should
be equal to the SDP's operating path MTU,
as specified by sdpOperPathMtu. When the
default value is overridden, the message
length is sdpKeepAliveHelloMessageLength."
DEFVAL { 0 }
::= { sdpInfoEntry 18 }
sdpKeepAliveNumHelloRequestMessages OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of SDP Echo Request messages
transmitted since the keep-alive was
administratively enabled or the counter
was cleared."
::= { sdpInfoEntry 19 }
sdpKeepAliveNumHelloResponseMessages OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of SDP Echo Response messages
received since the keep-alive was
administratively enabled or the counter
was cleared."
::= { sdpInfoEntry 20 }
sdpKeepAliveNumLateHelloResponseMessages OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of SDP Echo Response messages
received after the corresponding Request
timeout timer expired."
::= { sdpInfoEntry 21 }
sdpKeepAliveHelloRequestTimeout OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The number of seconds to wait for an SDP
Echo Response message before declaring
a timeout."
DEFVAL { 5 }
::= { sdpInfoEntry 22 }
sdpLdpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "When the value of this object is 'true'
the transport LSP's are signalled by LDP,
as opposed to being provisioned static or
RSVP-signalled LSP's. This object applies
only to MPLS SDP's."
DEFVAL { false }
::= { sdpInfoEntry 23 }
sdpVlanVcEtype OBJECT-TYPE
SYNTAX Unsigned32 ('600'H..'ffff'H)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the Ethertype used in
frames sent out this SDP, when the VC type
is vlan."
DEFVAL { '8100'H }
::= { sdpInfoEntry 24 }
sdpAdvertisedVllMtuOverride OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "When the value of this object is 'true'
the advertised MTU of a VLL spoke SDP bind
includes the 14-byte L2 header, so that it is
backward compatible with pre-2.0 software."
DEFVAL { false }
::= { sdpInfoEntry 25 }
sdpOperFlags OBJECT-TYPE
SYNTAX BITS {
sdpAdminDown (0),
signalingSessionDown (1),
transportTunnelDown (2),
keepaliveFailure (3),
invalidEgressInterface (4),
noSystemIpAddress (5),
transportTunnelUnstable (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies all the conditions that
affect the operating status of this SDP."
::= { sdpInfoEntry 26 }
sdpLastStatusChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime at the time of the
most recent operating status change to this
SDP."
::= { sdpInfoEntry 27 }
sdpMvplsMgmtService OBJECT-TYPE
SYNTAX TmnxServId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpMvplsMgmtService indicates
the service Id of the service where the STP instance
is running that is managing this SDP. This object is
only valid if sdpMvplsMgmtService is different from
0."
::= { sdpInfoEntry 28 }
sdpMvplsMgmtSdpBndId OBJECT-TYPE
SYNTAX SdpBindId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpMvplsMgmtSdpBndId indicates
which SDP bind in the mVPLS instance specified in
sdpMvplsMgmtService is controlling this SDP. This
object is only valid if sdpMvplsMgmtService is
different from 0."
::= { sdpInfoEntry 29 }
sdpCollectAcctStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of the object sdpCollectAcctStats specifies
whether the agent collects accounting statistics for this
SDP. When the value is 'true' the agent
collects accounting statistics on this SDP."
DEFVAL { false }
::= { sdpInfoEntry 30 }
sdpAccountingPolicyId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpAccountingPolicyId specifies the
policy to use to collect accounting statistics on
this SDP. The value zero indicates that the
agent should use the default accounting policy,
if one exists."
DEFVAL { 0 }
::= { sdpInfoEntry 31 }
sdpClassFwdingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpClassFwdingEnabled specifies the
admin state of class-based forwarding on this SDP. When
the value is 'true', class-based forwarding is enabled."
DEFVAL { false }
::= { sdpInfoEntry 32 }
sdpClassFwdingDefaultLsp OBJECT-TYPE
SYNTAX TmnxVRtrMplsLspID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpClassFwdingDefaultLsp specifies the
LSP ID that is used as a default when class-based
forwarding is enabled on this SDP. This object
must be set when enabling class-based forwarding."
DEFVAL { 0 }
::= { sdpInfoEntry 33 }
sdpClassFwdingMcLsp OBJECT-TYPE
SYNTAX TmnxVRtrMplsLspID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpClassFwdingMcLsp specifies the LSP ID that
all multicast traffic will be forwarded on when class-based
forwarding is enabled on this SDP. When this object has its
default value, multicast traffic will be forwarded
on an LSP according to its forwarding class mapping."
DEFVAL { 0 }
::= { sdpInfoEntry 34 }
sdpMetric OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpMetric specifies the metric to be used
within the Tunnel Table Manager for decision making
purposes. When multiple SDPs going to the same destination
exist, this value is used as a tie-breaker by Tunnel Table
Manager users like MP-BGP to select route with lower
value."
DEFVAL { 0 }
::= { sdpInfoEntry 35 }
sdpAutoSdp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAutoSdp indicates whether this is an
Auto generated SDP from RADIUS discovery or BGP
auto-discovery."
::= { sdpInfoEntry 36 }
sdpSnmpAllowed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpSnmpAllowed indicates if SNMP sets
are allowed on this SDP."
::= { sdpInfoEntry 37 }
sdpPBBEtype OBJECT-TYPE
SYNTAX Unsigned32 ('600'H..'ffff'H)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the Ethertype used in frames sent
out on this SDP when sdpBindVcType is 'vlan' for
Provider Backbone Bridging frames."
DEFVAL { '88E7'H }
::= { sdpInfoEntry 38 }
sdpBandwidthBookingFactor OBJECT-TYPE
SYNTAX Unsigned32 (0..1000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "sdpBandwidthBookingFactor is used to calculate the max
SDP available bandwidth. The value of
sdpBandwidthBookingFactor specifies the percentage of the
SDP max available bandwidth for VLL call admission. When
the value of sdpBandwidthBookingFactor is set to zero (0),
no new VLL spoke-sdp bindings with non-zero bandwidth are
permitted with this SDP. Overbooking, >100% is allowed."
DEFVAL { 100 }
::= { sdpInfoEntry 39 }
sdpOperBandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilo-bits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpOperBandwidth indicates the operational
Bandwidth in kilo-bits per seconds (Kbps) available for
this SDP. The value sdpOperBandwidth is determined by the
sum of the bandwidth of all the RSVP LSPs used by the
SDP."
::= { sdpInfoEntry 40 }
sdpAvailableBandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilo-bits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAvailableBandwidth indicates the Bandwidth
that is still free for booking by the SDP bindings on the
SDP."
::= { sdpInfoEntry 41 }
sdpMaxBookableBandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilo-bits per second"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The value of sdpMaxBookableBandwidth indicates the max
Bandwidth that the SDP has for booking by the SDP
bindings. The value of sdpMaxBookableBandwidth is
calculated as follow:
sdpMaxBookableBandwidth = sdpOperBandwidth *
sdpBandwidthBookingFactor
"
::= { sdpInfoEntry 42 }
sdpBookedBandwidth OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kilo-bits per second"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The value of sdpBookedBandwidth indicates the
SDP Bandwidth that has been booked by the SDP
bindings."
::= { sdpInfoEntry 43 }
sdpCreationOrigin OBJECT-TYPE
SYNTAX L2RouteOrigin
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpCreationOrigin indicates the protocol or
mechanism which created this SDP."
::= { sdpInfoEntry 44 }
-- -------------------------
-- SDP Bind Table
-- -------------------------
sdpBindTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains SDP binding information."
::= { tmnxSdpObjs 4 }
sdpBindEntry OBJECT-TYPE
SYNTAX SdpBindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific SDP binding."
INDEX { svcId, sdpBindId }
::= { sdpBindTable 1 }
SdpBindEntry ::=
SEQUENCE {
sdpBindId SdpBindId,
sdpBindRowStatus RowStatus,
sdpBindAdminIngressLabel Unsigned32,
sdpBindAdminEgressLabel Unsigned32,
sdpBindOperIngressLabel Unsigned32,
sdpBindOperEgressLabel Unsigned32,
sdpBindAdminStatus ServiceAdminStatus,
sdpBindOperStatus INTEGER,
sdpBindLastMgmtChange TimeStamp,
sdpBindType INTEGER,
sdpBindIngressMacFilterId TFilterID,
sdpBindIngressIpFilterId TFilterID,
sdpBindEgressMacFilterId TFilterID,
sdpBindEgressIpFilterId TFilterID,
sdpBindVpnId VpnId,
sdpBindCustId TmnxCustId,
sdpBindVcType SdpBindVcType,
sdpBindVlanVcTag Unsigned32,
sdpBindSplitHorizonGrp ServObjName,
sdpBindOperFlags BITS,
sdpBindLastStatusChange TimeStamp,
sdpBindIesIfIndex InterfaceIndexOrZero,
sdpBindMacPinning TmnxEnabledDisabled,
sdpBindIngressIpv6FilterId TFilterID,
sdpBindEgressIpv6FilterId TFilterID,
sdpBindCollectAcctStats TruthValue,
sdpBindAccountingPolicyId Unsigned32,
sdpBindPwPeerStatusBits BITS,
sdpBindPeerVccvCvBits BITS,
sdpBindPeerVccvCcBits BITS,
sdpBindControlWordBit TruthValue,
sdpBindOperControlWord TruthValue,
sdpBindEndPoint ServObjName,
sdpBindEndPointPrecedence Unsigned32,
sdpBindIsICB TruthValue,
sdpBindPwFaultInetAddressType InetAddressType,
sdpBindPwFaultInetAddress InetAddress,
sdpBindClassFwdingOperState TmnxOperState,
sdpBindForceVlanVcForwarding TruthValue,
sdpBindAdminBandwidth SdpBindBandwidth,
sdpBindOperBandwidth SdpBindBandwidth
}
sdpBindId OBJECT-TYPE
SYNTAX SdpBindId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SDP Binding identifier."
::= { sdpBindEntry 1 }
sdpBindRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this row. The
only values supported during a set operation are
'createAndGo' and 'destroy'."
::= { sdpBindEntry 2 }
sdpBindAdminIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1 | 2048..18431)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The static MPLS VC label used by the far-end device
to send packets to this device in this service via
this SDP. The value of sdpBindAdminIngressLabel is
1 when it is used by a mirror service. All mirror SDPs
use this label to avoid the unnecessary use of
additional labels."
DEFVAL { 0 }
::= { sdpBindEntry 3 }
sdpBindAdminEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0 | 16..1048575)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The static MPLS VC label used by this device to send
packets to the far-end device in this service via
this SDP."
DEFVAL { 0 }
::= { sdpBindEntry 4 }
sdpBindOperIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1..1048575)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MPLS label used by the far-end device to send
packets to this device in this service via this SDP.
This label is either sdpBindAdminIngressLabel, if
not null, or the one obtained via the SDP's signaling
protocol."
DEFVAL { 0 }
::= { sdpBindEntry 5 }
sdpBindOperEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1..1048575)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MPLS label used by this device to send packets
to the far-end device in this service via this SDP.
This label is either sdpBindAdminEgressLabel, if
not null, or the one obtained via the SDP's signaling
protocol."
DEFVAL { 0 }
::= { sdpBindEntry 6 }
sdpBindAdminStatus OBJECT-TYPE
SYNTAX ServiceAdminStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The desired state of this Service-SDP binding."
DEFVAL { up }
::= { sdpBindEntry 7 }
sdpBindOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
noEgressLabel (2),
noIngressLabel (3),
noLabels (4),
down (5),
svcMtuMismatch (6),
sdpPathMtuTooSmall (7),
sdpNotReady (8),
sdpDown (9),
sapDown (10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindOperStatus indicates the operating status of
this Service-SDP binding.
'up' The Service-SDP binding is operational.
'noEgressLabel' The ingress label is available but the
egress one is missing.
'noIngressLabel' The egress label is available but the
ingress one is not.
'noLabels' Both the ingress and the egress labels
are missing.
'down' The binding is administratively down.
'svcMtuMismatch' Both labels are available, but a service
MTU mismatch was detected between the local
and the far-end devices.
'sdpPathMtuTooSmall' The operating path MTU of the corresponding
SDP is smaller than the service MTU.
'sdpNotReady' The SDP's signaling session is down.
'sdpDown' The SDP is not operationally up.
'sapDown' The SAP associated with the service is down."
::= { sdpBindEntry 8 }
sdpBindLastMgmtChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime at the time of the
most recent management-initiated change to
this Service-SDP binding."
::= { sdpBindEntry 9 }
sdpBindType OBJECT-TYPE
SYNTAX INTEGER {
spoke (1),
mesh (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates whether this Service SDP
binding is a spoke or a mesh. The value of this
object must be specified when the row is created
and cannot be changed while the row status is
'active'."
DEFVAL { mesh }
::= { sdpBindEntry 10 }
sdpBindIngressMacFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row index in the tMacFilterTable
corresponding to this ingress filter,
or zero if no filter is specified."
DEFVAL { 0 }
::= { sdpBindEntry 11 }
sdpBindIngressIpFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row index in the tIPFilterTable
corresponding to this ingress filter,
or zero if no filter is specified."
DEFVAL { 0 }
::= { sdpBindEntry 12 }
sdpBindEgressMacFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row index in the tMacFilterTable
corresponding to this egress filter,
or zero if no filter is specified."
DEFVAL { 0 }
::= { sdpBindEntry 13 }
sdpBindEgressIpFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row index in the tIPFilterTable
corresponding to this egress filter,
or zero if no filter is specified."
DEFVAL { 0 }
::= { sdpBindEntry 14 }
sdpBindVpnId OBJECT-TYPE
SYNTAX VpnId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The VPN ID of the associated service."
::= { sdpBindEntry 15 }
sdpBindCustId OBJECT-TYPE
SYNTAX TmnxCustId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Customer ID of the associated service."
::= { sdpBindEntry 16 }
sdpBindVcType OBJECT-TYPE
SYNTAX SdpBindVcType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of sdpBindVcType is an enumerated integer that specifies
the type of virtual circuit (VC) associated with the SDP binding.
The value 'vpls' is no longer supported."
::= { sdpBindEntry 17 }
sdpBindVlanVcTag OBJECT-TYPE
SYNTAX Unsigned32 ('0000'H..'0fff'H)
MAX-ACCESS read-create
STATUS current
DESCRIPTION ""
DEFVAL { '0fff'H }
::= { sdpBindEntry 18 }
sdpBindSplitHorizonGrp OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This value of the object sdpBindSplitHorizonGrp specifies
the name of the split-horizon group where the spoke SDP
Bind belongs to. This object can be set only at the time
the row is created. Per default a spoke SDP Bind does not
belong to any split-horizon group. The name specified must
correspond to an existing split-horizon group in the TLS
service where this spoke SDP Bind is defined."
DEFVAL { "" }
::= { sdpBindEntry 19 }
sdpBindOperFlags OBJECT-TYPE
SYNTAX BITS {
sdpBindAdminDown (0), -- SDP Bind is admin down
svcAdminDown (1), -- Service is admin down
sapOperDown (2), -- SAP is oper down (VLL's only)
sdpOperDown (3), -- SDP is oper down
sdpPathMtuTooSmall (4), -- SDP's path MTU is less than Service MTU
noIngressVcLabel (5), -- No ingress VC label
noEgressVcLabel (6), -- No egress VC label
svcMtuMismatch (7), -- Service MTU mismatch with the remote PE
vcTypeMismatch (8), -- VC type mismatch with the remote PE
relearnLimitExceeded (9), -- MAC relearn limit was exceeded (TLS only)
iesIfAdminDown (10),-- IP interface is admin down (IES and VPRN only)
releasedIngressVcLabel (11),-- Peer released our ingress VC label
labelsExhausted (12),-- Label Manager has ran out of labels
svcParamMismatch (13),-- Service-specific parameter mismatch
insufficientBandwidth (14),-- Insufficient bandwidth to allocate to SDP binding
pwPeerFaultStatusBits (15),-- Received PW fault status bits from peer
meshSdpDown (16) -- Mesh SDP Down
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies all the conditions that
affect the operating status of this SDP Bind."
::= { sdpBindEntry 20 }
sdpBindLastStatusChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindLastStatusChange specifies
the value of sysUpTime at the time of the most recent
operating status change to this SDP Bind."
::= { sdpBindEntry 21 }
sdpBindIesIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION "When this SDP Bind is defined on an IES service
and the value of sdpBindType is 'spoke', this
object specifies the index of the associated IES
interface. The value of this object can be set
only when the row is created and cannot be changed
while the row status is 'active'. This object is
otherwise not significant and should have
the value zero."
::= { sdpBindEntry 22 }
sdpBindMacPinning OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of the object sdpBindMacPinning specifies
whether or not MAC address pinning is active on this SDP
bind (mesh or spoke). Setting the value to enable disables
re-learning of MAC addresses on other SAPs or SDPs
within the same VPLS; the MAC address will hence
remain attached to the SDP Bind for the duration of
its age-timer. This object has effect only for MAC
addresses learned via the normal MAC learning
process, and not for entries learned via DHCP. The
value will be set by default to disabled. However for
a spoke SDP that belongs to a residential SHG, the
value is set to enabled by the system, and cannot be
altered by the operator. This object applies to spoke-SDP
associated with the service with svcType set to
'tls'."
::= { sdpBindEntry 23 }
sdpBindIngressIpv6FilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of the object sdpBindIngressIpv6FilterId
specifies the row index in the tIPv6FilterTable
corresponding to this ingress ipv6 filter,
or zero if no ipv6 filter is specified."
DEFVAL { 0 }
::= { sdpBindEntry 24 }
sdpBindEgressIpv6FilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of the object sdpBindEgressIpv6FilterId
specifies the row index in the tIPv6FilterTable
corresponding to this egress ipv6 filter,
or zero if no ipv6 filter is specified."
DEFVAL { 0 }
::= { sdpBindEntry 25 }
sdpBindCollectAcctStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of the object sdpBindCollectAcctStats specifies
whether the agent collects accounting statistics for this
SDP bind. When the value is 'true' the agent
collects accounting statistics on this SDP bind."
DEFVAL { false }
::= { sdpBindEntry 26 }
sdpBindAccountingPolicyId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpBindAccountingPolicyId specifies the
policy to use to collect accounting statistics on
this SDP bind. The value zero indicates that the
agent should use the default accounting policy,
if one exists."
DEFVAL { 0 }
::= { sdpBindEntry 27 }
sdpBindPwPeerStatusBits OBJECT-TYPE
SYNTAX BITS {
pwNotForwarding (0), -- Pseudo Wire Not Forwarding
lacIngressFault (1), -- Local Attachment Circuit Rx
-- Fault
lacEgresssFault (2), -- Local Attachment Circuit Tx
-- Fault
psnIngressFault (3), -- Local PSN-facing PW Rx Fault
psnEgressFault (4), -- Local PSN-facing PW Tx Fault
pwFwdingStandby (5) -- Pseudo Wire in Standby mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sdpBindPwPeerStatusBits indicates the bits set by the LDP
peer when there is a fault on its side of the pseudowire.
LAC failures occur on the SAP that has been configured on
the PIPE service, PSN bits are set by SDP-binding failures
on the PIPE service. The pwNotForwarding bit is set when
none of the above failures apply, such as an MTU mismatch
failure. This value is only applicable if the peer is
using the pseudowire status signalling method to indicate
faults."
::= { sdpBindEntry 28 }
sdpBindPeerVccvCvBits OBJECT-TYPE
SYNTAX BITS {
icmpPing (0),
lspPing (1),
bfdFaultDetection (2),
bfdFaultDetectionAndSignalling (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sdpBindPeerVccvCvBits indicates the CV type bits set by the
LDP peer if it supports VCCV (Virtual Circuit Connection
Verification) on a pseudowire. If the peer does not send
VCCV information, or does not support it, the bits will
be set to 0."
::= { sdpBindEntry 29 }
sdpBindPeerVccvCcBits OBJECT-TYPE
SYNTAX BITS {
pwe3ControlWord (0),
mplsRouterAlertLabel (1),
mplsPwDemultiplexorLabel (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sdpBindPeerVccvCcBits indicates the CC type bits set by the
LDP peer if it supports VCCV (Virtual Circuit Connection
Verification) on a pseudowire. If the peer does not send
VCCV information, or does not support it, the bits will
all be 0."
::= { sdpBindEntry 30 }
sdpBindControlWordBit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "sdpBindControlWordBit specifies whether the use of the
'ControlWord' is preferred or not. The value of
sdpBindControlWordBit is exchanged with LDP peer during
pseudowire negotiation time. The default value is
determined by sdpBindVcType. sdpBindVcType of atmSdu and
frDlci must have default value of 'true'. Other values of
sdpBindVcType must have default value of 'false'."
::= { sdpBindEntry 31 }
sdpBindOperControlWord OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sdpBindOperControlWord indicates whether the 'ControlWord'
is used or not. The value of sdpBindOperControlWord is
negotiated with the LDP peer. When both the local and the
peer prefer the use of the 'ControlWord', sdpBindOperControlWord
has the value of 'true'."
::= { sdpBindEntry 32 }
sdpBindEndPoint OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-create
STATUS current
DESCRIPTION "sdpBindEndPoint specifies the service endpoint to which
this SDP bind is attached. The svcId of the SDP bind MUST
match the svcId of the service endpoint."
DEFVAL { "" }
::= { sdpBindEntry 33 }
sdpBindEndPointPrecedence OBJECT-TYPE
SYNTAX Unsigned32 (0..4)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "sdpBindEndPointPrecedence specifies the precedence of this
SDP bind when there are multiple SDP binds attached to one
service endpoint. The value 0 can only be assigned to one
SDP bind, making it the primary SDP bind. When an SDP bind
goes down, the next highest precedence SDP bind begins
forwarding traffic."
DEFVAL { 4 }
::= { sdpBindEntry 34 }
sdpBindIsICB OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "sdpBindIsICB specifies whether this sdpBind is an
inter-chassis backup SDP bind."
DEFVAL { false }
::= { sdpBindEntry 35 }
sdpBindPwFaultInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindPwFaultInetAddressType
indicates the address type of sdpBindPwFaultInetAddress."
::= { sdpBindEntry 36 }
sdpBindPwFaultInetAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE(0|4|16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindPwFaultInetAddress indicates the IP
address that was included in the pseudowire status
message sent by the LDP peer. This value is only
applicable if the peer is using the pseudowire status
signalling method to indicate faults."
::= { sdpBindEntry 37 }
sdpBindClassFwdingOperState OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindClassFwdingOperState indicates the
operational state of forwarding-class based forwarding
on this sdpBind.
When the SDP this sdpBind is bound to has
sdpClassFwdingEnabled set to 'false', the value of
sdpBindClassFwdingOperState is 'outOfService'.
When the SDP this sdpBind is bound to has
sdpClassFwdingEnabled set to 'true' and the svcType
of the service this sdpBind is defined on is 'tls',
'vprn', or 'ies', the value of
sdpBindClassFwdingOperState is 'inService'. If the
service has svcVcSwitching set to 'true', the value
of sdpBindClassFwdingOperState is 'inService'
When the SDP this sdpBind is bound to has
sdpClassFwdingEnabled set to 'true' and the svcType
of the service this sdpBind is defined on is 'epipe',
'apipe', 'fpipe', or 'ipipe' with no SAP
defined on the service, the value of
sdpBindClassFwdingOperState is 'unknown'. If the
service has a SAP with a NULL
sapIngressSharedQueuePolicy, the value of
sdpBindClassFwdingOperState is 'outOfService'. If the
service has a SAP with a non-NULL
sapIngressSharedQueuePolicy, the value of
sdpBindClassFwdingOperState is 'inService'."
::= { sdpBindEntry 38 }
sdpBindForceVlanVcForwarding OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of sdpBindForceVlanVcForwarding specifies whether or not
vc-vlan-type forwarding is forced in the data-path for the sdp which
have sdpBindVcType set to 'ether'. When set to 'true'
vc-vlan-type forwarding is forced.
An 'inconsistentValue' error is returned when an attempt is made to set
the value of sdpBindForceVlanVcForwarding to 'true' and sdpBindVcType is
not set to 'ether'."
DEFVAL { false }
::= { sdpBindEntry 39 }
sdpBindAdminBandwidth OBJECT-TYPE
SYNTAX SdpBindBandwidth
UNITS "kilo-bits per second"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of the object sdpBindAdminBandwidth specifies the
bandwidth that needs to be reserved for this SDP binding in
kilo-bits per second. The SdpBindBandwidth object only applies
to the SDP bindings under the epipe(1), apipe(7), fpipe(8),
ipipe(9) and cpipe(10) services."
DEFVAL { 0 }
::= { sdpBindEntry 40 }
sdpBindOperBandwidth OBJECT-TYPE
SYNTAX SdpBindBandwidth
UNITS "kilo-bits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindOperBandwidth indicates the
bandwidth that has been reserved for this SDP binding in
kilo-bits per second. The value 0 indicates that SDP doesn't
have bandwidth to satisfy the bandwidth requirement of this
SDP binding. The sdpBindOperBandwidth object only applies
to the SDP bindings under the epipe(1), apipe(7), fpipe(8),
ipipe(9) and cpipe(10) services."
::= { sdpBindEntry 41 }
-- ----------------------------------
-- Base SDP Binding Statistics Table
-- ----------------------------------
sdpBindBaseStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindBaseStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains basic SDP Binding
statistics."
::= { tmnxSdpObjs 5 }
sdpBindBaseStatsEntry OBJECT-TYPE
SYNTAX SdpBindBaseStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Basic statistics about a specific SDP
Binding."
INDEX { svcId, sdpBindId }
::= { sdpBindBaseStatsTable 1 }
SdpBindBaseStatsEntry ::=
SEQUENCE {
sdpBindBaseStatsIngressForwardedPackets Counter64,
sdpBindBaseStatsIngressDroppedPackets Counter64,
sdpBindBaseStatsEgressForwardedPackets Counter64,
sdpBindBaseStatsEgressForwardedOctets Counter64,
sdpBindBaseStatsCustId TmnxCustId,
sdpBindBaseStatsIngFwdOctets Counter64,
sdpBindBaseStatsIngDropOctets Counter64
}
sdpBindBaseStatsIngressForwardedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { sdpBindBaseStatsEntry 1 }
sdpBindBaseStatsIngressDroppedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { sdpBindBaseStatsEntry 2 }
sdpBindBaseStatsEgressForwardedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { sdpBindBaseStatsEntry 3 }
sdpBindBaseStatsEgressForwardedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { sdpBindBaseStatsEntry 4 }
sdpBindBaseStatsCustId OBJECT-TYPE
SYNTAX TmnxCustId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Customer ID of the associated service."
::= { sdpBindBaseStatsEntry 5 }
sdpBindBaseStatsIngFwdOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { sdpBindBaseStatsEntry 6 }
sdpBindBaseStatsIngDropOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { sdpBindBaseStatsEntry 7 }
-- ------------------------------------------
-- TLS SDP Bind Table
-- ------------------------------------------
sdpBindTlsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindTlsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains TLS spoke SDP Bind
information."
::= { tmnxSdpObjs 6 }
sdpBindTlsEntry OBJECT-TYPE
SYNTAX SdpBindTlsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "TLS specific information about an SDP Bind."
INDEX { svcId, sdpBindId }
::= { sdpBindTlsTable 1 }
SdpBindTlsEntry ::=
SEQUENCE {
sdpBindTlsStpAdminStatus TmnxEnabledDisabled,
sdpBindTlsStpPriority INTEGER,
sdpBindTlsStpPortNum INTEGER,
sdpBindTlsStpPathCost INTEGER,
sdpBindTlsStpRapidStart TmnxEnabledDisabled,
sdpBindTlsStpBpduEncap INTEGER,
sdpBindTlsStpPortState TStpPortState,
sdpBindTlsStpDesignatedBridge BridgeId,
sdpBindTlsStpDesignatedPort Integer32,
sdpBindTlsStpForwardTransitions Gauge32,
sdpBindTlsStpInConfigBpdus Gauge32,
sdpBindTlsStpInTcnBpdus Gauge32,
sdpBindTlsStpInBadBpdus Gauge32,
sdpBindTlsStpOutConfigBpdus Gauge32,
sdpBindTlsStpOutTcnBpdus Gauge32,
sdpBindTlsStpOperBpduEncap INTEGER,
sdpBindTlsStpVpnId VpnId,
sdpBindTlsStpCustId TmnxCustId,
sdpBindTlsMacAddressLimit Integer32,
sdpBindTlsNumMacAddresses Integer32,
sdpBindTlsNumStaticMacAddresses Integer32,
sdpBindTlsMacLearning TmnxEnabledDisabled,
sdpBindTlsMacAgeing TmnxEnabledDisabled,
sdpBindTlsStpOperEdge TruthValue,
sdpBindTlsStpAdminPointToPoint INTEGER,
sdpBindTlsStpPortRole StpPortRole,
sdpBindTlsStpAutoEdge TmnxEnabledDisabled,
sdpBindTlsStpOperProtocol StpProtocol,
sdpBindTlsStpInRstBpdus Gauge32,
sdpBindTlsStpOutRstBpdus Gauge32,
sdpBindTlsLimitMacMove TlsLimitMacMove,
sdpBindTlsDiscardUnknownSource TmnxEnabledDisabled,
sdpBindTlsMvplsPruneState MvplsPruneState,
sdpBindTlsMvplsMgmtService TmnxServId,
sdpBindTlsMvplsMgmtSdpBndId SdpBindId,
sdpBindTlsStpException StpExceptionCondition,
sdpBindTlsL2ptTermination TmnxEnabledDisabled,
sdpBindTlsBpduTranslation SdpBindTlsBpduTranslation,
sdpBindTlsStpRootGuard TruthValue,
sdpBindTlsStpInMstBpdus Gauge32,
sdpBindTlsStpOutMstBpdus Gauge32,
sdpBindTlsStpRxdDesigBridge BridgeId,
sdpBindTlsMacMoveNextUpTime Unsigned32,
sdpBindTlsMacMoveRateExcdLeft Unsigned32,
sdpBindTlsLimitMacMoveLevel TlsLimitMacMoveLevel,
sdpBindTlsBpduTransOper INTEGER,
sdpBindTlsL2ptProtocols L2ptProtocols,
sdpBindTlsIgnoreStandbySig TruthValue,
sdpBindTlsBlockOnMeshFail TruthValue
}
sdpBindTlsStpAdminStatus OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpAdminStatus specifies
whether this SDP Bind participates in the TLS's Spanning
Tree Protocol."
DEFVAL { enabled }
::= { sdpBindTlsEntry 1 }
sdpBindTlsStpPriority OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpPriority specifies
the value of the port priority field which is contained
in the most significant 4 bits of the 16-bit Port ID
associated with this SDP Bind. As only the most
significant 4 bits of the value are used, the
actual value of this object is limited to
multiples of 16: e.g. the agent rounds down
the value to one of: 0, 16, 32, .. , 224, 240."
DEFVAL { 128 }
::= { sdpBindTlsEntry 2 }
sdpBindTlsStpPortNum OBJECT-TYPE
SYNTAX INTEGER (0..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpPortNum specifies
the value of the port number field which is contained in
the least significant 12 bits of the 16-bit Port ID
associated with this SDP Bind.
Values in the range 2048..4094 are automatically
assigned by the agent when the SDP Bind is created or
when the value of this object is set to zero via
management. Values in the range 1..2047 can be set
via management, to allow this object to have a
deterministic value across system reboots."
::= { sdpBindTlsEntry 3 }
sdpBindTlsStpPathCost OBJECT-TYPE
SYNTAX INTEGER (1..200000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpPathCost specifies
the contribution of this port to the path cost of paths
towards the spanning tree root which include this port."
DEFVAL { 10 }
::= { sdpBindTlsEntry 4 }
sdpBindTlsStpRapidStart OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpRapidStart
specifies whether Rapid Start is enabled on this SDP Bind.
When the value is 'enabled' the Spanning Tree Protocol
state transitions on this SDP Bind are driven by the value
of the 'HelloTime', instead of the value of 'ForwardDelay',
thus allowing a faster transition into the forwarding
state."
DEFVAL { disabled }
::= { sdpBindTlsEntry 5 }
sdpBindTlsStpBpduEncap OBJECT-TYPE
SYNTAX INTEGER {
dynamic (1),
dot1d (2),
pvst (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpBpduEncap
specifies the type of encapsulation used on BPDUs sent out
and received on this SDP Bind."
DEFVAL { dynamic }
::= { sdpBindTlsEntry 6 }
sdpBindTlsStpPortState OBJECT-TYPE
SYNTAX TStpPortState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpPortState indicates
the port's current state as defined by application of the
Spanning Tree Protocol. This state controls what action a
port takes on reception of a frame. If the bridge has
detected a port that is malfunctioning it will
place that port into the 'broken' state. All possible
states are: learning, forwarding, broken, and discarding."
::= { sdpBindTlsEntry 7 }
sdpBindTlsStpDesignatedBridge OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpDesignatedBridge
indicates the Bridge Identifier of the bridge which this
port considers to be the Designated Bridge for this port's
segment."
::= { sdpBindTlsEntry 8 }
sdpBindTlsStpDesignatedPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpDesignatedPort
indicates the Port Identifier of the port on the
Designated Bridge for this port's segment."
::= { sdpBindTlsEntry 9 }
sdpBindTlsStpForwardTransitions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpForwardTransitions
indicates the number of times this port has transitioned
from the Learning state to the Forwarding state."
::= { sdpBindTlsEntry 10 }
sdpBindTlsStpInConfigBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpInConfigBpdus
indicates the number of Configuration BPDUs received on
this SDP Bind."
::= { sdpBindTlsEntry 11 }
sdpBindTlsStpInTcnBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpInTcnBpdus
indicates the number of Topology
Change Notification BPDUs received on this SDP Bind."
::= { sdpBindTlsEntry 12 }
sdpBindTlsStpInBadBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpInBadBpdus indicates
the number of bad BPDUs received on this SDP Bind."
::= { sdpBindTlsEntry 13 }
sdpBindTlsStpOutConfigBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOutConfigBpdus
indicates the number of Configuration BPDUs sent out this
SDP Bind."
::= { sdpBindTlsEntry 14 }
sdpBindTlsStpOutTcnBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOutTcnBpdus
indicates the number of Topology Change Notification BPDUs
sent out this SDP Bind."
::= { sdpBindTlsEntry 15 }
sdpBindTlsStpOperBpduEncap OBJECT-TYPE
SYNTAX INTEGER {
dot1d (2),
pvst (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOperBpduEncap
indicates the operating encapsulation type used on BPDUs
sent out and received on this SDP Bind."
::= { sdpBindTlsEntry 16 }
sdpBindTlsStpVpnId OBJECT-TYPE
SYNTAX VpnId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpVpnId indicates the
VPN ID of the associated service."
::= { sdpBindTlsEntry 17 }
sdpBindTlsStpCustId OBJECT-TYPE
SYNTAX TmnxCustId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpCustId indicates the
Customer ID of the associated service."
::= { sdpBindTlsEntry 18 }
sdpBindTlsMacAddressLimit OBJECT-TYPE
SYNTAX Integer32(0..196607)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMacAddressLimit
specifies the maximum number of learned and static entries
allowed in the FDB for this SDP Bind. The value 0
means: no limit for this SDP Bind. The command is valid
only for spoke SDPs. When the value of
ALCATEL-IND1-TIMETRA-CHASSIS-MIB::tmnxChassisOperMode is not 'c', the
maximum value of sdpBindTlsMacAddressLimit is '131071'."
DEFVAL { 0 }
::= { sdpBindTlsEntry 19 }
sdpBindTlsNumMacAddresses OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsNumMacAddresses
indicates the number of MAC addresses currently present
in the FDB that belong to this SDP Bind (Both learned
and static MAC addresses are counted)."
::= { sdpBindTlsEntry 20 }
sdpBindTlsNumStaticMacAddresses OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsNumStaticMacAddresses
indicates the number of static MAC addresses currently
present in the FDB that belong to this SDP Bind."
::= { sdpBindTlsEntry 21 }
sdpBindTlsMacLearning OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMacLearning specifies
whether the MAC learning process is enabled for this SDP
Bind. The value is ignored if MAC learning is disabled on
service level."
DEFVAL { enabled }
::= { sdpBindTlsEntry 22 }
sdpBindTlsMacAgeing OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMacAgeing specifies
whether the MAC aging process is enabled for this
SDP Bind. the value is ignored if MAC aging is disabled
on service level."
DEFVAL { enabled }
::= { sdpBindTlsEntry 23 }
sdpBindTlsStpOperEdge OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOperEdge indicates
the operational value of the Edge Port parameter.
The object is initialized to the value of
sdpBindTlsStpRapidStart and is set FALSE on reception of a
BPDU."
REFERENCE
"IEEE 802.1t clause 14.8.2, 18.3.4"
::= { sdpBindTlsEntry 24 }
sdpBindTlsStpAdminPointToPoint OBJECT-TYPE
SYNTAX INTEGER {
forceTrue (0),
forceFalse (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object xx sdpBindTlsStpAdminPointToPoint
specifies the administrative point-to-point status of
the LAN segment attached to this sdp.
A value of 'forceTrue' indicates that this port should
always be treated as if it is connected to a
point-to-point link.
A value of 'forceFalse' indicates that this port should
be treated as having a shared media connection."
REFERENCE
"IEEE 802.1w clause 6.4.3, 6.5, 14.8.2"
DEFVAL { forceTrue }
::= { sdpBindTlsEntry 25 }
sdpBindTlsStpPortRole OBJECT-TYPE
SYNTAX StpPortRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpPortRole indicates
the current role of the sdp as defined by the Rapid
Spanning Tree Protocol."
::= { sdpBindTlsEntry 26 }
sdpBindTlsStpAutoEdge OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpAutoEdge specifies
whether this SDP is enabled for auto-edge detection as
defined by Rapid Spanning Tree Protocol."
DEFVAL { enabled }
::= { sdpBindTlsEntry 27 }
sdpBindTlsStpOperProtocol OBJECT-TYPE
SYNTAX StpProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOperProtocol
indicates whether stp, rstp or mstp is running on this
spoke sdp. If the protocol is not enabled on this
spoke-sdp the value notApplicable is returned."
::= { sdpBindTlsEntry 28 }
sdpBindTlsStpInRstBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpInRstBpdus indicates
the number of Rapid Spanning Tree (Rst) BPDUs received on
this SDP."
::= { sdpBindTlsEntry 29 }
sdpBindTlsStpOutRstBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOutRstBpdus indicates
the number of Rapid Spanning Tree (Rstp) BPDUs sent out on
this SDP."
::= { sdpBindTlsEntry 30 }
sdpBindTlsLimitMacMove OBJECT-TYPE
SYNTAX TlsLimitMacMove
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When sdpBindTlsLimitMacMove value is set to blockable
(1) the agent will monitor the MAC relearn rate on this
SDP Bind, and it will block it when the re-learn rate
specified by svcTlsMacMoveMaxRate is exceeded. When the
value is 'nonBlockable' this SDP binding will not be
blocked, and another blockable SDP binding will be
blocked instead."
DEFVAL { blockable }
::= { sdpBindTlsEntry 31 }
sdpBindTlsDiscardUnknownSource OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "With the object sdpBindTlsMacAddressLimit a limit can
be configured for the max number of MAC addresses that
will be learned on this SDP Bind (only for spoke
SDPs). When this limit is reached, packets with
unknown source MAC address are forwarded by default.
By setting sdpBindTlsDiscardUnknownSource to enabled,
packets with unknown source MAC will be dropped in
stead."
DEFVAL { disabled }
::= { sdpBindTlsEntry 32 }
sdpBindTlsMvplsPruneState OBJECT-TYPE
SYNTAX MvplsPruneState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMvplsPruneState
indicates the mVPLS prune state of the spoke SDP. The
object will be set to notApplicable if the spoke SDP is
not managed by a mVPLS. If the SDP is managed the state
reflects whether or not it is pruned by the STP instance
running in the mVPLS instance."
::= { sdpBindTlsEntry 33 }
sdpBindTlsMvplsMgmtService OBJECT-TYPE
SYNTAX TmnxServId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMvplsMgmtService
indicates the service Id of the service where the STP
instance is running that is managing this spoke SDP. This
object is only valid if sdpBindTlsMvplsPruneState is
different from notApplicable."
::= { sdpBindTlsEntry 34 }
sdpBindTlsMvplsMgmtSdpBndId OBJECT-TYPE
SYNTAX SdpBindId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMvplsMgmtSdpBndId
indicates the SDP bind id in the mVPLS instance specified
in sdpBindTlsMvplsMgmtService that is controlling this
SDP. This object is only valid if
sdpBindTlsMvplsPruneState is different from
notApplicable."
::= { sdpBindTlsEntry 35 }
sdpBindTlsStpException OBJECT-TYPE
SYNTAX StpExceptionCondition
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpException indicates
whether an STP exception condition is present on this
Spoke Sdp.
- none : no exception condition found.
- oneWayCommuniation : The neighbor RSTP peer on this link
is not able to detect our presence.
- downstreamLoopDetected :A loop is detected on this link."
::= { sdpBindTlsEntry 36 }
sdpBindTlsL2ptTermination OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsL2ptTermination
specifies whether received L2 Protocol Tunnel pdu's are
terminated on this port or sdp"
DEFVAL { disabled }
::= { sdpBindTlsEntry 37 }
sdpBindTlsBpduTranslation OBJECT-TYPE
SYNTAX SdpBindTlsBpduTranslation
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsBpduTranslation
specifies whether received L2 Protocol Tunnel pdu's are
translated before being sent out on this port or sap"
DEFVAL { disabled }
::= { sdpBindTlsEntry 38 }
sdpBindTlsStpRootGuard OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpRootGuard specifies
whether this port is allowed to become STP root port.
It corresponds to the parameter 'restrictedRole' in 802.1Q.
If set, it can cause lack of spanning tree connectivity."
DEFVAL { false }
::= { sdpBindTlsEntry 39 }
sdpBindTlsStpInMstBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpInMstBpdus indicates
the number of Multiple Spanning Tree (Mst) BPDUs received
on this SDP."
::= { sdpBindTlsEntry 40 }
sdpBindTlsStpOutMstBpdus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpOutMstBpdus indicates
the number of Multiple Spanning Tree (Mst) BPDUs sent out
on this SDP."
::= { sdpBindTlsEntry 41 }
sdpBindTlsStpRxdDesigBridge OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsStpRxdDesigBridge
indicates the designated Bridge Identifier in the last
BPDU which was received on this SDP."
::= { sdpBindTlsEntry 42 }
sdpBindTlsMacMoveNextUpTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsMacMoveNextUpTime
counts down the time in seconds until a SDP bind that
has been brought down due to exceeding the TLS
svcTlsMacMoveMaxRate, sdpBindOperFlags
'relearnLimitExceeded', is automatically brought up again.
When this value is 0xffff, the SDP bind will never be
automatically brought up. The value is zero when
sdpBindOperStatus is 'up'."
::= { sdpBindTlsEntry 43 }
sdpBindTlsMacMoveRateExcdLeft OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sapTlsMacMoveRateExcdLeft
counts down the number of times this SDP bind can exceed
the TLS svcTlsMacMoveMaxRate and still be automatically
brought up."
::= { sdpBindTlsEntry 44 }
sdpBindTlsLimitMacMoveLevel OBJECT-TYPE
SYNTAX TlsLimitMacMoveLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsLimitMacMoveLevel
specifies the hierarchy in which spoke-SDPs are
blocked when a MAC-move limit is exceeded. When a MAC is
moving among multiple SAPs or spoke-SDPs, the SAP bind
or spoke-SDP bind with the lower level is blocked first.
(tertiary is the lowest)"
DEFVAL { tertiary }
::= { sdpBindTlsEntry 45 }
sdpBindTlsBpduTransOper OBJECT-TYPE
SYNTAX INTEGER {
undefined (1),
disabled (2),
pvst (3),
stp (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindTlsBpduTransOper indicates
the operational BPDU encapsulation used for BPDU
translated frames."
::= { sdpBindTlsEntry 46 }
sdpBindTlsL2ptProtocols OBJECT-TYPE
SYNTAX L2ptProtocols
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindTlsL2ptTermination
specifies which L2 Protocol Tunnel pdu's are
terminated on this port or sdp"
DEFVAL { { stp } }
::= { sdpBindTlsEntry 47 }
sdpBindTlsIgnoreStandbySig OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsIgnoreStandbySig specifies whether
the local internal tasks will take into account the
'pseudo-wire forwarding standby' bit received from the LDP
peer which is normally ignored.
When set to 'true', this bit is not considered in the
internal tasks.
A similar object svcEndPointIgnoreStandbySig is present at
the endpoint level. If this spoke-SDP is part of that
explicit endpoint, this object will be set to the value of
svcEndPointIgnoreStandbySig and its value will not allowed
to be changed.
This spoke-SDP can be made part of an explicit-endpoint
only if the setting of this object is not conflicting with
the setting of svcEndPointIgnoreStandbySig object."
DEFVAL { false }
::= { sdpBindTlsEntry 48 }
sdpBindTlsBlockOnMeshFail OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsBlockOnMeshFail specifies that the
operational status of this spoke SDP will consider
operational status of associated mesh SDPs in this service.
If there are no mesh SDPs in the service, value of this
object is ignored.
When this object is set to 'true', then the operational
status of this spoke SDP will be 'down' until the
operational status of atleast one mesh SDP in this service
is 'up'.
When set to 'false', the operational status of this spoke
SDP does not consider the operational status of any mesh
SDPs in the service."
DEFVAL { false }
::= { sdpBindTlsEntry 49 }
-- ------------------------------------------
-- TLS Mesh SDP Bind Table
-- ------------------------------------------
sdpBindMeshTlsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindMeshTlsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains TLS Mesh SDP Bind
information."
::= { tmnxSdpObjs 7 }
sdpBindMeshTlsEntry OBJECT-TYPE
SYNTAX SdpBindMeshTlsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "TLS specific information about an Mesh SDP Bind."
INDEX { svcId, sdpBindId }
::= { sdpBindMeshTlsTable 1 }
SdpBindMeshTlsEntry ::=
SEQUENCE {
sdpBindMeshTlsPortState TStpPortState,
sdpBindMeshTlsHoldDownTimer INTEGER,
sdpBindMeshTlsTransitionState INTEGER,
sdpBindMeshTlsNotInMstRegion TruthValue
}
sdpBindMeshTlsPortState OBJECT-TYPE
SYNTAX TStpPortState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the actual state of the Mesh SDP. If
the sdp is operationally down, the port will be in the
'disabled' state. If the sdp is operationally up, the
state will be 'forwarding' unless the hold-down timer is
active in which case the state will be 'discarding'."
::= { sdpBindMeshTlsEntry 1 }
sdpBindMeshTlsHoldDownTimer OBJECT-TYPE
SYNTAX INTEGER {
not-active (1),
active (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When the hold-down timer is active, all traffic coming
from this mesh sdp will be blocked. This timer will be
activated for any of the following cases:
1. when a mesh SDP becomes operational;
2. when a 'disputed' BPDU is received over this mesh sdp;
This is typically a symptom of one way communication
(the peer at the other side of the mesh sdp does not
receive our BPDUs).
3. when a MSTP BPDU from outside the region is received
over this mesh SDP."
::= { sdpBindMeshTlsEntry 2 }
sdpBindMeshTlsTransitionState OBJECT-TYPE
SYNTAX INTEGER {
not-applicable (1),
waiting-for-agreement (2),
agreement-received (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates whether we already received an
agreement from the peer connected via this mesh sdp. RSTP
expects an agreement from every peer after sending a
proposal over the VCP when it wants to transition the latter
to the forwarding state. This object is only relevant when
the role of the VCP is 'designated'. Not receiving an
agreement is typically caused by an improperly configured
sdp or by a non rstp enabled peer."
::= { sdpBindMeshTlsEntry 3 }
sdpBindMeshTlsNotInMstRegion OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object sdpBindMeshTlsNotInMstRegion indicates whether
we received a BPDU from another MST-region on this mesh
SDP.
If set to 'true' then the object sdpBindMeshTlsHoldDownTimer
will have the value 'active'.
It is up to the operator to make sure bridges connected
via mesh SDPs are in the same MST-region. If not the mesh
will NOT become operational."
::= { sdpBindMeshTlsEntry 4 }
-- ------------------------------------
-- APIPE SDP Bind Table
-- ------------------------------------
sdpBindApipeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindApipeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpBindApipeTable has an entry for each apipe sdpBind
configured on this system."
::= { tmnxSdpObjs 8 }
sdpBindApipeEntry OBJECT-TYPE
SYNTAX SdpBindApipeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry represents a particular sdpBind related to a
particular Apipe service entry. Entries are created/deleted
by the user."
INDEX { svcId, sdpBindId }
::= { sdpBindApipeTable 1 }
SdpBindApipeEntry ::=
SEQUENCE {
sdpBindApipeAdminConcatCellCount Integer32,
sdpBindApipeSigConcatCellCount Integer32,
sdpBindApipeOperConcatCellCount Integer32,
sdpBindApipeConcatMaxDelay Integer32,
sdpBindApipeConcatCellClp TruthValue,
sdpBindApipeConcatCellAal5Fr TruthValue
}
sdpBindApipeAdminConcatCellCount OBJECT-TYPE
SYNTAX Integer32 (1..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindApipeAdminConcatCellCount specifies
the maximum number of ATM cells to accumulate
into an MPLS packet. The remote peer will also signal the
maximum number of concatenated cells it is willing to
accept in an MPLS packet. When the lesser of (the
configured value and the signaled value) number of cells
is reached, the MPLS packet is queued for transmission
onto the pseudowire."
DEFVAL { 1 }
::= { sdpBindApipeEntry 1 }
sdpBindApipeSigConcatCellCount OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindApipeSigConcatCellCount indicates the
maximum number of concatenated ATM cells the remote peer
is willing to accept. If there is no remote peer, or if
the label mapping has not been received, this object will
be zero (0)."
::= { sdpBindApipeEntry 2 }
sdpBindApipeOperConcatCellCount OBJECT-TYPE
SYNTAX Integer32 (1..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindApipeOperConcatCellCount indicates the
maximum number of concatenated ATM cells that will be sent
on this SDP binding."
::= { sdpBindApipeEntry 3 }
sdpBindApipeConcatMaxDelay OBJECT-TYPE
SYNTAX Integer32 (1..400)
UNITS "hundreds of microseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindApipeConcatMaxDelay object specifies
the maximum amount of time to wait while
performing ATM cell concatenation into an MPLS packet
before transmitting the MPLS packet. This places an upper
bound on the amount of delay introduced by the
concatenation process.
When this amount of time is reached from when the first
ATM cell for this MPLS packet was received, the MPLS
packet is queued for transmission onto the pseudowire."
DEFVAL { 400 }
::= { sdpBindApipeEntry 4 }
sdpBindApipeConcatCellClp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindApipeConcatCellClp specifies whether
a CLP change should be used as an indication to complete
the cell concatenation operation. When the value is 'true',
CLP is used to indicate that cell concatenation should
be completed."
DEFVAL { false }
::= { sdpBindApipeEntry 5 }
sdpBindApipeConcatCellAal5Fr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindApipeConcatCellAal5Fr specifies
whether the AAL5 EOP (end of packet) should be used as an
indication to complete the cell concatenation operation.
When the value is 'true', EOP is used to indicate that
cell concatenation should be completed."
DEFVAL { false }
::= { sdpBindApipeEntry 6 }
-- ------------------------------------
-- SDP Bind DHCP Information Table
-- ------------------------------------
sdpBindDhcpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindDhcpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains DHCP information related to a
SDP Bind.
A row will exist in this table for each spoke or
mesh SDP in a Tls Service. Rows are created and deleted
automatically by the system."
::= { tmnxSdpObjs 9 }
sdpBindDhcpInfoEntry OBJECT-TYPE
SYNTAX SdpBindDhcpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "DHCP specific information about an SDP Bind."
INDEX { svcId, sdpBindId }
::= { sdpBindDhcpInfoTable 1 }
SdpBindDhcpInfoEntry ::=
SEQUENCE {
sdpBindDhcpDescription ServObjDesc,
sdpBindDhcpSnoop TmnxEnabledDisabled
}
sdpBindDhcpDescription OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpDescription specifies
a user provided description for DHCP on this Sdp Bind."
DEFVAL { ''H }
::= { sdpBindDhcpInfoEntry 1 }
sdpBindDhcpSnoop OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpSnoop specifies
whether or not DHCP snooping is enabled on the Sdp Bind."
DEFVAL { disabled }
::= { sdpBindDhcpInfoEntry 2 }
-- ------------------------------------
-- SDP Bind DHCP Stats Table
-- ------------------------------------
sdpBindDhcpStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindDhcpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "sdpBindDhcpStatsTable contains DHCP statistics related
to a TLS SDP Bind. A row will exist in this table for
each spoke or mesh SDP in a Tls Service. Rows are
created and deleted automatically by the system."
::= { tmnxSdpObjs 10 }
sdpBindDhcpStatsEntry OBJECT-TYPE
SYNTAX SdpBindDhcpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "DHCP statistics for a TLS spoke SDP or mesh SDP."
INDEX { svcId, sdpBindId }
::= { sdpBindDhcpStatsTable 1 }
SdpBindDhcpStatsEntry ::=
SEQUENCE {
sdpBindDhcpStatsClntSnoopdPckts Counter32,
sdpBindDhcpStatsSrvrSnoopdPckts Counter32,
sdpBindDhcpStatsClntForwdPckts Counter32,
sdpBindDhcpStatsSrvrForwdPckts Counter32,
sdpBindDhcpStatsClntDropdPckts Counter32,
sdpBindDhcpStatsSrvrDropdPckts Counter32,
sdpBindDhcpStatsClntProxRadPckts Counter32,
sdpBindDhcpStatsClntProxLSPckts Counter32,
sdpBindDhcpStatsGenReleasePckts Counter32,
sdpBindDhcpStatsGenForceRenPckts Counter32
}
sdpBindDhcpStatsClntSnoopdPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsClntSnoopdPckts
indicates the number of DHCP client packets that have
been snooped on this SDP bind."
::= { sdpBindDhcpStatsEntry 1 }
sdpBindDhcpStatsSrvrSnoopdPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsSrvrSnoopdPckts
indicates the number of DHCP server packets that have
been snooped on this SDP bind."
::= { sdpBindDhcpStatsEntry 2 }
sdpBindDhcpStatsClntForwdPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsClntForwdPckts
indicates the number of DHCP client packets that have
been forwarded on this SDP bind."
::= { sdpBindDhcpStatsEntry 3 }
sdpBindDhcpStatsSrvrForwdPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsSrvrForwdPckts
indicates the number of DHCP server packets that have
been forwarded on this SDP bind."
::= { sdpBindDhcpStatsEntry 4 }
sdpBindDhcpStatsClntDropdPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsClntDropdPckts
indicates the number of DHCP client packets that have
been dropped on this SDP bind."
::= { sdpBindDhcpStatsEntry 5 }
sdpBindDhcpStatsSrvrDropdPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsSrvrDropdPckts
indicates the number of DHCP server packets that have
been dropped on this SDP bind."
::= { sdpBindDhcpStatsEntry 6 }
sdpBindDhcpStatsClntProxRadPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsClntProxRadPckts
indicates the number of DHCP client packets that have
been proxied on this SDP bind based on data received from
a RADIUS server."
::= { sdpBindDhcpStatsEntry 7 }
sdpBindDhcpStatsClntProxLSPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsClntProxLSPckts
indicates the number of DHCP client packets that have
been proxied on this SDP bind based on a lease state. The
lease itself can have been obtained from a DHCP or RADIUS
server. This is the so called lease split functionality."
::= { sdpBindDhcpStatsEntry 8 }
sdpBindDhcpStatsGenReleasePckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsGenReleasePckts
indicates the number of DHCP RELEASE messages spoofed on
this SDP bind to the DHCP server."
::= { sdpBindDhcpStatsEntry 9 }
sdpBindDhcpStatsGenForceRenPckts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object sdpBindDhcpStatsGenForceRenPckts
indicates the number of DHCP FORCERENEW messages spoofed
on this SDP bind to the DHCP clients."
::= { sdpBindDhcpStatsEntry 10 }
-- ------------------------------------
-- IPIPE SDP Bind Table
-- ------------------------------------
sdpBindIpipeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindIpipeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpBindIpipeTable has an entry for each IPIPE sdpBind
configured on this system."
::= { tmnxSdpObjs 11 }
sdpBindIpipeEntry OBJECT-TYPE
SYNTAX SdpBindIpipeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry represents a particular sdpBind related to a
particular IPIPE service entry. Entries are created/deleted
by the user."
INDEX { svcId, sdpBindId }
::= { sdpBindIpipeTable 1 }
SdpBindIpipeEntry ::=
SEQUENCE {
sdpBindIpipeCeInetAddressType InetAddressType,
sdpBindIpipeCeInetAddress InetAddress
}
sdpBindIpipeCeInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of the object sdpBindIpipeCeInetAddressType
specifies the addresstype of the IP address of the CE
device reachable throught this IPIPE SDP binding."
::= { sdpBindIpipeEntry 1 }
sdpBindIpipeCeInetAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE(0|4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The type of this address is determined by the value of
the sdpBindIpipeCeInetAddressType object.
This object specifies the IPv4 address of the
CE device reachable through this SDP binding."
::= { sdpBindIpipeEntry 2 }
-- --------------------------------------------
-- SDP Egress forwarding-class mapping table
-- --------------------------------------------
sdpFCMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpFCMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpFCMappingTable has an entry for each FC mapping
on an SDP configured on this system."
::= { tmnxSdpObjs 12 }
sdpFCMappingEntry OBJECT-TYPE
SYNTAX SdpFCMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry represents a particular FC to LSP ID
mapping on an SDP. Entries are created/deleted by
the user."
INDEX { sdpId, sdpFCMappingFCName }
::= { sdpFCMappingTable 1 }
SdpFCMappingEntry ::=
SEQUENCE {
sdpFCMappingFCName TNamedItem,
sdpFCMappingRowStatus RowStatus,
sdpFCMappingLspId TmnxVRtrMplsLspID
}
sdpFCMappingFCName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The value of sdpFCMappingFCName specifies the forwarding
class for which this mapping is defined, in the SDP
indexed by 'sdpId'."
::= { sdpFCMappingEntry 1 }
sdpFCMappingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpFCMappingRowStatus is used for the
creation and deletion of forwarding class to LSP
mappings."
::= { sdpFCMappingEntry 2 }
sdpFCMappingLspId OBJECT-TYPE
SYNTAX TmnxVRtrMplsLspID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpFCMappingLspId specifies the LSP ID that
traffic corresponding to the class specified in
sdpFCMappingFCName will be forwarded on. This object MUST
be specified at row creation time."
::= { sdpFCMappingEntry 3 }
-- ------------------------------------
-- CPIPE SDP Bind Table
-- ------------------------------------
sdpBindCpipeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindCpipeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpBindCpipeTable has an entry for each cpipe sdpBind
configured on this system."
::= { tmnxSdpObjs 15 }
sdpBindCpipeEntry OBJECT-TYPE
SYNTAX SdpBindCpipeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry represents a particular sdpBind related to a
particular Cpipe service entry. Entries are created/deleted
by the user."
INDEX { svcId, sdpBindId }
::= { sdpBindCpipeTable 1 }
SdpBindCpipeEntry ::=
SEQUENCE {
sdpBindCpipeLocalPayloadSize Unsigned32,
sdpBindCpipePeerPayloadSize Unsigned32,
sdpBindCpipeLocalBitrate Unsigned32,
sdpBindCpipePeerBitrate Unsigned32,
sdpBindCpipeLocalSigPkts TdmOptionsSigPkts,
sdpBindCpipePeerSigPkts TdmOptionsSigPkts,
sdpBindCpipeLocalCasTrunkFraming TdmOptionsCasTrunkFraming,
sdpBindCpipePeerCasTrunkFraming TdmOptionsCasTrunkFraming,
sdpBindCpipeLocalUseRtpHeader TruthValue,
sdpBindCpipePeerUseRtpHeader TruthValue,
sdpBindCpipeLocalDifferential TruthValue,
sdpBindCpipePeerDifferential TruthValue,
sdpBindCpipeLocalTimestampFreq Unsigned32,
sdpBindCpipePeerTimestampFreq Unsigned32
}
sdpBindCpipeLocalPayloadSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the local payload size (in bytes)."
::= { sdpBindCpipeEntry 1 }
sdpBindCpipePeerPayloadSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the remote payload size (in bytes).
If there is no remote peer, or if the label mapping has
not been received, or if this value has not been received
from the remote peer then this object will be zero (0)."
::= { sdpBindCpipeEntry 2 }
sdpBindCpipeLocalBitrate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "64 Kbits/s"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the local bit-rate in multiples of
64 Kbit/s."
::= { sdpBindCpipeEntry 3 }
sdpBindCpipePeerBitrate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "64 Kbits/s"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the remote bit-rate in multiples of
64 Kbit/s.
If there is no remote peer, or if the label mapping has
not been received, or if this value has not been received
from the remote peer then this object will be zero (0)."
::= { sdpBindCpipeEntry 4 }
sdpBindCpipeLocalSigPkts OBJECT-TYPE
SYNTAX TdmOptionsSigPkts
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the local CE application signalling
packets mode."
::= { sdpBindCpipeEntry 5 }
sdpBindCpipePeerSigPkts OBJECT-TYPE
SYNTAX TdmOptionsSigPkts
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the remote CE application signalling
packets mode.
If there is no remote peer, or if the label mapping has
not been received, or if the remote peer does not support
signalling packets then this object will be zero (0)."
::= { sdpBindCpipeEntry 6 }
sdpBindCpipeLocalCasTrunkFraming OBJECT-TYPE
SYNTAX TdmOptionsCasTrunkFraming
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the local CAS trunk framing mode."
::= { sdpBindCpipeEntry 7 }
sdpBindCpipePeerCasTrunkFraming OBJECT-TYPE
SYNTAX TdmOptionsCasTrunkFraming
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the remote CAS trunk framing mode.
If there is no remote peer, or if the label mapping has
not been received, or if the remote peer does not support
CAS trunk framing then this object will be zero (0)."
::= { sdpBindCpipeEntry 8 }
sdpBindCpipeLocalUseRtpHeader OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates whether a RTP header is used
when packets are transmitted to the remote peer, and
the local peer expects a RTP header when packets are
received from the remote peer."
::= { sdpBindCpipeEntry 9 }
sdpBindCpipePeerUseRtpHeader OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates whether a RTP header is used
when packets are transmitted by the remote peer, and
the remote peer expects a RTP header when packets are
received from the local peer.
If there is no remote peer, or if the label mapping has
not been received, or if the remote peer does not support
RTP headers then this object will be 'false'."
::= { sdpBindCpipeEntry 10 }
sdpBindCpipeLocalDifferential OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates whether differential timestamp
mode is used in the RTP header when packets are
transmitted to the remote peer, and the local peer expects
differential timestamps in the RTP header when packets are
received from the remote peer."
::= { sdpBindCpipeEntry 11 }
sdpBindCpipePeerDifferential OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates whether differential timestamp mode
is used in the RTP header when packets are transmitted by
the remote peer, and the remote peer expects differential
timestamps in the RTP header when packets are received
from the local peer.
If there is no remote peer, or if the label mapping has
not been received, or if the remote peer does not support
differential timestamp mode then this object will be
'false'."
::= { sdpBindCpipeEntry 12 }
sdpBindCpipeLocalTimestampFreq OBJECT-TYPE
SYNTAX Unsigned32
UNITS "8 KHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the timestamp frequency used
in the RTP header when packets are transmitted to the
remote peer, and the local peer expects same timestamp
frequency in the RTP header when packets are received
from the remote peer.
This value is in multiples of 8 KHz."
::= { sdpBindCpipeEntry 13 }
sdpBindCpipePeerTimestampFreq OBJECT-TYPE
SYNTAX Unsigned32
UNITS "8 KHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the timestamp frequency used in
the RTP header when packets are transmitted by the remote
peer, and the remote peer expects the same timestamp
frequency in the RTP header when packets are received
from the local peer.
If there is no remote peer, or if the label mapping has
not been received, or if the remote peer does not support
support RTP headers then this object will be zero (0).
This value is in multiples of 8 KHz."
::= { sdpBindCpipeEntry 14 }
-- --------------------------------------------
-- SDP Bind TLS Egress MFIB Allowed MDA Destinations Table
-- --------------------------------------------
sdpBindTlsMfibAllowedMdaTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindTlsMfibAllowedMdaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpBindTlsMfibAllowedMdaTable has an entry for each
MFIB allowed MDA destination for an SDP Binding configured
in the system."
::= { tmnxSdpObjs 13 }
sdpBindTlsMfibAllowedMdaEntry OBJECT-TYPE
SYNTAX SdpBindTlsMfibAllowedMdaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry represents an MFIB allowed MDA destination
for an SDP Binding configured in the system. Entries can
be created and deleted via SNMP SET operations on the
object sdpBindTlsMfibMdaRowStatus."
INDEX { svcId,
sdpBindId,
tmnxChassisIndex,
tmnxCardSlotNum,
tmnxMDASlotNum }
::= { sdpBindTlsMfibAllowedMdaTable 1 }
SdpBindTlsMfibAllowedMdaEntry ::=
SEQUENCE {
sdpBindTlsMfibMdaRowStatus RowStatus
}
sdpBindTlsMfibMdaRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of sdpBindTlsMfibMdaRowStatus controls the
creation and deletion of rows in this table."
::= { sdpBindTlsMfibAllowedMdaEntry 1 }
-- ------------------------------------------
-- SDP Bind TLS L2PT Statistics Table
-- ------------------------------------------
sdpBindTlsL2ptStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindTlsL2ptStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains TLS spoke SDP Bind
Layer 2 Protocol Tunneling Statistics.
This table complements the sdpBindTlsTable. Rows in this
table are created and deleted automatically by the
system."
::= { tmnxSdpObjs 16 }
sdpBindTlsL2ptStatsEntry OBJECT-TYPE
SYNTAX SdpBindTlsL2ptStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "TLS specific information about an SDP Bind."
INDEX { svcId, sdpBindId }
::= { sdpBindTlsL2ptStatsTable 1 }
SdpBindTlsL2ptStatsEntry ::=
SEQUENCE {
sdpBindTlsL2ptStatsLastClearedTime TimeStamp,
sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusTx Counter32,
sdpBindTlsL2ptStatsStpConfigBpdusRx Counter32,
sdpBindTlsL2ptStatsStpConfigBpdusTx Counter32,
sdpBindTlsL2ptStatsStpRstBpdusRx Counter32,
sdpBindTlsL2ptStatsStpRstBpdusTx Counter32,
sdpBindTlsL2ptStatsStpTcnBpdusRx Counter32,
sdpBindTlsL2ptStatsStpTcnBpdusTx Counter32,
sdpBindTlsL2ptStatsPvstConfigBpdusRx Counter32,
sdpBindTlsL2ptStatsPvstConfigBpdusTx Counter32,
sdpBindTlsL2ptStatsPvstRstBpdusRx Counter32,
sdpBindTlsL2ptStatsPvstRstBpdusTx Counter32,
sdpBindTlsL2ptStatsPvstTcnBpdusRx Counter32,
sdpBindTlsL2ptStatsPvstTcnBpdusTx Counter32,
sdpBindTlsL2ptStatsOtherBpdusRx Counter32,
sdpBindTlsL2ptStatsOtherBpdusTx Counter32,
sdpBindTlsL2ptStatsOtherL2ptBpdusRx Counter32,
sdpBindTlsL2ptStatsOtherL2ptBpdusTx Counter32,
sdpBindTlsL2ptStatsOtherInvalidBpdusRx Counter32,
sdpBindTlsL2ptStatsOtherInvalidBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapCdpBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapCdpBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapVtpBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapVtpBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapDtpBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapDtpBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPagpBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapPagpBpdusTx Counter32,
sdpBindTlsL2ptStatsL2ptEncapUdldBpdusRx Counter32,
sdpBindTlsL2ptStatsL2ptEncapUdldBpdusTx Counter32,
sdpBindTlsL2ptStatsCdpBpdusRx Counter32,
sdpBindTlsL2ptStatsCdpBpdusTx Counter32,
sdpBindTlsL2ptStatsVtpBpdusRx Counter32,
sdpBindTlsL2ptStatsVtpBpdusTx Counter32,
sdpBindTlsL2ptStatsDtpBpdusRx Counter32,
sdpBindTlsL2ptStatsDtpBpdusTx Counter32,
sdpBindTlsL2ptStatsPagpBpdusRx Counter32,
sdpBindTlsL2ptStatsPagpBpdusTx Counter32,
sdpBindTlsL2ptStatsUdldBpdusRx Counter32,
sdpBindTlsL2ptStatsUdldBpdusTx Counter32
}
sdpBindTlsL2ptStatsLastClearedTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsLastClearedTime indicates
the last time that these stats were cleared. The value
zero indicates that they have not been cleared yet."
::= { sdpBindTlsL2ptStatsEntry 1 }
sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusRx indicates the
number of L2PT encapsulated STP config bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 2 }
sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusTx indicates the
number of L2PT encapsulated STP config bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 3 }
sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusRx indicates the
number of L2PT encapsulated STP rst bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 4 }
sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusTx indicates the
number of L2PT encapsulated STP rst bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 5 }
sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusRx indicates the
number of L2PT encapsulated STP tcn bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 6 }
sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusTx indicates the
number of L2PT encapsulated STP tcn bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 7 }
sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusRx indicates the
number of L2PT encapsulated PVST config bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 8 }
sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusTx indicates the
number of L2PT encapsulated PVST config bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 9 }
sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusRx indicates the
number of L2PT encapsulated PVST rst bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 10 }
sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusTx indicates the
number of L2PT encapsulated PVST rst bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 11 }
sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusRx indicates the
number of L2PT encapsulated PVST tcn bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 12 }
sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusTx indicates the
number of L2PT encapsulated PVST tcn bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 13 }
sdpBindTlsL2ptStatsStpConfigBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsStpConfigBpdusRx indicates the
number of STP config bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 14 }
sdpBindTlsL2ptStatsStpConfigBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsStpConfigBpdusTx indicates the
number of STP config bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 15 }
sdpBindTlsL2ptStatsStpRstBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsStpRstBpdusRx indicates the
number of STP rst bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 16 }
sdpBindTlsL2ptStatsStpRstBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsStpRstBpdusTx indicates the
number of STP rst bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 17 }
sdpBindTlsL2ptStatsStpTcnBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsStpTcnBpdusRx indicates the
number of STP tcn bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 18 }
sdpBindTlsL2ptStatsStpTcnBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsStpTcnBpdusTx indicates the
number of STP tcn bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 19 }
sdpBindTlsL2ptStatsPvstConfigBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPvstConfigBpdusRx indicates the
number of PVST config bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 20 }
sdpBindTlsL2ptStatsPvstConfigBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPvstConfigBpdusTx indicates the
number of PVST config bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 21 }
sdpBindTlsL2ptStatsPvstRstBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPvstRstBpdusRx indicates the
number of PVST rst bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 22 }
sdpBindTlsL2ptStatsPvstRstBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPvstRstBpdusTx indicates the
number of PVST rst bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 23 }
sdpBindTlsL2ptStatsPvstTcnBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPvstTcnBpdusRx indicates the
number of PVST tcn bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 24 }
sdpBindTlsL2ptStatsPvstTcnBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPvstTcnBpdusTx indicates the
number of PVST tcn bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 25 }
sdpBindTlsL2ptStatsOtherBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsOtherBpdusRx indicates the
number of other bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 26 }
sdpBindTlsL2ptStatsOtherBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsOtherBpdusTx indicates the
number of other bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 27 }
sdpBindTlsL2ptStatsOtherL2ptBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsOtherL2ptBpdusRx indicates the
number of other L2PT bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 28 }
sdpBindTlsL2ptStatsOtherL2ptBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsOtherL2ptBpdusTx indicates the
number of other L2PT bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 29 }
sdpBindTlsL2ptStatsOtherInvalidBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsOtherInvalidBpdusRx indicates the
number of other invalid bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 30 }
sdpBindTlsL2ptStatsOtherInvalidBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsOtherInvalidBpdusTx indicates the
number of other invalid bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 31 }
sdpBindTlsL2ptStatsL2ptEncapCdpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapCdpBpdusRx indicates the
number of L2PT encapsulated CDP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 32 }
sdpBindTlsL2ptStatsL2ptEncapCdpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapCdpBpdusTx indicates the
number of L2PT encapsulated CDP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 33 }
sdpBindTlsL2ptStatsL2ptEncapVtpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapVtpBpdusRx indicates the
number of L2PT encapsulated VTP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 34 }
sdpBindTlsL2ptStatsL2ptEncapVtpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapVtpBpdusTx indicates the
number of L2PT encapsulated VTP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 35 }
sdpBindTlsL2ptStatsL2ptEncapDtpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapDtpBpdusRx indicates the
number of L2PT encapsulated DTP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 36 }
sdpBindTlsL2ptStatsL2ptEncapDtpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapDtpBpdusTx indicates the
number of L2PT encapsulated DTP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 37 }
sdpBindTlsL2ptStatsL2ptEncapPagpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPagpBpdusRx indicates the
number of L2PT encapsulated PAGP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 38 }
sdpBindTlsL2ptStatsL2ptEncapPagpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapPagpBpdusTx indicates the
number of L2PT encapsulated PAGP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 39 }
sdpBindTlsL2ptStatsL2ptEncapUdldBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapUdldBpdusRx indicates the
number of L2PT encapsulated UDLD bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 40 }
sdpBindTlsL2ptStatsL2ptEncapUdldBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsL2ptEncapUdldBpdusTx indicates the
number of L2PT encapsulated UDLD bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 41 }
sdpBindTlsL2ptStatsCdpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsCdpBpdusRx indicates the
number of CDP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 42 }
sdpBindTlsL2ptStatsCdpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsCdpBpdusTx indicates the
number of CDP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 43 }
sdpBindTlsL2ptStatsVtpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsVtpBpdusRx indicates the
number of VTP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 44 }
sdpBindTlsL2ptStatsVtpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsVtpBpdusTx indicates the
number of VTP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 45 }
sdpBindTlsL2ptStatsDtpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsDtpBpdusRx indicates the
number of DTP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 46 }
sdpBindTlsL2ptStatsDtpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsDtpBpdusTx indicates the
number of DTP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 47 }
sdpBindTlsL2ptStatsPagpBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPagpBpdusRx indicates the
number of PAGP bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 48 }
sdpBindTlsL2ptStatsPagpBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsPagpBpdusTx indicates the
number of PAGP bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 49 }
sdpBindTlsL2ptStatsUdldBpdusRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsUdldBpdusRx indicates the
number of UDLD bpdus received on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 50 }
sdpBindTlsL2ptStatsUdldBpdusTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsL2ptStatsUdldBpdusTx indicates the
number of UDLD bpdus transmitted on this spoke SDP."
::= { sdpBindTlsL2ptStatsEntry 51 }
-- -------------------------
-- PW Template Table
-- -------------------------
pwTemplateTableLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of pwTemplateTableLastChanged indicates the
sysUpTime at the time of the last modification
of pwTemplateTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSdpObjs 17 }
pwTemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF PwTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains entries for pseudowire (PW) templates
specifying SDP auto-binding."
::= { tmnxSdpObjs 18 }
pwTemplateEntry OBJECT-TYPE
SYNTAX PwTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific PW template."
INDEX { pwTemplateId }
::= { pwTemplateTable 1 }
PwTemplateEntry ::=
SEQUENCE {
pwTemplateId PWTemplateId,
pwTemplateRowStatus RowStatus,
pwTemplateLastChanged TimeStamp,
pwTemplateUseProvisionedSdp TruthValue,
pwTemplateVcType SdpBindVcType,
pwTemplateAccountingPolicyId Unsigned32,
pwTemplateCollectAcctStats TruthValue,
pwTemplateMacLearning TmnxEnabledDisabled,
pwTemplateMacAgeing TmnxEnabledDisabled,
pwTemplateDiscardUnknownSource TmnxEnabledDisabled,
pwTemplateLimitMacMove TlsLimitMacMove,
pwTemplateMacPinning TmnxEnabledDisabled,
pwTemplateVlanVcTag Unsigned32,
pwTemplateMacAddressLimit Unsigned32,
pwTemplateShgName TNamedItemOrEmpty,
pwTemplateShgDescription TItemDescription,
pwTemplateShgRestProtSrcMac TruthValue,
pwTemplateShgRestUnprotDstMac TruthValue,
pwTemplateEgressMacFilterId TFilterID,
pwTemplateEgressIpFilterId TFilterID,
pwTemplateEgressIpv6FilterId TFilterID,
pwTemplateIngressMacFilterId TFilterID,
pwTemplateIngressIpFilterId TFilterID,
pwTemplateIngressIpv6FilterId TFilterID,
pwTemplateIgmpFastLeave TmnxEnabledDisabled,
pwTemplateIgmpImportPlcy TNamedItemOrEmpty,
pwTemplateIgmpLastMembIntvl Unsigned32,
pwTemplateIgmpMaxNbrGrps Unsigned32,
pwTemplateIgmpGenQueryIntvl Unsigned32,
pwTemplateIgmpQueryRespIntvl Unsigned32,
pwTemplateIgmpRobustCount Unsigned32,
pwTemplateIgmpSendQueries TmnxEnabledDisabled,
pwTemplateIgmpMcacPolicyName TPolicyStatementNameOrEmpty,
pwTemplateIgmpMcacUnconstBW Integer32,
pwTemplateIgmpMcacPrRsvMndBW Integer32,
pwTemplateIgmpVersion TmnxIgmpVersion
}
pwTemplateId OBJECT-TYPE
SYNTAX PWTemplateId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The PW template identifier."
::= { pwTemplateEntry 1 }
pwTemplateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateRowStatus is used for the
creation and deletion of PW templates."
::= { pwTemplateEntry 2 }
pwTemplateLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of pwTemplateLastChanged indicates the
sysUpTime at the time of the last modification of this
entry.
If no changes were made to the entry since the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { pwTemplateEntry 3 }
pwTemplateUseProvisionedSdp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateUseProvisionedSdp specifies
whether the to use an already provisioned SDP.
A value of 'true' specifies that the tunnel manager
will be consulted for an existing active SDP.
Otherwise, a value of 'false' specifies that
the default SDP template will be used to use for
instantiation of the SDP."
DEFVAL { false }
::= { pwTemplateEntry 4 }
pwTemplateVcType OBJECT-TYPE
SYNTAX SdpBindVcType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateVcType specifies the type of
virtual circuit (VC) associated with the SDP Bind."
DEFVAL { ether }
::= { pwTemplateEntry 5 }
pwTemplateAccountingPolicyId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateAccountingPolicyId specifies the
policy to use to collect accounting statistics on
the SDP Bind. The value zero indicates that the
agent should use the default accounting policy,
if one exists."
DEFVAL { 0 }
::= { pwTemplateEntry 6 }
pwTemplateCollectAcctStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateCollectAcctStats specifies
whether the agent collects accounting statistics for
the SDP Bind. When the value is 'true' the agent
collects accounting statistics on the SDP Bind."
DEFVAL { false }
::= { pwTemplateEntry 7 }
pwTemplateMacLearning OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateMacLearning specifies whether
the MAC learning process is enabled for the SDP Bind.
The value is ignored if MAC learning is disabled at
service level."
DEFVAL { enabled }
::= { pwTemplateEntry 8 }
pwTemplateMacAgeing OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateMacAgeing specifies whether
the MAC aging process is enabled for the SDP Bind.
The value is ignored if MAC aging is disabled
at the service level."
DEFVAL { enabled }
::= { pwTemplateEntry 9 }
pwTemplateDiscardUnknownSource OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "With the object pwTemplateMacAddressLimit a limit can
be configured for the max number of MAC addresses that
will be learned on the SDP Bind (only for spoke SDPs).
When the limit is reached, packets with unknown source
MAC address are forwarded by default. By setting
sdpBindTlsDiscardUnknownSource to 'enabled', packets with
unknown source MAC will be dropped instead."
DEFVAL { disabled }
::= { pwTemplateEntry 10 }
pwTemplateLimitMacMove OBJECT-TYPE
SYNTAX TlsLimitMacMove
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateLimitMacMove specifies the
behavior for when the re-learn rate specified by
svcTlsMacMoveMaxRate is exceeded.
When pwTemplateLimitMacMove value is set to 'blockable'
the agent will monitor the MAC relearn rate on the
SDP Bind, and it will block it when the re-learn rate
specified by svcTlsMacMoveMaxRate is exceeded. When the
value is 'nonBlockable' the SDP Bind will not be
blocked, and another blockable SDP Bind will be
blocked instead."
DEFVAL { blockable }
::= { pwTemplateEntry 11 }
pwTemplateMacPinning OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateMacPinning specifies
whether or not MAC address pinning is active on the
SDP Bind (mesh or spoke). Setting the value to 'enabled'
disables re-learning of MAC addresses on other SAPs or
SDPs within the same VPLS; the MAC address will hence
remain attached to the SDP Bind for the duration of
its age-timer. This object has effect only for MAC
addresses learned via the normal MAC learning
process, and not for entries learned via DHCP. The
value will be set by default to 'disabled'. However for
a spoke SDP that belongs to a residential SHG, the
value is set to enabled by the system, and cannot be
altered by the operator."
DEFVAL { disabled }
::= { pwTemplateEntry 12 }
pwTemplateVlanVcTag OBJECT-TYPE
SYNTAX Unsigned32 ('0000'H..'0fff'H)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateVlanVcTag specifies the VLAN VC tag
for the SDP Bind."
DEFVAL { '0fff'H }
::= { pwTemplateEntry 13 }
pwTemplateMacAddressLimit OBJECT-TYPE
SYNTAX Unsigned32 (0..196607)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateMacAddressLimit specifies
the maximum number of learned and static entries
allowed in the FDB for the SDP Bind. The value 0
specifies no limit for the SDP Bind. The command is
valid only for spoke SDPs. When the value of
ALCATEL-IND1-TIMETRA-CHASSIS-MIB::tmnxChassisOperMode is not 'c', the
maximum value of pwTemplateMacAddressLimit is '131071'."
DEFVAL { 0 }
::= { pwTemplateEntry 14 }
pwTemplateShgName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateShgName specifies the name of the
split-horizon group where the spoke SDP Bind belongs to.
By default a spoke SDP Bind does not belong to any
split-horizon group. The name specified must
correspond to an existing split-horizon group in the TLS
service where the spoke SDP Bind is defined."
DEFVAL { "" }
::= { pwTemplateEntry 15 }
pwTemplateShgDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateShgDescription specifies a
user-provided description for split-horizon group on
the SDP Bind."
DEFVAL { "" }
::= { pwTemplateEntry 16 }
pwTemplateShgRestProtSrcMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateShgRestProtSrcMac specifies
how the agent will handle relearn requests for protected
MAC addresses. When the value of this object is 'true'
requests to relearn a protected MAC address will be
ignored."
DEFVAL { false }
::= { pwTemplateEntry 17 }
pwTemplateShgRestUnprotDstMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateShgRestUnprotDstMac specifies
how the system will forward packets destined to an
unprotected MAC address. When the value of this object is
'true' packets destined to an unprotected MAC address
will be dropped."
DEFVAL { false }
::= { pwTemplateEntry 18 }
pwTemplateEgressMacFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateEgressMacFilterId specifies
the tMacFilterId which indexes an egress filter entry
in ALCATEL-IND1-TIMETRA-FILTER-MIB::tMacFilterTable, or zero if no
filter is specified."
DEFVAL { 0 }
::= { pwTemplateEntry 19 }
pwTemplateEgressIpFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateEgressIpFilterId specifies
the tIPFilterId which indexes an egress filter entry
in ALCATEL-IND1-TIMETRA-FILTER-MIB::tIPFilterTable, or zero if no
filter is specified."
DEFVAL { 0 }
::= { pwTemplateEntry 20 }
pwTemplateEgressIpv6FilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateEgressIpv6FilterId specifies
the tIPv6FilterId which indexes an egress filter entry
in ALCATEL-IND1-TIMETRA-FILTER-MIB::tIPv6FilterTable, or zero if no
filter is specified."
DEFVAL { 0 }
::= { pwTemplateEntry 21 }
pwTemplateIngressMacFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIngressMacFilterId specifies
the tMacFilterId which indexes an ingress filter entry
in ALCATEL-IND1-TIMETRA-FILTER-MIB::tMacFilterTable, or zero if no
filter is specified."
DEFVAL { 0 }
::= { pwTemplateEntry 22 }
pwTemplateIngressIpFilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIngressIpFilterId specifies
the tIPFilterId which indexes an ingress filter entry
in ALCATEL-IND1-TIMETRA-FILTER-MIB::tIPFilterTable, or zero if no
filter is specified."
DEFVAL { 0 }
::= { pwTemplateEntry 23 }
pwTemplateIngressIpv6FilterId OBJECT-TYPE
SYNTAX TFilterID
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIngressIpv6FilterId specifies
the tIPv6FilterId which indexes an ingress filter entry
in ALCATEL-IND1-TIMETRA-FILTER-MIB::tIPv6FilterTable, or zero if no
filter is specified."
DEFVAL { 0 }
::= { pwTemplateEntry 24 }
pwTemplateIgmpFastLeave OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpFastLeave specifies
whether or not fastleave is allowed on the SDP Bind.
If set to 'enabled', the system prunes the port on which an IGMP
'leave' message has been received without waiting for the Group
Specific Query to timeout."
DEFVAL { disabled }
::= { pwTemplateEntry 25 }
pwTemplateIgmpImportPlcy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpImportPlcy specifies
a policy statement that must be applied to all
incoming IGMP messages on the SDP Bind."
DEFVAL { "" }
::= { pwTemplateEntry 26 }
pwTemplateIgmpLastMembIntvl OBJECT-TYPE
SYNTAX Unsigned32 (1..50)
UNITS "deci-seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpLastMembIntvl specifies
the Max Response Time (in tenths of a second) used in
Group-Specific and Group-Source-Specific Queries sent
in response to 'leave' messages. This is also the
amount of time between Group-Specific Query messages.
This value may be tuned to modify the leave latency of
the network. A reduced value results in reduced time to
detect the loss of the last member of a group."
DEFVAL { 10 }
::= { pwTemplateEntry 27 }
pwTemplateIgmpMaxNbrGrps OBJECT-TYPE
SYNTAX Unsigned32 (0..1000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpMaxNbrGrps specifies how many
group addresses are allowed for the SDP Bind. The value 0
means that no limit is imposed."
DEFVAL { 0 }
::= { pwTemplateEntry 28 }
pwTemplateIgmpGenQueryIntvl OBJECT-TYPE
SYNTAX Unsigned32 (2..1024)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpGenQueryIntvl specifies
the interval (in seconds) between two consecutive general
queries sent by the system on the SDP.
The value of this object is only meaningful when the value of
pwTemplateIgmpSendQueries is 'enabled'."
DEFVAL { 125 }
::= { pwTemplateEntry 29 }
pwTemplateIgmpQueryRespIntvl OBJECT-TYPE
SYNTAX Unsigned32 (1..1023)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpQueryRespIntvl specifies the
maximum response time (in seconds) advertised in
IGMPv2/v3 queries.
The value of this object is only meaningful when the value of
pwTemplateIgmpSendQueries is 'enabled'."
DEFVAL { 10 }
::= { pwTemplateEntry 30 }
pwTemplateIgmpRobustCount OBJECT-TYPE
SYNTAX Unsigned32 (2..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpRobustCount specifies the
value of the Robust count.
This object allows tuning for the expected packet loss on
the SDP. If an SDP is expected to be lossy, the Robustness
Variable may be increased. IGMP snooping is robust to
(Robustness Variable-1) packet losses.
The value of this object is only meaningful when the
value of pwTemplateIgmpSendQueries is 'enabled'."
DEFVAL { 2 }
::= { pwTemplateEntry 31 }
pwTemplateIgmpSendQueries OBJECT-TYPE
SYNTAX TmnxEnabledDisabled
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpSendQueries specifies whether
the system generates General Queries by itself on the SDP."
DEFVAL { disabled }
::= { pwTemplateEntry 32 }
pwTemplateIgmpMcacPolicyName OBJECT-TYPE
SYNTAX TPolicyStatementNameOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of pwTemplateIgmpMcacPolicyName indicates the name
of the multicast CAC policy."
DEFVAL { "" }
::= { pwTemplateEntry 33 }
pwTemplateIgmpMcacUnconstBW OBJECT-TYPE
SYNTAX Integer32 (-1|0..2147483647)
UNITS "kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of pwTemplateIgmpMcacUnconstBW specifies the bandwidth
assigned for interface's multicast CAC policy traffic in kilo-bits per
second(kbps).
If the default value of '-1' is set, there is no constraint on
bandwidth allocated at the interface.
If the value of pwTemplateIgmpMcacUnconstBW is set to '0' and if
a multicast CAC policy is assigned on the interface, then
no group (channel) from that policy is allowed on that interface."
DEFVAL { -1 }
::= { pwTemplateEntry 34 }
pwTemplateIgmpMcacPrRsvMndBW OBJECT-TYPE
SYNTAX Integer32 (-1|0..2147483647)
UNITS "kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of pwTemplateIgmpMcacPrRsvMndBW specifies the bandwidth
pre-reserved for all the mandatory channels on a given interface
in kilo-bits per second(kbps).
If the value of pwTemplateIgmpMcacUnconstBW is '0', no mandatory
channels are allowed. If the value of pwTemplateIgmpMcacUnconstBW
is '-1', then all mandatory and optional channels are allowed.
If the value of pwTemplateIgmpMcacPrRsvMndBW is equal to the
value of pwTemplateIgmpMcacUnconstBW, then all the unconstrained
bandwidth on a given interface is allocated to mandatory channels
configured through multicast CAC policy on that interface and no
optional groups (channels) are allowed.
The value of pwTemplateIgmpMcacPrRsvMndBW should always be less
than or equal to that of pwTemplateIgmpMcacUnconstBW. An attempt
to set the value of pwTemplateIgmpMcacPrRsvMndBW greater than
that of pwTemplateIgmpMcacUnconstBW will result in
'inconsistentValue' error."
DEFVAL { -1 }
::= { pwTemplateEntry 35 }
pwTemplateIgmpVersion OBJECT-TYPE
SYNTAX TmnxIgmpVersion
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of pwTemplateIgmpVersion specifies the version
of IGMP for the PW template."
DEFVAL { version3 }
::= { pwTemplateEntry 36 }
-- ----------------------------------------------
-- PW Template IGMP Snooping Group Source Table
-- ----------------------------------------------
pwTemplateIgmpSnpgGrpSrcTblLC OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of pwTemplateIgmpSnpgGrpSrcTblLC indicates
the sysUpTime at the time of the last modification
of pwTemplateIgmpSnpgGrpSrcTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSdpObjs 19 }
pwTemplateIgmpSnpgGrpSrcTable OBJECT-TYPE
SYNTAX SEQUENCE OF PwTemplateIgmpSnpgGrpSrcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains entries for static IGMP Snooping
groups."
::= { tmnxSdpObjs 20 }
pwTemplateIgmpSnpgGrpSrcEntry OBJECT-TYPE
SYNTAX PwTemplateIgmpSnpgGrpSrcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific static IGMP Snooping groups."
INDEX { pwTemplateId,
pwTemplateIgmpSnpgGrpAddrType,
pwTemplateIgmpSnpgGrpAddr,
pwTemplateIgmpSnpgSrcAddrType,
pwTemplateIgmpSnpgSrcAddr }
::= { pwTemplateIgmpSnpgGrpSrcTable 1}
PwTemplateIgmpSnpgGrpSrcEntry ::= SEQUENCE {
pwTemplateIgmpSnpgGrpAddrType InetAddressType,
pwTemplateIgmpSnpgGrpAddr InetAddress,
pwTemplateIgmpSnpgSrcAddrType InetAddressType,
pwTemplateIgmpSnpgSrcAddr InetAddress,
pwTemplateIgmpSnpgRowStatus RowStatus,
pwTemplateIgmpSnpgLastChngd TimeStamp
}
pwTemplateIgmpSnpgGrpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP multicast group address type for this entry."
::= { pwTemplateIgmpSnpgGrpSrcEntry 1 }
pwTemplateIgmpSnpgGrpAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE(0|4))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP multicast group address for this entry."
::= { pwTemplateIgmpSnpgGrpSrcEntry 2 }
pwTemplateIgmpSnpgSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The source address type for this entry."
::= { pwTemplateIgmpSnpgGrpSrcEntry 3 }
pwTemplateIgmpSnpgSrcAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE(0|4))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The source address for this entry."
::= { pwTemplateIgmpSnpgGrpSrcEntry 4 }
pwTemplateIgmpSnpgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateIgmpSnpgRowStatus is used for
the creation and deletion of static IGMP snooping entries."
::= { pwTemplateIgmpSnpgGrpSrcEntry 5 }
pwTemplateIgmpSnpgLastChngd OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of pwTemplateIgmpSnpgLastChngd indicates the
sysUpTime at the time of the last modification of this
entry.
If no changes were made to the entry since the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { pwTemplateIgmpSnpgGrpSrcEntry 6 }
-- --------------------------------------------
-- SDP Bind TLS Egress MFIB Allowed MDA Destinations Table
-- --------------------------------------------
pwTemplateMfibAllowedMdaTblLC OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of pwTemplateMfibAllowedMdaTblLC indicates
the sysUpTime at the time of the last modification
of pwTemplateMfibAllowedMdaTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSdpObjs 21 }
pwTemplateMfibAllowedMdaTable OBJECT-TYPE
SYNTAX SEQUENCE OF PwTemplateMfibAllowedMdaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The pwTemplateMfibAllowedMdaTable has an entry for each
MFIB allowed MDA destination for an PW template."
::= { tmnxSdpObjs 22 }
pwTemplateMfibAllowedMdaEntry OBJECT-TYPE
SYNTAX PwTemplateMfibAllowedMdaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry represents an MFIB allowed MDA destination
for an PW template configured in the system. Entries
can be created and deleted via SNMP SET operations on the
object pwTemplateMfibMdaRowStatus."
INDEX { pwTemplateId,
tmnxChassisIndex,
tmnxCardSlotNum,
tmnxMDASlotNum }
::= { pwTemplateMfibAllowedMdaTable 1 }
PwTemplateMfibAllowedMdaEntry ::=
SEQUENCE {
pwTemplateMfibMdaRowStatus RowStatus
}
pwTemplateMfibMdaRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of pwTemplateMfibMdaRowStatus controls the
creation and deletion of rows in this table."
::= { pwTemplateMfibAllowedMdaEntry 1 }
-- ----------------------------------------
-- SDP BIND TLS MRP Information Table
-- ----------------------------------------
sdpBindTlsMrpTableLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpTableLastChanged indicates the
sysUpTime at the time of the last modification
of sdpBindTlsMrpTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSdpObjs 23 }
sdpBindTlsMrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindTlsMrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpBindTlsMrpTable allows the operator to modify
attributes of the Multiple Registration Protocol (MRP)
feature for the TLS SDP Bind.
This table contains an entry for each TLS SDP Bind created
by the user using either sdpBindTlsTable or
sdpBindMeshTlsTable.
Rows in this table are created and deleted automatically
by the system."
::= { tmnxSdpObjs 24 }
sdpBindTlsMrpEntry OBJECT-TYPE
SYNTAX SdpBindTlsMrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry contains objects that allows the
modification of the Multiple Registration Protocol feature
for a specific SDP-Binding in a TLS service."
INDEX { svcId, sdpBindId }
::= { sdpBindTlsMrpTable 1 }
SdpBindTlsMrpEntry ::=
SEQUENCE {
sdpBindTlsMrpLastChngd TimeStamp,
sdpBindTlsMrpJoinTime Unsigned32,
sdpBindTlsMrpLeaveTime Unsigned32,
sdpBindTlsMrpLeaveAllTime Unsigned32,
sdpBindTlsMrpPeriodicTime Unsigned32,
sdpBindTlsMrpPeriodicEnabled TruthValue,
sdpBindTlsMrpRxPdus Counter32,
sdpBindTlsMrpDroppedPdus Counter32,
sdpBindTlsMrpTxPdus Counter32,
sdpBindTlsMrpRxNewEvent Counter32,
sdpBindTlsMrpRxJoinInEvent Counter32,
sdpBindTlsMrpRxInEvent Counter32,
sdpBindTlsMrpRxJoinEmptyEvent Counter32,
sdpBindTlsMrpRxEmptyEvent Counter32,
sdpBindTlsMrpRxLeaveEvent Counter32,
sdpBindTlsMrpTxNewEvent Counter32,
sdpBindTlsMrpTxJoinInEvent Counter32,
sdpBindTlsMrpTxInEvent Counter32,
sdpBindTlsMrpTxJoinEmptyEvent Counter32,
sdpBindTlsMrpTxEmptyEvent Counter32,
sdpBindTlsMrpTxLeaveEvent Counter32
}
sdpBindTlsMrpLastChngd OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpLastChngd indicates the
sysUpTime at the time of the last modification of this
entry.
If no changes were made to the entry since the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { sdpBindTlsMrpEntry 1 }
sdpBindTlsMrpJoinTime OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
UNITS "deci-seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpJoinTime specifies a timer
value in 10ths of seconds which determines the maximum rate
at which attribute join messages can be sent on the SDP."
DEFVAL { 2 }
::= { sdpBindTlsMrpEntry 2 }
sdpBindTlsMrpLeaveTime OBJECT-TYPE
SYNTAX Unsigned32 (30..60)
UNITS "deci-seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpLeaveTime specifies a timer
value in 10ths of seconds which determines the amount of
time a registered attribute is held in leave state before
the registration is removed."
DEFVAL { 30 }
::= { sdpBindTlsMrpEntry 3 }
sdpBindTlsMrpLeaveAllTime OBJECT-TYPE
SYNTAX Unsigned32 (60..300)
UNITS "deci-seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpLeaveAllTime specifies a timer
value in 10ths of seconds which determines the frequency
where all attribute declarations on the SDP are all
refreshed."
DEFVAL { 100 }
::= { sdpBindTlsMrpEntry 4 }
sdpBindTlsMrpPeriodicTime OBJECT-TYPE
SYNTAX Unsigned32 (10..100)
UNITS "deci-seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpPeriodicTime specifies a timer
value in 10ths of seconds which determines the frequency of
re-transmission of attribute declarations."
DEFVAL { 10 }
::= { sdpBindTlsMrpEntry 5 }
sdpBindTlsMrpPeriodicEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of sdpBindTlsMrpPeriodicEnabled specifies whether
re-transmission of attribute declarations is enabled."
DEFVAL { false }
::= { sdpBindTlsMrpEntry 6 }
sdpBindTlsMrpRxPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxPdus indicates the number of MRP packets
received on this SDP Bind."
::= { sdpBindTlsMrpEntry 7 }
sdpBindTlsMrpDroppedPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpDroppedPdus indicates the number of dropped
MRP packets on this SDP Bind."
::= { sdpBindTlsMrpEntry 8 }
sdpBindTlsMrpTxPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxPdus indicates the number of MRP packets
transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 9 }
sdpBindTlsMrpRxNewEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxNewEvent indicates the number of 'New' MRP
events received on this SDP Bind."
::= { sdpBindTlsMrpEntry 10 }
sdpBindTlsMrpRxJoinInEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxJoinInEvent indicates the number of
'Join-In' MRP events received on this SDP Bind."
::= { sdpBindTlsMrpEntry 11 }
sdpBindTlsMrpRxInEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxInEvent indicates the number of 'In' MRP
events received on this SDP Bind."
::= { sdpBindTlsMrpEntry 12 }
sdpBindTlsMrpRxJoinEmptyEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxJoinEmptyEvent indicates the number of
'Join Empty' MRP events received on this SDP Bind."
::= { sdpBindTlsMrpEntry 13 }
sdpBindTlsMrpRxEmptyEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxEmptyEvent indicates the number of 'Empty'
MRP events received on this SDP Bind."
::= { sdpBindTlsMrpEntry 14 }
sdpBindTlsMrpRxLeaveEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpRxLeaveEvent indicates the number of 'Leave'
MRP events received on this SDP Bind."
::= { sdpBindTlsMrpEntry 15 }
sdpBindTlsMrpTxNewEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxNewEvent indicates the number of 'New' MRP
events transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 16 }
sdpBindTlsMrpTxJoinInEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxJoinInEvent indicates the number of
'Join-In' MRP events transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 17 }
sdpBindTlsMrpTxInEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxInEvent indicates the number of 'In' MRP
events transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 18 }
sdpBindTlsMrpTxJoinEmptyEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxJoinEmptyEvent indicates the number of
'Join Empty' MRP events transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 19 }
sdpBindTlsMrpTxEmptyEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxEmptyEvent indicates the number of 'Empty'
MRP events transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 20 }
sdpBindTlsMrpTxLeaveEvent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMrpTxLeaveEvent indicates the number of 'Leave'
MRP events transmitted on this SDP Bind."
::= { sdpBindTlsMrpEntry 21 }
-- -------------------------
-- SDP Bind TLS MMRP Table
-- -------------------------
sdpBindTlsMmrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpBindTlsMmrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains an entry for each MAC address managed
by Multiple MAC Registration Protocol (MMRP) on the SDP
Bind for the TLS. Entries are dynamically created and
destroyed by the system as the MAC Addresses are registered
or declared in MMRP."
::= { tmnxSdpObjs 25 }
sdpBindTlsMmrpEntry OBJECT-TYPE
SYNTAX SdpBindTlsMmrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "MMRP specific information about a MAC address managed by
MMRP on a SDP Bind in a TLS."
INDEX { svcId, sdpBindId, sdpBindTlsMmrpMacAddr }
::= { sdpBindTlsMmrpTable 1 }
SdpBindTlsMmrpEntry ::=
SEQUENCE {
sdpBindTlsMmrpMacAddr MacAddress,
sdpBindTlsMmrpDeclared TruthValue,
sdpBindTlsMmrpRegistered TruthValue
}
sdpBindTlsMmrpMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of sdpBindTlsMmrpMacAddr indicates an ethernet MAC address which
is being managed by MMRP on this SAP."
::= { sdpBindTlsMmrpEntry 1 }
sdpBindTlsMmrpDeclared OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMmrpDeclared indicates whether the MRP applicant
on this SAP is declaring this MAC address on behalf of MMRP."
::= { sdpBindTlsMmrpEntry 2 }
sdpBindTlsMmrpRegistered OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sdpBindTlsMmrpRegistered indicates whether the MRP
registrant on this SAP has notified MMRP of a registration of this MAC
address."
::= { sdpBindTlsMmrpEntry 3 }
-- ---------------------------------------------------------------------
-- SDP Auto Bind Bgp Auto-Discovery Info
--
-- Sparse Dependent Extention of the sdpBindTable.
--
-- The same indexes are used for both the base table, sdpBindTable,
-- and the sparse dependent table, sdpAutoBindBgpInfoTable.
--
-- This in effect extends the sdpBindTable with additional columns.
-- Rows are created in the sdpAutoBindBgpInfoTable only for those entries
-- in the sdpBindTable that are created as a result of BGP Auto-discovery.
--
-- Deletion of a row in the sdpBindTable results in the
-- same fate for the row in the sdpAutoBindBgpInfoTable.
-- ---------------------------------------------------------------------
sdpAutoBindBgpInfoTableLC OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAutoBindBgpInfoTableLC indicates
the sysUpTime at the time of the last modification
of sdpAutoBindBgpInfoTable.
If no changes were made to the entry since the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { tmnxSdpObjs 26 }
sdpAutoBindBgpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpAutoBindBgpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sdpAutoBindBgpInfoTable has an entry for each
SDP Bind entry from sdpBindTable which was
created as a result of BGP Auto-discovery."
::= { tmnxSdpObjs 27 }
sdpAutoBindBgpInfoEntry OBJECT-TYPE
SYNTAX SdpAutoBindBgpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each row entry contains BGP-related information for an
SDP Bind entry created as a result of BGP Auto-discovery."
INDEX { svcId, sdpBindId }
::= { sdpAutoBindBgpInfoTable 1 }
SdpAutoBindBgpInfoEntry ::=
SEQUENCE {
sdpAutoBindBgpInfoTemplateId PWTemplateId,
sdpAutoBindBgpInfoAGI TmnxVPNRouteDistinguisher,
sdpAutoBindBgpInfoSAII Unsigned32,
sdpAutoBindBgpInfoTAII Unsigned32
}
sdpAutoBindBgpInfoTemplateId OBJECT-TYPE
SYNTAX PWTemplateId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAutoBindBgpInfoTemplateId indicates the
the value of the pwTemplateId object for the
PW template entry used to create this
SDP Bind."
::= { sdpAutoBindBgpInfoEntry 1 }
sdpAutoBindBgpInfoAGI OBJECT-TYPE
SYNTAX TmnxVPNRouteDistinguisher
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAutoBindBgpInfoAGI indicates the
Attachment Group Indentifier (AGI) portion of the
Generalized Id FEC element from the pseudowire
setup for this SDP Bind."
::= { sdpAutoBindBgpInfoEntry 2 }
sdpAutoBindBgpInfoSAII OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAutoBindBgpInfoSAII indicates the
Source Attachment Individual Indentifier (SAII) portion
of the Generalized Id FEC element from the pseudowire
setup for this SDP Bind."
::= { sdpAutoBindBgpInfoEntry 3 }
sdpAutoBindBgpInfoTAII OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sdpAutoBindBgpInfoTAII indicates the
Target Attachment Individual Indentifier (TAII) portion
of the Generalized Id FEC element from the pseudowire
setup for this SDP Bind."
::= { sdpAutoBindBgpInfoEntry 4 }
-- -------------------------------------
-- BGP Auto-Discovery SDP Auto Policy Table
-- -------------------------------------
svcTlsBgpADPWTempBindTblLC OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindTblLC indicates the
sysUpTime at the time of the last modification
of svcTlsBgpADPWTempBindTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSvcObjs 32 }
svcTlsBgpADPWTempBindTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvcTlsBgpADAutoBindPlcyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "svcTlsBgpADPWTempBindTable contains entries for the
associations between SDP Auto-Bind policies and a
BGP Auto-Discovery context for a VPLS service."
::= { tmnxSvcObjs 33 }
svcTlsBgpADPWTempBindEntry OBJECT-TYPE
SYNTAX SvcTlsBgpADAutoBindPlcyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A SDP Auto-Bind Policy entry in the
svcTlsBgpADPWTempBindTable."
INDEX { svcId, pwTemplateId }
::= { svcTlsBgpADPWTempBindTable 1 }
SvcTlsBgpADAutoBindPlcyEntry ::= SEQUENCE {
svcTlsBgpADPWTempBindRowStatus RowStatus,
svcTlsBgpADPWTempBindLastChngd TimeStamp,
svcTlsBgpADPWTempBindSHG TNamedItemOrEmpty
}
svcTlsBgpADPWTempBindRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindRowStatus is used
for the creation and deletion of associations between
SDP Auto-Bind policies and a BGP Auto-Discovery context
for a VPLS service."
::= { svcTlsBgpADPWTempBindEntry 1 }
svcTlsBgpADPWTempBindLastChngd OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindLastChngd indicates
the sysUpTime at the time of the last modification of
this entry.
If no changes were made to the entry since the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { svcTlsBgpADPWTempBindEntry 2 }
svcTlsBgpADPWTempBindSHG OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindSHG specifies the
split-horizon group to associate with the SDP Auto-Bind
policy in this BGP Auto-Discovery context in a VPLS
service.
When this Auto-Bind policy is used to create an SDP,
this split-horizon group will be associated with the
SDP.
The name specified must correspond to an
existing split-horizon group in the VPLS service,
otherwise an 'inconsistentValue' error will be
returned."
DEFVAL { "" }
::= { svcTlsBgpADPWTempBindEntry 3 }
-- -----------------------------------------
-- BGP Auto-Discovery SDP Auto Policy Route Target Table
-- -----------------------------------------
svcTlsBgpADPWTempBindRTTblLC OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindRTTblLC indicates the
sysUpTime at the time of the last modification
of svcTlsBgpADPWTempBindRTTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSvcObjs 34 }
svcTlsBgpADPWTempBindRTTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvcTlsBgpADAutoBindPlcyRTEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "svcTlsBgpADPWTempBindTable contains entries for Route
Targets associated with a SDP Auto-Bind policy and a
BGP Auto-Discovery context for a VPLS service."
::= { tmnxSvcObjs 35 }
svcTlsBgpADPWTempBindRTEntry OBJECT-TYPE
SYNTAX SvcTlsBgpADAutoBindPlcyRTEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A SDP Auto-Bind Policy Route Target entry in the
svcTlsBgpADPWTempBindRTTable."
INDEX { svcId, pwTemplateId, IMPLIED svcTlsBgpADPWTempBindRT }
::= { svcTlsBgpADPWTempBindRTTable 1 }
SvcTlsBgpADAutoBindPlcyRTEntry ::= SEQUENCE {
svcTlsBgpADPWTempBindRT TNamedItem,
svcTlsBgpADPWTempBindRTRowStat RowStatus
}
svcTlsBgpADPWTempBindRT OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindRT is the Route
Target associated with a PW template and a
BGP Auto-Discovery context for a VPLS service.
When advertisements are received with this Route Target,
the PW template specified by the index, pwTemplateId,
will be used to create the SDP."
::= { svcTlsBgpADPWTempBindRTEntry 1 }
svcTlsBgpADPWTempBindRTRowStat OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value of svcTlsBgpADPWTempBindRTRowStat is used
for the association of Route Targets with a SDP Auto-Bind
policy and a BGP Auto-Discovery context for a VPLS
service."
::= { svcTlsBgpADPWTempBindRTEntry 2 }
-- -------------------------
-- L2 Route Table
-- -------------------------
svcL2RteTableLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of svcL2RteTableLastChanged indicates the
sysUpTime at the time of the last modification of
svcL2RteTable.
If no changes were made to the entry since the last
re-initialization of the local network management subsystem,
then this object contains a zero value."
::= { tmnxSvcObjs 38 }
svcL2RteTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvcL2RteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "svcL2RteTable contains entries for L2 routes."
::= { tmnxSvcObjs 39 }
svcL2RteEntry OBJECT-TYPE
SYNTAX SvcL2RteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An L2 route entry in the svcL2RteTable."
INDEX { svcId,
svcL2RteVsiPrefix,
svcL2RteRouteDistinguisher,
svcL2RteNextHopType,
svcL2RteNextHop }
::= { svcL2RteTable 1}
SvcL2RteEntry ::= SEQUENCE {
svcL2RteVsiPrefix Unsigned32,
svcL2RteRouteDistinguisher TmnxVPNRouteDistinguisher,
svcL2RteNextHopType InetAddressType,
svcL2RteNextHop InetAddress,
svcL2RteSdpBindId SdpBindId,
svcL2RtePwTemplateId PWTemplateId
}
svcL2RteVsiPrefix OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The value of svcL2RteVsiPrefix is the low-order 4 bytes
of the Virtual Switch Instance idendifier (VSI-id) of the
remote VSI for this L2 route."
::= { svcL2RteEntry 1 }
svcL2RteRouteDistinguisher OBJECT-TYPE
SYNTAX TmnxVPNRouteDistinguisher
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The value of svcL2RteRouteDistinguisher is the high-order
6 bytes of the Virtual Switch Instance idendifier (VSI-id)
of the remote VSI for this L2 route."
::= { svcL2RteEntry 2 }
svcL2RteNextHopType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The value of svcL2RteNextHopType indicates the address
type of svcL2RteNextHop."
::= { svcL2RteEntry 3 }
svcL2RteNextHop OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The value of svcL2RteNextHop indicates the IP next hop
for this L2 route. This value is equivilant to the
IP address of the Far End of this L2 route."
::= { svcL2RteEntry 4 }
svcL2RteSdpBindId OBJECT-TYPE
SYNTAX SdpBindId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of svcL2RteSdpBindId indicates the SDP bind
ID of the SDP bind that binds this VPLS context to
the VSI indicated by svcL2RteRouteDistinguisher,
svcL2RteVsiPrefix, and svcL2RteNextHop."
::= { svcL2RteEntry 5 }
svcL2RtePwTemplateId OBJECT-TYPE
SYNTAX PWTemplateId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of svcL2RtePwTemplateId indicates the PW
template associated with the SDP bind that binds
this VPLS context to the VSI indicated by
svcL2RteRouteDistinguisher, svcL2RteVsiPrefix,
and svcL2RteNextHop."
::= { svcL2RteEntry 6 }
-- --------------------------------------
-- SDP Notification Objects
-- --------------------------------------
-- tmnxSdpNotifyObjs OBJECT IDENTIFIER ::= ( tmnxSdpObjs 100 }
sdpNotifySdpId OBJECT-TYPE
SYNTAX SdpId
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The ID of the SDP where SDP Bindings are associated.
This object is used by the sdpBindSdpStateChangeProcessed
notification to indicate the SDP that changed
state and that resulted in having the associated
sdpBindStatusChanged events suppressed for all SDP
Bindings on that SDP."
::= { tmnxSdpNotifyObjs 1 }
dynamicSdpStatus OBJECT-TYPE
SYNTAX ConfigStatus
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The value of dynamicSdpStatus indicates the status of the
dynamic SDP which is used by the dynamicSdpConfigChanged
and dynamicSdpBindConfigChanged notifications to indicate
what state the dynamic SDP or SDP Bind
has entered: 'created', 'modified', or 'deleted'."
::= { tmnxSdpNotifyObjs 2 }
dynamicSdpOrigin OBJECT-TYPE
SYNTAX L2RouteOrigin
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The value of dynamicSdpOrigin indicates the origin of the
dynamic SDP. The origin indicates the protocol or mechanism
that created the dynamic SDP."
::= { tmnxSdpNotifyObjs 3 }
dynamicSdpCreationError OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The value of the object dynamicSdpCreationError
indicates the reason why the system was unable to create
the dynamic SDP."
::= { tmnxSdpNotifyObjs 4 }
dynamicSdpBindCreationError OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The value of the object dynamicSdpBindCreationError
indicates the reason why the system was unable to create
the dynamic SDP Binding."
::= { tmnxSdpNotifyObjs 5 }
-- --------------------------------------------
-- SDP traps
-- --------------------------------------------
sdpCreated NOTIFICATION-TYPE
OBJECTS {
sdpId
}
STATUS obsolete
DESCRIPTION "The sdpCreated notification is sent when a new row is
created in the sdpInfoTable."
::= { sdpTraps 1 }
sdpDeleted NOTIFICATION-TYPE
OBJECTS {
sdpId
}
STATUS obsolete
DESCRIPTION "The sdpDeleted notification is sent when an existing row
is deleted from the ng row is deleted from the
sdpInfoTable."
::= { sdpTraps 2 }
sdpStatusChanged NOTIFICATION-TYPE
OBJECTS {
sdpId,
sdpAdminStatus,
sdpOperStatus
}
STATUS current
DESCRIPTION "The sdpStatusChanged notification is generated
when there is a change in the administrative or
operating status of an SDP."
::= { sdpTraps 3 }
sdpBindCreated NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId
}
STATUS obsolete
DESCRIPTION "The sdpBindCreated notification is sent when a new row
is created in the sdpBindTable."
::= { sdpTraps 4 }
sdpBindDeleted NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId
}
STATUS obsolete
DESCRIPTION "The sdpBindDeleted notification is sent when an existing
row is deleted from the sdpBindTable."
::= { sdpTraps 5 }
sdpBindStatusChanged NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
sdpBindAdminStatus,
sdpBindOperStatus,
sdpBindOperFlags
}
STATUS current
DESCRIPTION "The sdpBindStatusChanged notification is generated
when there is a change in the administrative or
operating status of an SDP Binding.
Notice that this trap is not generated whenever
the SDP Binding operating status change is caused by
an operating status change on the associated SDP."
::= { sdpTraps 6 }
sdpTlsMacAddrLimitAlarmRaised NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpId
}
STATUS current
DESCRIPTION "The sdpTlsMacAddrLimitAlarmRaised notification is sent
whenever the number of MAC addresses stored in the FDB
for this spoke sdp increases to reach the watermark
specified by the object svcTlsFdbTableFullHighWatermark."
::= { sdpTraps 7 }
sdpTlsMacAddrLimitAlarmCleared NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpId
}
STATUS current
DESCRIPTION "The sdpTlsMacAddrLimitAlarmCleared notification is sent
whenever the number of MAC addresses stored in the FDB for
this spoke SDP drops to the watermark specified by the
object svcTlsFdbTableFullLowWatermark."
::= { sdpTraps 8 }
sdpTlsDHCPSuspiciousPcktRcvd NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpId,
tlsDhcpPacketProblem
}
STATUS obsolete
DESCRIPTION "The sdpTlsDHCPSuspiciousPcktRcvd notification is
generated when a DHCP packet is received with suspicious
content."
::= { sdpTraps 9 }
sdpBindDHCPLeaseEntriesExceeded NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpLseStateNewCiAddr,
svcDhcpLseStateNewChAddr,
svcDhcpClientLease
}
STATUS current
DESCRIPTION "The sdpBindDHCPLeaseEntriesExceeded notification is
generated when the number of DHCP lease state entries on a
given IES or VRPN spoke-SDP reaches the user configurable
upper limit given by
ALCATEL-IND1-TIMETRA-VRTR-MIB::vRtrIfDHCPLeasePopulate."
::= { sdpTraps 10 }
sdpBindDHCPLseStateOverride NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpLseStateNewCiAddr,
svcDhcpLseStateNewChAddr,
svcDhcpLseStateOldCiAddr,
svcDhcpLseStateOldChAddr
}
STATUS current
DESCRIPTION "The sdpBindDHCPLseStateOverride notification is generated
when an existing DHCP lease state is overridden by a new
lease state which has the same IP address but a different
MAC address. This trap is only applicable for IES and VPRN
spoke-SDPs."
::= { sdpTraps 11 }
sdpBindDHCPSuspiciousPcktRcvd NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpPacketProblem
}
STATUS current
DESCRIPTION "The sdpBindDHCPSuspiciousPcktRcvd notification is
generated when a DHCP packet is received with suspicious
content."
::= { sdpTraps 12 }
sdpBindDHCPLseStatePopulateErr NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpLseStatePopulateError
}
STATUS current
DESCRIPTION "The sdpBindDHCPLseStatePopulateErr notification indicates
that the system was unable to update the DHCP Lease State
table with the information contained in the DHCP ACK
message. The DHCP ACK message has been discarded. This
trap is only applicable for IES and VPRN spoke-SDPs."
::= { sdpTraps 13 }
sdpBindPwPeerStatusBitsChanged NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
sdpBindPwPeerStatusBits
}
STATUS current
DESCRIPTION "The sdpBindPwPeerStatusBitsChanged notification is
generated when there is a change in the PW status
bits received from the peer."
::= { sdpTraps 14 }
sdpBindTlsMacMoveExceeded NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
sdpBindAdminStatus,
sdpBindOperStatus,
sdpBindTlsMacMoveRateExcdLeft,
sdpBindTlsMacMoveNextUpTime,
svcTlsMacMoveMaxRate
}
STATUS current
DESCRIPTION "The sdpBindTlsMacMoveExceeded notification is generated
when the SDP exceeds the TLS svcTlsMacMoveMaxRate."
::= { sdpTraps 15 }
sdpBindPwPeerFaultAddrChanged NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
sdpBindPwFaultInetAddressType,
sdpBindPwFaultInetAddress
}
STATUS current
DESCRIPTION "The sdpBindPwPeerFaultAddrChanged notification is
generated when there is a change in the IP address
included in the PW status message sent by the peer.
This notification is only generated if the IP address
is the only information in the notification that
changed. If the status bits changed as well, then
the sdpBindPwPeerStatusBitsChanged notification will
be generated instead."
::= { sdpTraps 16 }
sdpBindDHCPProxyServerError NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpProxyError
}
STATUS current
DESCRIPTION "The sdpBindDHCPProxyServerError notification indicates
that the system was unable to proxy DHCP requests."
::= { sdpTraps 17 }
sdpBindDHCPCoAError NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpCoAError
}
STATUS obsolete
DESCRIPTION "The sdpBindDHCPCoAError notification indicates that
the system was unable to process a Change of Authorization
(CoA) request from a Radius server."
::= { sdpTraps 18 }
sdpBindDHCPSubAuthError NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpSubAuthError
}
STATUS obsolete
DESCRIPTION "The sdpBindDHCPSubAuthError notification indicates that
the system encountered a problem while trying to
authenticate a subscriber."
::= { sdpTraps 19 }
sdpBindSdpStateChangeProcessed NOTIFICATION-TYPE
OBJECTS {
sdpNotifySdpId
}
STATUS current
DESCRIPTION "The sdpBindSdpStateChangeProcessed notification
indicates that the agent has finished processing an
SDP state change event, and that the operating status
of all the affected SDP Bindings has been updated
accordingly. The value of the sdpNotifySdpId object
indicates the SDP that experienced the state change."
::= { sdpTraps 20 }
sdpBindDHCPLseStateMobilityErr NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
svcVpnId,
sdpBindId,
svcDhcpLseStatePopulateError
}
STATUS current
DESCRIPTION "The sdpBindDHCPLseStateMobilityErr notification indicates
that the system was unable to perform a mobility check
for this lease state."
::= { sdpTraps 21 }
sdpBandwidthOverbooked NOTIFICATION-TYPE
OBJECTS {
sdpId,
sdpMaxBookableBandwidth,
sdpBookedBandwidth
}
STATUS current
DESCRIPTION "The sdpBandwidthOverbooked notification indicates
that the bandwidth that has been allocated to the SDP
bindings indicated by sdpBookedBandwidth exceeds
sdpMaxBookableBandwidth."
::= { sdpTraps 22 }
sdpBindInsufficientBandwidth NOTIFICATION-TYPE
OBJECTS {
svcId,
sdpId,
sdpBindId,
sdpAvailableBandwidth,
sdpBindAdminBandwidth
}
STATUS current
DESCRIPTION "The sdpBindInsufficientBandwidth notification indicates
that the available bandwidth of the SDP is insufficient
to satisfy the bandwidth requirement specified by
sdpBindAdminBandwidth of this SDP binding."
::= { sdpTraps 23 }
dynamicSdpConfigChanged NOTIFICATION-TYPE
OBJECTS {
dynamicSdpOrigin,
sdpId,
svcL2RteSdpBindId,
dynamicSdpStatus
}
STATUS current
DESCRIPTION "The dynamicSdpConfigChanged notification is generated when a
dynamic SDP is 'created', 'modified', or 'deleted', with the
value of dynamicSdpStatus indicated which state it has entered."
::= { sdpTraps 24 }
dynamicSdpBindConfigChanged NOTIFICATION-TYPE
OBJECTS {
dynamicSdpOrigin,
sdpId,
svcL2RteSdpBindId,
dynamicSdpStatus
}
STATUS current
DESCRIPTION "The dynamicSdpBindConfigChanged notification is generated when a
dynamic SDP Bind is 'created', 'modified', or 'deleted', with the
value of dynamicSdpStatus indicated which state it has entered."
::= { sdpTraps 25 }
dynamicSdpCreationFailed NOTIFICATION-TYPE
OBJECTS {
svcL2RteSdpBindId,
dynamicSdpOrigin,
dynamicSdpCreationError
}
STATUS current
DESCRIPTION "The dynamicSdpCreationFailed notification is generated
when the system fails to create a dynamic SDP."
::= { sdpTraps 26 }
dynamicSdpBindCreationFailed NOTIFICATION-TYPE
OBJECTS {
svcL2RteSdpBindId,
dynamicSdpOrigin,
sdpId,
pwTemplateLastChanged,
dynamicSdpBindCreationError
}
STATUS current
DESCRIPTION "The dynamicSdpBindCreationFailed notification is generated
when the system fails to create a dynamic SDP Bind."
::= { sdpTraps 27 }
-- ------------------------------------
-- TLS STP traps
-- ------------------------------------
unacknowledgedTCN NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpId
}
STATUS current
DESCRIPTION "The unacknowledgedTCN notification is generated when a
TCN sent towards the root bridge on the root port (SAP
or SDP binding) has not been acknowledged within the
allowed time. A portion of the spanning tree topology
may not have been notified that a topology change has
taken place. FDB tables on some devices may take
significantly longer to represent the new distribution
of layer-2 addresses. Examine this device and devices
towards the root bridge for STP issues."
::= { tstpTraps 8 }
tmnxSvcTopoChgSdpBindMajorState NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
sdpBindTlsStpPortState,
tmnxOldSdpBindTlsStpPortState
}
STATUS current
DESCRIPTION "The tmnxSvcTopoChgSdpBindMajorState notification is
generated when a SDP binding has transitioned its
state from learning to forwarding or from forwarding
to blocking or broken. The spanning tree topology has
been modified. It may denote loss of customer access
or redundancy. Check the new topology against the
provisioned topology to determine the severity of
connectivity loss."
::= { tstpTraps 14 }
tmnxSvcNewRootSdpBind NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
svcTlsStpDesignatedRoot
}
STATUS current
DESCRIPTION "The tmnxSvcNewRootSdpBind notification is generated
when the previous root bridge has been aged out and a
new root bridge has been elected. The new root bridge
creates a new spanning tree topology. It may denote
loss of customer access or redundancy. Check the new
topology against the provisioned topology to determine
the severity of connectivity loss."
::= { tstpTraps 15 }
tmnxSvcTopoChgSdpBindState NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
sdpBindTlsStpPortState,
tmnxOldSdpBindTlsStpPortState
}
STATUS current
DESCRIPTION "The tmnxSvcTopoChgSdpBindState notification is
generated when a SDP binding has transitioned state to
blocking or broken from learning state. This event
complements what is not covered by
tmnxSvcTopoChgSdpBindMajorState. The spanning tree
topology has been modified. It may denote loss of
customer access or redundancy. Check the new topology
against the provisioned topology to determine the
severity of connectivity loss."
::= { tstpTraps 16 }
tmnxSvcSdpBindRcvdTCN NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId
}
STATUS current
DESCRIPTION "The tmnxSvcSdpBindRcvdTCN notification is generated
when a SDP binding has received TCN from another
bridge. This bridge will either have its configured
BPDU with the topology change flag set if it is a root
bridge, or it will pass TCN to its root bridge.
Eventually the address aging timer for the forwarding
database will be made shorter for a short period of
time. No recovery is needed."
::= { tstpTraps 17 }
tmnxSvcSdpBindRcvdHigherBriPrio NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
tmnxCustomerBridgeId,
tmnxCustomerRootBridgeId
}
STATUS current
DESCRIPTION "The tmnxSvcSdpBindRcvdHigherBriPrio notification is
generated when a customer's device has been configured
with a bridge priority equal to zero. The SDP binding
that the customer's device is connected through will
be blocked. Remove the customer's device or
reconfigure the customer's bridge priority with value
greater than zero."
::= { tstpTraps 18 }
tmnxSvcSdpBindEncapPVST NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
tmnxOtherBridgeId
}
STATUS current
DESCRIPTION "The tmnxSvcSdpBindEncapPVST notification is generated
when an SDP bindings STP received a BPDU that was PVST
encapsulated. The SDP binding STP's BPDUs will be PVST
encapsulated. No recovery is needed."
::= { tstpTraps 19 }
tmnxSvcSdpBindEncapDot1d NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
tmnxOtherBridgeId
}
STATUS current
DESCRIPTION "The tmnxSvcSdpBindEncapDot1d notification is generated
when a SDP binding received a BPDU that was 802.1d
encapsulated. The SDP binding BPDUs will also be
802.1d encapsulated. No recovery is needed."
::= { tstpTraps 20 }
tmnxSvcSdpActiveProtocolChange NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
sdpBindTlsStpOperProtocol
}
STATUS current
DESCRIPTION "The tmnxSvcSdpActiveProtocolChange notification is
generated when the spanning tree protocol on this SDP
changes from rstp to stp or vise versa. No recovery is
needed."
::= { tstpTraps 31 }
tmnxStpMeshNotInMstRegion NOTIFICATION-TYPE
OBJECTS {
svcId,
sdpBindId
}
STATUS current
DESCRIPTION "The tmnxStpMeshNotInMstRegion notification is
generated when a MSTP BPDU from outside the MST region
is received on the indicated mesh SDP.
It is up to the operator to make sure bridges connected
via mesh SDPs are in the same MST-region. If not the mesh
will NOT become operational."
::= { tstpTraps 36 }
tmnxSdpBndStpExcepCondStateChng NOTIFICATION-TYPE
OBJECTS {
custId,
svcId,
sdpBindId,
sdpBindTlsStpException
}
STATUS current
DESCRIPTION "The tmnxSdpBndStpExcepCondStateChng notification is
generated when the value of the object sdpBindTlsStpException
has changed, i.e. when the exception condition
changes on the indicated SDP Bind."
::= { tstpTraps 38 }
-- ----------------------------------------------------------------------------
-- Conformance Information
-- ----------------------------------------------------------------------------
tmnxSdpCompliances OBJECT IDENTIFIER ::= { tmnxSdpConformance 1 }
tmnxSdpGroups OBJECT IDENTIFIER ::= { tmnxSdpConformance 2 }
-- ----------------------------------------------
-- Compliance Statements
-- ----------------------------------------------
tmnxSdp77x0V6v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of services SDPs
on Alcatel 7750 SR and 7710 SR series systems."
MODULE -- this module
MANDATORY-GROUPS
{
tmnxSdpV6v0Group,
tmnxSdpBindV6v0Group,
tmnxSdpBindTlsV6v0Group,
tmnxSdpBindMeshV6v0Group,
tmnxSdpApipeV6v0Group,
tmnxSdpBindDhcpV6v0Group,
tmnxSdpBindIpipeV6v0Group,
tmnxSdpBindTlsL2ptV6v0Group,
tmnxSdpAutoBindV6v0Group,
tmnxSdpBindTlsMrpV6v0Group,
tmnxSdpTlsBgpV6v0Group,
tmnxSdpNotifyV6v0Group,
tmnxSdpL2V6v0Group,
tmnxSdpFCV6v0Group,
tmnxSdpBindCpipeV6v0Group
}
::= { tmnxSdpCompliances 8 }
tmnxSdp7450V6v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of services SDPs
on Alcatel 7450 ESS series systems."
MODULE -- this module
MANDATORY-GROUPS
{
tmnxSdpV6v0Group,
tmnxSdpBindV6v0Group,
tmnxSdpBindTlsV6v0Group,
tmnxSdpBindMeshV6v0Group,
-- tmnxSdpApipeV6v0Group,
tmnxSdpBindDhcpV6v0Group,
tmnxSdpBindIpipeV6v0Group,
tmnxSdpBindTlsL2ptV6v0Group,
tmnxSdpAutoBindV6v0Group,
tmnxSdpBindTlsMrpV6v0Group,
tmnxSdpTlsBgpV6v0Group,
tmnxSdpNotifyV6v0Group,
tmnxSdpL2V6v0Group,
tmnxSdpFCV6v0Group
-- tmnxSdpBindCpipeV6v0Group
}
::= { tmnxSdpCompliances 9 }
-- Object groups
tmnxSdpV6v0Group OBJECT-GROUP
OBJECTS {
sdpNumEntries,
sdpNextFreeId,
sdpId,
sdpRowStatus,
sdpDelivery,
sdpFarEndIpAddress,
sdpLspList,
sdpDescription,
sdpLabelSignaling,
sdpAdminStatus,
sdpOperStatus,
sdpOperPathMtu,
sdpKeepAliveAdminStatus,
sdpKeepAliveOperStatus,
sdpKeepAliveHelloTime,
sdpKeepAliveMaxDropCount,
sdpKeepAliveHoldDownTime,
sdpLastMgmtChange,
sdpKeepAliveNumHelloRequestMessages,
sdpKeepAliveNumHelloResponseMessages,
sdpKeepAliveNumLateHelloResponseMessages,
sdpKeepAliveHelloRequestTimeout,
sdpLdpEnabled,
sdpVlanVcEtype,
sdpAdvertisedVllMtuOverride,
sdpOperFlags,
sdpLastStatusChange,
sdpMvplsMgmtService,
sdpMvplsMgmtSdpBndId,
sdpCollectAcctStats,
sdpAccountingPolicyId,
sdpClassFwdingEnabled,
sdpClassFwdingDefaultLsp,
sdpClassFwdingMcLsp,
sdpMetric,
sdpAutoSdp,
sdpSnmpAllowed,
sdpPBBEtype,
sdpBandwidthBookingFactor,
sdpOperBandwidth,
sdpAvailableBandwidth,
sdpAdminPathMtu,
sdpKeepAliveHelloMessageLength
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP base feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 100 }
tmnxSdpBindV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindId,
sdpBindRowStatus,
sdpBindAdminStatus,
sdpBindOperStatus,
sdpBindLastMgmtChange,
sdpBindType,
sdpBindIngressMacFilterId,
sdpBindIngressIpFilterId,
sdpBindEgressMacFilterId,
sdpBindEgressIpFilterId,
sdpBindVpnId,
sdpBindCustId,
sdpBindVcType,
sdpBindVlanVcTag,
sdpBindSplitHorizonGrp,
sdpBindOperFlags,
sdpBindLastStatusChange,
sdpBindIesIfIndex,
sdpBindMacPinning,
sdpBindIngressIpv6FilterId,
sdpBindEgressIpv6FilterId,
sdpBindCollectAcctStats,
sdpBindAccountingPolicyId,
sdpBindPwPeerStatusBits,
sdpBindPeerVccvCvBits,
sdpBindPeerVccvCcBits,
sdpBindControlWordBit,
sdpBindOperControlWord,
sdpBindEndPoint,
sdpBindEndPointPrecedence,
sdpBindIsICB,
sdpBindPwFaultInetAddressType,
sdpBindClassFwdingOperState,
sdpBindForceVlanVcForwarding,
sdpBindAdminBandwidth,
sdpBindOperBandwidth,
sdpBindBaseStatsIngressForwardedPackets,
sdpBindBaseStatsIngressDroppedPackets,
sdpBindBaseStatsEgressForwardedPackets,
sdpBindBaseStatsEgressForwardedOctets,
sdpBindBaseStatsCustId,
sdpBindBaseStatsIngFwdOctets,
sdpBindBaseStatsIngDropOctets,
sdpBindAdminIngressLabel,
sdpBindAdminEgressLabel,
sdpBindOperIngressLabel,
sdpBindOperEgressLabel,
sdpBindPwFaultInetAddress,
sdpBindIpipeCeInetAddress
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP Bind feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 101 }
tmnxSdpBindTlsV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindTlsStpAdminStatus,
sdpBindTlsStpPriority,
sdpBindTlsStpPortNum,
sdpBindTlsStpPathCost,
sdpBindTlsStpRapidStart,
sdpBindTlsStpBpduEncap,
sdpBindTlsStpPortState,
sdpBindTlsStpDesignatedBridge,
sdpBindTlsStpDesignatedPort,
sdpBindTlsStpForwardTransitions,
sdpBindTlsStpInConfigBpdus,
sdpBindTlsStpInTcnBpdus,
sdpBindTlsStpInBadBpdus,
sdpBindTlsStpOutConfigBpdus,
sdpBindTlsStpOutTcnBpdus,
sdpBindTlsStpOperBpduEncap,
sdpBindTlsStpVpnId,
sdpBindTlsStpCustId,
sdpBindTlsMacAddressLimit,
sdpBindTlsNumMacAddresses,
sdpBindTlsNumStaticMacAddresses,
sdpBindTlsMacLearning,
sdpBindTlsMacAgeing,
sdpBindTlsStpOperEdge,
sdpBindTlsStpAdminPointToPoint,
sdpBindTlsStpPortRole,
sdpBindTlsStpAutoEdge,
sdpBindTlsStpOperProtocol,
sdpBindTlsStpInRstBpdus,
sdpBindTlsStpOutRstBpdus,
sdpBindTlsLimitMacMove,
sdpBindTlsDiscardUnknownSource,
sdpBindTlsMvplsPruneState,
sdpBindTlsMvplsMgmtService,
sdpBindTlsMvplsMgmtSdpBndId,
sdpBindTlsStpException,
sdpBindTlsL2ptTermination,
sdpBindTlsBpduTranslation,
sdpBindTlsStpRootGuard,
sdpBindTlsStpInMstBpdus,
sdpBindTlsStpOutMstBpdus,
sdpBindTlsStpRxdDesigBridge,
sdpBindTlsMacMoveNextUpTime,
sdpBindTlsMacMoveRateExcdLeft,
sdpBindTlsLimitMacMoveLevel,
sdpBindTlsBpduTransOper,
sdpBindTlsL2ptProtocols,
sdpBindTlsIgnoreStandbySig,
sdpBindTlsBlockOnMeshFail
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP Bind TLS feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 102 }
tmnxSdpBindMeshV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindMeshTlsPortState,
sdpBindMeshTlsNotInMstRegion,
sdpBindMeshTlsHoldDownTimer,
sdpBindMeshTlsTransitionState
}
STATUS current
DESCRIPTION
"The group of objects supporting mesh SDP bind feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 103 }
tmnxSdpApipeV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindApipeAdminConcatCellCount,
sdpBindApipeSigConcatCellCount,
sdpBindApipeOperConcatCellCount,
sdpBindApipeConcatMaxDelay,
sdpBindApipeConcatCellClp,
sdpBindApipeConcatCellAal5Fr
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP A-Pipe feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 104 }
tmnxSdpBindDhcpV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindDhcpDescription,
sdpBindDhcpSnoop,
sdpBindDhcpStatsClntSnoopdPckts,
sdpBindDhcpStatsSrvrSnoopdPckts,
sdpBindDhcpStatsClntForwdPckts,
sdpBindDhcpStatsSrvrForwdPckts,
sdpBindDhcpStatsClntDropdPckts,
sdpBindDhcpStatsSrvrDropdPckts,
sdpBindDhcpStatsClntProxRadPckts,
sdpBindDhcpStatsClntProxLSPckts,
sdpBindDhcpStatsGenReleasePckts,
sdpBindDhcpStatsGenForceRenPckts
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP Bind DHCP feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 105 }
tmnxSdpBindIpipeV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindIpipeCeInetAddressType
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP Bind I-Pipe feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 106 }
tmnxSdpFCV6v0Group OBJECT-GROUP
OBJECTS {
sdpFCMappingRowStatus,
sdpFCMappingLspId
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP FC feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 107 }
tmnxSdpBindCpipeV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindCpipeLocalPayloadSize,
sdpBindCpipePeerPayloadSize,
sdpBindCpipeLocalBitrate,
sdpBindCpipePeerBitrate,
sdpBindCpipeLocalSigPkts,
sdpBindCpipePeerSigPkts,
sdpBindCpipeLocalCasTrunkFraming,
sdpBindCpipePeerCasTrunkFraming,
sdpBindCpipeLocalUseRtpHeader,
sdpBindCpipePeerUseRtpHeader,
sdpBindCpipeLocalDifferential,
sdpBindCpipePeerDifferential,
sdpBindCpipeLocalTimestampFreq,
sdpBindCpipePeerTimestampFreq
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP bind C-Pipe feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 108 }
tmnxSdpBindTlsL2ptV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindTlsMfibMdaRowStatus,
sdpBindTlsL2ptStatsLastClearedTime,
sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapStpConfigBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapStpRstBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapStpTcnBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapPvstConfigBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapPvstRstBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapPvstTcnBpdusTx,
sdpBindTlsL2ptStatsStpConfigBpdusRx,
sdpBindTlsL2ptStatsStpConfigBpdusTx,
sdpBindTlsL2ptStatsStpRstBpdusRx,
sdpBindTlsL2ptStatsStpRstBpdusTx,
sdpBindTlsL2ptStatsStpTcnBpdusRx,
sdpBindTlsL2ptStatsStpTcnBpdusTx,
sdpBindTlsL2ptStatsPvstConfigBpdusRx,
sdpBindTlsL2ptStatsPvstConfigBpdusTx,
sdpBindTlsL2ptStatsPvstRstBpdusRx,
sdpBindTlsL2ptStatsPvstRstBpdusTx,
sdpBindTlsL2ptStatsPvstTcnBpdusRx,
sdpBindTlsL2ptStatsPvstTcnBpdusTx,
sdpBindTlsL2ptStatsOtherBpdusRx,
sdpBindTlsL2ptStatsOtherBpdusTx,
sdpBindTlsL2ptStatsOtherL2ptBpdusRx,
sdpBindTlsL2ptStatsOtherL2ptBpdusTx,
sdpBindTlsL2ptStatsOtherInvalidBpdusRx,
sdpBindTlsL2ptStatsOtherInvalidBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapCdpBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapCdpBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapVtpBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapVtpBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapDtpBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapDtpBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapPagpBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapPagpBpdusTx,
sdpBindTlsL2ptStatsL2ptEncapUdldBpdusRx,
sdpBindTlsL2ptStatsL2ptEncapUdldBpdusTx,
sdpBindTlsL2ptStatsCdpBpdusRx,
sdpBindTlsL2ptStatsCdpBpdusTx,
sdpBindTlsL2ptStatsVtpBpdusRx,
sdpBindTlsL2ptStatsVtpBpdusTx,
sdpBindTlsL2ptStatsDtpBpdusRx,
sdpBindTlsL2ptStatsDtpBpdusTx,
sdpBindTlsL2ptStatsPagpBpdusRx,
sdpBindTlsL2ptStatsPagpBpdusTx,
sdpBindTlsL2ptStatsUdldBpdusRx,
sdpBindTlsL2ptStatsUdldBpdusTx
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP bind L2pt feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 109 }
tmnxSdpAutoBindV6v0Group OBJECT-GROUP
OBJECTS {
pwTemplateTableLastChanged,
pwTemplateRowStatus,
pwTemplateLastChanged,
pwTemplateVcType,
pwTemplateAccountingPolicyId,
pwTemplateCollectAcctStats,
pwTemplateMacLearning,
pwTemplateMacAgeing,
pwTemplateDiscardUnknownSource,
pwTemplateLimitMacMove,
pwTemplateMacPinning,
pwTemplateMacAddressLimit,
pwTemplateShgName,
pwTemplateShgDescription,
pwTemplateShgRestProtSrcMac,
pwTemplateShgRestUnprotDstMac,
pwTemplateEgressMacFilterId,
pwTemplateEgressIpFilterId,
pwTemplateEgressIpv6FilterId,
pwTemplateIngressMacFilterId,
pwTemplateIngressIpFilterId,
pwTemplateIngressIpv6FilterId,
pwTemplateIgmpFastLeave,
pwTemplateIgmpImportPlcy,
pwTemplateIgmpLastMembIntvl,
pwTemplateIgmpMaxNbrGrps,
pwTemplateIgmpGenQueryIntvl,
pwTemplateIgmpQueryRespIntvl,
pwTemplateIgmpRobustCount,
pwTemplateIgmpSendQueries,
pwTemplateIgmpMcacPolicyName,
pwTemplateIgmpMcacPrRsvMndBW,
pwTemplateIgmpMcacUnconstBW,
pwTemplateIgmpVersion,
pwTemplateIgmpSnpgGrpSrcTblLC,
pwTemplateIgmpSnpgRowStatus,
pwTemplateIgmpSnpgLastChngd,
pwTemplateMfibAllowedMdaTblLC,
pwTemplateMfibMdaRowStatus,
pwTemplateUseProvisionedSdp,
pwTemplateVlanVcTag,
sdpAutoBindBgpInfoTableLC,
sdpAutoBindBgpInfoTemplateId,
sdpAutoBindBgpInfoAGI,
sdpAutoBindBgpInfoSAII,
sdpAutoBindBgpInfoTAII
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP auto-bind feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 112 }
tmnxSdpBindTlsMrpV6v0Group OBJECT-GROUP
OBJECTS {
sdpBindTlsMrpTableLastChanged,
sdpBindTlsMrpLastChngd,
sdpBindTlsMrpJoinTime,
sdpBindTlsMrpLeaveTime,
sdpBindTlsMrpLeaveAllTime,
sdpBindTlsMrpPeriodicTime,
sdpBindTlsMrpPeriodicEnabled,
sdpBindTlsMrpRxPdus,
sdpBindTlsMrpDroppedPdus,
sdpBindTlsMrpTxPdus,
sdpBindTlsMrpRxNewEvent,
sdpBindTlsMrpRxJoinInEvent,
sdpBindTlsMrpRxInEvent,
sdpBindTlsMrpRxJoinEmptyEvent,
sdpBindTlsMrpRxEmptyEvent,
sdpBindTlsMrpRxLeaveEvent,
sdpBindTlsMrpTxNewEvent,
sdpBindTlsMrpTxJoinInEvent,
sdpBindTlsMrpTxInEvent,
sdpBindTlsMrpTxJoinEmptyEvent,
sdpBindTlsMrpTxEmptyEvent,
sdpBindTlsMrpTxLeaveEvent,
sdpBindTlsMmrpDeclared,
sdpBindTlsMmrpRegistered
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP MRP feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 113 }
tmnxSdpTlsBgpV6v0Group OBJECT-GROUP
OBJECTS {
svcTlsBgpADPWTempBindTblLC,
svcTlsBgpADPWTempBindRowStatus,
svcTlsBgpADPWTempBindLastChngd,
svcTlsBgpADPWTempBindSHG,
svcTlsBgpADPWTempBindRTTblLC,
svcTlsBgpADPWTempBindRTRowStat
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP BGP feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 114 }
tmnxSdpL2V6v0Group OBJECT-GROUP
OBJECTS {
sdpCreationOrigin,
svcL2RteTableLastChanged,
svcL2RteSdpBindId,
svcL2RtePwTemplateId
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP L2 Route feature
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 115 }
-- Notification objects
tmnxSdpNotifyObjsV6v0Group OBJECT-GROUP
OBJECTS {
sdpNotifySdpId,
sdpMaxBookableBandwidth,
sdpBookedBandwidth,
dynamicSdpStatus,
dynamicSdpOrigin,
dynamicSdpCreationError,
dynamicSdpBindCreationError
}
STATUS current
DESCRIPTION
"The group of objects supporting SDP notification objects
on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 200 }
-- Obsoleted Group (300)
-- Notification group
tmnxSdpNotifyV6v0Group NOTIFICATION-GROUP
NOTIFICATIONS {
unacknowledgedTCN,
tmnxSvcTopoChgSdpBindMajorState,
tmnxSvcNewRootSdpBind,
tmnxSvcTopoChgSdpBindState,
tmnxSvcSdpBindRcvdTCN,
tmnxSvcSdpBindRcvdHigherBriPrio,
tmnxSvcSdpBindEncapPVST,
tmnxSvcSdpBindEncapDot1d,
tmnxSvcSdpActiveProtocolChange,
tmnxStpMeshNotInMstRegion,
tmnxSdpBndStpExcepCondStateChng,
sdpStatusChanged,
sdpBindStatusChanged,
sdpTlsMacAddrLimitAlarmRaised,
sdpTlsMacAddrLimitAlarmCleared,
sdpBindDHCPLeaseEntriesExceeded,
sdpBindDHCPLseStateOverride,
sdpBindDHCPLseStatePopulateErr,
sdpBindDHCPSuspiciousPcktRcvd,
sdpBindPwPeerStatusBitsChanged,
sdpBindTlsMacMoveExceeded,
sdpBindPwPeerFaultAddrChanged,
sdpBindDHCPProxyServerError,
sdpBindSdpStateChangeProcessed,
sdpBindDHCPLseStateMobilityErr,
sdpBandwidthOverbooked,
sdpBindInsufficientBandwidth,
dynamicSdpConfigChanged,
dynamicSdpBindConfigChanged,
dynamicSdpCreationFailed,
dynamicSdpBindCreationFailed
}
STATUS current
DESCRIPTION
"The group of SDP notifications on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 400 }
tmnxSdpObsoletedNotifyV6v0Group NOTIFICATION-GROUP
NOTIFICATIONS {
sdpCreated,
sdpDeleted,
sdpBindCreated,
sdpBindDeleted,
sdpTlsDHCPSuspiciousPcktRcvd,
sdpBindDHCPCoAError,
sdpBindDHCPSubAuthError
}
STATUS current
DESCRIPTION
"The group of obsoleted SDP objects on Alcatel 7x50 SR series systems."
::= { tmnxSdpGroups 401 }
END
|