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
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
|
ALCATEL-IND1-TIMETRA-CHASSIS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Unsigned32,
Integer32, Gauge32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION, DateAndTime,
RowStatus, TimeStamp, TimeInterval,
TruthValue, MacAddress, RowPointer,
DisplayString FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
TmnxActionType, TmnxPortID,
TItemDescription, TNamedItemOrEmpty,
TNamedItem, TmnxOperState,
TmnxAdminState FROM ALCATEL-IND1-TIMETRA-TC-MIB
timetraSRMIBModules, tmnxSRObjs,
tmnxSRNotifyPrefix, tmnxSRConfs FROM ALCATEL-IND1-TIMETRA-GLOBAL-MIB
;
tmnxChassisMIBModule MODULE-IDENTITY
LAST-UPDATED "0801010000Z"
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
hardware components of the Alcatel 7x50 device.
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 "0801010000Z"
DESCRIPTION "Rev 6.0 01 Jan 2008 00:00
6.0 release of the TIMETRA-CHASSIS-MIB."
REVISION "0701010000Z"
DESCRIPTION "Rev 5.0 01 Jan 2007 00:00
5.0 release of the TIMETRA-CHASSIS-MIB."
REVISION "0603160000Z"
DESCRIPTION "Rev 4.0 16 Mar 2006 00:00
4.0 release of the TIMETRA-CHASSIS-MIB."
REVISION "0508310000Z"
DESCRIPTION "Rev 3.0 31 Aug 2005 00:00
3.0 release of the TIMETRA-CHASSIS-MIB."
REVISION "0501240000Z"
DESCRIPTION "Rev 2.1 24 Jan 2005 00:00
2.1 release of the TIMETRA-CHASSIS-MIB."
REVISION "0401150000Z"
DESCRIPTION "Rev 2.0 15 Jan 2004 00:00
2.0 release of the TIMETRA-CHASSIS-MIB."
REVISION "0308150000Z"
DESCRIPTION "Rev 1.2 15 Aug 2003 00:00
1.2 release of the TIMETRA-CHASSIS-MIB."
REVISION "0301200000Z"
DESCRIPTION "Rev 1.0 20 Jan 2003 00:00
Release 1.0 of the TIMETRA-HW-MIB."
REVISION "0008140000Z"
DESCRIPTION "Rev 0.1 14 Aug 2000 00:00
Initial version of the TIMETRA-HW-MIB."
::= { timetraSRMIBModules 2 }
-- sub-tree for managed objects, and for each functional area
tmnxHwObjs OBJECT IDENTIFIER ::= { tmnxSRObjs 2 }
tmnxChassisObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 1 }
tmnxSlotObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 2 }
tmnxCardObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 3 }
-- tmnxPortObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 4 }
-- tmnxPppObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 5 }
tmnxChassisNotificationObjects OBJECT IDENTIFIER ::= { tmnxHwObjs 6 }
-- tmnxPortNotificationObjects OBJECT IDENTIFIER ::= { tmnxHwObjs 7 }
tmnxChassisAdminObjects OBJECT IDENTIFIER ::= { tmnxHwObjs 8 }
-- tmnxFRObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 9 }
-- tmnxQosAppObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 10 }
-- tmnxATMObjs OBJECT IDENTIFIER ::= { tmnxHwObjs 11 }
tmnxHwNotification OBJECT IDENTIFIER ::= { tmnxSRNotifyPrefix 2 }
tmnxChassisNotifyPrefix OBJECT IDENTIFIER ::= { tmnxHwNotification 1}
tmnxChassisNotification OBJECT IDENTIFIER ::= { tmnxChassisNotifyPrefix 0 }
-- tmnxPortNotifyPrefix OBJECT IDENTIFIER ::= { tmnxHwNotification 2 }
-- tmnxPortNotification OBJECT IDENTIFIER ::= { tmnxPortNotifyPrefix 0 }
-- tmnxPppNotifyPrefix OBJECT IDENTIFIER ::= { tmnxHwNotification 3 }
-- tmnxPppNotification OBJECT IDENTIFIER ::= { tmnxPppNotifyPrefix 0 }
-- tAtmNotifyPrefix OBJECT IDENTIFIER ::= { tmnxSrNotifyPrefix 27 }
-- tAtmNotifications OBJECT IDENTIFIER ::= { tAtmNotifyPrefix 0 }
tmnxHwConformance OBJECT IDENTIFIER ::= { tmnxSRConfs 2 }
tmnxChassisConformance OBJECT IDENTIFIER ::= { tmnxHwConformance 1 }
-- tmnxPortConformance OBJECT IDENTIFIER ::= { tmnxHwConformance 2 }
-- tmnxPppConformance OBJECT IDENTIFIER ::= { tmnxHwConformance 3 }
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- ALCATEL-IND1-TIMETRA-CHASSIS-MIB textual conventions
--
--
-- TmnxAlarmState
--
TmnxAlarmState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxAlarmState is an enumerated integer whose value indicates
the current alarm state of a physical or logical component in the
Alcatel 7x50 SR series system."
SYNTAX INTEGER {
unknown (0),
alarmActive (1),
alarmCleared (2)
}
--
-- TmnxChassisIndex
--
TmnxChassisIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxChassisIndex is a unique index that identifies a chassis
within an Alcatel 7x50 system. Note that initial releases will
support only one chassis in a system."
SYNTAX INTEGER (1..32)
--
-- TmnxHwIndex
--
TmnxHwIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxHwIndex is a unique integer index that identifies an
Alcatel 7x50 SR series manufactured hardware component, such as
an IOM, CPM, Fabric or MDA card."
SYNTAX Integer32 (1..2147483647)
TmnxHwIndexOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxHwIndexOrZero is a unique integer index that identifies an
Alcatel 7x50 SR series manufactured hardware component, such as an
IOM, CPM, Fabric or MDA card. Also TmnxHwIndexOrZero can be zero."
SYNTAX Integer32 (0..2147483647)
--
-- TmnxHwClass
--
TmnxHwClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"TmnxHwClass is an enumerated integer that identifies the general
hardware type of a component in the tmnxHwTable."
SYNTAX INTEGER {
other (1),
unknown (2),
chassis (3),
container (4),
powerSupply (5),
fan (6),
sensor (7),
ioModule (8),
cpmModule (9),
fabricModule (10),
mdaModule (11),
flashDiskModule (12),
port (13),
mcm (14),
ccm (15)
}
--
-- TmnxCardType
--
TmnxCardType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxCardType data type is a bit-mask field that describes the
various Alcatel 7x50 SR series card types. A TmnxCardType bit
value specifies the index value for the entry in the
tmnxCardTypeTable used to identify a specific type of card
manufactured by Alcatel.
When multiple bits are set, it can be used to identify a set or
list of card types used in the tmnxCardTable and tmnxCpmCardTable to
indicate supported or allowed cards within a specific chassis slot.
Some example card types might be:
sfm-400g -- 400g CPM/SF module
sfm-200g -- 200g CPM/SF module
sfm-100g -- 100g CPM/SF module
iom-20g -- 2 x 10-Gig MDA IOM Card
"
SYNTAX Unsigned32
--
-- TmnxChassisType
--
TmnxChassisType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxChassisType data type is an integer that specifies
the index value for the entry in the tmnxChassisTypeTable used to
identify a specific type of chassis backplane manufactured
by Alcatel."
SYNTAX Unsigned32
--
-- TmnxDeviceState
--
TmnxDeviceState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxDeviceState data type is an enumerated integer that
describes the values used to identify states of chassis
components such as fans and power supplies."
SYNTAX INTEGER {
deviceStateUnknown (1),
deviceNotEquipped (2),
deviceStateOk (3),
deviceStateFailed (4),
deviceStateOutOfService (5)
}
--
-- TmnxLEDState
--
TmnxLEDState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxLEDState data type is an enumerated integer that
describes the values used to identify state LEDs on Alcatel
7x50 SR series cards."
SYNTAX INTEGER {
ledOff (1),
ledRed (2),
ledAmber (3),
ledYellow (4),
ledGreen (5),
ledAmberBlink (6),
ledYellowBlink (7),
ledGreenBlink (8)
}
--
-- TmnxMdaType
--
TmnxMdaType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxMdaType data type is an integer that used to identify the
kind of Media Dependent Adapter (MDA) installed on a card.
The value of TmnxMdaType corresponds to the bit number indicated by
TmnxMDASuppType.
A TmnxMdaType value specifies the index value for the entry in the
tmnxMdaTypeTable used to identify a specific type of MDA
manufactured by Alcatel."
SYNTAX Unsigned32
--
-- TmnxMDASuppType
--
TmnxMDASuppType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxMDASuppType data type is a SNMP BIT that is used to identify
the kind of Media Dependent Adapter (MDA) supported on a card.
When multiple bits are set, it can be used to identify a set or list
of supported MDAs within a specific card slot. The MDA types are defined
in the tmnxMdaTypeTable."
SYNTAX BITS {
invalid-MDA-type (0),
unassigned (1),
supp-MDA-type-2 (2),
supp-MDA-type-3 (3),
supp-MDA-type-4 (4),
supp-MDA-type-5 (5),
supp-MDA-type-6 (6),
supp-MDA-type-7 (7),
supp-MDA-type-8 (8),
supp-MDA-type-9 (9),
supp-MDA-type-10 (10),
supp-MDA-type-11 (11),
supp-MDA-type-12 (12),
supp-MDA-type-13 (13),
supp-MDA-type-14 (14),
supp-MDA-type-15 (15),
supp-MDA-type-16 (16),
supp-MDA-type-17 (17),
supp-MDA-type-18 (18),
supp-MDA-type-19 (19),
supp-MDA-type-20 (20),
supp-MDA-type-21 (21),
supp-MDA-type-22 (22),
supp-MDA-type-23 (23),
supp-MDA-type-24 (24),
supp-MDA-type-25 (25),
supp-MDA-type-26 (26),
supp-MDA-type-27 (27),
supp-MDA-type-28 (28),
supp-MDA-type-29 (29),
supp-MDA-type-30 (30),
supp-MDA-type-31 (31),
supp-MDA-type-32 (32),
supp-MDA-type-33 (33),
supp-MDA-type-34 (34),
supp-MDA-type-35 (35),
supp-MDA-type-36 (36),
supp-MDA-type-37 (37),
supp-MDA-type-38 (38),
supp-MDA-type-39 (39),
supp-MDA-type-40 (40),
supp-MDA-type-41 (41),
supp-MDA-type-42 (42),
supp-MDA-type-43 (43),
supp-MDA-type-44 (44),
supp-MDA-type-45 (45),
supp-MDA-type-46 (46),
supp-MDA-type-47 (47)
}
--
-- TmnxMDAChanType
--
TmnxMDAChanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxMDAChanType data type indicates the type of channel that
can be created on an MDA."
SYNTAX INTEGER {
unknown (0),
sonetSts768(1),
sonetSts192(2),
sonetSts48(3),
sonetSts12(4),
sonetSts3(5),
sonetSts1(6),
sdhTug3(7),
sonetVtg(8),
sonetVt15(9),
sonetVt2(10),
sonetVt3(11),
sonetVt6(12),
pdhTu3(13),
pdhDs3(14),
pdhE3(15),
pdhDs1(16),
pdhE1(17),
pdhDs0Grp(18)
}
--
-- TmnxCcmType
--
TmnxCcmType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxCcmType data type is bit-mask field that describes
the values used to identify the kind of Chassis Control
module (CCM) installed on the chassis. A TmnxCcmType bit
value specifies the index value for the entry in the
tmnxCcmTypeTable used to identify a specific type of CCM
manufactured by Alcatel. When multiple bits are set, it can
be used to identify a set or list of CCM types used in the
tmnxCcmTable to indicate supported CCMs within a specific
chassis slot. Some example CCM types are:
unknown -- unknown/uninstalled
ccm-v1 -- Chassis Control Module version 1
"
SYNTAX Unsigned32
--
-- TmnxMcmType
--
TmnxMcmType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxMcmType data type is bit-mask field that describes
the values used to identify the kind of MDA Carrier
module (MCM) installed on the chassis. A TmnxMcmType bit
value specifies the index value for the entry in the
tmnxMcmTypeTable used to identify a specific type of MCM
manufactured by Alcatel. When multiple bits are set, it can
be used to identify a set or list of MCM types used in the
tmnxMcmTable to indicate supported MCMs within a specific
card slot. Some example MCM types are:
unknown -- unknown/uninstalled
mcm-v1 -- MDA Carrier Module version 1
"
SYNTAX Unsigned32
--
-- TmnxSlotNum
--
TmnxSlotNum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxSlotNum data type is an integer that specifies a slot in
an Alcatel 7x50 SR series chassis."
SYNTAX INTEGER (1..128)
TmnxSlotNumOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxSlotNumOrZero data type is an integer that specifies a
slot in an Alcatel 7x50 SR series chassis or zero."
SYNTAX INTEGER (0..128)
--
-- TmnxPortAdminStatus
--
TmnxPortAdminStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The desired administrative status of this port."
SYNTAX INTEGER {
noop (1),
inService (2),
outOfService (3),
diagnose (4)
}
--
-- TmnxChassisMode
--
TmnxChassisMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxChassisMode data type is an enumerated integer that
specifies the values used to identify which set of scaling numbers
and features are effective for an Alcatel 7x50 SR series chassis.
'modeA' corresponds to the scaling and feature set on the existing
iom-20g. 'modeB' corresponds to the scaling and features that come
with iom-20g-b. 'modeC' corresponds to the scaling and features that
come with iom2-20g."
SYNTAX INTEGER {
modeA (1),
modeB (2),
modeC (3)
}
--
-- TmnxSETSRefSource
--
TmnxSETSRefSource ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxSETSRefSource data type is an enumerated integer that
describes the values used to identify the Synchronous Equipment
Timing Subsystem (SETS) timing reference source."
SYNTAX INTEGER {
reference1 (1),
reference2 (2),
bits (3)
}
--
-- TmnxSETSRefQualified
--
TmnxSETSRefQualified ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxSETSRefQualified data type is an enumerated integer that
describes the values used to identify whether the reference is
'qualified' or 'not-qualified' for use by SETS."
SYNTAX INTEGER {
qualified (1),
not-qualified (2)
}
--
-- TmnxSETSRefAlarm
--
TmnxSETSRefAlarm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxSETSRefAlarm data type is a bitmap that describes the values
used to identify the alarms on the SETS timing reference source if
the source is 'not-qualified'.
'los' - loss of signal
'oof' - out of frequency range
'oopir' - out of pull in range."
SYNTAX BITS {
los (0),
oof (1),
oopir (2)
}
--
-- TmnxBITSIfType
--
TmnxBITSIfType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TmnxBITSIfType data type is an enumerated integer that describes
the values used to identify the interface and framing types of a BITS
(Building Integrated Timing Supply) interface."
SYNTAX INTEGER {
none (0),
t1-esf (1),
t1-sf (2),
e1-pcm30crc (3),
e1-pcm31crc (4)
}
--
-- TmnxCcagId
--
TmnxCcagId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"TmnxCcagId is an integer specifying the cross connect aggregation
group. The value '0' is used when a ccag is not defined and is not
a valid value when TmnxCcagId is used as an index."
SYNTAX Integer32 (0|1..8)
--
-- TmnxCcagRate
--
TmnxCcagRate ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"TmnxCcagRate is an integer specifying the rate for a CCAG member in Kbps.
The range of TmnxCcagRate is from 0 Kbps to 100Gbps. The value '-1' is used
for maximum rate available."
SYNTAX Integer32 (-1|0..100000000)
--
-- TmnxCcagRateOption
--
TmnxCcagRateOption ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"TmnxCcagRateOption specifies how the defined rate is
applied to active Cross Connect Adaptors (CCAs).
aggregate (1) - the defined rate is equally divided among the CCAs in
the CCAG member list based on the number of active
CCAs.
cca (2) - the defined rate is applied to all CCAs in the CCAG
member list."
SYNTAX INTEGER {
aggregate (1),
cca (2)
}
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- ALCATEL-IND1-TIMETRA-CHASSIS-MIB at a glance
--
-- timetra (enterprises 6527)
-- timetraProducts (3)
-- tmnxSRMIB (1)
-- tmnxSRConfs (1)
-- tmnxSRObjs (2)
-- tmnxHwObjs (tmnxSRObjs 2)
-- tmnxSRNotifyPrefix (3)
--
--
-- tmnxChassisObjs (tmnxHwObjs 1)
-- tmnxChassisTotalNumber (1)
-- tmnxChassisLastChange (2)
-- tmnxChassisTable (3)
-- tmnxChassisFanTable (4)
-- tmnxChassisPowerSupplyTable (5)
-- tmnxChassisTypeTable (6)
-- tmnxChassisHwLastChange (7)
-- tmnxHwTable (8)
-- tmnxHwContainsTable (9)
-- tmnxCcmTable (10)
-- tmnxCcmTypeTable (11)
--
-- tmnxSlotObjs (2) - not used
--
-- tmnxCardObjs (3)
-- tmnxCardLastChange (1)
-- tmnxCardTable (2)
-- tmnxCpmCardLastChange (3)
-- tmnxCpmCardTable (4)
-- tmnxFabricLastChange (5)
-- tmnxFabricTable (6)
-- tmnxCpmFlashTable (7)
-- tmnxMDATable (8)
-- tmnxCardTypeTable (9)
-- tmnxMdaTypeTable (10)
-- tmnxSyncIfTimingTable (11)
-- tmnxCcagTable (12)
-- tmnxCcagPathTable (13)
-- tmnxCcagPathCcTable (14)
-- tmnxMcmTable (15)
-- tmnxMcmTypeTable (16)
-- tmnxMdaClockDomainTable (17)
--
-- tmnxPortObjs (4)
-- tmnxPppObjs (5)
-- tmnxChassisNotificationObjects (6)
-- tmnxPortNotificationObjects (7)
-- tmnxChassisAdminObjects (8)
-- tmnxFRObjs (9)
-- tmnxQosAppObjs (10)
--
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- The Chassis Group
--
tmnxChassisTotalNumber OBJECT-TYPE
SYNTAX INTEGER (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of chassis installed in this system. For the first
release of the Alcatel 7x50 series product, there is only
1 chassis per system. A multi-chassis system model is supported
to allow for future product expansion."
::= { tmnxChassisObjs 1 }
tmnxChassisLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the tmnxChassisTable was last changed."
::= { tmnxChassisObjs 2 }
tmnxChassisTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxChassisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The chassis table has an entry for each chassis in the system."
::= { tmnxChassisObjs 3 }
tmnxChassisEntry OBJECT-TYPE
SYNTAX TmnxChassisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a chassis in the system. The agent
creates the row for the first chassis in the system, with
tmnxChassisIndex = 1, which is auto-discovered by the active CPM
card. Additional chassis entries can be created and deleted via
SNMP SET operations. Creation requires a SET request containing
at least tmnxChassisAdminMode and tmnxChassisRowStatus. Note
that the first Alcatel 7x50 series product release does not
support multiple chassis, therefore there will not be more
than one row entry in this table; attempts to create additional
rows in this table will be denied."
INDEX { tmnxChassisIndex }
::= { tmnxChassisTable 1 }
TmnxChassisEntry ::=
SEQUENCE {
tmnxChassisIndex TmnxChassisIndex,
tmnxChassisRowStatus RowStatus,
tmnxChassisName TNamedItemOrEmpty,
tmnxChassisType TmnxChassisType,
tmnxChassisLocation TItemDescription,
tmnxChassisCoordinates TItemDescription,
tmnxChassisNumSlots Unsigned32,
tmnxChassisNumPorts Unsigned32,
tmnxChassisNumPwrSupplies Unsigned32,
tmnxChassisNumFanTrays Unsigned32,
tmnxChassisNumFans Unsigned32,
tmnxChassisCriticalLEDState TmnxLEDState,
tmnxChassisMajorLEDState TmnxLEDState,
tmnxChassisMinorLEDState TmnxLEDState,
tmnxChassisBaseMacAddress MacAddress,
tmnxChassisCLLICode DisplayString,
tmnxChassisReboot TmnxActionType,
tmnxChassisUpgrade TmnxActionType,
tmnxChassisAdminMode TmnxChassisMode,
tmnxChassisOperMode TmnxChassisMode,
tmnxChassisModeForce TmnxActionType,
tmnxChassisUpdateWaitTime Unsigned32,
tmnxChassisUpdateTimeLeft Unsigned32,
tmnxChassisOverTempState INTEGER
}
tmnxChassisIndex OBJECT-TYPE
SYNTAX TmnxChassisIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this chassis in the system.
The first release of the product only supports a single chassis
in the system."
::= { tmnxChassisEntry 1 }
tmnxChassisRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status. The creation or deletion of a chassis entry causes
creation or deletion of corresponding entries in the tmnxCardTable with
the same tmnxChassisIndex value. Note, the agent will disallow
chassis deletion if its entries in the card table have not first been
put into the proper state for removal. The row entry for
tmnxChassisIndex equal 1 cannot be deleted."
::= { tmnxChassisEntry 2 }
tmnxChassisName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative name assigned this chassis. Setting
tmnxChassisName to the empty string, ''H, resets tmnxChassisName
to the TiMOS default value."
DEFVAL { ''H }
::= { tmnxChassisEntry 3 }
tmnxChassisType OBJECT-TYPE
SYNTAX TmnxChassisType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of chassis used in this Alcatel 7x50 system. The value of
tmnxChassisType is the tmnxChassisTypeIndex for the entry in the
tmnxChassisTypeTable that represents the Alcatel 7x50 SR series
chassis model for this system. Chassis types are distinguished
by their backplane type."
::= { tmnxChassisEntry 4 }
tmnxChassisLocation OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A user supplied string that indicates the on site location of this
chassis. This could used for a Common Language Location Identifier,
CLLI, code string if desired.
A CLLI code is an 11-character standardized geographic identifier that
uniquely identifies the geographic location of places and certain
functional categories of equipment unique to the telecommunications
industry.
All valid CLLI codes are created, updated and maintained in the
Central Location Online Entry System (CLONES) database."
DEFVAL { ''H }
::= { tmnxChassisEntry 5 }
tmnxChassisCoordinates OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A user supplied string that indicates the Global Positioning
System (GPS) coordinates for the location of this chassis.
N 45 58 23, W 34 56 12
N37 37' 00 latitude, W122 22' 00 longitude
N36*39.246' W121*40.121'
Two-dimensional GPS positioning offers latitude and longitude
information as a four dimensional vector:
<Direction, hours, minutes, seconds>
where Direction is one of the four basic values: N, S, W, E; hours
ranges from 0 to 180 (for latitude) and 0 to 90 for longitude, and,
finally, minutes and seconds range from 0 to 60.
Thus <W, 122, 56, 89> is an example of longitude and <N, 85, 66, 43>
is an example of latitude.
Four bytes of addressing space (one byte for each of the four
dimensions) are necessary to store latitude and four bytes are also
sufficient to store longitude. Thus eight bytes total are necessary
to address the whole surface of earth with precision down to 0.1
mile! Notice that if we desired precision down to 0.001 mile (1.8
meters) then we would need just five bytes for each component, or ten
bytes together for the full address (as military versions provide)."
DEFVAL { ''H }
::= { tmnxChassisEntry 6 }
tmnxChassisNumSlots OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of slots in this chassis that are available for plug-in
cards. This includes both fabric and IOM cards"
::= { tmnxChassisEntry 7 }
tmnxChassisNumPorts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ports currently installed in this chassis.
This count does not include the Ethernet ports on the CPM cards
that are used for management access."
::= { tmnxChassisEntry 8 }
tmnxChassisNumPwrSupplies OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of power supplies installed in this chassis."
::= { tmnxChassisEntry 9 }
tmnxChassisNumFanTrays OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of fan trays installed in this chassis."
::= { tmnxChassisEntry 10 }
tmnxChassisNumFans OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of fans installed in this chassis."
::= { tmnxChassisEntry 11 }
tmnxChassisCriticalLEDState OBJECT-TYPE
SYNTAX TmnxLEDState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Critical LED in this chassis."
::= { tmnxChassisEntry 12 }
tmnxChassisMajorLEDState OBJECT-TYPE
SYNTAX TmnxLEDState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Major LED in this chassis."
::= { tmnxChassisEntry 13 }
tmnxChassisMinorLEDState OBJECT-TYPE
SYNTAX TmnxLEDState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Minor LED in this chassis."
::= { tmnxChassisEntry 14 }
tmnxChassisBaseMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The base chassis ethernet MAC address. Special purpose MAC
addresses used by the system software are constructed as
offsets from this base address."
::= { tmnxChassisEntry 15 }
tmnxChassisCLLICode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A Common Language Location Identifier (CLLI) code is an 11-character
standardized geographic identifier that uniquely identifies the
geographic location of places and certain functional categories of
equipment unique to the telecommunications industry.
If the set on this object specifies a non-null string, the string will
automatically be truncated or padded(with spaces) to 11 characters."
::= { tmnxChassisEntry 16 }
tmnxChassisReboot OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting this tmnxChassisReboot to 'doAction' causes a soft-reboot
of the entire chassis including all the CPM and IOM cards.
Note that the reboot action is likely to occur before the SNMP
SET response can be transmitted."
DEFVAL { notApplicable }
::= { tmnxChassisEntry 17 }
tmnxChassisUpgrade OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting this tmnxChassisUpgrade to 'doAction' causes an upgrade
of all firmware and a reboot of the entire chassis including all
the CPM and IOM cards.
CAUTION: This upgrade and reboot may take several minutes to
complete. The chassis MUST NOT be reset or powered down,
nor cards inserted or removed, during this process. Any of
these prohibited actions may cause the cards to be rendered
inoperable.
tmnxChassisUpgrade and tmnxChassisReboot must be set
together in the same SNMP SET request PDU or else the SET request
will fail with an inconsistentValue error.
Note that the reboot action is likely to occur before the SNMP
SET response can be transmitted."
DEFVAL { notApplicable }
::= { tmnxChassisEntry 18 }
tmnxChassisAdminMode OBJECT-TYPE
SYNTAX TmnxChassisMode
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxChassisAdminMode specifies the scaling and feature
set for the IOM cards in the chassis. Setting this variable to
'modeA' causes all IOM cards in the chassis to use the scaling
and feature sets supported on the iom-20g card type. Setting
tmnxChassisAdminMode to 'modeB' corresponds to the scaling and feature
sets supported on the iom-20g-b card type. 'modeC' corresponds to the
scaling and feature sets supported on the iom2-20g card type.
An attempt to change the value of tmnxChassisAdminMode from 'modeA'
to 'modeB' (upgrade) or 'modeC' (upgrade) without also setting
tmnxChassisModeForce to a value of 'doAction' in the same SNMP SET
request, will fail with an inconsistentValue error if there are any IOM
cards in the chassis with a value of 'iom-20g' for tmnxCardAssignedType.
An attempt to change the value of tmnxChassisAdminMode from 'modeB'
to 'modeC' (upgrade) without also setting tmnxChassisModeForce to
a value of 'doAction' in the same SNMP SET request, will fail with an
inconsistentValue error if there are any IOM cards in the chassis with
a value of 'iom-20g-b' for tmnxCardAssignedType.
'modeB' scaling and feature sets cannot be supported on the iom-20g
card. 'modeC' scaling feature set cannot be supported on either on
the iom-20g or the iom-20g-b."
DEFVAL { modeA }
::= { tmnxChassisEntry 19 }
tmnxChassisOperMode OBJECT-TYPE
SYNTAX TmnxChassisMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxChassisOperMode indicates the operational scaling
and feature set for the IOM cards in the chassis. Changing the value
of tmnxChassisAdminMode from 'modeB' to 'modeA' (downgrade) will
result in tmnxChassisAdminMode indicating 'modeA' while
tmnxChassisOperMode indicates 'modeB' untill the configuration is
saved and the system rebooted, at which point, the actual downgrade
will take effect.
Changing the value of tmnxChassisAdminMode from 'modeC' to either
'modeB' (downgrade) or 'modeA' (downgrade) will result in
tmnxChassisAdminMode indicating 'modeB' or 'modeA' respectively while
tmnxChassisOperMode indicates 'modeC' untill the configuration is
saved and the system rebooted, at which point, the actual downgrade
will take effect.
'modeB' scaling and feature sets cannot be supported on the iom-20g
card. 'modeC' scaling feature set cannot be supported on either on
the iom-20g or the iom-20g-b."
::= { tmnxChassisEntry 20 }
tmnxChassisModeForce OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting tmnxChassisModeForce to a value of 'doAction' in the
same SNMP SET request where tmnxChassisAdminMode is set to 'modeB'
allows the chassis to be upgraded to 'modeB' even if there are
IOM cards in the chassis with a value of 'iom-20g' for
tmnxCardAssignedType.
Setting tmnxChassisModeForce to a value of 'doAction' in the
same SNMP SET request where tmnxChassisAdminMode is set to 'modeC'
allows the chassis to be upgraded to 'modeC' even if there are
IOM cards in the chassis with a value of 'iom2-20g' for
tmnxCardAssignedType.
An attempt to set tmnxChassisModeForce to 'doAction' without
also setting tmnxChassisAdminMode, in the same SNMP SET request
will fail with an inconsistentValue error.
-----------------------------------------------------------------------
Mode change | Assigned card | Force | Result
-----------------------------------------------------------------------
a to b (upgrade) | iom-20g | not-set | error
a to b (upgrade) | iom-20g | set | mode b with warnings
a to b (upgrade) | iom-20g-b | not-set | mode b
a to b (upgrade) | iom-20g-b | set | mode b
a to c (upgrade) | iom-20g | not-set | error
a to c (upgrade) | iom-20g | set | mode c with warnings
a to c (upgrade) | iom2-20g | not-set | mode c
a to c (upgrade) | iom2-20g | set | mode c
b to c (upgrade) | iom-20g-b | not-set | error
b to c (upgrade) | iom-20g-b | set | mode c with warnings
b to c (upgrade) | iom2-20g | not-set | mode c
b to c (upgrade) | iom2-20g | set | mode c
b to a (downgrade)| iom-20g | not-set | mode a on save and reboot
b to a (downgrade)| iom-20g | set | mode a on save and reboot
b to a (downgrade)| iom-20g-b | not-set | mode a on save and reboot
b to a (downgrade)| iom-20g-b | set | mode a on save and reboot
c to a (downgrade)| iom-20g | not-set | mode a on save and reboot
c to a (downgrade)| iom-20g | set | mode a on save and reboot
c to a (downgrade)| iom2-20g | not-set | mode a on save and reboot
c to a (downgrade)| iom2-20g | set | mode a on save and reboot
c to b (downgrade)| iom-20g-b | not-set | mode b on save and reboot
c to b (downgrade)| iom-20g-b | set | mode b on save and reboot
c to b (downgrade)| iom2-20g | not-set | mode b on save and reboot
c to b (downgrade)| iom2-20g | set | mode b on save and reboot
-----------------------------------------------------------------------"
DEFVAL { notApplicable }
::= { tmnxChassisEntry 21 }
tmnxChassisUpdateWaitTime OBJECT-TYPE
SYNTAX Unsigned32 (15..600)
UNITS "seconds"
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxChassisUpdateWaitTime specifies the time to wait
before rebooting IOM cards running older software versions following
a software upgrade or downgrade activity switchover. This object
was obsoleted in release 5.0."
DEFVAL { 15 }
::= { tmnxChassisEntry 22 }
tmnxChassisUpdateTimeLeft OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Following a software upgrade or downgrade activity switchover,
the value of tmnxChassisUpdateTimeLeft indicates the time remaining
before IOM cards or MDAs running older software versions will be
rebooted."
::= { tmnxChassisEntry 23 }
tmnxChassisOverTempState OBJECT-TYPE
SYNTAX INTEGER {
stateOk (1),
stateOverTemp (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Over Temperature state of this chassis.
stateOk Indicates chassis is below the temperature threshold.
stateOverTemp Indicates chassis is above the temperature threshold.
"
::= { tmnxChassisEntry 24 }
--
-- Fan Table
--
tmnxChassisFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxChassisFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about fan trays."
::= { tmnxChassisObjs 4 }
tmnxChassisFanEntry OBJECT-TYPE
SYNTAX TmnxChassisFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains information regarding a fan tray."
INDEX { tmnxChassisIndex, tmnxChassisFanIndex }
::= { tmnxChassisFanTable 1 }
TmnxChassisFanEntry ::=
SEQUENCE {
tmnxChassisFanIndex Unsigned32,
tmnxChassisFanOperStatus TmnxDeviceState,
tmnxChassisFanSpeed INTEGER
}
tmnxChassisFanIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..31)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies a specific fan tray in the
chassis."
::= { tmnxChassisFanEntry 1 }
tmnxChassisFanOperStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the Fan tray."
::= { tmnxChassisFanEntry 2 }
tmnxChassisFanSpeed OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
halfSpeed (2),
fullSpeed (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxChassisFanSpeed indicates if the fans in this
fan tray are running at 'halfSpeed' or 'fullSpeed'."
::= { tmnxChassisFanEntry 3 }
--
-- Power Supply table
--
tmnxChassisPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxChassisPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about power supply trays."
::= { tmnxChassisObjs 5 }
tmnxChassisPowerSupplyEntry OBJECT-TYPE
SYNTAX TmnxChassisPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains information regarding a power supply tray."
INDEX { tmnxChassisIndex, tmnxChassisPowerSupplyId }
::= { tmnxChassisPowerSupplyTable 1 }
TmnxChassisPowerSupplyEntry ::=
SEQUENCE {
tmnxChassisPowerSupplyId Unsigned32,
tmnxChassisPowerSupplyACStatus TmnxDeviceState,
tmnxChassisPowerSupplyDCStatus TmnxDeviceState,
tmnxChassisPowerSupplyTempStatus TmnxDeviceState,
tmnxChassisPowerSupplyTempThreshold Integer32,
tmnxChassisPowerSupply1Status TmnxDeviceState,
tmnxChassisPowerSupply2Status TmnxDeviceState,
tmnxChassisPowerSupplyAssignedType INTEGER,
tmnxChassisPowerSupplyInputStatus TmnxDeviceState,
tmnxChassisPowerSupplyOutputStatus TmnxDeviceState
}
tmnxChassisPowerSupplyId OBJECT-TYPE
SYNTAX Unsigned32 (1..31)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique identifier index for a power supply tray in the chassis."
::= { tmnxChassisPowerSupplyEntry 1 }
tmnxChassisPowerSupplyACStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of tmnxChassisPowerSupplyACStatus is 'deviceStateOk',
the input AC voltage is within range. If the value is
'deviceStateFailed', an AC voltage out of range condition has been
detected. A value of 'deviceNotEquipped' indicates that the AC
power supply is not present."
::= { tmnxChassisPowerSupplyEntry 2 }
tmnxChassisPowerSupplyDCStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of tmnxChassisPowerSupplyDCStatus is 'deviceStateOk',
the input DC voltage is within range. If the value is
'deviceStateFailed', an DC voltage out of range condition has been
detected. A value of 'deviceNotEquipped' indicates that the DC
power supply is not present."
::= { tmnxChassisPowerSupplyEntry 3 }
tmnxChassisPowerSupplyTempStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of tmnxChassisPowerSupplyTempStatus is 'deviceStateOk',
the current temperature is within acceptable range. If the value is
'deviceStateFailed', a temperature too high condition has been
detected."
::= { tmnxChassisPowerSupplyEntry 4 }
tmnxChassisPowerSupplyTempThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature threshold for this power supply tray in degrees
celsius. When the temperature raises above
tmnxChassisPowerSupplyTempThreshold, a 'temperature too high'
event will be generated."
::= { tmnxChassisPowerSupplyEntry 5 }
tmnxChassisPowerSupply1Status OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall status of an equipped power supply. For AC multiple power
supplies, this represents the overall status of the first power supply
in the tray (or shelf). For any other type, this represents the overall
status of the power supply. If tmnxChassisPowerSupply1Status is
'deviceStateOk', then all monitored statuses are 'deviceStateOk'. A
value of 'deviceStateFailed' represents a condition where at least one
monitored status is in a failed state."
::= { tmnxChassisPowerSupplyEntry 6 }
tmnxChassisPowerSupply2Status OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall status of an equipped power supply. For AC multiple power
supplies, this represents the overall status of the second power supply
in the tray (or shelf). For any other type, this field is unused and
set to 'deviceNotEquipped'. If tmnxChassisPowerSupply2Status is
'deviceStateOk', then all monitored statuses are 'deviceStateOk'. A
value of 'deviceStateFailed' represents a condition where at least one
monitored status is in a failed state."
::= { tmnxChassisPowerSupplyEntry 7 }
tmnxChassisPowerSupplyAssignedType OBJECT-TYPE
SYNTAX INTEGER {
none (0),
dc (1),
acSingle (2),
acMultiple (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tmnxChassisPowerSupplyAssignedType configures the type of power supply
for a platform. Based on the value assigned to this object, various
power supply monitoring signals will be interpreted. For example, if
a platform is provisioned to use DC power supplies, then the signal
that indicates an AC power supply is missing can be ignored.
This is required for proper generation of traps and LED management."
::= { tmnxChassisPowerSupplyEntry 8 }
tmnxChassisPowerSupplyInputStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of tmnxChassisPowerSupplyInputStatus is 'deviceStateOk',
the input voltage of the power supply is within range. If the value
is 'deviceStateFailed', an input voltage out of range condition has
been detected. A value of 'deviceNotEquipped' indicates that the power
supply is not present."
::= { tmnxChassisPowerSupplyEntry 9 }
tmnxChassisPowerSupplyOutputStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of tmnxChassisPowerSupplyOutputStatus is 'deviceStateOk',
the output voltage of the power supply is within range. If the value
is 'deviceStateFailed', an output voltage out of range condition has
been detected. A value of 'deviceNotEquipped' indicates that the power
supply is not present."
::= { tmnxChassisPowerSupplyEntry 10 }
--
-- Alcatel 7x50 SR series Chassis Type Defintion Table
--
tmnxChassisTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxChassisTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The chassis type table has an entry for each Alcatel 7x50 SR series
chassis model."
::= { tmnxChassisObjs 6 }
tmnxChassisTypeEntry OBJECT-TYPE
SYNTAX TmnxChassisTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an Alcatel 7x50 SR series Chassis model.
Rows in this table are created by the agent at initialization and
cannot be created or destroyed by SNMP Get or Set requests."
INDEX { tmnxChassisTypeIndex }
::= { tmnxChassisTypeTable 1 }
TmnxChassisTypeEntry ::=
SEQUENCE {
tmnxChassisTypeIndex TmnxChassisType,
tmnxChassisTypeName TNamedItemOrEmpty,
tmnxChassisTypeDescription TItemDescription,
tmnxChassisTypeStatus TruthValue
}
tmnxChassisTypeIndex OBJECT-TYPE
SYNTAX TmnxChassisType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index value which identifies this type of Alcatel
7x50 SR series chassis model."
::= { tmnxChassisTypeEntry 1 }
tmnxChassisTypeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative name that identifies this type of Alcatel
7x50 SR series chassis model. This name string may be used in
CLI commands to specify a particular chassis model type."
::= { tmnxChassisTypeEntry 2 }
tmnxChassisTypeDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A detailed description of this Alcatel 7x50 SR series chassis model."
::= { tmnxChassisTypeEntry 3 }
tmnxChassisTypeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When tmnxChassisTypeStatus has a value of 'true' it indicates that
this chassis model is supported in this revision of the management
software. When it has a value of 'false' there is no support."
::= { tmnxChassisTypeEntry 4 }
--
-- Alcatel 7x50 SR series Hardware Components Table
--
tmnxHwLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the tmnxHwTable was last changed."
::= { tmnxChassisObjs 7 }
tmnxHwTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxHwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxHwTable has an entry for each managed hardware component
in the Alcatel 7x50 SR series system's chassis. Examples of
these hardware component types are IOM, Fabric, and CPM cards,
MCM and CCM, and MDA modules. Similar information for physical ports
is in the tmnxPortObjs."
::= { tmnxChassisObjs 8 }
tmnxHwEntry OBJECT-TYPE
SYNTAX TmnxHwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an Alcatel 7x50 SR series manufactured
hardware component. Entries cannot be created and deleted via
SNMP SET operations. When an entry is created in one of the
card tables, IOM, CPM, Fabric or MDA, a tmnxHwEntry is created
for the common hardware management information for that card
in that chassis. When the card is removed from the chassis,
its corresponding tmnxHwEntry is deleted.
The tmnxHwIndex is bitmapped:
| 32 25 | 24 17 | 16 9 | 8 1 |
+-------------+-------------+-------------+-------------+
| TmnxHwClass | 00000000 | Slot | number |
+-------------+-------------+-------------+-------------+
The Slot field is only used for components on cards in
slots. It is zero for all others.
The number field starts from 1 and indicates which component.
E.g. Power supply 1 or 2."
INDEX { tmnxChassisIndex, tmnxHwIndex }
::= { tmnxHwTable 1 }
TmnxHwEntry ::=
SEQUENCE {
tmnxHwIndex TmnxHwIndex,
tmnxHwID RowPointer,
tmnxHwMfgString SnmpAdminString,
tmnxHwMfgBoardNumber OCTET STRING,
tmnxHwSerialNumber SnmpAdminString,
tmnxHwManufactureDate SnmpAdminString,
tmnxHwClass TmnxHwClass,
tmnxHwName TNamedItemOrEmpty,
tmnxHwAlias TNamedItemOrEmpty,
tmnxHwAssetID SnmpAdminString,
tmnxHwCLEI SnmpAdminString,
tmnxHwIsFRU TruthValue,
tmnxHwContainedIn Integer32,
tmnxHwParentRelPos Integer32,
tmnxHwAdminState INTEGER,
tmnxHwOperState INTEGER,
tmnxHwTempSensor TruthValue,
tmnxHwTemperature Integer32,
tmnxHwTempThreshold Integer32,
tmnxHwBootCodeVersion DisplayString,
tmnxHwSoftwareCodeVersion DisplayString,
tmnxHwSwLastBoot DateAndTime,
tmnxHwSwState INTEGER,
tmnxHwAlarmState TmnxAlarmState,
tmnxHwLastAlarmEvent RowPointer,
tmnxHwClearAlarms TmnxActionType,
tmnxHwSwImageSource INTEGER,
tmnxHwMfgDeviations SnmpAdminString,
tmnxHwBaseMacAddress MacAddress,
tmnxHwFailureReason DisplayString
}
tmnxHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxHwIndex is a unique index that identifies
common management information for Alcatel 7x50 SR series
manufactured hardware components within the specified chassis."
::= { tmnxHwEntry 1 }
tmnxHwID OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwID is an object identifier that points to
the table and row entry with additional management information
specific to this hardware component's class."
::= { tmnxHwEntry 2 }
tmnxHwMfgString OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..253))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tmnxHwMfgString contains unspecified Alcatel 7x50 SR series
manufacturing information and includes the Alcatel vendor information."
::= { tmnxHwEntry 3 }
tmnxHwMfgBoardNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tmnxHwMfgBoardNumber contains the part number information."
::= { tmnxHwEntry 4 }
tmnxHwSerialNumber OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Alcatel 7x50 SR series serial number of the hardware
component."
::= { tmnxHwEntry 5 }
tmnxHwManufactureDate OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturing date of the hardware component in 'mmddyyyy'
ascii format."
::= { tmnxHwEntry 6 }
tmnxHwClass OBJECT-TYPE
SYNTAX TmnxHwClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwClass indicates the general hardware type of this
component. If no appropriate enumeration exists for this hardware
component then the value 'other (1)' is used. If the agent cannot
identify this hardware component then the value 'unknown (2)' is
used."
::= { tmnxHwEntry 7 }
tmnxHwName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwName is the name of the component as assigned
by the system software itself and is suitable for use in CLI commands.
This may be a text name such as 'console' or a port ID such as '2/2'.
If there is no predefined name then a zero length string is returned.
Note that the value of tmnxHwName for two component entries will
be the same if the CLI does not distinguish between them, e.g. the
chassis slot-1 and the card in slot-1."
::= { tmnxHwEntry 8 }
tmnxHwAlias OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxHwAlias is the administrative name assigned to this
hardware component by the CLI user or network manager. It is saved
across re-initializations and reboots of the system."
DEFVAL { ''H }
::= { tmnxHwEntry 9 }
tmnxHwAssetID OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxHwAssetID is an administratively assigned asset
tracking identifier for this hardware component. It is saved across
re-initializations and reboots of the system. If no asset tracking
information is associated with this hardware component, a zero-length
string is returned to an SNMP get request.
Some hardware components do not have asset tracking identifiers.
Components for which tmnxHwIsFRU has a value of 'false' do not
need their own unique asset tracking identifier. In this case, the
agent denies write access to this object and returns a zero-length
string to an SNMP get request."
DEFVAL { ''H }
::= { tmnxHwEntry 10 }
tmnxHwCLEI OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Common Language Equipment Identifier, CLEI, code is a unique
10-character identifier, that is fixed by the manufacturer. It
consists of ten alphanumeric characters. The first seven characters
present a concise summary of an equipment entity's circuit or
transport capabilities, e.g., functional, electrical, bandwidth, etc.
CLEI codes for plug-in or portable equipment with the same first
seven characters (CLEI-7) are considered bidirectionally
interchangeable and group under a G level record. Most licensees
plug-in inventories and records are controlled at the group level.
The eighth character denotes the reference source used for coding
the item, and the last two characters denote manufacturing vintage
or version, and other complemental information.
A ten-character CLEI code that is developed for a specific piece of
equipment is unique within the CLEI code universe and is used in A
level records; the code is not assigned to any other equipment piece.
Equipment is coded to a first or major application. When the same
equipment is usable in another application or system, it is not
recorded nor are additional codes developed for that purpose."
REFERENCE
"Bellcore (Telcordia Technologies) GR-485."
::= { tmnxHwEntry 11 }
tmnxHwIsFRU OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwIsFRU indicates whether or not this hardware
component is a Field Replaceable Unit (FRU) or not. Those components
that are permanently contained within a FRU have a value of 'false'."
::= { tmnxHwEntry 12 }
tmnxHwContainedIn OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwContainedIn is the tmnxHwIndex value for the
row entry of the hardware component that contains this component.
A value of zero indicates that this component is not contained in any
other component."
::= { tmnxHwEntry 13 }
tmnxHwParentRelPos OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwParentRelPos indicates the relative position of
this hardware component among all its 'sibling' components. A sibling
component shares the same instance values for tmnxHwContainedIn and
tmnxHwClass objects.
If the associated value of tmnxHwContainedIn is zero, then the value -1
is returned."
::= { tmnxHwEntry 14 }
tmnxHwAdminState OBJECT-TYPE
SYNTAX INTEGER {
noop (1),
inService (2),
outOfService (3),
diagnose (4),
operateSwitch (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired administrative status of this hardware component. Write
access will be denied for those components that do not have
administrative status. An attempt to set tmnxHwAdminState to
'operateSwitch (5)' will fail if the hardware component is not part
of a redundant pair. Some examples of redundant hardware are the
CPM cards and fabric cards."
DEFVAL { noop }
::= { tmnxHwEntry 15 }
tmnxHwOperState OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
inService (2),
outOfService (3),
diagnosing (4),
failed (5),
booting (6),
empty (7),
provisioned (8),
unprovisioned (9),
upgrade (10),
downgrade (11),
inServiceUpgrade (12),
inServiceDowngrade (13),
resetPending (14)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual operational status of this hardware component.
unknown (1) Status cannot be determined
inService (2) Online - If tmnxHwClass has a value of
'ioModule (8)' or 'cpmModule (9), the
card is present, booted, configured,
and running.
outOfService (3) Ready - The hardware component is OK
but is down because tmnxHwAdminState has
a value of 'outOfService (3)'.
diagnosing (4) Not implemented.
failed (5) This hardware component has failed. The
value of tmnxHwFailureReason indicates
the type of failure. If tmnxHwClass has
a value of 'ioModule(8)' or 'cpmModule(9)',
there is a card in the slot but it has
failed.
booting (6) A card is in the transitional startup state.
empty (7) There is no card in the slot and it has
not been pre-configured.
provisioned (8) There is no card in the slot but it has
been pre-configured.
unprovisioned (9) There is a card in the slot but it is not
configured.
upgrade (10) Card software version is compatible with
and newer than that running on the current
active CPM.
downgrade (11) Card software version is compatible with
and older than that running on the current
active CPM.
inServiceUpgrade (12) Card is inService and the card software
version is compatible with and newer than
that running on the current active CPM.
This state applies only to a standby CPM
card. This enumeration is no longer
supported as of release 5.0.
inServiceDowngrade (13) Card is inService and the card software
is compatible with and older than that
running on the current active CPM. This
state applies only to a standby CPM card.
This enumeration is no longer supported
as of release 5.0.
resetPending (14) Card is awaiting reset following an
upgrade or downgrade activity switch.
The card software version is upgrade
or downgrade compatible but will be reset
in order to update it to match the active
CPM software. The value of
tmnxChassisUpdateWaitTime indicates the
how long the system will wait following
an upgrade or downgrade activity switch
before it resets IOM cards. This state
applies only to IOM cards. This
enumeration is no longer supported as of
release 5.0.
"
::= { tmnxHwEntry 16 }
tmnxHwTempSensor OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwTempSensor indicates whether or not this
hardware component contains a temperature sensor."
::= { tmnxHwEntry 17 }
tmnxHwTemperature OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current temperature reading in degrees celsius from this hardware
component's temperature sensor. If this component does not contain
a temperature sensor, then the value -1 is returned."
::= { tmnxHwEntry 18 }
tmnxHwTempThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature threshold for this hardware component in degrees
celsius. When the value of tmnxHwTemperature raises above
tmnxHwTempThreshold, a 'temperature too high' event will
be generated."
::= { tmnxHwEntry 19 }
tmnxHwBootCodeVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version number of boot eprom on the card in this slot.
If no specific software program is associated with this hardware
component then this object will contain a zero length string."
::= { tmnxHwEntry 20 }
tmnxHwSoftwareCodeVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software product release version number for the software image
currently running on this IOM or CPM card.
If no specific software program is associated with this hardware
component then this object will contain a zero length string."
::= { tmnxHwEntry 21 }
tmnxHwSwLastBoot OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time the software running on this IOM or CPM card was
last rebooted.
If this row entry represents a standby CPM card, the date and time
indicated is when the standby completed its initial synchronization
process and became ready to take over in case the active card fails
or a manual switchover command is issued."
::= { tmnxHwEntry 22 }
tmnxHwSwState OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
hwFailure (1),
swFailure (2),
hwInitting (3),
swDownloading (4),
swInitting (5),
swInitted (6),
swRunning (7)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The state of the software running on this IOM or CPM card.
The tmnxHwSwState object is obsolete. The Alcatel 7x50 platform
cannot distinguish software status separate from the hardware
status. Instead of using this object, additional operational
states have been added to tmnxHwOperState.
If no specific software program is associated with this hardware
component then this object will contain a zero."
::= { tmnxHwEntry 23 }
tmnxHwAlarmState OBJECT-TYPE
SYNTAX TmnxAlarmState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwAlarmState indicates the current alarm
state for this hardware component."
::= { tmnxHwEntry 24 }
tmnxHwLastAlarmEvent OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwLastAlarmEvent is an object identifier whose
object name and instance values point to the row entry in the
ALARM-MIB that contains the most recent alarm event associated with
this hardware component. If the tmnxHwAlarmState has a value of
'alarmCleared', the most recent alarm event will be in the
nlmAlarmClearedTable. If it has a value of 'alarmActive', the
entry pointed to is in the nlmAlarmActiveTable. If the value of
tmnxHwLastAlarmEvent is '0.0', then either there have not been any
alarm events associated with this chassis since the system was
last booted, or the last alarm event has aged out and its entry is
no longer available in the ALARM-MIB tables."
::= { tmnxHwEntry 25 }
tmnxHwClearAlarms OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this action variable causes all the active alarms associated
with this hardware component to be moved from the ALARM-MIB
nlmActiveAlarmTable to the nlmClearedAlarmTable. This action button
is primarily meant for use as a code development aid. This object may
be removed from the ALCATEL-IND1-TIMETRA-CHASSIS-MIB before product release."
DEFVAL { notApplicable }
::= { tmnxHwEntry 26 }
tmnxHwSwImageSource OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
primary (1),
secondary (2),
tertiary (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwSwImageSource indicates the location in the
Boot Options File (BOF) where the software image file was found
when the system last rebooted."
::= { tmnxHwEntry 27 }
tmnxHwMfgDeviations OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxHwMfgDeviations contains a record of changes done by the
manufacturing to the hardware or software and which is outside the
normal revision control process."
::= { tmnxHwEntry 28 }
tmnxHwBaseMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxHwBaseMacAddress contains the base MAC address of the hardware
component. It is applicable only if tmnxHwClass is of type 'chassis',
'ioModule', 'cpmModule' or 'mdaModule'."
::= { tmnxHwEntry 29 }
tmnxHwFailureReason OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxHwFailureReason indicates the reason why a hardware component
'failed' as indicated in tmnxHwOperState."
::= { tmnxHwEntry 30 }
--
-- Alcatel 7x50 SR series Hardware Components Containment Table
--
tmnxHwContainsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxHwContainsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxHwContainsTable shows the container/containee relationship
between entries in the tmnxHwTable. The hardware component
containment tree can be constructed from information in the
tmnxHwTable, but this table provides the information in a more
convenient format for the manager system to use."
::= { tmnxChassisObjs 9 }
tmnxHwContainsEntry OBJECT-TYPE
SYNTAX TmnxHwContainsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a single container/containee relationship.
Entries cannot be created and deleted via SNMP SET operations."
INDEX { tmnxHwIndex, tmnxHwContainedIndex }
::= { tmnxHwContainsTable 1 }
TmnxHwContainsEntry ::=
SEQUENCE {
tmnxHwContainedIndex TmnxHwIndex
}
tmnxHwContainedIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwIndex for the contained hardware component."
::= { tmnxHwContainsEntry 1 }
--
-- Alcatel 7710 SR series Chassis Control Module (CCM) Table
--
tmnxCcmTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCcmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about CCM."
::= { tmnxChassisObjs 10 }
tmnxCcmEntry OBJECT-TYPE
SYNTAX TmnxCcmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains information regarding a CCM."
INDEX { tmnxChassisIndex, tmnxCcmIndex }
::= { tmnxCcmTable 1 }
TmnxCcmEntry ::=
SEQUENCE {
tmnxCcmIndex Unsigned32,
tmnxCcmOperStatus TmnxDeviceState,
tmnxCcmHwIndex TmnxHwIndex,
tmnxCcmEquippedType TmnxCcmType
}
tmnxCcmIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies a specific CCM instance in the
chassis."
::= { tmnxCcmEntry 1 }
tmnxCcmOperStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the CCM."
::= { tmnxCcmEntry 2 }
tmnxCcmHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcmHwIndex is the index into the tmnxHwTable
for the row entry that represents the hardware component information
for this CCM."
::= { tmnxCcmEntry 3 }
tmnxCcmEquippedType OBJECT-TYPE
SYNTAX TmnxCcmType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that identifies the CCM type that is physically
inserted into this chassis. There will not be more than one
bit set at a time in tmnxCcmEquippedType."
::= { tmnxCcmEntry 4 }
--
-- Chassis Control Module Type (CCM) Definition Table
--
tmnxCcmTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCcmTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The card type table has an entry for each Alcatel 7710 series
Chassis Control Module (CCM) model."
::= { tmnxChassisObjs 11 }
tmnxCcmTypeEntry OBJECT-TYPE
SYNTAX TmnxCcmTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an Alcatel 7710 series CCM model.
Rows in this table are created by the agent at initialization and
cannot be created or destroyed by SNMP Get or Set requests."
INDEX { tmnxCcmTypeIndex }
::= { tmnxCcmTypeTable 1 }
TmnxCcmTypeEntry ::=
SEQUENCE {
tmnxCcmTypeIndex TmnxCcmType,
tmnxCcmTypeName TNamedItemOrEmpty,
tmnxCcmTypeDescription TItemDescription,
tmnxCcmTypeStatus TruthValue
}
tmnxCcmTypeIndex OBJECT-TYPE
SYNTAX TmnxCcmType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index value which identifies this type of Alcatel
7710 series CCM model."
::= { tmnxCcmTypeEntry 1 }
tmnxCcmTypeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative name that identifies this type of Alcatel
7710 series CCM model. This name string may be used in CLI
commands to specify a particular card model type."
::= { tmnxCcmTypeEntry 2 }
tmnxCcmTypeDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A detailed description of this Alcatel 7710 series CCM model."
::= { tmnxCcmTypeEntry 3 }
tmnxCcmTypeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When tmnxCcmTypeStatus has a value of 'true' it
indicates that this CCM is supported in this revision of the
management software. When it has a value of 'false' there is no
support."
::= { tmnxCcmTypeEntry 4 }
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- Alcatel 7x50 SR series Card Objects
--
--
-- IOM Card Table - The tmnxCardTable contains information
-- about the IOM cards in a chassis.
--
tmnxCardLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the tmnxCardTable was last changed."
::= { tmnxCardObjs 1 }
tmnxCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxCardTable has an entry for each IOM card slot in each
chassis in the TMNX system."
::= { tmnxCardObjs 2 }
tmnxCardEntry OBJECT-TYPE
SYNTAX TmnxCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an IOM card slot in a chassis in the
system. Entries cannot be created and deleted via SNMP SET
operations. When a tmnxChassisEntry is created, a tmnxCardEntry
is created for each IOM card slot in that chassis. Before a
tmnxChassisEntry can be deleted, each tmnxCardEntry for that
chassis must be in the proper state for removal."
INDEX { tmnxChassisIndex, tmnxCardSlotNum }
::= { tmnxCardTable 1 }
TmnxCardEntry ::=
SEQUENCE {
tmnxCardSlotNum TmnxSlotNum,
tmnxCardSupportedTypes TmnxCardType,
tmnxCardAllowedTypes TmnxCardType,
tmnxCardAssignedType TmnxCardType,
tmnxCardEquippedType TmnxCardType,
tmnxCardHwIndex TmnxHwIndex,
tmnxCardClockSource TItemDescription,
tmnxCardNumMdaSlots Unsigned32,
tmnxCardNumMdas Unsigned32,
tmnxCardReboot TmnxActionType,
tmnxCardMemorySize Unsigned32,
tmnxCardNamedPoolAdminMode TmnxAdminState,
tmnxCardNamedPoolOperMode TmnxAdminState
}
tmnxCardSlotNum OBJECT-TYPE
SYNTAX TmnxSlotNum
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this IOM slot within a chassis
in the system."
::= { tmnxCardEntry 1 }
tmnxCardSupportedTypes OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that specifies what card types can be physically
supported in this IOM slot in this chassis."
::= { tmnxCardEntry 2 }
tmnxCardAllowedTypes OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"A bit-mask that specifies what IOM card types the administrator
has designated be allowed to be inserted into this slot.
If the slot has not-been pre-provisioned and a card that
does not match one of the allowed types is inserted into
this slot, a mis-match alarm will be raised. If a specific
value has not yet been SET by the manager, tmnxCardAllowedTypes
will return the same value to a GET request as
tmnxCardSupportedTypes.
The object was made obsolete in the 3.0 release."
::= { tmnxCardEntry 3 }
tmnxCardAssignedType OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A bit-mask that identifies the administratively assigned
(pre-provisioned) IOM card type that should occupy this slot
in this chassis. If tmnxCardAssignedType has a value of
'unassigned', this slot has not yet been pre-provisioned.
There must not be more than one bit set at a time in
tmnxCardAssignedType."
DEFVAL { 1 }
::= { tmnxCardEntry 4 }
tmnxCardEquippedType OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that identifies the IOM card type that is physically
inserted into this slot in this chassis. If the slot has been
pre-provisioned, tmnxCardAssignedType is not equal 'unassigned',
and the value of tmnxCardEquippedType is not the same as
tmnxCardAssignedType, a mis-match alarm will be raised. If the
slot has not been pre-provisioned, and the value of
tmnxCardEquippedType is not one of the allowed types as specified
by tmnxCardAllowedTypes, a mis-match alarm will be raised. There
will not be more than one bit set at a time in tmnxCardEquippedType.
A value of 0 indicates the IOM card type is not recognized by the
software."
::= { tmnxCardEntry 5 }
tmnxCardHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCardHwIndex is the index into the tmnxHwTable
for the row entry that represents the hardware component information
for this IOM card."
::= { tmnxCardEntry 6 }
tmnxCardClockSource OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The clock source used by the IOM card in this slot."
::= { tmnxCardEntry 10 }
tmnxCardNumMdaSlots OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Media Dependent Adapter (MDA) slots available on
this IOM card."
::= { tmnxCardEntry 11 }
tmnxCardNumMdas OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Media Dependent Adapters installed on this IOM card."
::= { tmnxCardEntry 12 }
tmnxCardReboot OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this variable to 'doAction' causes the IOM card to execute
a soft-reboot."
DEFVAL { notApplicable }
::= { tmnxCardEntry 13 }
tmnxCardMemorySize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Mega-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCardMemorySize indicates the amount of
memory, in mega-bytes, populated on this IOM card."
::= { tmnxCardEntry 14 }
tmnxCardNamedPoolAdminMode OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxCardNamedPoolAdminMode specifies whether or
not an IOM is provisioned for the configuration of named pools. If
the value of tmnxCardNamedPoolAdminMode is 'inService(2)', the
system will change the way default pools are created and allow for
the creation of MDA and port level named buffer pools. If the value
of tmnxCardNamedPoolAdminMode is 'outOfService(3)', the system will
not create per port pools, instead a default network and access pool
is created for ingress and egress and is shared by queues on all
ports. This object is used in conjunction with
tmnxCardNamedPoolOperMode."
DEFVAL { outOfService }
::= { tmnxCardEntry 15 }
tmnxCardNamedPoolOperMode OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCardNamedPoolOperMode specifies whether or
not an IOM provisioned with tmnxCardNamedPoolAdminMode to a
value of 'inService(2)' will activly use named pools or not.
A value of 'outOfService(3) means that the named pool configurations
will not be downloaded to the IOM until after a reset of the IOM
is performed. A value of 'inService(2)' means that the named pool
configurations are programmed by the IOM. On systems using a
separate CPM and IOM combination the value of tmnxCardNamedPoolOperMode
and tmnxCardNamedPoolAdminMode will always be in sync due to a
mandatory reboot of the IOM. On systems using a combined image (CFM)
these values will be out-of-sync until the chassis is rebooted."
DEFVAL { outOfService }
::= { tmnxCardEntry 16 }
--
-- CPM Card Table - The Chassis Process Manager card table contains
-- the information about CPM cards or modules in a chassis.
--
tmnxCpmCardLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the tmnxCpmCardTable was last changed."
::= { tmnxCardObjs 3 }
tmnxCpmCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCpmCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxCpmCardTable has an entry for each CPM card or module in
each chassis in the TMNX system."
::= { tmnxCardObjs 4 }
tmnxCpmCardEntry OBJECT-TYPE
SYNTAX TmnxCpmCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a CPM card or module in a chassis in the
system. Entries cannot be created and deleted via SNMP SET
operations. When a tmnxChassisEntry is created, a tmnxCpmCardEntry
is created for each CPM card or module in that chassis. Before a
tmnxChassisEntry can be deleted, each tmnxCpmCardEntry for that
chassis must be in the proper state for removal."
INDEX { tmnxChassisIndex, tmnxCpmCardSlotNum, tmnxCpmCardNum }
::= { tmnxCpmCardTable 1 }
TmnxCpmCardEntry ::=
SEQUENCE {
tmnxCpmCardSlotNum TmnxSlotNum,
tmnxCpmCardNum Unsigned32,
tmnxCpmCardSupportedTypes TmnxCardType,
tmnxCpmCardAllowedTypes TmnxCardType,
tmnxCpmCardAssignedType TmnxCardType,
tmnxCpmCardEquippedType TmnxCardType,
tmnxCpmCardHwIndex TmnxHwIndex,
tmnxCpmCardBootOptionVersion TItemDescription,
tmnxCpmCardBootOptionLastModified DateAndTime,
tmnxCpmCardConfigBootedVersion TItemDescription,
tmnxCpmCardIndexBootedVersion TItemDescription,
tmnxCpmCardConfigLastModified DateAndTime,
tmnxCpmCardConfigLastSaved DateAndTime,
tmnxCpmCardRedundant INTEGER,
tmnxCpmCardClockSource TItemDescription,
tmnxCpmCardNumCpus Unsigned32,
tmnxCpmCardCpuType INTEGER,
tmnxCpmCardMemorySize Unsigned32,
tmnxCpmCardSwitchToRedundantCard TmnxActionType,
tmnxCpmCardReboot TmnxActionType,
tmnxCpmCardRereadBootOptions TmnxActionType,
tmnxCpmCardConfigFileLastBooted DisplayString,
tmnxCpmCardConfigFileLastSaved DisplayString,
tmnxCpmCardConfigFileLastBootedHeader OCTET STRING,
tmnxCpmCardIndexFileLastBootedHeader OCTET STRING,
tmnxCpmCardBootOptionSource DisplayString,
tmnxCpmCardConfigSource INTEGER,
tmnxCpmCardBootOptionLastSaved DateAndTime,
tmnxCpmCardMasterSlaveRefState INTEGER
}
tmnxCpmCardSlotNum OBJECT-TYPE
SYNTAX TmnxSlotNum
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this slot within a chassis in
the system. Depending upon the value of tmnxChassisType, this may
represent a fabric slot or a regular card slot. If this CPM module
resides on a fabric card, tmnxCpmCardSlotNum has the value the
corresponding tmnxFabricSlotNum. If this is a CPM module on a
fabric card, tmnxCpmCardSlotNum is the fabric slot number in the
chassis where this CPM module is located. Else if this is a
CPM card, tmnxCpmCardSlotNum is a regular card slot number."
::= { tmnxCpmCardEntry 1 }
tmnxCpmCardNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this CPM module within a
specific card slot within a chassis in the system."
::= { tmnxCpmCardEntry 2 }
tmnxCpmCardSupportedTypes OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that specifies what CPM card types can be physically
supported in this slot in this chassis."
::= { tmnxCpmCardEntry 3 }
tmnxCpmCardAllowedTypes OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"A bit-mask that specifies what CPM card types the administrator
has designated be allowed to be inserted into this slot. If the
slot has not-been pre-provisioned and a card that does not match
one of the allowed types is inserted into this slot, a mis-match
alarm will be raised. If a specific value has not yet been SET by
the manager, tmnxCpmCardAllowedTypes will return the same value to
a GET request as tmnxCpmCardSupportedTypes.
The object was made obsolete in the 3.0 release."
::= { tmnxCpmCardEntry 4 }
tmnxCpmCardAssignedType OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A bit-mask that identifies the administratively assigned
(pre-provisioned) CPM card type that should occupy this slot
in this chassis. If tmnxCpmCardAssignedType has a value of
'unassigned', this slot has not yet been pre-provisioned.
There must not be more than one bit set at a time in
tmnxCpmCardAssignedType."
DEFVAL { 1 }
::= { tmnxCpmCardEntry 5 }
tmnxCpmCardEquippedType OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that identifies the CPM card type that is physically
inserted into this slot in this chassis. If the slot has been
pre-provisioned, tmnxCpmCardAssignedType is not equal 'unassigned',
and the value of tmnxCpmCardEquippedType is not the same as
tmnxCpmCardAssignedType, a mis-match alarm will be raised.
If the slot has not been pre-provisioned, and the value of
tmnxCpmCardEquippedType is not one of the allowed types as specified
by tmnxCpmCardAllowedTypes, a mis-match alarm will be raised.
There will not be more than one bit set at a time in
tmnxCpmCardEquippedType."
::= { tmnxCpmCardEntry 6 }
tmnxCpmCardHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmCardHwIndex is the index into the tmnxHwTable
for the row entry that represents the hardware component information
for this CPM card or module."
::= { tmnxCpmCardEntry 7 }
tmnxCpmCardBootOptionVersion OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version number of boot option file (BOF) read by the CPM card in
this slot."
::= { tmnxCpmCardEntry 8 }
tmnxCpmCardBootOptionLastModified OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time the boot options file (BOF) for this card was last
modified. If tmnxCpmCardBootOptionLastModified is more recent than
tmnxHwSwLastBoot, the boot options file has been edited since
the software was booted and different software images or configuration
will likely be used when this card is next rebooted."
::= { tmnxCpmCardEntry 9 }
tmnxCpmCardConfigBootedVersion OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the configuration file read when this CPM card was
last rebooted."
::= { tmnxCpmCardEntry 10 }
tmnxCpmCardIndexBootedVersion OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the index file read when this CPM card was
last rebooted."
::= { tmnxCpmCardEntry 11 }
tmnxCpmCardConfigLastModified OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time the running configuration was last modified.
If tmnxCpmCardConfigLastModified is more recent than
tmnxHwSwLastBoot, the current configuration may be different
than that in the configuration file read upon system initialization."
::= { tmnxCpmCardEntry 12 }
tmnxCpmCardConfigLastSaved OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time the current configuration was last saved.
If tmnxCpmCardConfigLastSaved is more recent the value of
tmnxHwSwLastBoot, the initial configuration is likely to
be different the next time the system is rebooted."
::= { tmnxCpmCardEntry 13 }
tmnxCpmCardRedundant OBJECT-TYPE
SYNTAX INTEGER {
singleton (1),
redundantActive (2),
redundantStandby (3),
redundantSplit (4),
redundantDisabled (5),
redundantSynching (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates if the CPM card is standalone or part
of a pair of redundant cards. If 'redundantDisabled',
tmnxHwOperState indicates the specific reason why this
redundant CPM card is not available.
Note that the 'redudantSplit' option is not implemented."
::= { tmnxCpmCardEntry 14 }
tmnxCpmCardClockSource OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The clock source used by the CPM card in this slot."
::= { tmnxCpmCardEntry 15 }
tmnxCpmCardNumCpus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmCardNumCpus indicates the number of CPU chips
populated on this CPM module."
::= { tmnxCpmCardEntry 16 }
tmnxCpmCardCpuType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
mips (2),
pentium-pc (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmCardCpuType indicates the type of CPU chips
populated on this CPM module."
::= { tmnxCpmCardEntry 17 }
tmnxCpmCardMemorySize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Mega-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmCardMemorySize indicates the amount of
memory, in mega-bytes, populated on this CPM module."
::= { tmnxCpmCardEntry 18 }
tmnxCpmCardSwitchToRedundantCard OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this variable to doAction causes the switchover to the
redundant CPM card."
DEFVAL { notApplicable }
::= { tmnxCpmCardEntry 19 }
tmnxCpmCardReboot OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this variable to 'doAction' causes the CPM card to execute
a soft-reboot."
DEFVAL { notApplicable }
::= { tmnxCpmCardEntry 20 }
tmnxCpmCardRereadBootOptions OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this variable to 'doAction' causes the Boot Options File
(BOF) to be reread and applied."
DEFVAL { notApplicable }
::= { tmnxCpmCardEntry 21 }
tmnxCpmCardConfigFileLastBooted OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxCpmCardConfigFileLastBooted indicates the location and name of
the configuration file from which the system last rebooted."
::= { tmnxCpmCardEntry 22 }
tmnxCpmCardConfigFileLastSaved OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxCpmCardConfigFileLastSaved indicates the location and name of the
file to which the configuration was last saved."
::= { tmnxCpmCardEntry 23 }
tmnxCpmCardConfigFileLastBootedHeader OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxCpmCardConfigFileLastBootedHeader contains the header
of the configuration file from which the system last rebooted."
::= { tmnxCpmCardEntry 24 }
tmnxCpmCardIndexFileLastBootedHeader OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxCpmCardIndexFileLastBootedHeader contains the header
of the index file from which the system last rebooted."
::= { tmnxCpmCardEntry 25 }
tmnxCpmCardBootOptionSource OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxCpmCardBootOptionSource indicates the compact flash slot where the
Boot Options File (BOF) file was found when the system last rebooted.
For example, if the BOF file was found on compact flash slot 1, the
value of this variable will be 'cf1:'"
::= { tmnxCpmCardEntry 26 }
tmnxCpmCardConfigSource OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
primary (1),
secondary (2),
tertiary (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmCardConfigSource indicates the location
in the Boot Options File(BOF) where the configuration file was
found when the system last rebooted."
::= { tmnxCpmCardEntry 27 }
tmnxCpmCardBootOptionLastSaved OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time the boot options file (BOF) was last saved.
If tmnxCpmCardBootOptionLastSaved is more recent than the value
of tmnxHwSwLastBoot, the boot options file has been edited
since the software was booted and different software images or
configuration will likely be used when this card is next rebooted."
::= { tmnxCpmCardEntry 28 }
tmnxCpmCardMasterSlaveRefState OBJECT-TYPE
SYNTAX INTEGER {
primaryRef (1),
secondaryRef (2),
notInitialized (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Master/Slave clocking reference designation.
primaryRef Indicates this card is designated as the primary
clocking reference in a redundant system.
secondaryRef Indicates this card is designated as the secondary
clocking reference in a redundant system.
notInitialized Indicates the clock is not initialized.
"
::= { tmnxCpmCardEntry 30 }
--
-- Fabric Card Table - The fabric card table contains information about
-- the fabric cards in a chassis.
--
tmnxFabricLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the tmnxFabricTable was last changed."
::= { tmnxCardObjs 5 }
tmnxFabricTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxFabricEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxFabricTable has an entry for each fabric card slot in
each chassis in the TMNX system."
::= { tmnxCardObjs 6 }
tmnxFabricEntry OBJECT-TYPE
SYNTAX TmnxFabricEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a fabric card slot in a chassis in
the system. Entries cannot be created and deleted via
SNMP SET operations. When a tmnxChassisEntry is created,
a tmnxFabricEntry is created for each fabric card slot in that
chassis. Before a tmnxChassisEntry can be deleted, each
tmnxFabricEntry for that chassis must be in the proper state
for removal."
INDEX { tmnxChassisIndex, tmnxFabricSlotNum }
::= { tmnxFabricTable 1 }
TmnxFabricEntry ::=
SEQUENCE {
tmnxFabricSlotNum Unsigned32,
tmnxFabricAssignedType TmnxCardType,
tmnxFabricEquippedType TmnxCardType,
tmnxFabricHwIndex TmnxHwIndex
}
tmnxFabricSlotNum OBJECT-TYPE
SYNTAX Unsigned32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this fabric slot within a
chassis in the system. The CPM cards and IOM cards cannot be
physically inserted into the switch fabric card slots. In
some models, the CPM is not a separate card, but rather a
module on a Fabric card."
::= { tmnxFabricEntry 1 }
tmnxFabricAssignedType OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administratively assigned switch fabric card type that
should occupy this fabric slot in this chassis."
DEFVAL { 2 }
::= { tmnxFabricEntry 2 }
tmnxFabricEquippedType OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The switch fabric card type that is physically inserted into
this slot in this chassis."
::= { tmnxFabricEntry 3 }
tmnxFabricHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwIndex is the index into the tmnxHwTable to
locate the row entry that represents the hardware component
information for this fabric card."
::= { tmnxFabricEntry 4 }
--
-- Flash Drive Table
--
tmnxCpmFlashTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCpmFlashEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about Flash devices on a CPM card."
::= { tmnxCardObjs 7 }
tmnxCpmFlashEntry OBJECT-TYPE
SYNTAX TmnxCpmFlashEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains information regarding a CPM card's flash unit."
INDEX { tmnxChassisIndex, tmnxCardSlotNum, tmnxCpmFlashId }
::= { tmnxCpmFlashTable 1 }
TmnxCpmFlashEntry ::=
SEQUENCE {
tmnxCpmFlashId Unsigned32,
tmnxCpmFlashOperStatus TmnxDeviceState,
tmnxCpmFlashSerialNumber TItemDescription,
tmnxCpmFlashFirmwareRevision TItemDescription,
tmnxCpmFlashModelNumber TItemDescription,
tmnxCpmFlashCapacity Unsigned32,
tmnxCpmFlashUsed Unsigned32,
tmnxCpmFlashHwIndex TmnxHwIndex
}
tmnxCpmFlashId OBJECT-TYPE
SYNTAX Unsigned32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique identifier index for a flash device on a CPM card."
::= { tmnxCpmFlashEntry 1 }
tmnxCpmFlashOperStatus OBJECT-TYPE
SYNTAX TmnxDeviceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of this flash unit on this CPM card."
::= { tmnxCpmFlashEntry 2 }
tmnxCpmFlashSerialNumber OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number for this flash unit on this CPM card."
::= { tmnxCpmFlashEntry 3 }
tmnxCpmFlashFirmwareRevision OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware revision number for this flash unit on this CPM card."
::= { tmnxCpmFlashEntry 4 }
tmnxCpmFlashModelNumber OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model number for this flash unit on this CPM card."
::= { tmnxCpmFlashEntry 5 }
tmnxCpmFlashCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "sectors"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmFlashCapacity indicates the maximum size
of this flash unit in 512-byte sectors."
::= { tmnxCpmFlashEntry 6 }
tmnxCpmFlashUsed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "sectors"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCpmFlashUsed indicates the amount used, in
512-byte sectors, of this flash unit's total capacity."
::= { tmnxCpmFlashEntry 7 }
tmnxCpmFlashHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwIndex is the index into the tmnxHwTable for
the row entry that represents the hardware component information
for this flash unit."
::= { tmnxCpmFlashEntry 8 }
--
-- MDA table
--
tmnxMDATable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxMDAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxMDATable has an entry for each MDA slot in each IOM
card in this chassis in the TMNX system."
::= { tmnxCardObjs 8 }
tmnxMDAEntry OBJECT-TYPE
SYNTAX TmnxMDAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a MDA slot in an IOM card in a
chassis in the system. Entries cannot be created and
deleted via SNMP SET operations. When a tmnxCardEntry
has tmnxCardAssignedType or tmnxCardEquippedType equal to
an IOM card type that supports MDA slots, a tmnxMDAEntry is
created by the agent for each MDA slot on that IOM card.
Before a tmnxCardEntry can be deleted, each tmnxMDAEntry for
that card must be in the proper state for removal."
INDEX { tmnxChassisIndex, tmnxCardSlotNum, tmnxMDASlotNum }
::= { tmnxMDATable 1 }
TmnxMDAEntry ::=
SEQUENCE {
tmnxMDASlotNum Unsigned32,
tmnxMDASupportedTypes TmnxMDASuppType,
tmnxMDAAllowedTypes TmnxMdaType,
tmnxMDAAssignedType TmnxMdaType,
tmnxMDAEquippedType TmnxMdaType,
tmnxMDAHwIndex TmnxHwIndex,
tmnxMDAMaxPorts INTEGER,
tmnxMDAEquippedPorts Unsigned32,
tmnxMDATxTimingSelected INTEGER,
tmnxMDASyncIfTimingStatus INTEGER,
tmnxMDANetworkIngQueues TNamedItem,
tmnxMDACapabilities BITS,
tmnxMDAMinChannelization TmnxMDAChanType,
tmnxMDAMaxChannelization TmnxMDAChanType,
tmnxMDAMaxChannels Unsigned32,
tmnxMDAChannelsInUse Unsigned32,
tmnxMDACcagId TmnxCcagId,
tmnxMDAReboot TmnxActionType,
tmnxMDAHiBwMcastSource TruthValue,
tmnxMDAHiBwMcastAlarm TruthValue,
tmnxMDAHiBwMcastTapCount Gauge32,
tmnxMDAHiBwMcastGroup Unsigned32,
tmnxMDAClockMode INTEGER,
tmnxMDADiffTimestampFreq Unsigned32,
tmnxMDAMcPathMgmtBwPlcyName TNamedItem,
tmnxMDAMcPathMgmtPriPathLimit Unsigned32,
tmnxMDAMcPathMgmtSecPathLimit Unsigned32,
tmnxMDAMcPathMgmtAncPathLimit Unsigned32,
tmnxMDAMcPathMgmtAdminState TmnxAdminState,
tmnxMDAIngNamedPoolPolicy TNamedItemOrEmpty,
tmnxMDAEgrNamedPoolPolicy TNamedItemOrEmpty,
tmnxMDAMcPathMgmtPriInUseBw Gauge32,
tmnxMDAMcPathMgmtSecInUseBw Gauge32,
tmnxMDAMcPathMgmtAncInUseBw Gauge32,
tmnxMDAMcPathMgmtBlkHoleInUseBw Gauge32
}
tmnxMDASlotNum OBJECT-TYPE
SYNTAX Unsigned32 (0..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this MDA slot within a
specific IOM card in the system. Rows with a tmnxMDASlotNum
value of zero (0) represent the special case of an IOM card
without MDA slots but that instead has its ports directly
on the IOM card itself. In that case, there should be only
that one row entry in the tmnxMDATable for that IOM card."
::= { tmnxMDAEntry 1 }
tmnxMDASupportedTypes OBJECT-TYPE
SYNTAX TmnxMDASuppType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that specifies what MDA card types can be physically
supported in this slot in this chassis."
::= { tmnxMDAEntry 2 }
tmnxMDAAllowedTypes OBJECT-TYPE
SYNTAX TmnxMdaType
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"An integer that specified what MDA card types the administrator
has designated be allowed to be inserted into this slot.
If the slot has not-been pre-provisioned and a MDA card that
does not match one of the allowed types is inserted into
this slot, a mis-match alarm will be raised.
The object was made obsolete in the 3.0 release."
::= { tmnxMDAEntry 3 }
tmnxMDAAssignedType OBJECT-TYPE
SYNTAX TmnxMdaType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An integer that indicates the administratively assigned
(pre-provisioned) MDA card type that should occupy this slot in
this chassis. If tmnxMDAAssignedType has a value of
'unassigned', this slot has not yet been pre-provisioned."
DEFVAL { 1 }
::= { tmnxMDAEntry 4 }
tmnxMDAEquippedType OBJECT-TYPE
SYNTAX TmnxMdaType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer that indicates the MDA card type that is physically
inserted into this slot in this chassis. If the slot has been
pre-provisioned, tmnxMDAAssignedType is not equal 'unassigned',
and the value of tmnxMDAEquippedType is not the same as
tmnxMDAAssignedType, a mis-match alarm will be raised.
A value of 0 indicates the equipped MDA is not supported by
this software release."
::= { tmnxMDAEntry 5 }
tmnxMDAHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxHwIndex is the index into the tmnxHwTable for
the row entry that represents the hardware component information
for this MDA card."
::= { tmnxMDAEntry 6 }
tmnxMDAMaxPorts OBJECT-TYPE
SYNTAX INTEGER (0..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of ports that can be equipped on this MDA card."
::= { tmnxMDAEntry 7 }
tmnxMDAEquippedPorts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMDAEquippedPorts indicates the number of ports
equipped on this MDA card."
::= { tmnxMDAEntry 8 }
tmnxMDATxTimingSelected OBJECT-TYPE
SYNTAX INTEGER
{
cpm-card-A(1),
cpm-card-B(2),
local(3),
holdover(4),
not-applicable(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit timing method which is presently selected and being
used by this MDA.
tmnxMDATxTimingSelected will be set to 'not-applicable' if this MDA
does not use the transmit timing subsystem."
::= { tmnxMDAEntry 10 }
tmnxMDASyncIfTimingStatus OBJECT-TYPE
SYNTAX INTEGER
{
qualified(1),
not-qualified(2),
not-applicable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the synchronous equipment timing subsystem.
If the tmnxSyncIfTimingRef1Qualified and tmnxSyncIfTimingRef2Qualified
are both set to 'not-qualified, then tmnxMDASyncIfTimingStatus is set
to 'not-qualified'. If any of the timing references is in use, then
tmnxMDASyncIfTimingStatus is set to 'qualified'.
tmnxMDASyncIfTimingStatus will be set to 'not-applicable' if this MDA
does not use the transmit timing subsystem."
::= { tmnxMDAEntry 11 }
tmnxMDANetworkIngQueues OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the network queue policy being used for this object to
define the queueing structure for this object."
DEFVAL { "default" }
::= { tmnxMDAEntry 12 }
tmnxMDACapabilities OBJECT-TYPE
SYNTAX BITS {
isEthernet(0),
isSonet(1),
isTDM(2),
supportsPPP(3),
supportsFR(4),
supportsATM(5),
supportscHDLC(6),
isCMA(7),
supportsCEM(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxMDACapabilities indicates the capabilities of this MDA.
It identifies the type of MDA and the protocols that can run on it."
::= { tmnxMDAEntry 13 }
tmnxMDAMinChannelization OBJECT-TYPE
SYNTAX TmnxMDAChanType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxMDAMinChannelization indicates the minimum size of the channel that
can exist on this MDA."
::= { tmnxMDAEntry 14 }
tmnxMDAMaxChannelization OBJECT-TYPE
SYNTAX TmnxMDAChanType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxMDAMaxChannelization indicates the maximum size of the channel that
can exist on this MDA."
::= { tmnxMDAEntry 15 }
tmnxMDAMaxChannels OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxMDAMaxChannels is applicable for SONET and TDM MDAs only. It
indicates the total number of leaf SONET paths, TDM channels
and bundles on the MDA that may be configured to pass traffic."
::= { tmnxMDAEntry 16 }
tmnxMDAChannelsInUse OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tmnxMDAChannelsInUse is applicable for SONET and TDM MDAs only. It
indicates the total number of leaf SONET paths, TDM channels and
bundles on the MDA which are in use. A leaf SONET path or TDM
channel which is currently capable of passing traffic is considered
to be in use. Also, a SONET path or TDM channel which is
channelized and has no subchannels capable of passing traffic
is considered to be in use. A SONET path or TDM channel which is
channelized and has one or more subchannels capable of passing
traffic is not considered to be in use, although the subchannels
themselves are considered to be in use. A bundle is considered to
be a channel in use as are each of its members since they are TDM
channels capable of passing traffic."
::= { tmnxMDAEntry 17 }
tmnxMDACcagId OBJECT-TYPE
SYNTAX TmnxCcagId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When tmnxMDAAssignedType has a value of 'cca' , the value of
tmnxMDACcagId specifies the Cross Connect Aggregation Group (CCAG)
entry this MDA is provisioned on. If this entry does not represent
a 'cca' MDA or is not associated with a CCAG, tmnxMDACcagId
has a value of zero. "
DEFVAL { 0 }
::= { tmnxMDAEntry 18 }
tmnxMDAReboot OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this variable to 'doAction' causes the MDA to execute
a soft-reboot."
DEFVAL { notApplicable }
::= { tmnxMDAEntry 19 }
tmnxMDAHiBwMcastSource OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAHiBwMcastSource specifies if this MDA should
attempt to allocate separate fabric planes to allocate high bandwidth
multicast traffic taps.
tmnxMDAHiBwMcastGroup must be set in the same SNMP request PDU with
tmnxMDAHiBwMcastSource or an 'inconsistentValue' error will be
returned."
DEFVAL { false }
::= { tmnxMDAEntry 20 }
tmnxMDAHiBwMcastAlarm OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAHiBwMcastAlarm specifies if a
tmnxChassisHiBwMcastAlarm alarm is raised if there are more than
one high bandwidth multicast traffic taps sharing a plane."
DEFVAL { true }
::= { tmnxMDAEntry 21 }
tmnxMDAHiBwMcastTapCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMDAHiBwMcastTapCount indicates the number of high
bandwidth multicast traffic taps on this MDA."
::= { tmnxMDAEntry 22 }
tmnxMDAHiBwMcastGroup OBJECT-TYPE
SYNTAX Unsigned32 (0..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAHiBwMcastGroup specifies the group of high
bandwidth multicast traffic taps to which this tap belongs.
A value of '0' specifies that this tap is not a member of any High
Bandwidth Multicast group.
On an IOM of type 'iom-10g', the value of tmnxMDAHiBwMcastGroup
should be the same as the value of tmnxMDAHiBwMcastGroup set on the
other MDA residing on the IOM if the tmnxMDAHiBwMcastSource is set
to 'true'. Attempt to set to different values will result in an
'inconsistentValue' error.
tmnxMDAHiBwMcastGroup must be set in the same SNMP request PDU with
tmnxMDAHiBwMcastSource or an 'inconsistentValue' error will be
returned."
DEFVAL { 0 }
::= { tmnxMDAEntry 23 }
tmnxMDAClockMode OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (0),
adaptive (1),
differential (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAClockMode specifies the clock mode
of the MDA.
notApplicable - The MDA does not support any clock modes or domains.
adaptive - The MDA is in 'adaptive' clock mode. This allows
adaptive clock domains to be created.
differential - The MDA is in 'differential clock mode. This allows
differential clock domains to be created.
The value of tmnxMDAClockMode can be changed when there are no ports
created on the MDA. If there are ports created, a shutdown of the
MDA is required in order to change the value."
DEFVAL { notApplicable }
::= { tmnxMDAEntry 24 }
tmnxMDADiffTimestampFreq OBJECT-TYPE
SYNTAX Unsigned32 (0|19440|77760|103680)
UNITS "kilohertz"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDADiffTimestampFreq specifies the differential
timestamp frequency of the differential clock on the MDA.
The value must be a multiple of 8 KHz.
This value can only be changed if the value of tmnxMDAClockMode is
'differential (2)' and there are no ports created on the MDA. If
there are ports created, a shutdown of the MDA is required in order
to change the value.
If the value of tmnxMDAClockMode is 'differential (2) then the default
is 103,680 KHz.
If the value of tmnxMDAClockMode is not 'differential (2)' then
this value is 0 KHz and cannot be changed."
DEFVAL { 0 }
::= { tmnxMDAEntry 25 }
tmnxMDAMcPathMgmtBwPlcyName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtBwPlcyName specifies the multicast policy
name configured on the MDA."
DEFVAL { "default" }
::= { tmnxMDAEntry 27 }
tmnxMDAMcPathMgmtPriPathLimit OBJECT-TYPE
SYNTAX Unsigned32 (0|1..2000)
UNITS "mega-bits-per-second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtPriPathLimit specifies the primary path
limit for the MDA."
DEFVAL { 0 }
::= { tmnxMDAEntry 28 }
tmnxMDAMcPathMgmtSecPathLimit OBJECT-TYPE
SYNTAX Unsigned32 (0|1..2000)
UNITS "mega-bits-per-second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtSecPathLimit specifies the secondary path
limit for the MDA."
DEFVAL { 0 }
::= { tmnxMDAEntry 29 }
tmnxMDAMcPathMgmtAncPathLimit OBJECT-TYPE
SYNTAX Unsigned32 (0|1..5000)
UNITS "mega-bits-per-second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtAncPathLimit specifies the ancillary path
limit for the MDA."
DEFVAL { 0 }
::= { tmnxMDAEntry 30 }
tmnxMDAMcPathMgmtAdminState OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtAdminState specifies administrative state
of this multicast path on the MDA."
DEFVAL { outOfService }
::= { tmnxMDAEntry 31 }
tmnxMDAIngNamedPoolPolicy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAIngNamedPoolPolicy specifies a named pool
policy associated with an MDA ingress context. The policy
governs the way named pools are created at the MDA level."
DEFVAL { ''H }
::= { tmnxMDAEntry 32 }
tmnxMDAEgrNamedPoolPolicy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxMDAEgrNamedPoolPolicy specifies a named pool
policy associated with an MDA egress context. The policy
governs the way named pools are created at the MDA level."
DEFVAL { ''H }
::= { tmnxMDAEntry 33 }
tmnxMDAMcPathMgmtPriInUseBw OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtPriInUseBw indicates the in use
ingress multicast bandwidth for the primary forwarding path."
::= { tmnxMDAEntry 36 }
tmnxMDAMcPathMgmtSecInUseBw OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtSecInUseBw indicates the in use
ingress multicast bandwidth for the secondary forwarding path."
::= { tmnxMDAEntry 37 }
tmnxMDAMcPathMgmtAncInUseBw OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtAncInUseBw indicates the in use
ingress multicast bandwidth for the ancillary forwarding path."
::= { tmnxMDAEntry 38 }
tmnxMDAMcPathMgmtBlkHoleInUseBw OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMDAMcPathMgmtBlkHoleInUseBw indicates the bandwidth of
the ingress multicast traffic that is being black holed on the MDA."
::= { tmnxMDAEntry 39 }
--
-- Card Type Definition Table
--
tmnxCardTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCardTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The card type table has an entry for each Alcatel 7x50 SR series
card model."
::= { tmnxCardObjs 9 }
tmnxCardTypeEntry OBJECT-TYPE
SYNTAX TmnxCardTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an Alcatel 7x50 SR series Card model.
Rows in this table are created by the agent at initialization and
cannot be created or destroyed by SNMP Get or Set requests."
INDEX { tmnxCardTypeIndex }
::= { tmnxCardTypeTable 1 }
TmnxCardTypeEntry ::=
SEQUENCE {
tmnxCardTypeIndex TmnxCardType,
tmnxCardTypeName TNamedItemOrEmpty,
tmnxCardTypeDescription TItemDescription,
tmnxCardTypeStatus TruthValue
}
tmnxCardTypeIndex OBJECT-TYPE
SYNTAX TmnxCardType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index value which identifies this type of Alcatel
7x50 SR series card model."
::= { tmnxCardTypeEntry 1 }
tmnxCardTypeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative name that identifies this type of Alcatel
7x50 SR series card model. This name string may be used in
CLI commands to specify a particular card model type."
::= { tmnxCardTypeEntry 2 }
tmnxCardTypeDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A detailed description of this Alcatel 7x50 SR series card model."
::= { tmnxCardTypeEntry 3 }
tmnxCardTypeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When tmnxCardTypeStatus has a value of 'true' it indicates that
this card model is supported in this revision of the management
software. When it has a value of 'false' there is no support."
::= { tmnxCardTypeEntry 4 }
--
-- MDA Type Defintion Table
--
tmnxMdaTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxMdaTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MDA type table has an entry for each Alcatel 7x50 SR series
MDA card model."
::= { tmnxCardObjs 10 }
tmnxMdaTypeEntry OBJECT-TYPE
SYNTAX TmnxMdaTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an Alcatel 7x50 SR series MDA card model.
Rows in this table are created by the agent at initialization and
cannot be created or destroyed by SNMP Get or Set requests."
INDEX { tmnxMdaTypeIndex }
::= { tmnxMdaTypeTable 1 }
TmnxMdaTypeEntry ::=
SEQUENCE {
tmnxMdaTypeIndex TmnxMdaType,
tmnxMdaTypeName TNamedItemOrEmpty,
tmnxMdaTypeDescription TItemDescription,
tmnxMdaTypeStatus TruthValue
}
tmnxMdaTypeIndex OBJECT-TYPE
SYNTAX TmnxMdaType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index value which identifies this type of Alcatel
7x50 SR series MDA card model."
::= { tmnxMdaTypeEntry 1 }
tmnxMdaTypeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative name that identifies this type of Alcatel
7x50 SR series MDA card model. This name string may be used
in CLI commands to specify a particular MDA card model type."
::= { tmnxMdaTypeEntry 2 }
tmnxMdaTypeDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A detailed description of this Alcatel 7x50 SR series MDA card
model."
::= { tmnxMdaTypeEntry 3 }
tmnxMdaTypeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When tmnxMdaTypeStatus has a value of 'true' it indicates that
this MDA card model is supported in this revision of the management
software. When it has a value of 'false' there is no support."
::= { tmnxMdaTypeEntry 4 }
--
-- Synchronous interface timing information for the CPM card
--
tmnxSyncIfTimingTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxSyncIfTimingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The synchronous interface timing table has an entry for each cpm
card in the system."
::= { tmnxCardObjs 11 }
tmnxSyncIfTimingEntry OBJECT-TYPE
SYNTAX TmnxSyncIfTimingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row represents the configuration of synchronous equipment timing
subsystem (SETS) of the system. Entries cannot be created and deleted
via SNMP SET operations. When a tmnxCpmCardEntry is created, a
tmnxSyncIfTimingEntry is created. Note that the first Alcatel
7x50 SR series product release does not support configuration of
synchronous equipment on the secondary CPM. All SNMP operations
with tmnxCpmCardSlotNum of the secondary CPM will be denied.
If the value of the reference source port is a valid Port ID then the
reference is a port. If the value of the source hardware is a valid
non-zero HWIndex then the source is the hardware specified by the
HWIndex."
AUGMENTS { tmnxCpmCardEntry }
::= { tmnxSyncIfTimingTable 1 }
TmnxSyncIfTimingEntry ::=
SEQUENCE {
tmnxSyncIfTimingRevert TruthValue,
tmnxSyncIfTimingRefOrder1 TmnxSETSRefSource,
tmnxSyncIfTimingRefOrder2 TmnxSETSRefSource,
tmnxSyncIfTimingRef1SrcPort TmnxPortID,
tmnxSyncIfTimingRef1AdminStatus TmnxPortAdminStatus,
tmnxSyncIfTimingRef1InUse TruthValue,
tmnxSyncIfTimingRef1Qualified TmnxSETSRefQualified,
tmnxSyncIfTimingRef1Alarm TmnxSETSRefAlarm,
tmnxSyncIfTimingRef2SrcPort TmnxPortID,
tmnxSyncIfTimingRef2AdminStatus TmnxPortAdminStatus,
tmnxSyncIfTimingRef2InUse TruthValue,
tmnxSyncIfTimingRef2Qualified TmnxSETSRefQualified,
tmnxSyncIfTimingRef2Alarm TmnxSETSRefAlarm,
tmnxSyncIfTimingFreqOffset Integer32,
tmnxSyncIfTimingStatus INTEGER,
tmnxSyncIfTimingRefOrder3 TmnxSETSRefSource,
tmnxSyncIfTimingBITSIfType TmnxBITSIfType,
tmnxSyncIfTimingBITSAdminStatus TmnxPortAdminStatus,
tmnxSyncIfTimingBITSInUse TruthValue,
tmnxSyncIfTimingBITSQualified TmnxSETSRefQualified,
tmnxSyncIfTimingBITSAlarm TmnxSETSRefAlarm,
tmnxSyncIfTimingRef1SrcHw TmnxHwIndexOrZero,
tmnxSyncIfTimingRef1BITSIfType TmnxBITSIfType,
tmnxSyncIfTimingRef2SrcHw TmnxHwIndexOrZero,
tmnxSyncIfTimingRef2BITSIfType TmnxBITSIfType
}
tmnxSyncIfTimingRevert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRevert indicates whether the reference
source will revert to a higher priority source that has been
re-validated or newly validated.
The synchronous interface timing subsystem is by default non-revertive
('false')."
::= { tmnxSyncIfTimingEntry 1 }
tmnxSyncIfTimingRefOrder1 OBJECT-TYPE
SYNTAX TmnxSETSRefSource
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRefOrder1 indicates the most preferred
timing reference source.
The synchronous equipment timing subsystem can lock to three
different timing reference inputs, reference1, reference2 and bits.
The subsystem chooses a reference based on priority."
::= { tmnxSyncIfTimingEntry 2 }
tmnxSyncIfTimingRefOrder2 OBJECT-TYPE
SYNTAX TmnxSETSRefSource
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRefOrder2 indicates the second most
preferred timing reference for the synchronous equipment timing
subsystem."
::= { tmnxSyncIfTimingEntry 3 }
tmnxSyncIfTimingRef1SrcPort OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1SrcPort indicates the source port of
the first timing reference.
A value of '1e000000'H indicates that there is no source port for this
reference."
::= { tmnxSyncIfTimingEntry 4 }
tmnxSyncIfTimingRef1AdminStatus OBJECT-TYPE
SYNTAX TmnxPortAdminStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1AdminStatus indicates the
administrative status of the first timing reference."
::= { tmnxSyncIfTimingEntry 5 }
tmnxSyncIfTimingRef1InUse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1InUse indicates whether the first
timing reference is presently being used by the synchronous timing
subsystem. If it is in use, tmnxSyncIfTimingFreqOffset indicates
the frequency offset for this reference."
::= { tmnxSyncIfTimingEntry 6 }
tmnxSyncIfTimingRef1Qualified OBJECT-TYPE
SYNTAX TmnxSETSRefQualified
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1Qualified indicates whether the first
timing reference is qualified for use by the synchronous timing
subsystem. If tmnxSyncIfTimingRef1Qualified is set to 'not-qualified',
then the object tmnxSyncIfTimingRef1Alarm gives the reason for
disqualification."
::= { tmnxSyncIfTimingEntry 7 }
tmnxSyncIfTimingRef1Alarm OBJECT-TYPE
SYNTAX TmnxSETSRefAlarm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1Alarm indicates the alarms on the
first reference. If any of the bits is set to '1', then the first
reference is disqualified by the timing subsystem and the value of
tmnxSyncIfTimingRef1Qualified is set to 'not-qualified'.
los - loss of signal
oof - out of frequency range
oopir - out of pull in range
"
::= { tmnxSyncIfTimingEntry 8 }
tmnxSyncIfTimingRef2SrcPort OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2SrcPort indicates the source port of
the second timing reference.
A value of '1e000000'H indicates that there is no source port for this
reference."
::= { tmnxSyncIfTimingEntry 9 }
tmnxSyncIfTimingRef2AdminStatus OBJECT-TYPE
SYNTAX TmnxPortAdminStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2AdminStatus indicates the
administrative status of the second timing reference."
::= { tmnxSyncIfTimingEntry 10 }
tmnxSyncIfTimingRef2InUse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2InUse indicates whether the second
timing reference is presently being used by the synchronous timing
subsystem."
::= { tmnxSyncIfTimingEntry 11 }
tmnxSyncIfTimingRef2Qualified OBJECT-TYPE
SYNTAX TmnxSETSRefQualified
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2Qualified indicates whether the
second timing reference is qualified for use by the synchronous
timing subsystem. If tmnxSyncIfTimingRef2Qualified is 'not-qualified'
then the object tmnxSyncIfTimingRef2Alarm gives the reason for
disqualification."
::= { tmnxSyncIfTimingEntry 12 }
tmnxSyncIfTimingRef2Alarm OBJECT-TYPE
SYNTAX TmnxSETSRefAlarm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2Alarm indicates the alarms on the
second reference. If any of the bits is set to '1', then the second
reference is disqualified by the timing subsystem and the value of
tmnxSyncIfTimingRef2Qualified is set to 'not-qualified'.
los - loss of signal
oof - out of frequency range
oopir - out of pull in range
"
::= { tmnxSyncIfTimingEntry 13 }
tmnxSyncIfTimingFreqOffset OBJECT-TYPE
SYNTAX Integer32
UNITS "parts-per-million"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingFreqOffset indicates the frequency offset
of the current selected timing reference in parts per million (ppm)."
::= { tmnxSyncIfTimingEntry 14 }
tmnxSyncIfTimingStatus OBJECT-TYPE
SYNTAX INTEGER
{
not-present (1),
master-freerun (2),
master-holdover (3),
master-locked (4),
slave (5),
acquiring (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingStatus indicates the present status of
the synchronous timing equipment subsystem (SETS)."
::= { tmnxSyncIfTimingEntry 15 }
tmnxSyncIfTimingRefOrder3 OBJECT-TYPE
SYNTAX TmnxSETSRefSource
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRefOrder3 is the third most preferred
timing reference for the synchronous equipment timing subsystem."
::= { tmnxSyncIfTimingEntry 16 }
tmnxSyncIfTimingBITSIfType OBJECT-TYPE
SYNTAX TmnxBITSIfType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingBITSIfType indicates the interface type
of the BITS (Building Integrated Timing Supply) timing reference. It
also indicates the framing type of the interface."
::= { tmnxSyncIfTimingEntry 17 }
tmnxSyncIfTimingBITSAdminStatus OBJECT-TYPE
SYNTAX TmnxPortAdminStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingBITSAdminStatus indicates administrative
status of the BITS (Building Integrated Timing Supply) timing
reference."
::= { tmnxSyncIfTimingEntry 18 }
tmnxSyncIfTimingBITSInUse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingBITSInUse indicates whether the BITS
timing reference is presently being used by the synchronous timing
subsystem. If it is in use, tmnxSyncIfTimingFreqOffset indicates
the frequency offset for this reference."
::= { tmnxSyncIfTimingEntry 19 }
tmnxSyncIfTimingBITSQualified OBJECT-TYPE
SYNTAX TmnxSETSRefQualified
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingBITSQualified indicates whether the BITS
timing reference is qualified for use by the synchronous timing
subsystem. If tmnxSyncIfTimingBITSQualified is 'not-qualified', then
the object tmnxSyncIfTimingBITSAlarm gives the reason for
disqualification."
::= { tmnxSyncIfTimingEntry 20 }
tmnxSyncIfTimingBITSAlarm OBJECT-TYPE
SYNTAX TmnxSETSRefAlarm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingBITSAlarm indicates the alarms on the
BITS reference. If any of the bits is set to '1', then the BITS
reference is disqualified by the timing subsystem and the value of
tmnxSyncIfTimingBITSQualified is set to 'not-qualified'."
::= { tmnxSyncIfTimingEntry 21 }
tmnxSyncIfTimingRef1SrcHw OBJECT-TYPE
SYNTAX TmnxHwIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1SrcHw indicates the source HW
index of the first timing reference if source is not a port."
::= { tmnxSyncIfTimingEntry 22 }
tmnxSyncIfTimingRef1BITSIfType OBJECT-TYPE
SYNTAX TmnxBITSIfType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef1BITSIfType indicates the interface
type of the first timing reference if the source is BITS. It also
indicates the framing type of the interface."
::= { tmnxSyncIfTimingEntry 23 }
tmnxSyncIfTimingRef2SrcHw OBJECT-TYPE
SYNTAX TmnxHwIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2SrcHw indicates the source HW
index of the second timing reference if source is not a port."
::= { tmnxSyncIfTimingEntry 24 }
tmnxSyncIfTimingRef2BITSIfType OBJECT-TYPE
SYNTAX TmnxBITSIfType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyncIfTimingRef2BITSIfType indicates the interface
type of the second timing reference if the source is BITS. It also
indicates the framing type of the interface."
::= { tmnxSyncIfTimingEntry 25 }
--
-- Administrative value objects
--
tmnxChassisAdminCtrlObjs OBJECT IDENTIFIER ::= { tmnxChassisAdminObjects 1 }
tmnxChassisAdminValueObjs OBJECT IDENTIFIER ::= { tmnxChassisAdminObjects 2 }
--
-- Admin Synchoronous Interface Timing table
--
tSyncIfTimingAdmTable OBJECT-TYPE
SYNTAX SEQUENCE OF TSyncIfTimingAdmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Values for the synchronous interface timing for the chassis."
::= { tmnxChassisAdminValueObjs 1 }
tSyncIfTimingAdmEntry OBJECT-TYPE
SYNTAX TSyncIfTimingAdmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the synchronous interface timing.
Entries are created by user.
Entries are deleted by user.
Note that the first Alcatel 7x50 SR series product release does
not support configuration of synchronous timing equipment on the
secondary CPM. All SNMP operations with tmnxCpmCardSlotNum of the
secondary CPM will be denied.
The 7x50 systems supports 3 timing references (reference1, reference2
and bits).
The 7710 system only supports 2 timing references (reference1 and
reference2). On 7710 system, references can be a source port
or a BITS input on a CES CMA. If the value of the reference source
port is a valid Port ID then the reference is a source port. If the
value of the source hardware is a valid HWIndex of a CES CMA then the
source is a BITS on the CES CMA."
INDEX { tmnxChassisIndex, tmnxCpmCardSlotNum, tmnxCpmCardNum }
::= { tSyncIfTimingAdmTable 1 }
TSyncIfTimingAdmEntry ::=
SEQUENCE {
tSyncIfTimingAdmRevert TruthValue,
tSyncIfTimingAdmRefOrder1 TmnxSETSRefSource,
tSyncIfTimingAdmRefOrder2 TmnxSETSRefSource,
tSyncIfTimingAdmRef1SrcPort TmnxPortID,
tSyncIfTimingAdmRef1AdminStatus TmnxPortAdminStatus,
tSyncIfTimingAdmRef2SrcPort TmnxPortID,
tSyncIfTimingAdmRef2AdminStatus TmnxPortAdminStatus,
tSyncIfTimingAdmChanged Unsigned32,
tSyncIfTimingAdmRefOrder3 TmnxSETSRefSource,
tSyncIfTimingAdmBITSIfType TmnxBITSIfType,
tSyncIfTimingAdmBITSAdminStatus TmnxPortAdminStatus,
tSyncIfTimingAdmRef1SrcHw TmnxHwIndexOrZero,
tSyncIfTimingAdmRef1BITSIfType TmnxBITSIfType,
tSyncIfTimingAdmRef2SrcHw TmnxHwIndexOrZero,
tSyncIfTimingAdmRef2BITSIfType TmnxBITSIfType
}
tSyncIfTimingAdmRevert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRevert specifies whether the reference
source will revert to a higher priority source that has been
re-validated or newly validated.
The synchronous interface timing subsystem is by default non-revertive
('false')."
DEFVAL { false }
::= { tSyncIfTimingAdmEntry 1 }
tSyncIfTimingAdmRefOrder1 OBJECT-TYPE
SYNTAX TmnxSETSRefSource
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRefOrder1 specifies the most preferred
timing reference source.
The synchronous equipment timing subsystem can lock to three
different timing reference inputs, reference1, reference2 and bits.
The subsystem chooses a reference based on priority.
tSyncIfTimingAdmRefOrder1 is used to configure the most preferred
timing reference."
DEFVAL { bits }
::= { tSyncIfTimingAdmEntry 2 }
tSyncIfTimingAdmRefOrder2 OBJECT-TYPE
SYNTAX TmnxSETSRefSource
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRefOrder2 specifies the second most
preferred timing reference for the synchronous equipment timing
subsystem."
DEFVAL { reference1 }
::= { tSyncIfTimingAdmEntry 3 }
tSyncIfTimingAdmRef1SrcPort OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef1SrcPort specifies the source port
of the first timing reference.
This can only be set to a valid TmnxPortID if the value of
tSyncIfTimingAdmRef1SrcHw is 0."
DEFVAL { '1e000000'H }
::= { tSyncIfTimingAdmEntry 4 }
tSyncIfTimingAdmRef1AdminStatus OBJECT-TYPE
SYNTAX TmnxPortAdminStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef1AdminStatus specifies the desired
administrative status of the first timing reference."
DEFVAL { outOfService }
::= { tSyncIfTimingAdmEntry 5 }
tSyncIfTimingAdmRef2SrcPort OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef2SrcPort specifies the source port
of the second timing reference.
This can only be set to a valid TmnxPortID if the value of
tSyncIfTimingAdmRef2SrcHw is 0."
DEFVAL { '1e000000'H }
::= { tSyncIfTimingAdmEntry 6 }
tSyncIfTimingAdmRef2AdminStatus OBJECT-TYPE
SYNTAX TmnxPortAdminStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef2AdminStatus specifies the desired
administrative status of the second timing reference."
DEFVAL { outOfService }
::= { tSyncIfTimingAdmEntry 7 }
tSyncIfTimingAdmChanged OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmChanged is a bitmask that indicates which
objects have been set, but not committed. bit values used here are:
0x0001: tSyncIfTimingAdmRevert
0x0002: tSyncIfTimingAdmRefOrder1
0x0004: tSyncIfTimingAdmRefOrder2
0x0008: tSyncIfTimingAdmRef1SrcPort
0x0010: tSyncIfTimingAdmRef1AdminStatus
0x0020: tSyncIfTimingAdmRef2SrcPort
0x0040: tSyncIfTimingAdmRef2AdminStatus
0x0080: tSyncIfTimingAdmRefOrder3
0x0100: tSyncIfTimingAdmBITSIfType
0x0200: tSyncIfTimingAdmBITSAdminStatus
0x0400: tSyncIfTimingAdmRef1SrcHw
0x0800: tSyncIfTimingAdmRef1BITSIfType
0x1000: tSyncIfTimingAdmRef2SrcHw
0x2000: tSyncIfTimingAdmRef2BITSIfType
The agent sets these bits when an object in the row
is set. This object is cleared to zero by setting
tmnxChassisAdminControlApply to initialize(2) or commit(3).
"
::= { tSyncIfTimingAdmEntry 8 }
tSyncIfTimingAdmRefOrder3 OBJECT-TYPE
SYNTAX TmnxSETSRefSource
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRefOrder3 indicates the third most
preferred timing reference for the synchronous equipment timing
subsystem."
DEFVAL { reference2 }
::= { tSyncIfTimingAdmEntry 9 }
tSyncIfTimingAdmBITSIfType OBJECT-TYPE
SYNTAX TmnxBITSIfType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmBITSIfType specifies the interface type
of the BITS (Building Integrated Timing Supply) timing reference."
DEFVAL { t1-esf }
::= { tSyncIfTimingAdmEntry 10 }
tSyncIfTimingAdmBITSAdminStatus OBJECT-TYPE
SYNTAX TmnxPortAdminStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmBITSAdminStatus specifies the desired
administrative status of the BITS (Building Integrated Timing Supply)
timing reference."
DEFVAL { outOfService }
::= { tSyncIfTimingAdmEntry 11 }
tSyncIfTimingAdmRef1SrcHw OBJECT-TYPE
SYNTAX TmnxHwIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef1SrcHw specifies the source HW
Index of the first timing reference if the source is not a port.
This can only be set to a valid HW Index if the value of
tSyncIfTimingAdmRef1SrcPort is '1e000000'H."
DEFVAL { 0 }
::= { tSyncIfTimingAdmEntry 12 }
tSyncIfTimingAdmRef1BITSIfType OBJECT-TYPE
SYNTAX TmnxBITSIfType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef1BITSIfType specifies the interface
type of the first timing reference if the source is BITS."
DEFVAL { t1-esf }
::= { tSyncIfTimingAdmEntry 13 }
tSyncIfTimingAdmRef2SrcHw OBJECT-TYPE
SYNTAX TmnxHwIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef2SrcHw specifies the source HW
Index of the second timing reference if the source is not a port.
This can only be set to a valid HW Index if the value of
tSyncIfTimingAdmRef2SrcPort is '1e000000'H."
DEFVAL { 0 }
::= { tSyncIfTimingAdmEntry 14 }
tSyncIfTimingAdmRef2BITSIfType OBJECT-TYPE
SYNTAX TmnxBITSIfType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tSyncIfTimingAdmRef2BITSIfType specifies the interface
type of the second timing reference if the source is BITS."
DEFVAL { t1-esf }
::= { tSyncIfTimingAdmEntry 15 }
--
-- Administrative value control objects
--
tmnxChassisAdminOwner OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Who has last initialized the chassis administrative table,
who is making all the changes, and who is expected to
either commit or re-initialize (ABORT-TRANSACTION).
tmnxChassisAdminOwner is advisory only. Before beginning a transaction,
read tmnxChassisAdminOwner. if it is empty then proceed with the
configuration.
Set tmnxChassisAdminOwner after setting tmnxChassisAdminControlApply so
that other users will be advised to not make changes to the Admin
tables.
Agent sets tmnxChassisAdminOwner to empty string after
tmnxChassisAdminControlApply is set - either by user initializing or
committing, or by agent timing out the uncommitted transactions
(tmnxChassisAdminLastSetTimer).
"
::= { tmnxChassisAdminCtrlObjs 1 }
tmnxChassisAdminControlApply OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
initialize(2),
commit(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the use of tmnxChassisAdminTable.
when set to initialize(2), the objects in tmnxChassisAdminTable
are set to the current Operational values, from the tmnxChassisTable.
Any uncommitted changes are lost, so setting this value corresponds
to both BEGIN-TRANSACTION and ABORT-TRANSACTION.
when set to commit(3) (END-TRANSACTION), all of the objects from
tmnxChassisAdminTable are copied to the corresponding tmnxChassisTable
table objects.
"
::= { tmnxChassisAdminCtrlObjs 2 }
tmnxChassisAdminLastSetTimer OBJECT-TYPE
SYNTAX TimeInterval
UNITS "centiseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time remaining until the agent re-initializes the
administrative tables.
If tmnxChassisAdminControlApply is not set to commit(3) within
tmnxChassisAdminLastSetTimeout centiseconds, the agent will set it
to initialize(2) and all uncommitted changes will be lost.
This way, uncommitted changes from failed (uncompleted) change sets
will eventually be removed, and another transaction can safely begin.
this object is reset to tmnxChassisAdminLastSetTimeout after SNMP SET
operation to any of the tmnxChassisAdminValue tables.
"
::= { tmnxChassisAdminCtrlObjs 3 }
tmnxChassisAdminLastSetTimeout OBJECT-TYPE
SYNTAX TimeInterval
UNITS "centiseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Timeout for tmnxChassisAdminLastSetTimer.
The value zero is not allowed.
"
DEFVAL { 180000 }
::= { tmnxChassisAdminCtrlObjs 4 }
--
-- Cross Connect Aggregation Group Table
--
tmnxCcagTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCcagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxCcagTable has an entry for each Cross Connect Aggregation
Group,CCAG, configured on this system."
::= { tmnxCardObjs 12 }
tmnxCcagEntry OBJECT-TYPE
SYNTAX TmnxCcagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a particular CCAG.
Entries are created/deleted by the user.
There is no StorageType object, entries have a presumed
StorageType of nonVolatile."
INDEX { tmnxCcagId }
::= { tmnxCcagTable 1}
TmnxCcagEntry ::= SEQUENCE
{
tmnxCcagId TmnxCcagId,
tmnxCcagRowStatus RowStatus,
tmnxCcagLastChanged TimeStamp,
tmnxCcagDescription DisplayString,
tmnxCcagAdminStatus TmnxAdminState,
tmnxCcagOperStatus TmnxOperState,
tmnxCcagCcaRate TmnxCcagRate,
tmnxCcagAccessAdaptQos INTEGER
}
tmnxCcagId OBJECT-TYPE
SYNTAX TmnxCcagId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxCcagId is used to index into the
tmnxCcagTable. It uniquely identifies a CCAG entry
as configured on this system."
::= { tmnxCcagEntry 1 }
tmnxCcagRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagRowStatus specifies the row status. It
allows entries to be created and deleted in the tmnxCcagTable.
tmnxCcagRowStatus does not support createAndWait. The status
can only be active or notInService."
::= { tmnxCcagEntry 2 }
tmnxCcagLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcagLastChanged indicates the time this row
was last changed."
::= { tmnxCcagEntry 3 }
tmnxCcagDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagDescription specifies a user provided
description string of this CCAG entry."
DEFVAL { ''H }
::= { tmnxCcagEntry 4 }
tmnxCcagAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagAdminStatus specifies the desired state of this
CCAG."
DEFVAL { inService }
::= { tmnxCcagEntry 5 }
tmnxCcagOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcagOperStatus indicates the operational state of this
CCAG."
::= { tmnxCcagEntry 6 }
tmnxCcagCcaRate OBJECT-TYPE
SYNTAX TmnxCcagRate
UNITS "kilobits per second"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagCcaRate specifies the maximum forwarding rate
for each CCA member within the CCAG."
DEFVAL { -1 }
::= { tmnxCcagEntry 7 }
tmnxCcagAccessAdaptQos OBJECT-TYPE
SYNTAX INTEGER
{
link (1),
distribute (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagAccessAdaptQos specifies how the CCAG SAP queue
and virtual scheduler buffering and rate parameters are adapted over
multiple active CCAs.
link (1) - The CCAG will create the SAP queues and virtual
schedulers on each CCA with the actual parameters
specified in the tmnxCcagPathCcTable.
distribute (2) - Each CCA will receive a portion of the parameters
specified in the tmnxCcagPathCcTable."
DEFVAL { distribute }
::= { tmnxCcagEntry 8 }
--
-- Cross Connect Aggregation Group Path Table
--
tmnxCcagPathTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCcagPathEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxCcagPathTable has an entry for each Cross Connect
Aggregation Group, CCAG, path configured on this system."
::= { tmnxCardObjs 13 }
tmnxCcagPathEntry OBJECT-TYPE
SYNTAX TmnxCcagPathEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a particular CCAG Path.
Entries are created/deleted by the user.
There is no StorageType object, entries have a presumed
StorageType of nonVolatile."
INDEX { tmnxCcagId, tmnxCcagPathId }
::= { tmnxCcagPathTable 1}
TmnxCcagPathEntry ::= SEQUENCE
{
tmnxCcagPathId INTEGER,
tmnxCcagPathLastChanged TimeStamp,
tmnxCcagPathRate TmnxCcagRate,
tmnxCcagPathRateOption TmnxCcagRateOption,
tmnxCcagPathWeight Unsigned32
}
tmnxCcagPathId OBJECT-TYPE
SYNTAX INTEGER {
alpha (1),
beta (2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxCcagPathId is used as the secondary index into
the tmnxCcagPathTable. Along with tmnxCcagId, it uniquely identifies
a specific path, alpha or beta, on a CCAG."
::= { tmnxCcagPathEntry 1 }
tmnxCcagPathLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcagPathLastChanged indicates the time this row
was last changed."
::= { tmnxCcagPathEntry 2 }
tmnxCcagPathRate OBJECT-TYPE
SYNTAX TmnxCcagRate
UNITS "kilobits per second"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathRate specifies the bandwidth rate
limitation for this path on each member cross connect
adaptor, CCA, in the CCAG."
DEFVAL { -1 }
::= { tmnxCcagPathEntry 3 }
tmnxCcagPathRateOption OBJECT-TYPE
SYNTAX TmnxCcagRateOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathRateOption specifies whether the
rate in tmnxCcagPathRate is defined as an aggregate path
rate for all CCAs in the CCAG or as a per CCA path
rate."
DEFVAL { aggregate }
::= { tmnxCcagPathEntry 4 }
tmnxCcagPathWeight OBJECT-TYPE
SYNTAX Unsigned32 (1..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathWeight specifies the scheduling
percentage for this path. It is applied to all CCAs in
the CCAG membership list for this path."
DEFVAL { 50 }
::= { tmnxCcagPathEntry 5 }
--
-- CCAG Path Cross-Connect Table
--
tmnxCcagPathCcTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxCcagPathCcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxCcagPathCcTable has an entry for each type of Cross
Connection on a Cross Connect Aggregation Group Path
configured on this system."
::= { tmnxCardObjs 14 }
tmnxCcagPathCcEntry OBJECT-TYPE
SYNTAX TmnxCcagPathCcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a particular CCAG Path Cross Connect.
Entries are created/deleted by the user.
There is no StorageType object, entries have a presumed
StorageType of nonVolatile."
INDEX { tmnxCcagId, tmnxCcagPathId, tmnxCcagPathCcType }
::= { tmnxCcagPathCcTable 1}
TmnxCcagPathCcEntry ::= SEQUENCE
{
tmnxCcagPathCcType INTEGER,
tmnxCcagPathCcLastChanged TimeStamp,
tmnxCcagPathCcEgrPoolResvCbs INTEGER,
tmnxCcagPathCcEgrPoolSlpPlcy TNamedItem,
tmnxCcagPathCcIngPoolResvCbs INTEGER,
tmnxCcagPathCcIngPoolSlpPlcy TNamedItem,
tmnxCcagPathCcAcctPolicyId Unsigned32,
tmnxCcagPathCcCollectStats TruthValue,
tmnxCcagPathCcQueuePlcy TNamedItem,
tmnxCcagPathCcMac MacAddress,
tmnxCcagPathCcMtu Unsigned32,
tmnxCcagPathCcUserAssignedMac TruthValue,
tmnxCcagPathCcHwMac MacAddress
}
tmnxCcagPathCcType OBJECT-TYPE
SYNTAX INTEGER {
sapsap (1),
sapnet (2),
netsap (3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcType is used as a third index into
the tmnxCcagPathCcTable. Along with tmnxCcagId and tmnxCcagPathId,
it uniquely identifies a cross connection type on a specific path
in a particular CCAG. The types are:
sapsap (1): the cross connection is between two saps, where both
services are access.
sapnet (2): the cross connection is between a sap and a network
service.
netsap (3): the cross connection is between a network and a sap
service."
::= { tmnxCcagPathCcEntry 1 }
tmnxCcagPathCcLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcLastChanged indicates the time this row
was last changed."
::= { tmnxCcagPathCcEntry 2 }
tmnxCcagPathCcEgrPoolResvCbs OBJECT-TYPE
SYNTAX INTEGER (-1|0..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcEgrPoolResvCbs specifies the percentage
of pool size reserved for the committed burst size, CBS. The value '-1'
implies that the reserved CBS should be computed as the sum of
the CBS requested by the entities using this pool if the application
point is 'network'. For 'access' application points the value '-1'
means a default of 30%."
DEFVAL { -1 }
::= { tmnxCcagPathCcEntry 3 }
tmnxCcagPathCcEgrPoolSlpPlcy OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcEgrPoolSlpPlcy specifies the slope
policy being used for the egress pool. The Slope policies define the
nature of the RED Slopes for the high and the low priority traffic."
DEFVAL { "default" }
::= { tmnxCcagPathCcEntry 4 }
tmnxCcagPathCcIngPoolResvCbs OBJECT-TYPE
SYNTAX INTEGER (-1|0..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcIngPoolResvCbs specifies the percentage
of pool size reserved for the committed burst size, CBS. The value '-1'
implies that the reserved CBS should be computed as the sum of
the CBS requested by the entities using this pool if the application
point is 'network'. For 'access' application points the value '-1'
means a default of 30%. tmnxCcagPathCcIngPoolResvCbs does not apply
to tmnxCcagPathCcType 'netsap'."
DEFVAL { -1 }
::= { tmnxCcagPathCcEntry 5 }
tmnxCcagPathCcIngPoolSlpPlcy OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcIngPoolSlpPlcy specifies the slope policy
being used for the ingress pool. The Slope policies define the nature
of the RED Slopes for the high and the low priority traffic.
tmnxCcagPathCcIngPoolSlpPlcy does not apply to tmnxCcagPathCcType
'netsap'."
DEFVAL { "default" }
::= { tmnxCcagPathCcEntry 6 }
tmnxCcagPathCcAcctPolicyId OBJECT-TYPE
SYNTAX Unsigned32 (0..99)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcAcctPolicyId specifies the accounting
policy which must be defined prior to associating it with the port.
A non-zero value indicates the tmnxLogApPolicyId index identifying the
policy entry in the tmnxLogApTable from the TIMETRA-LOG-MIB which is
associated with this port. A zero value indicates that there is no
accounting policy associated with this port. It is only meaningful
when the tmnxCcagPathCcType is 'netsap'."
DEFVAL { 0 }
::= { tmnxCcagPathCcEntry 7 }
tmnxCcagPathCcCollectStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcCollectStats specifies whether the collection
of accounting and statistical data for the network port is
enabled/disabled, 'true'/'false'. When applying accounting policies the
data by default will be collected in the appropriate records and
written to the designated billing file.
When the value is set to false, the statistics are still accumulated
by the IOM cards, however, the CPU will not obtain the results and
write them to the billing file. If the value of tmnxCcagPathCcType is
not 'netsap', the value of this object is meaningless and an attempt
to set it will result in an inconsistentValue error."
DEFVAL { false }
::= { tmnxCcagPathCcEntry 8 }
tmnxCcagPathCcQueuePlcy OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcQueuePlcy specifies the network egress
queue policy. If the value of tmnxCcagPathCcType is
not 'netsap', the value of this object is meaningless and an attempt
to set it will result in an inconsistentValue error."
DEFVAL { "default" }
::= { tmnxCcagPathCcEntry 9 }
tmnxCcagPathCcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcMac specifies the MAC address of
the virtual LAG that maps to tmnxCcagPathId and tmnxCcagPathCcType.
The default value of this object is derived from the chassis MAC
address pool."
DEFVAL {'000000000000'h }
::= { tmnxCcagPathCcEntry 10 }
tmnxCcagPathCcMtu OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcMtu specifies the MTU of the path
indexed by tmnxCcagId, tmnxCcagPathId, and tmnxCcagPathCcType.
When the value is '0', the real MTU is calculated internally."
DEFVAL { 0 }
::= { tmnxCcagPathCcEntry 11 }
tmnxCcagPathCcUserAssignedMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcUserAssignedMac indicates whether
the value of tmnxCcagPathCcMac has been explicitly assigned
or inherited from tmnxCcagPathCcHwMac, 'true' and 'false',
respectively."
DEFVAL { false }
::= { tmnxCcagPathCcEntry 12 }
tmnxCcagPathCcHwMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxCcagPathCcHwMac is the system assigned MAC
address of the virtual LAG that maps to tmnxCcagPathId and
tmnxCcagPathCcType. When tmnxCcagPathCcUserAssignedMac is
'false', tmnxCcagPathCcMac inherits its value from this object."
::= { tmnxCcagPathCcEntry 13 }
--
-- Alcatel 7710 SR series Mda Carrier Module (MCM) Table
--
tmnxMcmTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxMcmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxMcmTable has an entry for each Mda Carrier module
(MCM) on the 7710 system."
::= { tmnxCardObjs 15 }
tmnxMcmEntry OBJECT-TYPE
SYNTAX TmnxMcmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a MCM in a chassis in the 7710 system.
Entries in the table cannot be created and deleted via SNMP SET
operations. When a tmnxChassisEntry is created, a
tmnxMcmEntry is created in the chassis. Before a
tmnxChassisEntry can be deleted, each tmnxMcmEntry
for the chassis must be in the proper state for removal."
INDEX { tmnxChassisIndex, tmnxCardSlotNum, tmnxMcmSlotNum }
::= { tmnxMcmTable 1 }
TmnxMcmEntry ::=
SEQUENCE {
tmnxMcmSlotNum Unsigned32,
tmnxMcmSupportedTypes TmnxMcmType,
tmnxMcmAssignedType TmnxMcmType,
tmnxMcmEquippedType TmnxMcmType,
tmnxMcmHwIndex TmnxHwIndex
}
tmnxMcmSlotNum OBJECT-TYPE
SYNTAX Unsigned32 (0..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique value which identifies this MDA slot within a specific
IOM card in the system. Since the MCM occupies two MDA slots in
the chassis this value can only be an odd number."
::= { tmnxMcmEntry 1 }
tmnxMcmSupportedTypes OBJECT-TYPE
SYNTAX TmnxMcmType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that specifies what MCM types can be physically supported
in this chassis."
::= { tmnxMcmEntry 2 }
tmnxMcmAssignedType OBJECT-TYPE
SYNTAX TmnxMcmType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A bit-mask that identifies the administratively assigned
(pre-provisioned) MCM type that should occupy this chassis.
If tmnxMcmAssignedType has a value of 'unassigned',
this slot has not yet been pre-provisioned. There must not be more
than one bit set at a time in tmnxMcmAssignedType."
DEFVAL { 1 }
::= { tmnxMcmEntry 3 }
tmnxMcmEquippedType OBJECT-TYPE
SYNTAX TmnxMcmType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit-mask that identifies the MCM type that is physically
inserted into this chassis. If the chassis has been pre-provisioned,
tmnxMcmAssignedType is not equal 'unassigned', and the
value of tmnxMcmEquippedType is not the same as
tmnxMcmAssignedType, a mis-match alarm will be raised.
If the chassis has not been pre-provisioned, and the value of
tmnxMcmEquippedType is not one of the supported types as
specified by tmnxMcmSupportedTypes, a mis-match alarm will
be raised. There will not be more than one bit set at a time in
tmnxMcmEquippedType."
::= { tmnxMcmEntry 4 }
tmnxMcmHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxMcmHwIndex is the index into the
tmnxHwTable for the row entry that represents the hardware component
information for this MCM."
::= { tmnxMcmEntry 5 }
--
-- Mda Carrier Module Type (MCM) Definition Table
--
tmnxMcmTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxMcmTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The card type table has an entry for each Alcatel 7710 series
Mda Carrier Module (MCM) model."
::= { tmnxCardObjs 16 }
tmnxMcmTypeEntry OBJECT-TYPE
SYNTAX TmnxMcmTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents an Alcatel 7710 series MCM model.
Rows in this table are created by the agent at initialization and
cannot be created or destroyed by SNMP Get or Set requests."
INDEX { tmnxMcmTypeIndex }
::= { tmnxMcmTypeTable 1 }
TmnxMcmTypeEntry ::=
SEQUENCE {
tmnxMcmTypeIndex TmnxMcmType,
tmnxMcmTypeName TNamedItemOrEmpty,
tmnxMcmTypeDescription TItemDescription,
tmnxMcmTypeStatus TruthValue
}
tmnxMcmTypeIndex OBJECT-TYPE
SYNTAX TmnxMcmType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index value which identifies this type of Alcatel
7710 series MCM model."
::= { tmnxMcmTypeEntry 1 }
tmnxMcmTypeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative name that identifies this type of Alcatel
7710 series MCM model. This name string may be used in CLI
commands to specify a particular card model type."
::= { tmnxMcmTypeEntry 2 }
tmnxMcmTypeDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A detailed description of this Alcatel 7710 series MCM model."
::= { tmnxMcmTypeEntry 3 }
tmnxMcmTypeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When tmnxMcmTypeStatus has a value of 'true' it
indicates that this MCM is supported in this revision of the
management software. When it has a value of 'false' there is no
support."
::= { tmnxMcmTypeEntry 4 }
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- Notification Definition section
--
-- Notification Objects
--
tmnxEqNotificationRow OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"used by tmnx chassis Notifications, the OID
indicates the table and entry."
::= { tmnxChassisNotificationObjects 1 }
tmnxEqTypeNotificationRow OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"used by tmnx chassis notifications, the OID indicates the
table and entry with the equipment model type information."
::= { tmnxChassisNotificationObjects 2 }
tmnxChassisNotifyChassisId OBJECT-TYPE
SYNTAX TmnxChassisIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnx chassis and port Notifications, indicates the chassis
associated with the alarm."
::= { tmnxChassisNotificationObjects 3 }
tmnxChassisNotifyHwIndex OBJECT-TYPE
SYNTAX TmnxHwIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnx chassis and port Notifications, indicates the entry
in the tmnxHwTable for the hardware component associated with an
alarm."
::= { tmnxChassisNotificationObjects 4 }
tmnxRedSecondaryCPMStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1),
offline (2),
fail (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by the tmnxRedSecondaryCPMStatusChange Notification, indicates
the status of the secondary CPM."
::= { tmnxChassisNotificationObjects 5 }
tmnxChassisNotifyOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by the tmnxChassisNotificationClear trap, the OID
identifies the trap which is getting cleared."
::= { tmnxChassisNotificationObjects 6 }
tmnxSyncIfTimingNotifyAlarm OBJECT-TYPE
SYNTAX INTEGER {
notUsed (0),
los (1),
oof (2),
oopir (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnx Synchronous interface timing notifications, the value of
tmnxSyncIfTimingNotifyAlarm indicates the reason a timing reference
alarm has been raised."
::= { tmnxChassisNotificationObjects 7 }
tmnxChassisNotifyMismatchedVer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnxPeSoftwareVersionMismatch, the value of
tmnxChassisNotifyMismatchedVer indicates the software version of the
mismatched CPM/IOM card."
::= { tmnxChassisNotificationObjects 8 }
tmnxChassisNotifySoftwareLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnxPeSoftwareLoadFailed, the value of
tmnxChassisNotifySoftwareLocation contains the location of the
software."
::= { tmnxChassisNotificationObjects 9 }
tmnxChassisNotifyCardFailureReason OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnxEqCardFailure, the value of
tmnxChassisNotifyCardFailureReason contains the
reason for card failure."
::= { tmnxChassisNotificationObjects 10 }
tmnxChassisNotifyCardName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tmnxEqCardInserted and tmnxEqCardRemoved, the value
of tmnxChassisNotifyCardName specifies the name of the affected
card."
::= { tmnxChassisNotificationObjects 11 }
--
-- ALCATEL-IND1-TIMETRA-CHASSIS-MIB Notifications
--
--
-- Hardware Configuration Change Alarm
--
tmnxHwConfigChange NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"A tmnxHwConfigChange notification is generated when the value of
tmnxHwLastChange is updated. It can be used by the NMS to trigger
maintenance polls of the hardware configuration information.
Only one tmnxHwConfigChange notification event will be generated
in a 5 second throttling time period. A notification event is
the transmission of a single trap to a list of notification
destinations configured in the SNMP-TARGET-MIB.
If additional hardware configuration change occurs within the
throttling period, the notification events for these changes are
suppressed until the throttling period expires. At the end of
the throttling period, one notification event is generated if
any addition configuration changes occurred within the just
completed throttling period and another throttling period is
started.
The NMS should periodically check the value of tmnxHwConfigChange
to detect any missed tmnxHwConfigChange traps.
This notification was made obsolete in the 2.1 release.
The tmnxHwConfigChange notification has been replaced
with the generic change notifications from the
TIMETRA-SYSTEM-MIB: tmnxConfigModify, tmnxConfigCreate,
tmnxConfigDelete, tmnxStateChange."
::= { tmnxChassisNotification 1 }
--
-- Environmental Alarms
--
tmnxEnvTempTooHigh NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxHwTemperature,
tmnxHwTempThreshold
}
STATUS current
DESCRIPTION
"Generated when the temperature sensor reading on an equipment
object is greater than its configured threshold."
::= { tmnxChassisNotification 2 }
--
-- Equipment Alarms
--
tmnxEqPowerSupplyFailure NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisPowerSupplyACStatus,
tmnxChassisPowerSupplyDCStatus,
tmnxChassisPowerSupplyTempStatus,
tmnxChassisPowerSupplyTempThreshold,
tmnxChassisPowerSupply1Status,
tmnxChassisPowerSupply2Status,
tmnxChassisPowerSupplyInputStatus,
tmnxChassisPowerSupplyOutputStatus
}
STATUS current
DESCRIPTION
"Generated when one of the chassis's power supplies fails."
::= { tmnxChassisNotification 3 }
tmnxEqPowerSupplyInserted NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when one of the chassis's power supplies is inserted."
::= { tmnxChassisNotification 4 }
tmnxEqPowerSupplyRemoved NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when one of the chassis's power supplies is removed."
::= { tmnxChassisNotification 5 }
tmnxEqFanFailure NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisFanOperStatus,
tmnxChassisFanSpeed
}
STATUS current
DESCRIPTION
"Generated when one of the fans in a fan tray has failed."
::= { tmnxChassisNotification 6 }
tmnxEqCardFailure NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxHwOperState,
tmnxChassisNotifyCardFailureReason
}
STATUS current
DESCRIPTION
"Generated when one of the cards in a chassis has failed. The card
type may be IOM, Fabric, MDA, MCM, CCM, CPM module, compact flash
module, etc. tmnxChassisNotifyCardFailureReason contains the reason
for card failure."
::= { tmnxChassisNotification 7 }
tmnxEqCardInserted NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyCardName
}
STATUS current
DESCRIPTION
"Generated when a card is inserted into the chassis. The card type
may be IOM, Fabric, MDA, MCM, CCM CPM module, compact flash module,
etc."
::= { tmnxChassisNotification 8 }
tmnxEqCardRemoved NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyCardName
}
STATUS current
DESCRIPTION
"Generated when a card is removed from the chassis. The card type
may be IOM, Fabric, MDA, MCM, CCM, CPM module, compact flash module,
etc."
::= { tmnxChassisNotification 9 }
tmnxEqWrongCard NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when the wrong type of card is inserted into a slot of
the chassis. Even though a card may be physically supported by
the slot, it may have been administratively configured to allow
only certain card types in a particular slot location. The card
type may be IOM, Fabric, MDA, MCM, CPM module, etc."
::= { tmnxChassisNotification 10 }
tmnxEqCpuFailure NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when a failure is detected for a CPU on an IOM card or
CPM module.
This notification was made obsolete in the 2.1 release.
A cpu failure on a CPM card is detected by the hardware
bootup and is indicated by the boot diagnostic display.
If there is no working redundant CPM card, the system
does not come up.
A failure of an IOM card or standby redundant CPM card
causes the tmnxEqCardFailure notification to be sent."
::= { tmnxChassisNotification 11 }
tmnxEqMemoryFailure NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when a memory module failure is detected for an IOM card or
CPM module.
This notification was made obsolete in the 2.1 release.
A failure of the memory device is detected by the
hardware bootup and is indicated by the boot diagnostic
display. If there is no working redundant CPM card,
the system does not come up.
A failure of the memory device during run-time causes
the system to fail and the 'admin tech-support'
information to be saved.
A failure of an IOM card or standby redundant CPM card
causes the tmnxEqCardFailure notification to be sent."
::= { tmnxChassisNotification 12 }
tmnxEqBackdoorBusFailure NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyChassisId
}
STATUS obsolete
DESCRIPTION
"Generated when the backdoor bus has failed.
This notification was made obsolete in the 2.1 release."
::= { tmnxChassisNotification 13 }
--
-- Processing Error Alarms
--
tmnxPeSoftwareError NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when a software error has been detected.
This notification was made obsolete in the 2.1 release.
Many of the other notifications more specifically
indicate detection of some type of software error.
The 'admin tech-support' information helps developers
diagnose a failure of the software in the field."
::= { tmnxChassisNotification 14 }
tmnxPeSoftwareAbnormalHalt NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when the software has abnormally terminated.
This notification was made obsolete in the 2.1 release.
Many of the other notifications more specifically
indicate detection of some type of software error.
The 'admin tech-support' information helps developers
diagnose a failure of the software in the field."
::= { tmnxChassisNotification 15 }
tmnxPeSoftwareVersionMismatch NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyMismatchedVer,
tmnxHwSoftwareCodeVersion
}
STATUS current
DESCRIPTION
"Generated when there is a mismatch between software versions of the
active CPM and standby CPM or the CPM and IOM.
tmnxChassisNotifyHwIndex identifies the mismatched CPM/IOM card and
tmnxChassisNotifyMismatchedVer will contain the version of the
mismatched card. The tmnxHwSoftwareCodeVersion object will contain
the expected version."
::= { tmnxChassisNotification 16 }
tmnxPeOutOfMemory NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when there is an out of memory error detected.
This notification was made obsolete in the 2.1 release.
The tmnxPeOutOfMemory notification has been replaced
with the module specific notification from the
TIMETRA-SYSTEM-MIB: tmnxModuleMallocFailed."
::= { tmnxChassisNotification 17 }
tmnxPeConfigurationError NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when a configuration error has been detected.
This notification was made obsolete in the 2.1 release.
Many other notifications more specifically indicate
detection of a configuration error. In most cases the
SNMP SET request that tries to make an invalid
configuration results in an error response.
In some cases the configuration parameters are valid
and the SNMP SET request succeeds but the system cannot
successfully apply the new parameters. The affected
object may then put into an operational 'down' state.
A state change notification such as tmnxStateChange or
a more specific notification is sent to alert about the
problem.
For example, an attempt to create an event log with a
file-type destination when the specified cflash media is
full or not present results in TIMETRA-LOG-MIB
notifications tmnxLogSpaceContention, tmnxLogAdminLocFailed,
or tmnxLogBackupLocFailed."
::= { tmnxChassisNotification 18 }
tmnxPeStorageProblem NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when there is a storage capacity problem.
This notification was made obsolete in the 2.1 release.
The only 'storage' devices on the SR7750 are the cflash
drives. Cflash write errors cause a tmnxEqFlashDataLoss
notification to be sent. The tmnxEqFlashDiskFull
notification is sent when the driver detects that the
cflash device is full."
::= { tmnxChassisNotification 19 }
tmnxPeCpuCyclesExceeded NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when the CPU cycle usage limit has been exceeded.
This notification was made obsolete in the 2.1 release.
It does not apply. The SR7750 software architecture does
not restrict CPU cycles used by a specific code module."
::= { tmnxChassisNotification 20 }
--
-- Redundancy notifications
--
tmnxRedPrimaryCPMFail NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when the primary CPM fails."
::= { tmnxChassisNotification 21 }
tmnxRedSecondaryCPMStatusChange NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxRedSecondaryCPMStatus
}
STATUS obsolete
DESCRIPTION
"Generated when there is a change in the secondary CPM status.
This notification was made obsolete in the 2.1 release.
There is no way to administratively enable or disable
CPM cards so there is no need for a status change event
for administrative state changes.
Operational changes detected about the standby CPM
card are indicated by more specific notifications such
as tmnxEqCardFailure, tmnxEqCardRemoved, tmnxEqCardInserted
TIMETRA-SYSTEM-MIB::ssiRedStandbyReady,
TIMETRA-SYSTEM-MIB::ssiRedStandbySyncLost, and
TIMETRA-SYSTEM-MIB::ssiRedStandbySyncLost."
::= { tmnxChassisNotification 22 }
tmnxRedRestoreSuccess NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when the secondary CPM successfully restores
the config and state.
This notification was made obsolete in the 2.1 release.
It does not apply. This event was originally created
for an early redundancy mechanism that was never
released."
::= { tmnxChassisNotification 23 }
tmnxRedRestoreFail NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS obsolete
DESCRIPTION
"Generated when the secondary CPM fails to
restore the config and state.
This notification was made obsolete in the 2.1 release.
It does not apply. This event was originally created
for an early redundancy mechanism that was never
released."
::= { tmnxChassisNotification 24 }
--
-- Chassis Clear Alarm
--
tmnxChassisNotificationClear NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyOID
}
STATUS current
DESCRIPTION
"A trap indicating the clear of a chassis notification
identified by tmnxChassisNotifyOID."
::= { tmnxChassisNotification 25 }
--
-- Synchronous timing alarms
--
tmnxEqSyncIfTimingHoldover NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when the synchronous equipment timing subsystem
transitions into a holdover state.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 26 }
tmnxEqSyncIfTimingHoldoverClear NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when the synchronous equipment timing subsystem
transitions out of the holdover state.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 27 }
tmnxEqSyncIfTimingRef1Alarm NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxSyncIfTimingNotifyAlarm
}
STATUS current
DESCRIPTION
"Generated when an alarm condition on the first timing
reference is detected.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 28 }
tmnxEqSyncIfTimingRef1AlarmClear NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxSyncIfTimingNotifyAlarm
}
STATUS current
DESCRIPTION
"Generated when an alarm condition on the first timing
reference is cleared.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 29 }
tmnxEqSyncIfTimingRef2Alarm NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxSyncIfTimingNotifyAlarm
}
STATUS current
DESCRIPTION
"Generated when an alarm condition on the second timing
reference is detected.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 30 }
tmnxEqSyncIfTimingRef2AlarmClear NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxSyncIfTimingNotifyAlarm
}
STATUS current
DESCRIPTION
"Generated when an alarm condition on the second timing
reference is cleared.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 31 }
tmnxEqFlashDataLoss NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxHwOperState
}
STATUS current
DESCRIPTION
"tmnxEqFlashDataLoss is generated when there was an error
while data was getting written on to the compact flash. This
notification indicates a probable data loss."
::= { tmnxChassisNotification 32 }
tmnxEqFlashDiskFull NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxHwOperState
}
STATUS current
DESCRIPTION
"tmnxEqFlashDiskFull is generated when there is no space
left on the compact flash. No more data can be written to it."
::= { tmnxChassisNotification 33 }
tmnxPeSoftwareLoadFailed NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifySoftwareLocation
}
STATUS current
DESCRIPTION
"Generated when the CPM fails to load the software from a specified
location.
tmnxChassisNotifyHwIndex identifies the card for which the software
load failed and tmnxChassisNotifySoftwareLocation contains the
location from where the software load was attempted."
::= { tmnxChassisNotification 34 }
tmnxPeBootloaderVersionMismatch NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyMismatchedVer,
tmnxHwSoftwareCodeVersion
}
STATUS current
DESCRIPTION
"Generated when there is a mismatch between the CPM and boot loader
versions. tmnxChassisNotifyHwIndex identifies the CPM card.
tmnxChassisNotifyMismatchedVer contains the mismatched version of
bootloader and tmnxHwSoftwareCodeVersion contains the
expected version of the bootloader."
::= { tmnxChassisNotification 35 }
tmnxPeBootromVersionMismatch NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyMismatchedVer,
tmnxHwSoftwareCodeVersion
}
STATUS current
DESCRIPTION
"Generated when there is a mismatch between the boot rom versions.
tmnxChassisNotifyHwIndex identifies the IOM card.
tmnxChassisNotifyMismatchedVer contains the mismatched version of
bootrom and tmnxHwSoftwareCodeVersion contains the expected version
of the bootrom."
::= { tmnxChassisNotification 36 }
tmnxPeFPGAVersionMismatch NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxChassisNotifyMismatchedVer,
tmnxHwSoftwareCodeVersion
}
STATUS current
DESCRIPTION
"Generated when there is a mismatch between the FPGA versions.
tmnxChassisNotifyHwIndex identifies the IOM card.
tmnxChassisNotifyMismatchedVer contains the mismatched version of
FPGA and tmnxHwSoftwareCodeVersion contains the expected version
of the FPGA."
::= { tmnxChassisNotification 37 }
tmnxEqSyncIfTimingBITSAlarm NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxSyncIfTimingNotifyAlarm
}
STATUS current
DESCRIPTION
"Generated when an alarm condition on the BITS timing
reference is detected.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 38 }
tmnxEqSyncIfTimingBITSAlarmClear NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass,
tmnxSyncIfTimingNotifyAlarm
}
STATUS current
DESCRIPTION
"Generated when an alarm condition on the BITS timing
reference is cleared.
This notification will have the same indices as those of
the tmnxCpmCardTable."
::= { tmnxChassisNotification 39 }
tmnxEqCardFirmwareUpgraded NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when a card is hot-inserted into the chassis and its
firmware is automatically upgraded. The card type may be IOM or
CPM module."
::= { tmnxChassisNotification 40 }
tmnxChassisUpgradeInProgress NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"The tmnxChassisUpgradeInProgress notification is generated only
after a CPM switchover occurs and the new active CPM is running new
software, while the IOMs are still running old software. This is the
start of the upgrade process. The tmnxChassisUpgradeInProgress
notification will continue to be generated every 30 minutes while at
least one IOM is still running older software."
::= { tmnxChassisNotification 41 }
tmnxChassisUpgradeComplete NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"The tmnxChassisUpgradeComplete notification is generated to
indicate that all the IOMs are running matching software version in
reference to the active CPM software version changed as part of the
upgrade process."
::= { tmnxChassisNotification 42 }
tmnxChassisHiBwMcastAlarm NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"The tmnxChassisHiBwMcastAlarm notification is generated when a plane
is shared by more than one high bandwidth multicast tap."
::= { tmnxChassisNotification 43 }
tmnxEqMdaCfgNotCompatible NOTIFICATION-TYPE
OBJECTS {
tmnxChassisNotifyHwIndex,
tmnxHwID,
tmnxHwClass
}
STATUS current
DESCRIPTION
"Generated when a supported MDA is inserted into a slot of an
IOM, the MDA is compatible with the currently provisioned
MDA, but the current configuration on the MDA's ports is not
compatible with the inserted MDA."
::= { tmnxChassisNotification 44 }
--
--
--
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- TMNX-HW-MIB Object Groups
--
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- The compliance specifications.
--
tmnxChassisCompliances OBJECT IDENTIFIER ::= { tmnxChassisConformance 1 }
tmnxChassisGroups OBJECT IDENTIFIER ::= { tmnxChassisConformance 2 }
-- compliance statements
-- tmnxChassisCompliance MODULE-COMPLIANCE
-- ::= { tmnxChassisCompliances 1 }
-- tmnxChassisR2r1Compliance MODULE-COMPLIANCE
-- ::= { tmnxChassisCompliances 2 }
-- tmnxChassisV3v0Compliance MODULE-COMPLIANCE
-- ::= { tmnxChassisCompliances 3 }
tmnxChassisV4v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of chassis features
in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV3v0Group,
tmnxCardV3v0Group,
tmnxMDAV4v0Group,
tmnxChassisNotificationV4v0Group
}
::= { tmnxChassisCompliances 4 }
tmnxChassisV5v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of chassis features
in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV5v0Group,
tmnxCardV3v0Group,
tmnxMDAV4v0Group,
tmnxChassisNotificationV4v0Group
}
::= { tmnxChassisCompliances 6 }
tmnxChassis7750V6v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of chassis features
on the 7750 in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV5v0Group,
tmnxCardV3v0Group,
tmnxMDAV4v0Group,
tmnxChassisNotificationV6v0Group,
tmnx77x0CESMDAV6v0Group,
tmnxCardV6v0NamedPoolPlcyGroup,
-- tmnx7710HwV3v0Group
-- tmnx7710SETSRefSrcHwV6v0Group
tmnxMDAMcPathMgmtV6v0Group
}
::= { tmnxChassisCompliances 7 }
tmnxChassis7450V6v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of chassis features
on the 7450 in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV5v0Group,
tmnxCardV3v0Group,
tmnxMDAV4v0Group,
tmnxCardV6v0NamedPoolPlcyGroup,
tmnxChassisNotificationV6v0Group,
-- tmnx77x0CESMDAV6v0Group
-- tmnx7710HwV3v0Group
-- tmnx7710SETSRefSrcHwV6v0Group
tmnxMDAMcPathMgmtV6v0Group
}
::= { tmnxChassisCompliances 8 }
tmnxChassisComp7710 OBJECT IDENTIFIER ::= { tmnxChassisCompliances 5 }
tmnxChassisComp7710V3v0 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of chassis features
for the 7710 in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV3v0Group,
tmnxCardV3v0Group,
tmnxMDAV3v0Group,
tmnxChassisNotificationV3v0Group,
tmnx7710HwV3v0Group
}
::= { tmnxChassisComp7710 1 }
tmnxChassisComp7710V5v0 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of chassis features
for the 7710 in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV5v0Group,
tmnxCardV3v0Group,
tmnxMDAV4v0Group,
tmnxChassisNotificationV4v0Group,
tmnx7710HwV3v0Group
}
::= { tmnxChassisComp7710 2 }
tmnxChassisComp7710V6v0 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of chassis features
for the 7710 in the ALCATEL-IND1-TIMETRA-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
tmnxChassisV5v0Group,
tmnxCardV3v0Group,
tmnxMDAV4v0Group,
tmnxChassisNotificationV6v0Group,
tmnx7710HwV3v0Group,
tmnx77x0CESMDAV6v0Group,
tmnx7710SETSRefSrcHwV6v0Group,
tmnxCardV6v0NamedPoolPlcyGroup,
tmnxMDAMcPathMgmtV6v0Group
}
::= { tmnxChassisComp7710 3 }
-- units of conformance
-- tmnxChassisGroup OBJECT-GROUP
-- ::= { tmnxChassisGroups 1 }
-- tmnxCardGroup OBJECT-GROUP
-- ::= { tmnxChassisGroups 2 }
-- tmnxMDAGroup OBJECT-GROUP
-- ::= { tmnxChassisGroups 3 }
tmnxChassisNotifyObjsGroup OBJECT-GROUP
OBJECTS { tmnxEqNotificationRow,
tmnxEqTypeNotificationRow,
tmnxChassisNotifyChassisId,
tmnxChassisNotifyHwIndex,
tmnxRedSecondaryCPMStatus,
tmnxChassisNotifyOID,
tmnxSyncIfTimingNotifyAlarm,
tmnxChassisNotifyMismatchedVer,
tmnxChassisNotifySoftwareLocation,
tmnxChassisNotifyCardFailureReason
}
STATUS current
DESCRIPTION
"The group of objects supporting chassis hardware notifications
on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 4 }
-- tmnxChassisNotificationGroup NOTIFICATION-GROUP
-- ::= { tmnxChassisGroups 5 }
-- tmnxChassisNotificationR2r1Group NOTIFICATION-GROUP
-- ::= { tmnxChassisGroups 6 }
tmnxChassisNotifyObsoleteGroup NOTIFICATION-GROUP
NOTIFICATIONS { tmnxHwConfigChange,
tmnxEqCpuFailure,
tmnxEqMemoryFailure,
tmnxEqBackdoorBusFailure,
tmnxPeSoftwareError,
tmnxPeSoftwareAbnormalHalt,
tmnxPeOutOfMemory,
tmnxPeConfigurationError,
tmnxPeStorageProblem,
tmnxPeCpuCyclesExceeded,
tmnxRedSecondaryCPMStatusChange,
tmnxRedRestoreSuccess,
tmnxRedRestoreFail
}
STATUS current
DESCRIPTION
"The group of notifications supporting the management of chassis
hardware made obsolete for revision 2.1 on Alcatel 7x50 SR series
systems."
::= { tmnxChassisGroups 7 }
-- tmnxChassisR2r1Group OBJECT-GROUP
-- ::= { tmnxChassisGroups 8 }
tmnxChassisV3v0Group OBJECT-GROUP
OBJECTS { tmnxChassisTotalNumber,
tmnxChassisLastChange,
tmnxChassisRowStatus,
tmnxChassisName,
tmnxChassisType,
tmnxChassisLocation,
tmnxChassisCoordinates,
tmnxChassisNumSlots,
tmnxChassisNumPorts,
tmnxChassisNumPwrSupplies,
tmnxChassisNumFanTrays,
tmnxChassisNumFans,
tmnxChassisCriticalLEDState,
tmnxChassisMajorLEDState,
tmnxChassisMinorLEDState,
tmnxChassisBaseMacAddress,
tmnxChassisCLLICode,
tmnxChassisReboot,
tmnxChassisUpgrade,
tmnxChassisAdminMode,
tmnxChassisOperMode,
tmnxChassisModeForce,
tmnxChassisUpdateWaitTime,
tmnxChassisUpdateTimeLeft,
tmnxChassisFanOperStatus,
tmnxChassisFanSpeed,
tmnxChassisPowerSupplyACStatus,
tmnxChassisPowerSupplyDCStatus,
tmnxChassisPowerSupplyTempStatus,
tmnxChassisPowerSupplyTempThreshold,
tmnxChassisPowerSupply1Status,
tmnxChassisPowerSupply2Status,
tmnxChassisPowerSupplyAssignedType,
tmnxChassisTypeName,
tmnxChassisTypeDescription,
tmnxChassisTypeStatus,
tmnxHwLastChange,
tmnxHwID,
tmnxHwMfgString,
tmnxHwMfgBoardNumber,
tmnxHwSerialNumber,
tmnxHwManufactureDate,
tmnxHwClass,
tmnxHwName,
tmnxHwAlias,
tmnxHwAssetID,
tmnxHwCLEI,
tmnxHwIsFRU,
tmnxHwContainedIn,
tmnxHwParentRelPos,
tmnxHwAdminState,
tmnxHwOperState,
tmnxHwTempSensor,
tmnxHwTemperature,
tmnxHwTempThreshold,
tmnxHwBootCodeVersion,
tmnxHwSoftwareCodeVersion,
tmnxHwSwLastBoot,
tmnxHwAlarmState,
tmnxHwLastAlarmEvent,
tmnxHwClearAlarms,
tmnxHwSwImageSource,
tmnxHwMfgDeviations,
tmnxHwBaseMacAddress,
tmnxHwFailureReason,
tmnxHwContainedIndex
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of chassis hardware
capabilities on release 3.0 of Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 9 }
tmnxMDAV3v0Group OBJECT-GROUP
OBJECTS { tmnxMDASupportedTypes,
tmnxMDAAssignedType,
tmnxMDAEquippedType,
tmnxMDAHwIndex,
tmnxMDAMaxPorts,
tmnxMDAEquippedPorts,
tmnxMDATxTimingSelected,
tmnxMDASyncIfTimingStatus,
tmnxMDANetworkIngQueues,
tmnxMDACapabilities,
tmnxMDAMinChannelization,
tmnxMDAMaxChannelization,
tmnxMDAMaxChannels,
tmnxMDAChannelsInUse,
tmnxMDACcagId,
tmnxMdaTypeName,
tmnxMdaTypeDescription,
tmnxMdaTypeStatus,
tmnxCcagRowStatus,
tmnxCcagDescription,
tmnxCcagAdminStatus,
tmnxCcagOperStatus,
tmnxCcagCcaRate,
tmnxCcagLastChanged,
tmnxCcagAccessAdaptQos,
tmnxCcagPathLastChanged,
tmnxCcagPathRate,
tmnxCcagPathRateOption,
tmnxCcagPathWeight,
tmnxCcagPathCcLastChanged,
tmnxCcagPathCcEgrPoolResvCbs,
tmnxCcagPathCcEgrPoolSlpPlcy,
tmnxCcagPathCcIngPoolResvCbs,
tmnxCcagPathCcIngPoolSlpPlcy,
tmnxCcagPathCcAcctPolicyId,
tmnxCcagPathCcCollectStats,
tmnxCcagPathCcQueuePlcy,
tmnxCcagPathCcMac,
tmnxCcagPathCcMtu,
tmnxCcagPathCcHwMac,
tmnxCcagPathCcUserAssignedMac
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of MDAs on
Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 10 }
tmnxChassisObsoleteGroup OBJECT-GROUP
OBJECTS { tmnxHwSwState,
tmnxCardAllowedTypes,
tmnxCpmCardAllowedTypes,
tmnxMDAAllowedTypes
}
STATUS current
DESCRIPTION
"The group of objects supporting the allowed types of CPM cards, IOM
cards and MDA made obsolete for revision 3.0 on Alcatel 7x50 SR series
systems."
::= { tmnxChassisGroups 11 }
tmnxCardV3v0Group OBJECT-GROUP
OBJECTS { tmnxCardLastChange,
tmnxCardTypeName,
tmnxCardTypeDescription,
tmnxCardTypeStatus,
tmnxCardSupportedTypes,
tmnxCardAssignedType,
tmnxCardEquippedType,
tmnxCardHwIndex,
tmnxCardClockSource,
tmnxCardNumMdaSlots,
tmnxCardNumMdas,
tmnxCardReboot,
tmnxCardMemorySize,
tmnxCpmCardLastChange,
tmnxCpmCardSupportedTypes,
tmnxCpmCardAssignedType,
tmnxCpmCardEquippedType,
tmnxCpmCardHwIndex,
tmnxCpmCardBootOptionVersion,
tmnxCpmCardBootOptionLastModified,
tmnxCpmCardConfigBootedVersion,
tmnxCpmCardIndexBootedVersion,
tmnxCpmCardConfigLastModified,
tmnxCpmCardConfigLastSaved,
tmnxCpmCardRedundant,
tmnxCpmCardClockSource,
tmnxCpmCardNumCpus,
tmnxCpmCardCpuType,
tmnxCpmCardMemorySize,
tmnxCpmCardSwitchToRedundantCard,
tmnxCpmCardReboot,
tmnxCpmCardRereadBootOptions,
tmnxCpmCardConfigFileLastBooted,
tmnxCpmCardConfigFileLastSaved,
tmnxCpmCardConfigFileLastBootedHeader,
tmnxCpmCardIndexFileLastBootedHeader,
tmnxCpmCardBootOptionSource,
tmnxCpmCardConfigSource,
tmnxCpmCardBootOptionLastSaved,
tmnxFabricLastChange,
tmnxFabricAssignedType,
tmnxFabricEquippedType,
tmnxFabricHwIndex,
tmnxCpmFlashOperStatus,
tmnxCpmFlashSerialNumber,
tmnxCpmFlashFirmwareRevision,
tmnxCpmFlashModelNumber,
tmnxCpmFlashCapacity,
tmnxCpmFlashUsed,
tmnxCpmFlashHwIndex,
tmnxSyncIfTimingRevert,
tmnxSyncIfTimingRefOrder1,
tmnxSyncIfTimingRefOrder2,
tmnxSyncIfTimingRef1SrcPort,
tmnxSyncIfTimingRef1AdminStatus,
tmnxSyncIfTimingRef1InUse,
tmnxSyncIfTimingRef1Qualified,
tmnxSyncIfTimingRef1Alarm,
tmnxSyncIfTimingRef2SrcPort,
tmnxSyncIfTimingRef2AdminStatus,
tmnxSyncIfTimingRef2InUse,
tmnxSyncIfTimingRef2Qualified,
tmnxSyncIfTimingRef2Alarm,
tmnxSyncIfTimingFreqOffset,
tmnxSyncIfTimingStatus,
tmnxSyncIfTimingRefOrder3,
tmnxSyncIfTimingBITSIfType,
tmnxSyncIfTimingBITSAdminStatus,
tmnxSyncIfTimingBITSInUse,
tmnxSyncIfTimingBITSQualified,
tmnxSyncIfTimingBITSAlarm,
tSyncIfTimingAdmRevert,
tSyncIfTimingAdmRefOrder1,
tSyncIfTimingAdmRefOrder2,
tSyncIfTimingAdmRef1SrcPort,
tSyncIfTimingAdmRef1AdminStatus,
tSyncIfTimingAdmRef2SrcPort,
tSyncIfTimingAdmRef2AdminStatus,
tSyncIfTimingAdmChanged,
tSyncIfTimingAdmRefOrder3,
tSyncIfTimingAdmBITSIfType,
tSyncIfTimingAdmBITSAdminStatus,
tmnxChassisAdminOwner,
tmnxChassisAdminControlApply,
tmnxChassisAdminLastSetTimer,
tmnxChassisAdminLastSetTimeout
}
STATUS current
DESCRIPTION
"The group of objects supporting management of hardware cards
on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 12 }
tmnxMDAV4v0Group OBJECT-GROUP
OBJECTS { tmnxMDASupportedTypes,
tmnxMDAAssignedType,
tmnxMDAEquippedType,
tmnxMDAHwIndex,
tmnxMDAMaxPorts,
tmnxMDAEquippedPorts,
tmnxMDATxTimingSelected,
tmnxMDASyncIfTimingStatus,
tmnxMDANetworkIngQueues,
tmnxMDACapabilities,
tmnxMDAMinChannelization,
tmnxMDAMaxChannelization,
tmnxMDAMaxChannels,
tmnxMDAChannelsInUse,
tmnxMDACcagId,
tmnxMdaTypeName,
tmnxMdaTypeDescription,
tmnxMdaTypeStatus,
tmnxMDAReboot,
tmnxCcagRowStatus,
tmnxCcagDescription,
tmnxCcagAdminStatus,
tmnxCcagOperStatus,
tmnxCcagCcaRate,
tmnxCcagLastChanged,
tmnxCcagAccessAdaptQos,
tmnxCcagPathLastChanged,
tmnxCcagPathRate,
tmnxCcagPathRateOption,
tmnxCcagPathWeight,
tmnxCcagPathCcLastChanged,
tmnxCcagPathCcEgrPoolResvCbs,
tmnxCcagPathCcEgrPoolSlpPlcy,
tmnxCcagPathCcIngPoolResvCbs,
tmnxCcagPathCcIngPoolSlpPlcy,
tmnxCcagPathCcAcctPolicyId,
tmnxCcagPathCcCollectStats,
tmnxCcagPathCcQueuePlcy,
tmnxCcagPathCcMac,
tmnxCcagPathCcMtu,
tmnxCcagPathCcHwMac,
tmnxCcagPathCcUserAssignedMac,
tmnxMDAHiBwMcastSource,
tmnxMDAHiBwMcastAlarm,
tmnxMDAHiBwMcastTapCount,
tmnxMDAHiBwMcastGroup
}
STATUS current
DESCRIPTION
"The group of objects supporting management of MDAs for release 4.0 on
Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 13 }
tmnxChassisNotificationV4v0Group NOTIFICATION-GROUP
NOTIFICATIONS { tmnxEnvTempTooHigh,
tmnxEqPowerSupplyFailure,
tmnxEqPowerSupplyInserted,
tmnxEqPowerSupplyRemoved,
tmnxEqFanFailure,
tmnxEqCardFailure,
tmnxEqCardInserted,
tmnxEqCardRemoved,
tmnxEqWrongCard,
tmnxPeSoftwareVersionMismatch,
tmnxRedPrimaryCPMFail,
tmnxChassisNotificationClear,
tmnxEqSyncIfTimingHoldover,
tmnxEqSyncIfTimingHoldoverClear,
tmnxEqSyncIfTimingRef1Alarm,
tmnxEqSyncIfTimingRef1AlarmClear,
tmnxEqSyncIfTimingRef2Alarm,
tmnxEqSyncIfTimingRef2AlarmClear,
tmnxEqFlashDataLoss,
tmnxEqFlashDiskFull,
tmnxPeSoftwareLoadFailed,
tmnxPeBootloaderVersionMismatch,
tmnxPeBootromVersionMismatch,
tmnxPeFPGAVersionMismatch,
tmnxEqSyncIfTimingBITSAlarm,
tmnxEqSyncIfTimingBITSAlarmClear,
tmnxEqCardFirmwareUpgraded,
tmnxChassisUpgradeInProgress,
tmnxChassisUpgradeComplete,
tmnxChassisHiBwMcastAlarm,
tmnxEqMdaCfgNotCompatible
}
STATUS obsolete
DESCRIPTION
"The group of notifications supporting the management of chassis
hardware for release 4.0 on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 14 }
tmnx7710HwV3v0Group OBJECT-GROUP
OBJECTS { tmnxChassisOverTempState,
tmnxCpmCardMasterSlaveRefState,
tmnxCcmOperStatus,
tmnxCcmHwIndex,
tmnxCcmEquippedType,
tmnxCcmTypeName,
tmnxCcmTypeDescription,
tmnxCcmTypeStatus,
tmnxMcmSupportedTypes,
tmnxMcmAssignedType,
tmnxMcmEquippedType,
tmnxMcmHwIndex,
tmnxMcmTypeName,
tmnxMcmTypeDescription,
tmnxMcmTypeStatus,
tmnxChassisPowerSupplyInputStatus,
tmnxChassisPowerSupplyOutputStatus,
tmnxMDAReboot
}
STATUS current
DESCRIPTION
"The group of objects supporting management of hardware specific to
the Alcatel 7710 SR series systems."
::= { tmnxChassisGroups 15 }
tmnxChassisV5v0Group OBJECT-GROUP
OBJECTS { tmnxChassisTotalNumber,
tmnxChassisLastChange,
tmnxChassisRowStatus,
tmnxChassisName,
tmnxChassisType,
tmnxChassisLocation,
tmnxChassisCoordinates,
tmnxChassisNumSlots,
tmnxChassisNumPorts,
tmnxChassisNumPwrSupplies,
tmnxChassisNumFanTrays,
tmnxChassisNumFans,
tmnxChassisCriticalLEDState,
tmnxChassisMajorLEDState,
tmnxChassisMinorLEDState,
tmnxChassisBaseMacAddress,
tmnxChassisCLLICode,
tmnxChassisReboot,
tmnxChassisUpgrade,
tmnxChassisAdminMode,
tmnxChassisOperMode,
tmnxChassisModeForce,
tmnxChassisUpdateTimeLeft,
tmnxChassisFanOperStatus,
tmnxChassisFanSpeed,
tmnxChassisPowerSupplyACStatus,
tmnxChassisPowerSupplyDCStatus,
tmnxChassisPowerSupplyTempStatus,
tmnxChassisPowerSupplyTempThreshold,
tmnxChassisPowerSupply1Status,
tmnxChassisPowerSupply2Status,
tmnxChassisPowerSupplyAssignedType,
tmnxChassisTypeName,
tmnxChassisTypeDescription,
tmnxChassisTypeStatus,
tmnxHwLastChange,
tmnxHwID,
tmnxHwMfgString,
tmnxHwMfgBoardNumber,
tmnxHwSerialNumber,
tmnxHwManufactureDate,
tmnxHwClass,
tmnxHwName,
tmnxHwAlias,
tmnxHwAssetID,
tmnxHwCLEI,
tmnxHwIsFRU,
tmnxHwContainedIn,
tmnxHwParentRelPos,
tmnxHwAdminState,
tmnxHwOperState,
tmnxHwTempSensor,
tmnxHwTemperature,
tmnxHwTempThreshold,
tmnxHwBootCodeVersion,
tmnxHwSoftwareCodeVersion,
tmnxHwSwLastBoot,
tmnxHwAlarmState,
tmnxHwLastAlarmEvent,
tmnxHwClearAlarms,
tmnxHwSwImageSource,
tmnxHwMfgDeviations,
tmnxHwBaseMacAddress,
tmnxHwFailureReason,
tmnxHwContainedIndex
}
STATUS current
DESCRIPTION
"The group of objects supporting management of chassis hardware
capabilities on release 5.0 of Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 16 }
tmnxChassisV5v0ObsoleteGroup OBJECT-GROUP
OBJECTS { tmnxChassisUpdateWaitTime
}
STATUS current
DESCRIPTION
"The group of onbsolete objects for managing the chassis hardware
capabilities on release 5.0 of Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 17 }
tmnx77x0CESMDAV6v0Group OBJECT-GROUP
OBJECTS { tmnxMDAClockMode,
tmnxMDADiffTimestampFreq,
tmnxMDAIngNamedPoolPolicy,
tmnxMDAEgrNamedPoolPolicy
}
STATUS current
DESCRIPTION
"The group of objects supporting management of CES MDAs for release 6.0
on Alcatel 77x0 SR series systems."
::= { tmnxChassisGroups 18 }
tmnxChassisNotificationV3v0Group NOTIFICATION-GROUP
NOTIFICATIONS { tmnxEnvTempTooHigh,
tmnxEqPowerSupplyFailure,
tmnxEqPowerSupplyInserted,
tmnxEqPowerSupplyRemoved,
tmnxEqFanFailure,
tmnxEqCardFailure,
tmnxEqCardInserted,
tmnxEqCardRemoved,
tmnxEqWrongCard,
tmnxPeSoftwareVersionMismatch,
tmnxRedPrimaryCPMFail,
tmnxChassisNotificationClear,
tmnxEqSyncIfTimingHoldover,
tmnxEqSyncIfTimingHoldoverClear,
tmnxEqSyncIfTimingRef1Alarm,
tmnxEqSyncIfTimingRef1AlarmClear,
tmnxEqSyncIfTimingRef2Alarm,
tmnxEqSyncIfTimingRef2AlarmClear,
tmnxEqFlashDataLoss,
tmnxEqFlashDiskFull,
tmnxPeSoftwareLoadFailed,
tmnxPeBootloaderVersionMismatch,
tmnxPeBootromVersionMismatch,
tmnxPeFPGAVersionMismatch,
tmnxEqSyncIfTimingBITSAlarm,
tmnxEqSyncIfTimingBITSAlarmClear,
tmnxEqCardFirmwareUpgraded,
tmnxEqMdaCfgNotCompatible
}
STATUS obsolete
DESCRIPTION
"The group of notifications supporting the management of chassis
hardware for release 3.0 on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 20 }
tmnxChassisNotificationV6v0Group NOTIFICATION-GROUP
NOTIFICATIONS { tmnxEnvTempTooHigh,
tmnxEqPowerSupplyFailure,
tmnxEqPowerSupplyInserted,
tmnxEqPowerSupplyRemoved,
tmnxEqFanFailure,
tmnxEqCardFailure,
tmnxEqCardInserted,
tmnxEqCardRemoved,
tmnxEqWrongCard,
tmnxPeSoftwareVersionMismatch,
tmnxRedPrimaryCPMFail,
tmnxChassisNotificationClear,
tmnxEqSyncIfTimingHoldover,
tmnxEqSyncIfTimingHoldoverClear,
tmnxEqSyncIfTimingRef1Alarm,
tmnxEqSyncIfTimingRef1AlarmClear,
tmnxEqSyncIfTimingRef2Alarm,
tmnxEqSyncIfTimingRef2AlarmClear,
tmnxEqFlashDataLoss,
tmnxEqFlashDiskFull,
tmnxPeSoftwareLoadFailed,
tmnxPeBootloaderVersionMismatch,
tmnxPeBootromVersionMismatch,
tmnxPeFPGAVersionMismatch,
tmnxEqSyncIfTimingBITSAlarm,
tmnxEqSyncIfTimingBITSAlarmClear,
tmnxEqCardFirmwareUpgraded,
tmnxChassisUpgradeInProgress,
tmnxChassisUpgradeComplete,
tmnxChassisHiBwMcastAlarm,
tmnxEqMdaCfgNotCompatible
}
STATUS current
DESCRIPTION
"The group of notifications supporting the management of chassis
hardware for release 6.0 on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 21 }
tmnx7710SETSRefSrcHwV6v0Group OBJECT-GROUP
OBJECTS {
tmnxSyncIfTimingRef1SrcHw,
tmnxSyncIfTimingRef1BITSIfType,
tmnxSyncIfTimingRef2SrcHw,
tmnxSyncIfTimingRef2BITSIfType,
tSyncIfTimingAdmRef1SrcHw,
tSyncIfTimingAdmRef1BITSIfType,
tSyncIfTimingAdmRef2SrcHw,
tSyncIfTimingAdmRef2BITSIfType
}
STATUS current
DESCRIPTION
"The group of objects supporting management of 'Synchronous Equipment
Timing' (SETS) when the references are of type 'Building Integrated
Timing Supply' (BITS) for release 6.0 on Alcatel 7710 SR series
systems."
::= { tmnxChassisGroups 22 }
tmnxMDAMcPathMgmtV6v0Group OBJECT-GROUP
OBJECTS {
tmnxMDAMcPathMgmtBwPlcyName,
tmnxMDAMcPathMgmtPriPathLimit,
tmnxMDAMcPathMgmtSecPathLimit,
tmnxMDAMcPathMgmtAncPathLimit,
tmnxMDAMcPathMgmtAdminState,
tmnxMDAMcPathMgmtPriInUseBw,
tmnxMDAMcPathMgmtSecInUseBw,
tmnxMDAMcPathMgmtAncInUseBw,
tmnxMDAMcPathMgmtBlkHoleInUseBw
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Multicast Path
Management feature for release 6.0 on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 24 }
tmnxCardV6v0NamedPoolPlcyGroup OBJECT-GROUP
OBJECTS {
tmnxCardNamedPoolAdminMode,
tmnxCardNamedPoolOperMode
}
STATUS current
DESCRIPTION
"The group of objects supporting named buffer pools for release
6.0 on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 25 }
tmnxChassisNotifyObjsV6v0Group OBJECT-GROUP
OBJECTS { tmnxChassisNotifyCardName
}
STATUS current
DESCRIPTION
"The group of objects added in 6.0 release to support chassis
hardware notifications on Alcatel 7x50 SR series systems."
::= { tmnxChassisGroups 26 }
END
|