summaryrefslogtreecommitdiff
path: root/MIBS/nokia/SFP-MIB
blob: 6c0aa58a5c33dc12fe7b67c98a3c1fe8718a875a (plain)
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
-- SFP-MIB

-- ======================================================================
--  This specification is published by Alcatel-Lucent under Non-Disclosure
--  Agreement(s) (NDA) with specific parties and has to be considered as
--  Confidential Information as defined in such NDA.
--  Alcatel-Lucent reserves the right to revise this document for any reason,
--  including but not limited to conformity with standards promulgated by
--  various agencies, utilisation of advances in the state of the technical
--  areas, or the reflection of changes in the design of any equipment,
--  techniques, or procedures described or referred to herein.
--  The product specifications and other technical or performance information
--  contained herein are subject to change without notice.
--  Updates of this document will be issued under the above NDA's.
--  Alcatel-Lucent makes no representation or warranty, expressed or implied, with
--  respect to the sufficiency, accuracy, or utility of any information or
--  opinion contained herein. Alcatel-Lucent expressly advises that any use of for 
--  any purpose or reliance upon this technical reference is at the risk of
--  the user and that Alcatel-Lucent will not be liable for any damage or injury
--  incurred by any person arising out of the sufficiency, accuracy, or
--  utility of any information or opinion contained herein.
--  This document is not to be construed as a suggestion to any manufacturer
--  to modify or change any of its products, nor does this document represent
--  any commitment by Alcatel-Lucent to sell or purchase any product.
--  Nothing contained herein will be construed as conferring by implication,
--  estoppel, or otherwise any license or right under any patent, whether or
--  not the use of any information herein necessarily employs an invention of
--  any existing or later issued patent.
--  Alcatel-Lucent reserves the right not to offer any or all of these products and
--  to withdraw any or all of them at any future time.
--  Copyright (C) 2005-2009, Alcatel-Lucent. All Rights Reserved.
-- ===========================================================================

--  MODULE-IDENTITY
--  LAST-UPDATED ""20120213260000Z""
--  ORGANIZATION "Alcatel"
--  CONTACT-INFO 
--
--      "Email: asam.mibsupport@alcatel-lucent.be"
--
--  REVISION "20170307"
--  DESCRIPTION
--      Editor : hao.d.lu@alcatel-sbell.com.cn
--      Changes:
--        Update sfpInvSpecificalType with 1 new type:
--               cPlusPlusI(66)
--
--  REVISION "20161104"
--  DESCRIPTION
--      Editor : hao.d.lu@alcatel-sbell.com.cn
--      Changes:
--        Update sfpInvSpecificalType with 2 new types:
--                 base1000-ZR-CWDM(57),
--                 base10G-ZR(58)
--
--  REVISION "20151110"
--  DESCRIPTION
--      Editor :  qiong.k.wu@alcatel-sbell.com.cn 
--      Changes: 
--        SfpDiagTable,SfpInventoryTable and SfpRSSIProfileTable are updated 
--        for CFP4 introduced with FANT-G."
--
--  REVISION "20120620"
--  DESCRIPTION
--      "Version:  3FE25209EAAA_V4.4.0.3.1
--      Editor :  vanapatla ramana 
--      Changes: 
--          Alcatel notes updated for Atttributes  dsx1SfpGenConfigTributary1, 
--          dsx1SfpGenConfigTributary2,dsx1FramerAlarmStatus and 
--				dsx1SfpClkAlarmState as Not Supported." 
--
--  REVISION "20120607"
--  DESCRIPTION
--      "Version:  3FE25209EAAA_V4.4.0.3.0
--      Editor :  vanapatla ramana 
--      Changes: 
--           	  Added SGMIII loop back support and corrected the range of GenConfigMarket."
--
--  REVISION "20120525"
--  DESCRIPTION
--      "Version:  3FE25209EAAA_V4.4.0.2.8
--      Editor :  vanapatla ramana 
--      Changes: 
--           	  Added ALCATEL NOTES."
--
--  REVISION "20120524"
--  DESCRIPTION
--      "Version:  3FE25209EAAA_V4.4.0.2.5
--      Editor :  vanapatla ramana 
--      Reason for change: ALU01794407
--              Range of supported values for  dsx1SfpLIUTxConfig is changed from 0-11
--		changed to 1-12 "
--
--  REVISION "20120213"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.4.0.2.0
--      Editor :  vanapatla ramana 
--      Reason for change: ALU01279245, ALU01750853  :
--              Augmented tables dsx1GeneralConfigTable, dsx1PWTDMinterfaceTable 
--              from dsx1ClockConfigTable.Augmented tables dsx1FramerTable, 
-- 		dsx1LineInterfaceunitTable  from  dsx1PWTDMConfigTable. Fields "
--
--  DESCRIPTION  

--  "The SFP MIB contains twelve tables:
--        1.  The host SFP configuration table
--        2.  The host SFP configuration extension table
--        3.  The host SFP status table.
--        4.  The expansion shelf SFP status table.
--        5.  The SFP diagnostics table.
--        6.  The SFP Inventory Table.
--        7.  The dsx1 General Configuration Table.
--        8.  The dsx1 Clock Configuration Table.
--        9.  The dsx1 Line Interface Unit Table.
--        10. The dsx1 Framer Table.
--        11. The dsx1 pseudo wire configuration Table.
--        12. The dsx1 pseudo wire protocol  Table.
--        13. The dsx1 pseudo wire TDM interface Table."
--
--  REVISION "20120108"

--  REVISION "20120108"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.4.0.2.0
--      Editor :  Janakiraman/Vanapatla Ramana 
--      Reason for change: "ALU01279245 : Management Integration of 2xE1/DS1- SFP in ISAM"
--               Introduced dsx1GeneralConfigTable, dsx1ClockConfigTable, 
--		 dsx1LineInterfaceunitTable, dsx1FramerTable, dsx1PWTDMConfigTable, 
--		 dsx1PWprotocolEngineTable and dsx1PWTDMinterfaceTable for 2xE1/DS1 SFP"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.0.0.1.1
--      Editor :  Marita Saveyn 
--      Reason for change: ALU01336169 :
--               expSfpType, bit 16 (65536): 2500BASE-SX
--               expSfpType, bit 17 (131072): 2500BASE-LX"
--               expSfpType, bit 18 (262144): 2500BASE-BX"
--
--  REVISION "20110208"
--  DESCRIPTION
--      "Version: To be updated
--      Editor :  Deepak Rajaram/Gurusamy Dharmaraj 
--      Reason for change: weblib comments for 3HH-01154-DDAA-PBZZA"
--
--  REVISION "20110131"
--  DESCRIPTION
--      "Version: To be updated
--      Editor :  Deepak Rajaram/Gurusamy Dharmaraj 
--      Reason for change: ALU00122060/ALU00123022 :
--               Introduced sfpInventoryTable and updated 
--               new parameters in sfpDiagTable"
--
--  REVISION "20101004"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.0.0.0.5
--      Editor :  Marita Saveyn 
--      Reason for change: ALU00805501 :
--               hostSfpType, bit 18 (262144): 2500BASE-BX"
--
--  REVISION "20100426"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.0.0.0.4
--      Editor :  Marita Saveyn 
--      Reason for change: ALU00303338 :
--               hostSfpType, bit 16 (65536): 2500BASE-SX
--               hostSfpType, bit 17 (131072): 2500BASE-LX"
--
--  REVISION "20100331"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.0.0.0.3
--      Editor :  Marita Saveyn
--      Reason for change:  correct type 2500GBASE into 2500BASE."
--
--  REVISION "20091214"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.0.0.0.2
--      Editor :  Marita Saveyn
--      Reason for change:  add sfp type 2500GBASE."
--
--  REVISION "20090414"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V4.0.0.0.0
--      Editor :  Bakri Aboukarr
--      Reason for change:  support newer SFP types."
--
--  REVISION "20080923"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V3.7.1.1.0
--      Editor :  Tom Van Peteghem
--      Reason for change:  
--       update for IHUB mib changes."
--
--  REVISION "20080606"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V3.7.0.0.0
--      Editor :  Bakri Aboukarr 
--      Reason for change:  weblib comments made on 3HH-01154-CHAA-PBZZA.
--      Changes:
--       1.  Remove all smart quotes
--       2.  Change 0.00 mW to No Power."
--
--  REVISION "20071005"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V3.6.0.0.1
--      Editor :  Larry Boone
--      Reason for change:  weblib comments made on 3HH-01154-CGAA-PBZZA.
--      Changes:
--       1.  Revise the DESCRIPTION text for the 'Invalid' display string, 
--        to match the wording in MIB versions for prior releases.
--       2.  Change the DESCRIPTION text for sfpDiagSfpFaceplateNumber - cages
--        numbered zero on the faceplate are indexed using 
--        sfpDiagSfpFaceplateNumber = 0."
--
--  REVISION "20070930"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V3.6.0.0.0
--      Editor :  Larry Boone
--      Reason for change:  ANTms33137, 'SFP Digital Diagnostics (2nd part)'.
--      Changes:
--       1.  Move SFP Diagnostics assembly and release details from the 
--        sfpDiagTable ASN.1 DESCRIPTION fields to the non-ASN.1 text.  That change 
--        was requested in weblib comment 408170 (3HH-01154-CEAA-PBZZA), and was 
--        agreed with Raf van Driessche 2-Jul-2007.
--       2.  Port the (minor) ASN.1 DESCRIPTION changes for ANTms59215 from 
--        3HH-01154-CEAA-PBZZA to this version.  In summary, set the sfpDiagTxPower 
--        and sfpDiagRxPower DisplayStrings to 'Invalid' if erroneous external 
--        calibration constants yields a negative value, in milliWatts.  Similarly, 
--        set the sfpDiagTxBiasCurrent and sfpDiagSupplyVoltage DisplayStrings to 
--        'Invalid', rather than display negative values (in mA and VDC, 
--        respectively).
--       3.  Undo name changes for hostSfpDownlinkStatus code points (e.g. change 
--        devNotPresent back to sfpNotPresent), as requested by AMS."
--       
--
--  REVISION "20070720"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V3.5.0.0.2
--      Editor :  Larry Boone
--      Reason for change:  ANTms02125, 'Remotes Aggregator' (ERAM-A).
--      Changes:
--        1.  Fix minor MIB syntax problems.
--        2.  Make the ALCATEL NOTE RANGE values for the 
--            hostSfpCableToSlot and hostSfpCabledToSlot objects the same."
--
--  REVISION "20070713"
--  DESCRIPTION
--      "Version: 3FE25209EAAA_V3.5.0.0.1
--      Editor :  Larry Boone
--      Reason for change:  ANTms02125, 'Remotes Aggregator' (ERAM-A).
--      Changes:
--        1.  Add support for XFP Type (e.g. 10GBASE_LR) by increasing the range
--        of hostSfpType.
--        2.  Define a new numbering plan for XFP cages in hostSfpStatusTable.
--        3.  Revise the SFP-specific code point names in hostSfpDownlinkStatus
--        to make them applicable to XFPs as well.
--        4.  Correct the PERSIST value for hostStatusSfpFaceplateNumber."

--  REVISION "20070601"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_V3.5.0.0.0
--      Editor:  Bo Liu
--      Changes:  updated for FDT591 - remote aggregator.
--              The sizes are extended for:
--               - hostSfpConfigTable
--               - hostSfpConfigExtTable
--               - hostSfpStatusTable
--               - expSfpStatusTable
--               - lanxPortNumber
--               The ranges of xxxSfpFaceplateNumbers are extended."
--
--  REVISION "20070516"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_V3.4.0.0.3
--      Editor:  Larry Boone
--      Changes:  change the DESCRIPTION of the sfpDiagTemperature 
--        DisplayString object - the format of the typical object 
--        value is now '-128.00 degrees Celsius' (was '-128.00 C')."
--
--  REVISION "20070423"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_V3.4.0.0.2
--      Editor:  Larry Boone
--      Changes:  correct the DESCRIPTION of the sfpDiagTxBiasCurrent 
--        object - two decimal places of precision are required."
--
--  REVISION "20070420"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_V3.4.0.0.1
--      Editor:  Larry Boone
--      Changes:  
--      a) Change the indexing of the two SFP cages of an FD-REM in the 
--         sfpDiagTable (BDFhw64555) from
--            <FD-REM_LT_Slot#1, cage=1>, 
--            <FD-REM_LT_Slot#2, cage=1>
--         to
--            <FD-REM_controllerCardSlot, cage=1>, 
--            <FD-REM_controllerCardSlot, cage=2>. 
--         Only DESCRIPTION fields are affected. 
--      b) Delete swError from the sfpDiagAvailable enum.  If a software error 
--         occurs when retrieving SFP diagnostics, return the SNMP error code 
--         'genError' in the SNMP error-status field.   
--      c) Rename the object sfpDiagCageNum to sfpDiagSfpFaceplateNumber, for
--         consistency with hostConfigSfpFaceplateNumber, 
--         hostConfigExtSfpFaceplateNumber, and hostStatusSfpFaceplateNumber."   
--
--  REVISION "20070308"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_V3.4.0.0.0
--      Editor:  Larry Boone
--      Changes: Added the sfpDiagTable (BDFhw64555) 
--               Change the size of the hostSfpConfigTable (ANTms30627)"
--
--  REVISION "20061012"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E3.3.0.0
--      Editor: John Chuah
--      Changes: Added hostSfpCablingMismatch and
--               hostSfpCabledToPhysAddress to HostSfpStatusEntry.
--               Increased the maximum rack value from 6 to 7
--               and the maximum shelf value from 3 to 4."
--
--  REVISION "20060915"
--  DESCRIPTION
--      "Version: 3FE25467AAAA_V3.2.0.3.0
--      Editor: Zhu Jianhua
--      Changes: 
--               update the ranges of hostStatusSfpFaceplateNumber,
--               hostSfpFaceplateNumber, hostConfigExtSfpFaceplateNumber,
--               hostConfigSfpFaceplateNumber for 7330FD
--               Added 0 to the ranges of rack, shelf and slot."
--
--  REVISION "20060505"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_V3.2.0.0.0
--      Editor: Bo Liu, Marc Van Vlimmeren
--      Changes: 
--               Added ALCATEL NOTES."
--
--  REVISION "20051121"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E3.0.0.0
--      Editor: Vairamuthu Karuppiah
--      Changes: Updated for equipment dimensioning changes to 6 
--                      racks and 4 shelves"
--
--  REVISION "20050815"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E2.3.1.3
--      Editor: Bo Liu
--           Changes: update the document based on CRs / comments in Weblib."
--
--  REVISION "20050614"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E2.3.1.2
--      Editor: Bo Liu
--      Changes: update after review (based on comments in Weblib)."
--
--  REVISION "20050513"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E2.3.1.1
--      Editor: Bo Liu
--      Changes: update after review (based on comments in Weblib)."
--
--  REVISION "20050509"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E2.3.1.0
--      Editor: Bo Liu
--      Changes: update after review (based on comments in Weblib)."
--
--  REVISION "20050502"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E2.3.0.1
--      Editor: Bo Liu
--      Changes: update after review (based on comments in Weblib)."
--
--  REVISION "20050421"
--  DESCRIPTION
--      "Version: 3FE25209AAAA_E2.3.0.0
--      Editor: Bo Liu
--      Changes: creation of the MIB"
-- ============================================================================


SFP-MIB DEFINITIONS ::= BEGIN


IMPORTS
        
        Counter, TimeTicks
                 FROM RFC1155-SMI
        OBJECT-TYPE
                  FROM RFC-1212
        PhysAddress
                        FROM RFC1213-MIB
        ifIndex
                 FROM ITF-MIB
        AsamProfileIndex     FROM ASAM-TC-MIB
        AsamProfilePointer   FROM ASAM-TC-MIB
       	AsamProfileName      FROM ASAM-TC-MIB
        AsamProfileRefCount  FROM ASAM-TC-MIB
        eqptSlotId,
        EqptSlotIndex        FROM ASAM-EQUIP-MIB
        RowStatus
                 FROM SNMPv2-TC

        DisplayString  FROM SNMPv2-TC
	MacAddress     FROM BRIDGE-MIB

        asam        FROM SYSTEM-MIB;
  
-- type definitions  

AsamNextProfileIndex ::= INTEGER(0..65535)
AsamMaxProfileIndex ::= INTEGER(0..65535)

SfpDiagTCAStatus ::= INTEGER 
          {
                 notAvailable(1),
                 normal(2),
                 exceededLowWarning(3),
                 exceededLowAlarm(4),
                 exceededHighWarning(5),
                 exceededHighAlarm(6)
           }

-- TEXTUAL-CONVENTION
-- STATUS       current
-- DESCRIPTION
--     "Diagonostics Threshold Crossing Alert status for temperature /
--     voltage / RX power / TX power / bias current, available in
--     SFP/SFP+/XFP EEPROM
--     Note : Two thresholds (warning and alarm level) are preset in
--     SFP/SFP+/XFP EEPROM during manufactor. Changing the threshold by
--     operator is not supprted
--     Possible values :
--     notAvailable : This value will be set when sfpDiagAvailable is set
--     other than noError, ie, retrieval of diagnostics is failed
--     Following values are applicable only when sfpDiagAvailable is
--     set to noError, ie, retrieval of diagnostics is success
--     normal : No threshold crossing, present value is within the threshold
--     exceededLowWarningThreshold : Present value is greater than the low
--     warning level threshold
--     exceededLowAlarmThreshold : Present value is greater than the low
--     alarm level threshold
--     exceededHighWarningThreshold : Present value is greater than the high
--     warning level threshold
--     exceededHighAlarmThreshold : Present value is greater than the high
--     alarm level threshold"

sfpMIB                   OBJECT IDENTIFIER ::= {asam 56}


-- SFP MIB

--  ==================================================================
--  |           Start of Host SFP Configuration Table                |
--  ==================================================================

hostSfpConfigTable       OBJECT-TYPE
        SYNTAX           SEQUENCE OF HostSfpConfigEntry
        ACCESS            not-accessible
        STATUS            mandatory
        DESCRIPTION     
        "This table contains the host shelf SFP direction configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 8 
         "
::= {sfpMIB 1}

hostSfpConfigEntry       OBJECT-TYPE
        SYNTAX           HostSfpConfigEntry
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "Each entry consists of a list of host shelf SFP configuration parameters."
        INDEX           {hostConfigSfpFaceplateNumber}
::= {hostSfpConfigTable 1}

HostSfpConfigEntry ::=
        SEQUENCE {
                 hostConfigSfpFaceplateNumber INTEGER,
                 hostSfpDirection             INTEGER
        }

hostConfigSfpFaceplateNumber  OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is host shelf SFP number on the faceplate. 
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1..17
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpConfigEntry 1}

hostSfpDirection         OBJECT-TYPE
        SYNTAX           INTEGER {
                              uplink (1),
                              downlink (2)
                         }
        ACCESS           read-write
        STATUS           mandatory
        DESCRIPTION     
        "The host shelf SFP can be configured as downlink or uplink. The default 
         is uplink.
         ALCATEL NOTE:
            ACCESS: NA
            USAGE: OPT
            PERSIST: YES 
            INSRVMOD: YES
            RANGE: NA
            DEFVALUE: uplink
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
         "
--         DEFVAL {1}
::= {hostSfpConfigEntry 2}

--  ==================================================================
--  |      Start of Host SFP Configuration Extension Table           |
--  ==================================================================

hostSfpConfigExtTable    OBJECT-TYPE
        SYNTAX           SEQUENCE OF HostSfpConfigExtEntry
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "This table contains the host shelf SFP configuration information 
         additional to the host SFP direction configuration.
        WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead.
        ALCATEL NOTE:
            TABLESIZE: 24 
        "
::= {sfpMIB 2}

hostSfpConfigExtEntry    OBJECT-TYPE
        SYNTAX           HostSfpConfigExtEntry
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "Each entry consists of a list of host shelf SFP configuration 
         parameters which supplements the parameters in hostSfpConfigTable.
        WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead."
        
        INDEX           {hostConfigExtSfpFaceplateNumber}
::= {hostSfpConfigExtTable 1}

HostSfpConfigExtEntry ::=
        SEQUENCE {
                 hostConfigExtSfpFaceplateNumber INTEGER,
                 hostSfpCableToRack              INTEGER,
                 hostSfpCableToShelf             INTEGER,
                 hostSfpCableToSlot              INTEGER
        }

hostConfigExtSfpFaceplateNumber   OBJECT-TYPE
        SYNTAX                    INTEGER
        ACCESS                    read-only
        STATUS                    mandatory
        DESCRIPTION     
        "This is the host shelf SFP number on the faceplate. 
        WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead.
         ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1..24
            DEFVALUE: NA
            UNITS: NA
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpConfigExtEntry 1}

hostSfpCableToRack       OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-write
        STATUS           mandatory
        DESCRIPTION
        "This is the Rack ID of the expansion shelf LSM which the host shelf SFP
         is planned to cable to. Value 0 means that no rack is specified.
        WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead.
        ALCATEL NOTE:
            ACCESS: NA
            USAGE: OPT
            PERSIST: YES
            INSRVMOD: YES
            RANGE: 0..7
            DEFVALUE: 0
            UNITS: NA
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpConfigExtEntry 2}

hostSfpCableToShelf   OBJECT-TYPE
        SYNTAX          INTEGER
        ACCESS          read-write
        STATUS          mandatory
        DESCRIPTION
         "This is the Shelf ID of the expansion shelf LSM which
         the host shelf SFP is planned to cable to.
         Value 0 means that no shelf is specified.
        WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead.
        ALCATEL NOTE:
            ACCESS: NA
            USAGE: OPT
            PERSIST: YES 
            INSRVMOD: YES
            RANGE: 0..4
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: The shelf identified by hostSfpCableToRack and
                   hostSfpCableToShelf must already be planned.
        "
::= {hostSfpConfigExtEntry 3}

hostSfpCableToSlot       OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-write
        STATUS           mandatory
        DESCRIPTION     
        "This is the Slot ID of the expansion shelf LSM which
        the host shelf SFP is planned to cable to.
        Value 0 means that no slot is specified.
        WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead.
        ALCATEL NOTE:
            ACCESS: NA
            USAGE: OPT
            PERSIST: YES 
            INSRVMOD: YES
            RANGE: DEP / depends on the shelf type. 
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpConfigExtEntry 4}

--  ==================================================================
--  |               Start of Host SFP Status Table                   |
--  ==================================================================

hostSfpStatusTable      OBJECT-TYPE
      SYNTAX            SEQUENCE OF HostSfpStatusEntry
          ACCESS            not-accessible
          STATUS            mandatory
          DESCRIPTION     
          "This table contains the host shelf SFP or XFP status information.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
           
        ALCATEL NOTE:
            TABLESIZE: 26
        "
::= {sfpMIB 3}

hostSfpStatusEntry      OBJECT-TYPE
        SYNTAX          HostSfpStatusEntry
        ACCESS          not-accessible
        STATUS          mandatory
        DESCRIPTION
          "Each entry consists of a list of SFP or XFP status parameters.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead."
        INDEX           {hostStatusSfpFaceplateNumber}
::= {hostSfpStatusTable 1}

HostSfpStatusEntry ::=
        SEQUENCE {
                 hostStatusSfpFaceplateNumber  INTEGER,
                 lanxPortNumber                INTEGER,
                 hostSfpDownlinkStatus         INTEGER,
                 hostSfpCabledToRack           INTEGER,
                 hostSfpCabledToShelf          INTEGER,
                 hostSfpCabledToSlot           INTEGER,
                 hostSfpType                   INTEGER,
                 hostSfpCablingMismatch        INTEGER,
                 hostSfpCabledToPhysAddress    PhysAddress
        }

hostStatusSfpFaceplateNumber OBJECT-TYPE
        SYNTAX               INTEGER
        ACCESS               read-only
        STATUS               mandatory
        DESCRIPTION     
        "This is the host shelf SFP or XFP cage number.
         For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1).
         For an XFP cage, it is 256 + (the faceplate number of the XFP cage).  For
         example, if the XFP cage has faceplate label X1, 
         hostStatusSfpFaceplateNumber == 257.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 1..258
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpStatusEntry 1}

lanxPortNumber           OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        " This is the Physical LANX or IHUB port to which the SFP or XFP is 
         connected to. For an SHUB system, the lanxPortNumber here corresponds 
         to lanxInterfaceIndex in the LANX MIB. For an IHUB system, the 
         lanxPortNumber to the TmnxPortID to be used in the Timetra Port MIB.
         For IHUB this is an 32 bit encoded number for which the structure is
         defined in Timetra-TC-MIB.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 1..26 for SHUB / 32 Bit Encoded number for IHUB
            DEFVALUE: DEP / depends on the hostStatusSfpFaceplateNumber.
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpStatusEntry 2}

hostSfpDownlinkStatus OBJECT-TYPE
          SYNTAX INTEGER {
                            ok (1),
                            sfpNotPresent (2),
                            los (3),
                            txFail (4),
                            invalidAlcatelId (5),
                            unknown (6),
                            sfpControlFail (7),
                            notApplicable (8),
                            txFailAndLos (9),
                            sfpPlanDetectMismatch (10)
                        }
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "This is the host shelf SFP or XFP status.
            ok (1):                     The SFP or XFP is operational.
            sfpNotPresent (2):          The SFP or XFP cage is empty.
            los (3):                    The SFP or XFP has detected Loss of Signal. 
            txFail (4):                 The SFP or XFP has detected Transmitter 
                                        Fail.
            invalidAlcatelId (5):       The SFP or XFP does not contain
                                        a valid Alcatel-Lucent ID.
            unknown (6):                The host expansion card is planned but
                                        not inserted.
            sfpControlFail (7):         The SFP or XFP is not responding, or the 
                                        I2C read failed.
            notApplicable (8):          Retrieval of status information from the
                                        SFP or XFP cage is not supported.
            txFailAndLos (9):           The SFP or XFP has detected both 
                                        Transmitter Fail and Loss of Signal.
            sfpPlanDetectMismatch (10): Not used - superseded by the
                                        hostSfpCablingMismatch object.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 6 / status is unknown
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpStatusEntry 3}

hostSfpCabledToRack      OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the Rack ID of the expansion shelf LSM to which the host shelf SFP
         is cabled to.
         Value 0 means that SFP is not cabled to any expansion shelf LSM.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..7
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
           DESCR: NA
        "
::= {hostSfpStatusEntry 4}

hostSfpCabledToShelf     OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the Shelf ID of the expansion shelf LSM which the host shelf 
         SFP is cabled to.
         Value 0 means that SFP is not cabled to any expansion shelf LSM.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..4
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpStatusEntry 5}

hostSfpCabledToSlot   OBJECT-TYPE
        SYNTAX            INTEGER
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION     
        "This is the Slot ID of the expansion shelf LSM which the host shelf SFP 
         is cabled to.
         Value 0 means that SFP is not cabled to any expansion shelf LSM.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: DEP / depends on the shelf type. 
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpStatusEntry 6}

hostSfpType              OBJECT-TYPE
        SYNTAX            INTEGER 
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION     
        "This variable indicates the type of the SFP or XFP, as read from the 
        device.
        It is a bitmap represented as a sum, therefore, it can represent
        multiple types (combination of types) simultaneously.
        The SFP type bits (0..7)  are as defined in standard SFF-8472.
        The XFP type bits (8..15) are as defined in standard INF-8077_v4.5.
        The SFP octet and the XFP octet are mutually exclusive (i.e. at least 
        one of the two octets is always zero).
        The various bit positions are:
             bit  0 (1):     1000BASE-SX
             bit  1 (2):     1000BASE-LX
             bit  2 (4):     1000BASE-CX
             bit  3 (8):     1000BASE-T
             bit  4 (16):    100BASE-LX/LX10
             bit  5 (32):    100BASE-FX
             bit  6 (64):    BASE-BX10
             bit  7 (128):   BASE-PX
             bit  8 (256):   reserved for a future XFP type, INF-8077
             bit  9 (512):   10GBASE-EW
             bit 10 (1024):  10GBASE-LW
             bit 11 (2048):  10GBASE-SW
             bit 12 (4096):  10GBASE-LRM
             bit 13 (8192):  10GBASE-ER
             bit 14 (16384): 10GBASE-LR
             bit 15 (32768): 10GBASE-SR
             bit 16 (65536):  2500BASE-SX
             bit 17 (131072): 2500BASE-LX
             bit 18 (262144): 2500BASE-BX
        If the hostSfpType is unknown or not specified, hostSfpType = 0.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..65535
            DEFVALUE: 0 / hostSfpType unknown 
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {hostSfpStatusEntry 7}

hostSfpCablingMismatch   OBJECT-TYPE
        SYNTAX           INTEGER {
                            noMismatch(1),
                            unexpectedRemoteLt(2),
                            assignmentMismatch(3),
                            incompatibleShelf(4)
                         }
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
            "This is the host shelf SFP cabling mismatch status:
            noMismatch(1):            no cabling mismatch is detected.
            unexpectedRemoteLt(2):    a remote LT is detected at an unassigned
                                      downlink SFP port.
            assignmentMismatch(3):    the detected remote LT does not match
                                      the LT assigned to this host SFP.
            incompatibleShelf(4):     the detected remote LT is in a shelf
                                      type which is not the planned shelf type.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
            ALCATEL NOTE: 
                ACCESS:   RO
                USAGE:    NA
                PERSIST:  NO 
                INSRVMOD: NA
                RANGE:    NA
                DEFVALUE: 1 / noMismatch
                UNITS:    NA
                SPARSE:   NO
                DESCR:    NA
            "
::= {hostSfpStatusEntry 8}

hostSfpCabledToPhysAddress      OBJECT-TYPE
        SYNTAX                  PhysAddress
        ACCESS                  read-only
        STATUS                  mandatory
        DESCRIPTION
            "The physical (MAC) address of the remote interface that is
            cabled to this host shelf SFP.
            If the remote interface does not have such an address or
            the address is not yet discovered, this object would
            contain an octet string of zero length.
        WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead.
            ALCATEL NOTE: 
                ACCESS:   RO
                USAGE:    NA
                PERSIST:  NO 
                INSRVMOD: NA
                RANGE:    NA
                DEFVALUE: NA
                UNITS:    NA 
                SPARSE:   NO
                DESCR:    NA
        "
::= {hostSfpStatusEntry 9}

--  ==================================================================
--  |         Start of Expansion Shelf SFP Status Table              |
--  ==================================================================

expSfpStatusTable        OBJECT-TYPE
        SYNTAX           SEQUENCE OF ExpSfpStatusEntry
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "This table contains the expansion shelf SFP status information.
        ALCATEL NOTE:
            TABLESIZE: 312  (24 + 288)
        "
::= {sfpMIB 4}

expSfpStatusEntry        OBJECT-TYPE
        SYNTAX           ExpSfpStatusEntry
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "Each entry consists of the expansion shelf SFP status."
        INDEX            {expSfpRack,expSfpShelf,expSfpSlot}
::= {expSfpStatusTable 1}

ExpSfpStatusEntry ::=
        SEQUENCE {
                 expSfpRack               INTEGER,
                 expSfpShelf              INTEGER,
                 expSfpSlot               INTEGER,
                 expSfpStatus             INTEGER,
                 hostSfpFaceplateNumber   INTEGER,
                 expSfpType               INTEGER,
                 hostSfpLogSlotId         EqptSlotIndex
        }

expSfpRack               OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the Rack ID of the expansion shelf SFP (actually its 
         corresponding LSM).
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 1..7
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 1}

expSfpShelf              OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the Shelf ID of the expansion shelf SFP (actually 
         its corresponding LSM).
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 1..4
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 2}

expSfpSlot               OBJECT-TYPE
        SYNTAX            INTEGER
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION     
        "This is the Slot ID of the expansion shelf SFP (actually its 
         corresponding LSM).
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: DEP / depends on the shelf type. 
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 3}

expSfpStatus             OBJECT-TYPE
        SYNTAX           INTEGER {
                             ok (1),
                             sfpNotPresent (2),
                             los (3),
                             txFail (4),
                             invalidAlcatelId (5),
                             unknown (6),
                             sfpControlFail (7),
                             txFailAndLos (8)
                         }
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the status of the expansion shelf SFP:
             ok (1):                 the expansion shelf SFP is operational.
             sfpNotPresent (2):      no SFP present.
             los (3):                LOS is detected by the expansion shelf SFP.
             txFail (4):             the expansion shelf TX failed.
             invalidAlcatelId (5):   the expansion shelf SFP plugged does not 
                                     have a valid Alcatel ID.
             unknown (6):            the status is not available or cannot 
                                     be retrieved.
             sfpControlFail (7):     SFP not responding or I2C failure.
             txFailAndLos (8):       the expansion shelf TX failed and LOS is
                                     detected by the expansion shelf SF 
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 6 / unknown
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 4}

hostSfpFaceplateNumber   OBJECT-TYPE
        SYNTAX            INTEGER
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION
        "This is the faceplate number of the host shelf SFP which the expansion
         shelf SFP is cabled to. If an expansion shelf SFP is not cabled to any
         host shelf SFP, the value of the corresponding hostSfpFaceplateNumber
         is set to 0.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO
            INSRVMOD: NA
            RANGE: 0..24
            DEFVALUE: 0
            UNITS: NA
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 5}

expSfpType               OBJECT-TYPE
        SYNTAX            INTEGER
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION
        "This variable indicates the type of the SFP. It is a bitmap represented
         as a sum, therefore, it can represent multiple types (combination
         of types) simultaneously. The various bit positions are:
             bit 0 (1):  1000BASE-SX
             bit 1 (2):  1000BASE-LX
             bit 2 (4):  1000BASE-CX
             bit 3 (8):  1000BASE-T
             bit 4 (16): 100BASE-LX/LX10
             bit 5 (32): 100BASE-FX
             bit 6 (64): BASE-BX10
             bit 7 (128): BASE-PX
             bit 16 (65536):  2500BASE-SX
             bit 17 (131072): 2500BASE-LX
             bit 18 (262144): 2500BASE-BX             
        If the expSfpType is unknown or not specified, expSfpType = 0.
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 6}

hostSfpLogSlotId        OBJECT-TYPE
        SYNTAX            EqptSlotIndex
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION
        "This is the LogSlotId of the host LT which the expansion
         shelf SFP is cabled to. If an expansion shelf SFP is not cabled to any
         host shelf SFP, the value of the corresponding hostSfpLogSlotId
         is set to 0.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO
            INSRVMOD: NA
            RANGE: see above
            DEFVALUE: 0
            UNITS: NA
            SPARSE: NO
            DESCR: NA
        "
::= {expSfpStatusEntry 7}


--  ==================================================================
--  |                  Start of SFP Diag Table                       |
--  ==================================================================

-- sfpDiagTable definition

sfpDiagTable OBJECT-TYPE
        SYNTAX           SEQUENCE OF SfpDiagEntry
        ACCESS              not-accessible
        STATUS              mandatory
        DESCRIPTION     
        "The primary purpose of this read-only table:  allow the SNMP 
         manager to read real-time diagnostic measurements (e.g. the 
         SFP's received optical power level) from the A2 bank of a 
         manager-specified SFP.  The A2 bank and content are defined in 
         the SFF-8472 standard (available at ftp.seagate.com).  

         The table is indexed to allow support for any SFP cage in 
         the system.  

         In a particular release, SFP diagnostics support for a 
         particular assembly may or may not be provided, and support for 
         all the cages on a supported assembly may or may not be 
         provided.  If an assembly has any supported SFP cages, a row will be 
         present in this table for each of its SFP cages.  

         A row is present whether or not the SFP cage contains an SFP,
         and whether or not the SFP supports diagnostics.  If the SFP 
         cage contains an SFP, some status information (e.g. LOS and 
         TxFault status) is available in the row.  An enumerated object 
         (sfpDiagAvailable) is used to indicate the condition/error 
         (or no error) encountered when attempting to read the 
         diagnostics information for the specified cage (e.g. cage 
         empty, or A2 checksum failed). 

         Details are documented with the individual objects.

         The following table size field is set to 'not applicable', 
         since it does not make sense for the SNMP manager to cache the 
         values in this table.  The values will be different each time 
         they are read from agent.

         ALCATEL NOTE:
            TABLESIZE: NA
            DESCR:  NA 
        "
::= {sfpMIB 5}

-- List the two index columns of the sfpDiagTable.

sfpDiagEntry       OBJECT-TYPE
        SYNTAX           SfpDiagEntry       
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "The index for the sfpDiagTable identifies an SFP cage 
         using two fields:  the logicalSlotId of the card associated 
         with the SFP cage (normally the card with the cages on its 
         faceplate), and the SFP cage number."
        INDEX       {sfpDiagLogicalSlot, sfpDiagSfpFaceplateNumber}
::= {sfpDiagTable 1}

-- List all the columns in the sfpDiagTable.

SfpDiagEntry ::=
        SEQUENCE {
                 sfpDiagLogicalSlot INTEGER,
                 sfpDiagSfpFaceplateNumber INTEGER,
                 sfpDiagAvailable INTEGER, 
                 sfpDiagLOS INTEGER,
                 sfpDiagTxFault INTEGER,
                 sfpDiagTxPower DisplayString,
                 sfpDiagRxPower DisplayString,
                 sfpDiagTxBiasCurrent DisplayString,
                 sfpDiagSupplyVoltage DisplayString, 
                 sfpDiagTemperature DisplayString,
                 sfpDiagTCAStatusTemperature   SfpDiagTCAStatus,
                 sfpDiagTCAStatusVoltage    SfpDiagTCAStatus,
                 sfpDiagTCAStatusBiasCurrent SfpDiagTCAStatus,
                 sfpDiagTCAStatusTxPower SfpDiagTCAStatus,
                 sfpDiagTCAStatusRxPower SfpDiagTCAStatus,
                 sfpDiagRSSIProfileId INTEGER,
		 sfpDiagRSSIState INTEGER,
		 sfpDiagRSSIRxPowerAlmLow  DisplayString,
    		 sfpDiagRSSIRxPowerAlmHigh  DisplayString,
		 sfpDiagRSSIRxPowerWarnLow  DisplayString,
	    	 sfpDiagRSSIRxPowerWarnHigh  DisplayString,
    		 sfpDiagRSSITxPowerAlmLow  DisplayString,
    		 sfpDiagRSSITxPowerAlmHigh  DisplayString,
    		 sfpDiagRSSITxPowerWarnLow  DisplayString,
    		 sfpDiagRSSITxPowerWarnHigh  DisplayString,
    		 sfpDiagRSSITemperatureAlmLow  DisplayString,
    		 sfpDiagRSSITemperatureAlmHigh  DisplayString,
    		 sfpDiagRSSITemperatureWarnLow  DisplayString,
    		 sfpDiagRSSITemperatureWarnHigh  DisplayString,
    		 sfpDiagRSSIBiasAlmLow  DisplayString,
    		 sfpDiagRSSIBiasAlmHigh  DisplayString,
    		 sfpDiagRSSIBiasWarnLow  DisplayString,
    		 sfpDiagRSSIBiasWarnHigh  DisplayString,
    		 sfpDiagRSSIVoltageAlmLow  DisplayString,
    		 sfpDiagRSSIVoltageAlmHigh  DisplayString,
    		 sfpDiagRSSIVoltageWarnLow  DisplayString,
    		 sfpDiagRSSIVoltageWarnHigh  DisplayString,
		 sfpDiagRSSIExtRxPowerAlmLow  DisplayString,
    		 sfpDiagRSSIExtRxPowerAlmHigh DisplayString,
    		 sfpDiagRSSIExtRxPowerWarnLow DisplayString,
    		 sfpDiagRSSIExtRxPowerWarnHigh DisplayString,
    		 sfpDiagRSSIExtTxPowerAlmLow  DisplayString,
    		 sfpDiagRSSIExtTxPowerAlmHigh  DisplayString,
    		 sfpDiagRSSIExtTxPowerWarnLow  DisplayString,
    		 sfpDiagRSSIExtTxPowerWarnHigh  DisplayString,  
    		 sfpDiagRSSIExtBiasAlmLow  DisplayString,
    		 sfpDiagRSSIExtBiasAlmHigh  DisplayString,
    		 sfpDiagRSSIExtBiasWarnLow  DisplayString,
    		 sfpDiagRSSIExtBiasWarnHigh  DisplayString,
                 sfpDiagRSSIExtTemperatureAlmLow  DisplayString,
                 sfpDiagRSSIExtTemperatureAlmHigh  DisplayString,
                 sfpDiagRSSIExtTemperatureWarnLow  DisplayString,
                 sfpDiagRSSIExtTemperatureWarnHigh  DisplayString
}

-- Define the first index column of the sfpDiagTable.

sfpDiagLogicalSlot  OBJECT-TYPE
        SYNTAX           INTEGER 
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the first index of the sfpDiagTable.  

         Normally, this object contains the Logical Slot ID (as defined in
         the Equipment MIB) of the card which has the SFP cage of interest
         on its faceplate.
         If that card does not have a Logical Slot ID, the Logical Slot ID
         of a related card is used.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 1..65535
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {sfpDiagEntry 1}

-- Define the second (and final) index column of the sfpDiagTable.

sfpDiagSfpFaceplateNumber      OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the second index of the sfpDiagTable. 
         It is the number of the SFP cage, as shown on the card 
         faceplate.  If the faceplate cage number is zero, 
         sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a
         special case).
         For an SFP cage, it is the faceplate number of the SFP cage 
         (e.g. 1).
         For an SFP+/XFP cage, it is 256 + the faceplate number 
         of the XFP cage.  For example, if the SFP+/XFP cage has 
         faceplate label X1, sfpInvFaceplateNumber = 257.
         For an QSFP cage, it is 512 + the faceplate number 
         of the QSFP cage.  For example, if the QSFP cage has 
         faceplate label Q1, sfpInvFaceplateNumber = 513.
         For a CFP4 cage, it is 768 + the faceplate number 
         of the CFP4 cage.  For example, if the CFP4 cage has 
         faceplate label C1, sfpInvFaceplateNumber = 769.

        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 0..769
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {sfpDiagEntry 2}

-- Define a non-index column of the sfpDiagTable.

sfpDiagAvailable    OBJECT-TYPE
        SYNTAX      INTEGER {
                      noError (1),
                      cageDoesNotSupportDiag(2),
                      cageEmpty (3),
                      cageDoesNotSupportA2 (4),
                      a0ReadFailed (5),
                      a0ChecksumFailed (6),
                      sfpDoesNotSupportA2 (7),
                      a2ReadFailed (8),
                      a2ChecksumFailed (9)
                    }
        ACCESS      read-only
        STATUS      mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, with the following code points.

         noError - valid values for all objects in this row (e.g. 
           sfpDiagRxPower) were obtained from the SFP in the specified 
           cage.
         cageDoesNotSupportDiag - the specified cage does not support 
           reading LOS, TxFault, or A2 measurements.  All subsequent values in the 
           row have notAvailable or 'Not Available' values. 
         cageEmpty - the specified SFP cage does not contain an SFP. 
           All subsequent values in the row have notAvailable or 
           'Not Available' values. 
         cageDoesNotSupportA2 - the specified SFP cage does not support 
           access to the SFP A2 bank (e.g. because of limitations in 
           FPGA support on the host card).  sfpDiagLOS and 
           sfpDiagTxFault have valid values (since they are implemented 
           using external signals, not SFP EEPROM values).
         a0ReadFailed - the attempt to read the A0 bank of the 
           specified SFP failed.  A0 is read to determine if A2 is 
           supported, so no attempt was made to read the A2 
           information.  sfpDiagLOS and sfpDiagTxFault have valid 
           values (since they are implemented using external signals, 
           not SFP EEPROM values).
         a0ChecksumFailed - the A0 bank of the SFP EEPROM is 
           corrupted.  sfpDiagLOS and sfpDiagTxFault have valid values 
           (since they are implemented using external signals, not SFP 
           EEPROM values).
         sfpDoesNotSupportA2 - the A0 bank of the SFP EEPROM indicates
           A2 is not supported.  sfpDiagLOS and sfpDiagTxFault have 
           valid values (since they are implemented using external 
           signals, not SFP EEPROM values). 
         a2ReadFailed - the attempt to read the A2 bank of the 
           specified SFP failed.  sfpDiagLOS and sfpDiagTxFault have 
           valid values (since they are implemented using external 
           signals, not SFP EEPROM values).
         a2ChecksumFailed - the A2 bank of the SFP EEPROM is 
           corrupted.  sfpDiagLOS and sfpDiagTxFault have valid values 
           (since they are implemented using external signals, not SFP 
           EEPROM values).
  

         ALCATEL NOTE:
           ACCESS: RO
           USAGE: NA
           PERSIST: NO 
           INSRVMOD: NO
           RANGE: NA
           DEFVALUE: NA
           UNITS: NA 
           SPARSE: NO
           DESCR: NA
       "
::= { sfpDiagEntry 3}

-- Define a non-index column of the sfpDiagTable.

sfpDiagLOS    OBJECT-TYPE
        SYNTAX      INTEGER {
                      los (1),
                      noLos (2),
                      notAvailable (3)
                    }
        ACCESS      read-only
        STATUS      mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, with the following code 
         points.

         los - the SFP in the specified SFP cage has detected Loss of 
           Signal (on its receiver).
         noLos - the SFP in the specified SFP cage has detected a
           received signal with a suitable power level.  
         notAvailable - the status of the received signal for the 
           specified SFP cage cannot be determined (e.g. because the 
           cage is empty - see sfpDiagAvailable).

         ALCATEL NOTE:
           ACCESS: RO
           USAGE: NA
           PERSIST: NO 
           INSRVMOD: NO
           RANGE: NA
           DEFVALUE: NA
           UNITS: NA 
           SPARSE: NO
           DESCR: NA
        "
::= { sfpDiagEntry 4}

-- Define a non-index column of the sfpDiagTable.

sfpDiagTxFault    OBJECT-TYPE
        SYNTAX      INTEGER {
                      txFault (1),
                      noTxFault (2),
                      notApplicable (3),
                      notAvailable (4)
                    }
        ACCESS      read-only
        STATUS      mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, with the following code 
         points.

         txFault - the SFP in the specified SFP cage has detected a 
           TxFault error (as defined in SFF-8472).
         noTxFault - the SFP in the specified SFP cage has not detected 
           a TxFault error.
         notApplicable - the SFP is electrical, so TxFault is not 
           applicable (the detection technology is optical).
         notAvailable - the TxFault status of the specified SFP cage 
           cannot be determined (e.g. because the cage is empty - see 
           sfpDiagAvailable).

         ALCATEL NOTE:
           ACCESS: RO
           USAGE: NA
           PERSIST: NO 
           INSRVMOD: NO
           RANGE: NA
           DEFVALUE: NA
           UNITS: NA 
           SPARSE: NO
           DESCR: NA
        "
::= { sfpDiagEntry 5}

-- Define a non-index column of the sfpDiagTable.

sfpDiagTxPower OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured 
         transmit power of the specified SFP, encoded into a string.

         Five types of values are supported.  In the following text, 
         strings are enclosed in single quotes (a double quote marks the 
         end of the DESCRIPTION field).  

         1.  '-40.00 dBm' to '8.16 dBm', in 0.01 dBm increments.  Note 
              that ' dBm' is included in the string.

         2.  'No Power'.  This is a special case because an SFP reading 
             of 0.00 mW cannot be converted to dBm (since log10(0.00) is  
             undefined). 

         3.  'Not Applicable'.  This is used for an electrical SFP.  The 
             technology for measuring transmitted power is optical.

         4.  'Not Available'.  The measurement could not be obtained  
             (e.g. the specified SFP cage is empty).

         5.  'Invalid'. The transmitted power, in mW, is negative (for example,
             due to incorrect external calibration constants in the SFP).  A
             negative mW value is not valid in this context, and cannot be
             converted to dBm.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 6}

-- Define a non-index column of the sfpDiagTable.

sfpDiagRxPower OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured 
         received power of the specified SFP, encoded into a string.

         Five types of values are supported.  In the following text, 
         strings are enclosed in single quotes (a double quote marks the 
         end of the DESCRIPTION field).  

         1.  '-40.00 dBm' to '8.16 dBm', in 0.01 dBm increments.  Note 
             that ' dBm' is included in the string.

         2.  'No Power'.  This is a special case because an SFP reading 
             of 0.00 mW cannot be converted to dBm (since log10(0.00) is  
             undefined).

         3.  'Not Applicable'.  This is used for an electrical SFP.  The 
             technology for measuring received power is optical.

         4.  'Not Available'.  The measurement could not be obtained  
             (e.g. the specified SFP cage is empty).

         5.  'Invalid'. The received power, in mW, is negative (for example,
             due to incorrect external calibration constants in the SFP).  A
             negative mW value is not valid in this context, and cannot be
             converted to dBm.   
      
         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
       "
::= { sfpDiagEntry 7}

-- Define a non-index column of the sfpDiagTable.

sfpDiagTxBiasCurrent OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured 
         transmit bias current of the specified SFP, encoded into a 
         string.

         Four types of values are supported.  In the following text, 
         strings are enclosed in single quotes (a double quote marks the 
         end of the DESCRIPTION field).  

         1.  '0.00 mA' to '131.10 mA', in 0.01 mA increments.  Note that 
             ' mA' is included in the string.

         2.  'Not Applicable'.  This is used for an electrical SFP.  The 
             technology for measuring transmit bias current is optical.

         3.  'Not Available'.  The measurement could not be obtained  
             (e.g. the specified SFP cage is empty).

         4.  'Invalid'. The bias current, in mA, is negative (for example,
             due to incorrect external calibration constants in the SFP).  A
             negative mA value is not valid in this context.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO 
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 8}

-- Define a non-index column of the sfpDiagTable.

sfpDiagSupplyVoltage OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured 
         supply voltage of the specified SFP, encoded into a string.

         Three types of values are supported.  In the following text, 
         strings are enclosed in single quotes (a double quote marks the 
         end of the DESCRIPTION field).  

         1.  '0.00 VDC' to '6.55 VDC', in 0.01 VDC increments.  Note that 
             ' VDC' is included in the string.

         2.  'Not Available'.  The measurement could not be obtained  
             (e.g. the specified SFP cage is empty).

         3.  'Invalid'. The supply voltage, in VDC, is negative (for example,
             due to incorrect external calibration constants in the SFP).  A
             negative VDC value is not valid in this context.

         The supply voltage can be retrieved from an electrical SFP, so 
         there is no need for a 'Not Applicable' string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 9}

-- Define a non-index column of the sfpDiagTable.

sfpDiagTemperature OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured 
         temperature of the specified SFP, encoded into a string.

         Two types of values are supported.  In the following text, 
         strings are enclosed in single quotes (a double quote marks the 
         end of the DESCRIPTION field).  

         1.  '-128.00 degrees Celsius' to '128.00 degrees Celsius', 
             in 0.01 degrees Celsius increments.  
             Note that ' degrees Celsius' is included in the string.

         2.  'Not Available'.  The measurement could not be obtained  
             (e.g. the specified SFP cage is empty).

         The temperature can be retrieved from an electrical SFP, so 
         there is no need for a 'Not Applicable' string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 10}

-- Define a non-index column of the sfpDiagTable.

sfpDiagTCAStatusTemperature OBJECT-TYPE
        SYNTAX SfpDiagTCAStatus
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured temperature 
        alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4.
        
         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 11}

-- Define a non-index column of the sfpDiagTable.

sfpDiagTCAStatusVoltage OBJECT-TYPE
        SYNTAX SfpDiagTCAStatus
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured voltage 
         alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4.
         For XFP, this parameter will display as NotAvailable in case it is not 
         supported as one of the Auxillary measured value by XFP.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 12}

sfpDiagTCAStatusBiasCurrent OBJECT-TYPE
        SYNTAX SfpDiagTCAStatus
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured bias current 
        alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4.
        
         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 13}

sfpDiagTCAStatusTxPower OBJECT-TYPE
        SYNTAX SfpDiagTCAStatus
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured received 
        power alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 14}

sfpDiagTCAStatusRxPower OBJECT-TYPE
        SYNTAX SfpDiagTCAStatus
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpDiagTable, containing the freshly-measured transmit 
        power alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4.
        
         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpDiagEntry 15}

sfpDiagRSSIProfileId OBJECT-TYPE
	SYNTAX 	INTEGER 
	ACCESS	read-write
	STATUS	mandatory
	DESCRIPTION 
		"Indicates the RSSI TCA profile, refer to SfpRSSIProfileTable.
		65535 means auto mode. When configured 65535, when sfp is plugged in, system will detect sfp type and associate related sfp rssi profile. User cannot modify the threshold values of this profile id.
	1-200 denotes user-defined profile where user can configure the RSSI threshold values.

ALCATEL NOTE:
		 ACCESS: NA  
                 usage: OPT
		 persistent: YES 
                 INSRVMOD:YES
                 RANGE:1..200,65535 
                 DEFVALUE: 65535 
                 UNITS: NA    
                 SPARSE: NA "
::= { sfpDiagEntry 16}

sfpDiagRSSIState OBJECT-TYPE
	SYNTAX 	INTEGER 
	ACCESS	read-write
	STATUS	mandatory
	DESCRIPTION 
		"Enable(1) and Disable(2) to RSSI function on port level. 

ALCATEL NOTE:
		 ACCESS: NA        usage: OPT
		 persistent: YES   INSRVMOD:YES
                             RANGE:1,2          DEFVALUE: 2 
                             UNITS: NA         SPARSE: NA  "
::= { sfpDiagEntry 17}


sfpDiagRSSIRxPowerAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value,then alarm OLTRXPWLO will be reported.
                For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. 
                For ONT Profile, 0.5dBm means using ont internal policy.
	        'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values.
                'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  18 }

sfpDiagRSSIRxPowerAlmHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value,then alarm OLTRXPWHI will be reported.
                 For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane.
		 For ONT Profile, 0.5dBm means using ont internal policy.
	 	 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values.
		 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  19 }

sfpDiagRSSIRxPowerWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value,alarm OLTRXPWLOWARN  will be reported.
                 For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  20 }

sfpDiagRSSIRxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value,alarm OLTRXPWHIWARN will be reported.
                 For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane.
		'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values.
                'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:     NA
                 PERSIST:    NO       INSRVMOD:  NA
                 RANGE:      NA       DEFVALUE:  NA
                 UNITS:      NA       SPARSE:    NA
                 DESCR:      NA "
::= { sfpDiagEntry  21 }

sfpDiagRSSITxPowerAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWLO. When Tx power is less than this value,alarm OLTTXPWLO will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
                 For ONT Profile, -63.5dBm means using ONT internal policy.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  22 }

sfpDiagRSSITxPowerAlmHigh OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWHI. When Tx power is larger than this value,alarm OLTTXPWHI will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  23 }

sfpDiagRSSITxPowerWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWLOWARN. When Tx power is less than this value,alarm OLTTXPWLOWARN will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  24 }

sfpDiagRSSITxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWHIWARN. When Tx power is larger than this value,alarm OLTTXPWHIWARN will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  25 }

sfpDiagRSSITemperatureAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPLO. when temperature is less than this value, then alarm OLTTEMPLO will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureAlmLow. 
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  26 }

sfpDiagRSSITemperatureAlmHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPHI. When temperature is larger than this value,alarm OLTTEMPHI will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureAlmHigh.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  27 }

sfpDiagRSSITemperatureWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPLOWARN. when temperature is less than this value, then alarm OLTTEMPLOWARN will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureWarnLow.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  28 }

sfpDiagRSSITemperatureWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPHIWARN. When temperature is larger than this value,alarm OLTTEMPHIWARN will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureWarnHigh.
		'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  29 }


sfpDiagRSSIBiasAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASLO. when bias is less than this value, then alarm OLTBIASLO will be reported.
                 For CFP4,this is the module level threshold.The network lane threshold is indicated by sfpDiagRSSIExtBiasAlmLow.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  30 }

sfpDiagRSSIBiasAlmHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASHI. when bias is larger than this value, then alarm OLTBIASHI will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtBiasAlmHigh.  
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  31 }

sfpDiagRSSIBiasWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASLOWARN. when bias is less than this value, then alarm OLTBIASLOWARN will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtBiasWarnLow.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  32 }

sfpDiagRSSIBiasWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASHIWARN. when bias is larger than this value, then alarm OLTBIASHIWARN will be reported.
                 For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtBiasWarnHigh.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  33 }

sfpDiagRSSIVoltageAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLLO. when voltage is less than this value, then alarm OLTVOLLO will be reported.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  34 }

sfpDiagRSSIVoltageAlmHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLHI. when voltage is larger than this value, then alarm OLTVOLHI will be reported.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:     NA
                 PERSIST:    NO       INSRVMOD:  NA
                 RANGE:      NA       DEFVALUE:  NA
                 UNITS:      NA       SPARSE:    NA
                 DESCR:      NA "
::= { sfpDiagEntry  35 }

sfpDiagRSSIVoltageWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLLOWARN. when voltage is less than this value, then alarm OLTVOLLOWARN will be reported.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:      NA       DEFVALUE: NA
                 UNITS:      NA       SPARSE:   NA
                 DESCR:      NA  "
::= { sfpDiagEntry  36 }

sfpDiagRSSIVoltageWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLHIWARN. when voltage is larger than this value, then alarm OLTVOLHIWARN will be reported.
		 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  37 }

sfpDiagRSSIExtRxPowerAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value, then alarm OLTRXPWLO will be reported. 
		 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.	
                 'Not Supported' is shown when the matching profile is not found.	

                ALCATEL NOTE:
                 ACCESS:     RO            USAGE:    NA
                 PERSIST:    NO            INSRVMOD: NA
                 RANGE:      NA            DEFVALUE:  0
                 UNITS:      NA            SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  38 }

sfpDiagRSSIExtRxPowerAlmHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value,then alarm OLTRXPWHI will be reported.
	 	 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  39}

sfpDiagRSSIExtRxPowerWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value,alarm OLTRXPWLOWARN  will be reported.
		 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  40}

sfpDiagRSSIExtRxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value,alarm OLTRXPWHIWARN will be reported.
	  	 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  41}


sfpDiagRSSIExtTxPowerAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWLO. When Tx power is less than this value,alarm EXTOLTTXPWLO will be reported.
		  Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	          For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  42 }

sfpDiagRSSIExtTxPowerAlmHigh OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWHI. When Tx power is larger than this value,alarm EXTOLTTXPWHI will be reported.
		 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  43 }

sfpDiagRSSIExtTxPowerWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWLOWARN. When Tx power is less than this value,alarm EXTOLTTXPWLOWARN will be reported.
		 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  44 }

sfpDiagRSSIExtTxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWHIWARN. When Tx power is larger than this value,alarm EXTOLTTXPWHIWARN will be reported.
	 	 Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others.
	         For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                 ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  45 }

sfpDiagRSSIExtBiasAlmLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLO. when bias is less than this value, then alarm EXTOLTBIASLO will be reported.
                 For CFP4, this object indicates the threshold for OLTBIASLO.When any network lane's bias is less than this value, then alarm OLTBIASLO will be reported.
                 For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasAlmLow.
		         Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others.
	             For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "

::= { sfpDiagEntry  46 }

sfpDiagRSSIExtBiasAlmHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHI. when bias is larger than this value, then alarm EXTOLTBIASHI will be reported.
                 For CFP4, this object indicates the threshold for OLTBIASHI.When any network lane's bias is larger than this value, then alarm OLTBIASHI will be reported.
                 For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasAlmHigh.
		         Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others.
	             For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  47 }

sfpDiagRSSIExtBiasWarnLow   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLOWARN. when bias is less than this value,then alarm EXTOLTBIASLOWARN will be reported.
                 For CFP4, this object indicates the threshold for OLTBIASLOWARN.When any network lane's bias is less than this value, then alarm OLTBIASLOWARN will be reported.
                 For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasWarnLow.
		         Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others. 
	             For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  48 }

sfpDiagRSSIExtBiasWarnHigh   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHIWARN. when bias is larger than this value,then alarm EXTOLTBIASHIWARN will be reported.
                 For CFP4, this object indicates the threshold for OLTBIASHIWARN.When any network lane's bias is larger than this value, then alarm OLTBIASHIWARN will be reported.
                 For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasWarnHigh.
                 Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others.				 
	             For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned.
                 'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE: NA
                 UNITS:      NA                 SPARSE:   NA
                 DESCR:      NA "
::= { sfpDiagEntry  49 }

sfpDiagRSSIExtTemperatureAlmLow  OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
        "This object indicates the laser temperature low alarm threshold of network lane for CFP4. 
         When any network lane's laser temperature of CFP4 is less than this value,then alarm OLTTEMPLO will be reported.
         The module level threshold is indicated by sfpDiagRSSITemperatureAlmLow.
         Applicable only for CFP4,Shown as 'Not Applicable' for others.
        'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE:  NA
                 UNITS:      NA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpDiagEntry  50 }

sfpDiagRSSIExtTemperatureAlmHigh  OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
        "This object indicates the laser temperature high alarm threshold of network lanefor CFP4. 
         When any network lane's laser temperature of CFP4 is larger than this value,then alarm OLTTEMPHI will be reported.
         The module level threshold is indicated by sfpDiagRSSITemperatureAlmHigh.
         Applicable only for CFP4,Shown as 'Not Applicable' for others.
        'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE:  NA
                 UNITS:      NA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpDiagEntry  51 }

sfpDiagRSSIExtTemperatureWarnLow OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
        "This object indicates the laser temperature low warning threshold of network lane for CFP4. 
         When any network lane's laser temperature of CFP4 is less than this value,then alarm OLTTEMPLOWARN will be reported.
         The module level threshold is indicated by sfpDiagRSSITemperatureWarnLow.
         Applicable only for CFP4,Shown as 'Not Applicable' for others.
        'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE:  NA
                 UNITS:      NA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpDiagEntry  52 }

sfpDiagRSSIExtTemperatureWarnHigh OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
        "This object indicates the laser temperature high warning threshold of network lane for CFP4. 
         When any network lane's laser temperature of CFP4 is larger than this value,then alarm OLTTEMPHIWARN will be reported.
         The module level threshold is indicated by sfpDiagRSSITemperatureWarnHigh.
         Applicable only for CFP4,Shown as 'Not Applicable' for others.
        'Not Supported' is shown when the matching profile is not found.

                ALCATEL NOTE:
                 ACCESS:     RO                 USAGE:    NA
                 PERSIST:    NO                 INSRVMOD: NA
                 RANGE:      NA                 DEFVALUE:  NA
                 UNITS:      NA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpDiagEntry  53 }

--  ==================================================================
--  |                    End of SFP Diag Table                       |
--  ==================================================================

--  ==================================================================
--  |                  Start of SFP Inventory Table                       |
--  ==================================================================

-- sfpInventoryTable definition

sfpInventoryTable OBJECT-TYPE
        SYNTAX           SEQUENCE OF SfpInventoryEntry
        ACCESS              not-accessible
        STATUS              mandatory
        DESCRIPTION     
        "The primary purpose of this read-only table:  allow the SNMP 
         manager to read read-only EEPROM contents from EEPROM of SFP

         Details are documented with the individual objects.

         The following table size field is set to 'not applicable', 
         since it does not make sense for the SNMP manager to cache the 
         values in this table.  The values will be different each time 
         they are read from agent.

         ALCATEL NOTE:
            TABLESIZE: NA
            DESCR:  NA 
        "
::= {sfpMIB 6}

-- List the two index columns of the sfpInventoryTable.

sfpInventoryEntry       OBJECT-TYPE
        SYNTAX           SfpInventoryEntry       
        ACCESS           not-accessible
        STATUS           mandatory
        DESCRIPTION     
        "The index for the sfpInventoryTable identifies an SFP cage 
         using two fields:  the logicalSlotId of the card associated 
         with the SFP cage (normally the card with the cages on its 
         faceplate), and the SFP cage number."
        INDEX       {sfpInvLogicalSlot, sfpInvFaceplateNumber}
::= {sfpInventoryTable 1}

-- List all the columns in the sfpInventoryTable.

SfpInventoryEntry ::=
        SEQUENCE {
                 sfpInvLogicalSlot INTEGER,
                 sfpInvFaceplateNumber INTEGER,
                 sfpInvAvailable INTEGER, 
                 sfpInvFiberType INTEGER,
                 sfpInvAluPartNumber DisplayString,
                 sfpInvCLEIcode DisplayString,
                 sfpInvTxWavelength DisplayString,
                 sfpInvAdditionalInfo DisplayString,
                 sfpInvMfgName DisplayString,
                 sfpInvMfgOUICode DisplayString,
                 sfpInvMfgSerialNumber DisplayString,
                 sfpInvMfgDate DisplayString,
                 sfpInvSpecificalType INTEGER
                }

-- Define the first index column of the sfpInventoryTable.

sfpInvLogicalSlot  OBJECT-TYPE
        SYNTAX           INTEGER 
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the first index of the sfpInventoryTable.  

         Normally, this object contains the Logical Slot ID (as defined in
         the Equipment MIB) of the card which has the SFP cage of interest
         on its faceplate.
         If that card does not have a Logical Slot ID, the Logical Slot ID
         of a related card is used.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 1..65535
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {sfpInventoryEntry 1}

-- Define the second (and final) index column of the sfpInventoryTable.

sfpInvFaceplateNumber      OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the second index of the sfpInventoryTable. 
         It is the number of the SFP cage, as shown on the card 
         faceplate.  If the faceplate cage number is zero, 
         sfpInvFaceplateNumber=0 is used (i.e. zero is not a
         special case).
         For an SFP cage, it is the faceplate number of the SFP cage 
         (e.g. 1).
         For an SFP+/XFP cage, it is 256 + the faceplate number 
         of the XFP cage.  For example, if the SFP+/XFP cage has 
         faceplate label X1, sfpInvFaceplateNumber = 257.
         For an QSFP cage, it is 512 + the faceplate number 
         of the QSFP cage.  For example, if the QSFP cage has 
         faceplate label Q1, sfpInvFaceplateNumber = 513.
         For a CFP4 cage, it is 768 + the faceplate number 
         of the CFP4 cage.  For example, if the CFP4 cage has 
         faceplate label C1, sfpInvFaceplateNumber = 769.

        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 0..769
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {sfpInventoryEntry 2}

-- Define a non-index column of the sfpInventoryTable.

sfpInvAvailable    OBJECT-TYPE
        SYNTAX      INTEGER {
                      noError (1),
                      cageEmpty (2),
                      cageDoesNotSupportA2 (3),
                      a0ReadFailed (4),
                      a0ChecksumFailed (5),
                      sfpDoesNotSupportA2 (6),
                      a2ReadFailed (7),
                      a2ChecksumFailed (8)
                    }
        ACCESS      read-only
        STATUS      mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, with the following code points.

         noError - valid values for all objects in this row (e.g. 
           sfpDiagRxPower) were obtained from the SFP in the specified 
           cage.
         cageEmpty - the specified SFP cage does not contain an SFP. 
           All subsequent values in the row have notAvailable or 
           'Not Available' values. 
         cageDoesNotSupportA2 - the specified SFP cage does not support 
           access to the SFP A2 bank (e.g. because of limitations in 
           FPGA support on the host card).  sfpDiagLOS and 
           sfpDiagTxFault have valid values (since they are implemented 
           using external signals, not SFP EEPROM values).
         a0ReadFailed - the attempt to read the A0 bank of the 
           specified SFP failed.  A0 is read to determine if A2 is 
           supported, so no attempt was made to read the A2 
           information.  sfpDiagLOS and sfpDiagTxFault have valid 
           values (since they are implemented using external signals, 
           not SFP EEPROM values).
         a0ChecksumFailed - the A0 bank of the SFP EEPROM is 
           corrupted.  sfpDiagLOS and sfpDiagTxFault have valid values 
           (since they are implemented using external signals, not SFP 
           EEPROM values).
         sfpDoesNotSupportA2 - the A0 bank of the SFP EEPROM indicates
           A2 is not supported.  sfpDiagLOS and sfpDiagTxFault have 
           valid values (since they are implemented using external 
           signals, not SFP EEPROM values). 
         a2ReadFailed - the attempt to read the A2 bank of the 
           specified SFP failed.  sfpDiagLOS and sfpDiagTxFault have 
           valid values (since they are implemented using external 
           signals, not SFP EEPROM values).
         a2ChecksumFailed - the A2 bank of the SFP EEPROM is 
           corrupted.  sfpDiagLOS and sfpDiagTxFault have valid values 
           (since they are implemented using external signals, not SFP 
           EEPROM values).
  

         ALCATEL NOTE:
           ACCESS: RO
           USAGE: NA
           PERSIST: NO 
           INSRVMOD: NO
           RANGE: NA
           DEFVALUE: NA
           UNITS: NA 
           SPARSE: NO
           DESCR: NA
       "
::= { sfpInventoryEntry 3}

-- Define a non-index column of the sfpInventoryTable.

sfpInvFiberType OBJECT-TYPE
        SYNTAX      INTEGER
                    {
                        singleMode(1),
                        multiMode(2),
                        notAvailable(3)
                    }
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the fiber type of 
        the specified SFP/SFP+.
        For XFP, it is always singleMode

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 4}

sfpInvAluPartNumber OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the Alcatel-Lucent part number
         of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 5}

sfpInvCLEIcode OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the CLEI code
         of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 6}

sfpInvTxWavelength OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the transmit wavelength
         of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 7}

sfpInvAdditionalInfo OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the customer specific
        additional information of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 8}

sfpInvMfgName OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the manufacturer or
        vendor name of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 9}

sfpInvMfgOUICode OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the manufacturer or
        vendor OUI code of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 10}

sfpInvMfgSerialNumber OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the manufacturer or
        vendor serial number of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 11}

sfpInvMfgDate OBJECT-TYPE
        SYNTAX DisplayString
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "A column in the sfpInventoryTable, containing the manufactured date 
        of the specified SFP/SFP+/XFP, encoded into a string.

         ALCATEL NOTE:
             ACCESS: RO
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NO
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NO
             DESCR: NA
        "
::= { sfpInventoryEntry 12}

sfpInvSpecificalType OBJECT-TYPE
        SYNTAX      INTEGER
                    {
                        sfpUnknown(0),
                        px20(1),
                        px20plus(2),
                        prx-t1(3),
                        pr-t2(4),
                        prx-t3(5),
                        pr-t4(6),
                        bPlusCAA(7),
                        bPlusIAC(8),
                        cPlusCBA(9),
                        cPlusIBC(10),
                        base10G-ER(11),
                        base10G-SR(12),
                        base10G-LR(13),
                        base1000-T(14),
                        base1000-LX(15),
                        base1000-BX10-U(16),
                        base1000-EX(17),
                        base1000-ZX(18),
                        n1-c(19),
                        n2a-c(20),
                        n2b-c(21),
                        base1000-SX(22),
                        base1000-CX(23),
                        base1000-BX10-D(24),
                        base100-FX(25),
                        base100-TX(26),
                        base2500(27),
                        base10G-LRM(28),
                        base10G-EW(29),
                        base10G-SW(30),
                        base10G-LW(31),
                        base40G-LR4(32),
                        base40G-SR4(33),
                        base40G-CR4(34),
                        base100-LX(35),
                        base100-BX10-U(36),
                        base100-BX10-D(37),
                        base1000-VX(38),
                        e1eth(39),
                        e3eth(40),
                        stm1eth(41),
                        e1tdm(42),
                        bPlusIONU(43),
                        base10G-BX40-U(44),
                        base10G-BX40-D(45),
                        base1000-BX40-U(46),
                        base1000-BX40-D(47),
                        base1000-BX20-U(48),
                        base1000-BX20-D(49),
                        base10G-ZR-CWDM(50),
                        base10G-ZR-DWDM(51),
                        n1-i(52),
                        n2a-i(53),
                        n2b-i(54),
                        base100G-LR4(55),
                        base100G-SR4(56),
                        base10G-BX10-U(57),
                        base10G-BX10-D(58),
                        base1000-ZR-CWDM(59),
                        base10G-ZR(60),
                        base10G-BX80-U(61),
                        base10G-BX80-D(62),
                        base1000-BX80-U(63),
                        base1000-BX80-D(64),
                        base100G-ER4(65),
                        cPlusPlusI(66)

                    }
        ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "indicate basic type of the specified SFP(+)/XFP/QSFP(+).
        
         ALCATEL NOTE:
             ACCESS: NA
             USAGE: NA
             PERSIST: NO 
             INSRVMOD: NA
             RANGE: NA
             DEFVALUE: NA
             UNITS: NA 
             SPARSE: NA
             DESCR: NA
        "
::= { sfpInventoryEntry 13}

--  ==================================================================
--  |                    End of SFP Inventory Table                       |
--  ==================================================================

sfpRSSIProfileTable OBJECT-TYPE
	SYNTAX	SEQUENCE OF SfpPonRSSIProfileEntry
	ACCESS	not-accessible
	STATUS	mandatory
	DESCRIPTION
		"This object contains a table for defining RSSI for SFP/XFP/CFP4 by operator, which could be used for all NT/NTIO cards and DSL/GPON/EPON line cards.
		 ALCATEL NOTE:
             SUPPORT: YES   TABLESIZE: DEP"
::= { sfpMIB 7 }

sfpRSSIProfileEntry OBJECT-TYPE
	SYNTAX 	SfpPonRSSIProfileEntry
	ACCESS	not-accessible
	STATUS	mandatory
	DESCRIPTION
		 "An entry in the sfpRSSIProfileTable. 
          Row creation : an entry is created  when operator creates SfpRSSI profile.
          Row deletion : an entry is created  when operator deletes SfpRSSI profile.
          ALCATEL NOTE:
             SUPPORT: YES"
	INDEX {sfpRSSIProfileIndex}
::= {sfpRSSIProfileTable 1}

SfpPonRSSIProfileEntry ::=
	SEQUENCE { 
		sfpRSSIProfileIndex		              AsamProfileIndex,
		sfpRSSIProfileName		              DisplayString,
		sfpRSSIProfileRefCount              AsamProfileRefCount,
		sfpRSSIRowStatus                    RowStatus,
    sfpRSSIRxPowerAlmLow                    INTEGER,
    sfpRSSIRxPowerAlmHigh                   INTEGER,
    sfpRSSIRxPowerWarnLow                   INTEGER,
    sfpRSSIRxPowerWarnHigh                  INTEGER,
    sfpRSSITxPowerAlmLow                    INTEGER,
    sfpRSSITxPowerAlmHigh                   INTEGER,
    sfpRSSITxPowerWarnLow                   INTEGER,
    sfpRSSITxPowerWarnHigh                  INTEGER,
    sfpRSSITemperatureAlmLow                INTEGER,
    sfpRSSITemperatureAlmHigh               INTEGER,
    sfpRSSITemperatureWarnLow               INTEGER,
    sfpRSSITemperatureWarnHigh              INTEGER,
    sfpRSSIBiasAlmLow                       INTEGER,
    sfpRSSIBiasAlmHigh                      INTEGER,
    sfpRSSIBiasWarnLow                      INTEGER,
    sfpRSSIBiasWarnHigh                     INTEGER,
    sfpRSSIVoltageAlmLow                    INTEGER,
    sfpRSSIVoltageAlmHigh                   INTEGER,
    sfpRSSIVoltageWarnLow                   INTEGER,
    sfpRSSIVoltageWarnHigh                  INTEGER,
    sfpRSSIExtRxPowerAlmLow                    INTEGER,
    sfpRSSIExtRxPowerAlmHigh                   INTEGER,
    sfpRSSIExtRxPowerWarnLow                   INTEGER,
    sfpRSSIExtRxPowerWarnHigh                  INTEGER,
    sfpRSSIExtTxPowerAlmLow                    INTEGER,
    sfpRSSIExtTxPowerAlmHigh                   INTEGER,
    sfpRSSIExtTxPowerWarnLow                   INTEGER,
    sfpRSSIExtTxPowerWarnHigh                  INTEGER,
    sfpRSSIExtBiasAlmLow                       INTEGER,
    sfpRSSIExtBiasAlmHigh                      INTEGER,
    sfpRSSIExtBiasWarnLow                      INTEGER,
    sfpRSSIExtBiasWarnHigh                     INTEGER,
    sfpRssiProfileType                         INTEGER,
    sfpRSSIExtTemperatureAlmLow                INTEGER,
    sfpRSSIExtTemperatureAlmHigh               INTEGER,
    sfpRSSIExtTemperatureWarnLow               INTEGER,
    sfpRSSIExtTemperatureWarnHigh              INTEGER
}

sfpRSSIProfileIndex OBJECT-TYPE 
	SYNTAX AsamProfileIndex
	ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	    "This object is the index to the sfpSfpRSSIProfileTable.
	    ALCATEL NOTE:
                 ACCESS:     NA       USAGE:      NA
                 PERSIST:    YES      INSRVMOD:   NO
                 RANGE:      NA       DEFVALUE:   NA
                 UNITS:      NA       SPARSE:     NA
"
::= { sfpRSSIProfileEntry 1}

sfpRSSIProfileName OBJECT-TYPE 
	SYNTAX DisplayString
	ACCESS read-write
	STATUS  mandatory
	DESCRIPTION	    
	    "The corresponding name for a given profile id.
The name corresponding to the ProfileId must also be unique.
ALCATEL NOTE:
                 ACCESS:     NA       USAGE:      NA
                 PERSIST:    YES      INSRVMOD:   NO
                 RANGE:      NA       DEFVALUE:   NA
                 UNITS:      NA       SPARSE:     NA"


::= {sfpRSSIProfileEntry 2}


sfpRSSIProfileRefCount 	OBJECT-TYPE 
	SYNTAX	AsamProfileRefCount
	ACCESS  read-only
	STATUS	mandatory
	DESCRIPTION
    " Indicates the number of entities using this profile. If the
          reference count is greater than 0, then this profile is 'in use',
          and may NOT be deleted. If the value is 0, then this profile is
          'not in use', and can be deleted.
          ALCATEL NOTE:
             ALCATEL NOTE:
                 ACCESS:     NA       USAGE:      NA
                 PERSIST:    NA     INSRVMOD:   NO
                 RANGE:      NA       DEFVALUE:   NA
                 UNITS:      NA       SPARSE:     NA "

::= { sfpRSSIProfileEntry  3}

sfpRSSIRowStatus OBJECT-TYPE 
	SYNTAX	RowStatus
	ACCESS	read-write
	STATUS  mandatory
	DESCRIPTION
"This object is used to create a new row or delete an row.
	 ALCATEL NOTE:
		 ACCESS: NA        usage: MAND
         persistent: YES   INSRVMOD:YES
         RANGE:1,4,6       DEFVALUE: NA  
         UNITS: NA         SPARSE: NA  "
::= { sfpRSSIProfileEntry  4}


sfpRSSIRxPowerAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value, then
                alarm OLTRXPWLO will be reported.
                For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. 
                For ONT Profile, 0.5dBm means using ont internal policy.

                ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES      INSRVMOD: YES
                 RANGE:     -127000..8163      DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  5 }

sfpRSSIRxPowerAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value,
                 then alarm OLTRXPWHI will be reported.
                 For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane.
		 For ONT Profile, 0.5dBm means using ont internal policy.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -127000..8163  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  6 }

sfpRSSIRxPowerWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value,
                 alarm OLTRXPWLOWARN  will be reported.
                 For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane.

                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    NO       INSRVMOD: NA
                 RANGE:     -127000..8163  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  7 }

sfpRSSIRxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value,
                 alarm OLTRXPWHIWARN will be reported.
                 For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -127000..8163  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  8 }

sfpRSSITxPowerAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWLO. When Tx power is less than this value, 
                alarm OLTTXPWLO will be reported.
                For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
                For ONT Profile, -63.5dBm means using ONT internal policy.
                ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES      INSRVMOD: YES
                 RANGE:     -63500..63500      DEFVALUE: 0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  9 }

sfpRSSITxPowerAlmHigh OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWHI. When Tx power is larger than this value,
                 alarm OLTTXPWHI will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -63500..63500  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  10 }

sfpRSSITxPowerWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWLOWARN. When Tx power is less than this value,
                 alarm OLTTXPWLOWARN will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. 
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -63500..63500  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  11 }

sfpRSSITxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTXPWHIWARN. When Tx power is larger than this value,
                 alarm OLTTXPWHIWARN will be reported.
                 For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -63500..63500  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  12 }

sfpRSSITemperatureAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPLO. when temperature is less than this value, then
                alarm OLTTEMPLO will be reported.
                For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureAlmLow.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  13 }

sfpRSSITemperatureAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPHI. When temperature is larger than this value,
                 alarm OLTTEMPHI will be reported.
                 For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureAlmHigh.
                 ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  14 }

sfpRSSITemperatureWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPLOWARN. when temperature is less than this value, then
                alarm OLTTEMPLOWARN will be reported.
                For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureWarnLow.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  15 }

sfpRSSITemperatureWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTTEMPHIWARN. When temperature is larger than this value,
                 alarm OLTTEMPHIWARN will be reported.
                 For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureWarnHigh
                 ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  16 }


sfpRSSIBiasAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASLO. when bias is less than this value, then
                alarm OLTBIASLO will be reported.
                For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasAlmLow.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                INSRVMOD: YES
                 RANGE:      0..131000          DEFVALUE:  0
                 UNITS:      2uA                SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  17 }

sfpRSSIBiasAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASHI. when bias is larger than this value, then
                alarm OLTBIASHI will be reported.
                For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasAlmHigh.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                INSRVMOD: YES
                 RANGE:      0..131000          DEFVALUE:  0
                 UNITS:      2uA                SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  18 }

sfpRSSIBiasWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASLOWARN. when bias is less than this value, then
                alarm OLTBIASLOWARN will be reported.
                For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasWarnLow.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                INSRVMOD: YES
                 RANGE:      0..131000          DEFVALUE:  0
                 UNITS:      2uA                SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  19 }

sfpRSSIBiasWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTBIASHIWARN. when bias is larger than this value, then
                alarm OLTBIASHIWARN will be reported.
                For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasWarnHigh.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                INSRVMOD: YES
                 RANGE:      0..131000          DEFVALUE:  0
                 UNITS:      2uA                SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  20 }

sfpRSSIVoltageAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLLO. when voltage is less than this value, then
                alarm OLTVOLLO will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..65500           DEFVALUE:  0
                 UNITS:      100uV             SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  21 }

sfpRSSIVoltageAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLHI. when voltage is larger than this value, then
                alarm OLTVOLHI will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..65500           DEFVALUE:  0
                 UNITS:      100uV             SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  22 }

sfpRSSIVoltageWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLLOWARN. when voltage is less than this value, then
                alarm OLTVOLLOWARN will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..65500           DEFVALUE:  0
                 UNITS:      100uV             SPARSE:     NA
                 DESCR:      NA  "
::= { sfpRSSIProfileEntry  23 }

sfpRSSIVoltageWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTVOLHIWARN. when voltage is larger than this value, then
                alarm OLTVOLHIWARN will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..65500           DEFVALUE:  0
                 UNITS:      100uV             SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  24 }

sfpRSSIExtRxPowerAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value, then
                alarm OLTRXPWLO will be reported. 

                ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES      INSRVMOD: YES
                 RANGE:     -127000..8163      DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  25 }

sfpRSSIExtRxPowerAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value,
                 then alarm OLTRXPWHI will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:    -127000..8163  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  26 }

sfpRSSIExtRxPowerWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value,
                 alarm OLTRXPWLOWARN  will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -127000..8163  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  27 }

sfpRSSIExtRxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value,
                 alarm OLTRXPWHIWARN will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -127000..8163  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  28 }

sfpRSSIExtTxPowerAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWLO. When Tx power is less than this value, 
                alarm EXTOLTTXPWLO will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES      INSRVMOD: YES
                 RANGE:     -63500..63500      DEFVALUE: 0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  29 }

sfpRSSIExtTxPowerAlmHigh OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWHI. When Tx power is larger than this value,
                 alarm EXTOLTTXPWHI will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -63500..63500  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  30 }

sfpRSSIExtTxPowerWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWLOWARN. When Tx power is less than this value,
                 alarm EXTOLTTXPWLOWARN will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -63500..63500  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  31 }

sfpRSSIExtTxPowerWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "this object indicates the threshold for EXTOLTTXPWHIWARN. When Tx power is larger than this value,
                 alarm EXTOLTTXPWHIWARN will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA       USAGE:    NA
                 PERSIST:    YES       INSRVMOD: YES
                 RANGE:     -63500..63500  DEFVALUE:  0
                 UNITS:     0.001dBm     SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  32 }

sfpRSSIExtBiasAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLO. when bias is less than this value, then
                alarm EXTOLTBIASLO will be reported.
                For CFP4,this object indicates the threshold of network lane for OLTBIASLO,when laser bias of network lane is less
                than this value,alarm OLTBIASLO will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                  USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..131000           DEFVALUE:  0
                 UNITS:      2uA                 SPARSE:     NA
                 DESCR:      NA "

::= { sfpRSSIProfileEntry  33 }

sfpRSSIExtBiasAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHI. when bias is larger than this value, then
                alarm EXTOLTBIASHI will be reported.
                For CFP4,this object indicates the threshold of network lane for OLTBIASHI,when laser bias of network lane is larger 
                than this value,alarm OLTBIASHI will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                  USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..131000           DEFVALUE:  0
                 UNITS:      2uA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  34 }

sfpRSSIExtBiasWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLOWARN. when bias is less than this value, then
                alarm EXTOLTBIASLOWARN will be reported.
                For CFP4,this object indicates the threshold of network lane for OLTBIASLOWARN,when laser bias of network lane is less 
                than this value,alarm OLTBIASLOWARN will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                  USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..131000           DEFVALUE:  0
                 UNITS:      2uA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  35 }

sfpRSSIExtBiasWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHIWARN. when bias is larger than this value, then
                alarm EXTOLTBIASHIWARN will be reported.
                For CFP4,this object indicates the threshold of network lane for OLTBIASHIWARN,when laser bias of network lane is larger
                than this value,alarm OLTBIASHIWARN will be reported.
                ALCATEL NOTE:
                 ACCESS:     NA                  USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:      0..131000           DEFVALUE:  0
                 UNITS:      2uA                 SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  36 } 

sfpRssiProfileType   OBJECT-TYPE
        SYNTAX INTEGER
        {
          olt(1),
          ont(2)
        }
    ACCESS    read-write
    STATUS    mandatory
    DESCRIPTION
       "RSSI profile type"
::= { sfpRSSIProfileEntry 37 }

sfpRSSIExtTemperatureAlmLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "This object indicates the laser temperature low alarm threshold of network lane for CFP4. 
                 When any network lane's laser temperature of CFP4 is less than this value,alarm OLTTEMPLO will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  38 }

sfpRSSIExtTemperatureAlmHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "This object indicates the laser temperature high alarm threshold of network lane for CFP4. 
                 When any network lane's laser temperature of CFP4 is large than this value,alarm OLTTEMPHI will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  39 }

sfpRSSIExtTemperatureWarnLow   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "This object indicates the laser temperature low warning threshold of network lane for CFP4. 
                 When any network lane's laser temperature of CFP4 is less than this value,alarm OLTTEMPLOWARN will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  40 }

sfpRSSIExtTemperatureWarnHigh   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "This object indicates the laser temperature high warning threshold of network lane for CFP4. 
                 When any network lane's laser temperature of CFP4 is large than this value,alarm OLTTEMPHIWARN will be reported.
                 ALCATEL NOTE:
                 ACCESS:     NA                 USAGE:    NA
                 PERSIST:    YES                 INSRVMOD: YES
                 RANGE:     -32768..32768       DEFVALUE:  0
                 UNITS:     1/256 Celsius       SPARSE:     NA
                 DESCR:      NA "
::= { sfpRSSIProfileEntry  41 }

sfpRSSIProfileIndexNext        OBJECT-TYPE
        	SYNTAX          AsamNextProfileIndex
        	ACCESS          read-only
        	STATUS          mandatory
        	DESCRIPTION     
        	"This object contains an appropriate value to be used for 
         		sfpRSSIProfileIndex when creating entries in the
         	  sfpRSSIProfileTable. 
         		The value 0 indicates that no unassigned entries are available. To 
         		obtain the next index value for a new entry, the
        		 manager issues a management protocol retrieval operation to obtain the
         		current value of this object.  After each retrieval, the agent should
        		 modify the value to the next unassigned index. 
        		 ALCATEL NOTE:
		     ACCESS: NA        usage: NA
		     persistent: NA  INSRVMOD:NA
		     RANGE:NA          DEFVALUE: NA  
         UNITS: NA        SPARSE: NA  "
::= {sfpMIB 8 }

sfpRSSIProfileMaxIndex        OBJECT-TYPE
      	SYNTAX            AsamMaxProfileIndex
      	ACCESS            read-only
     	 STATUS            mandatory
      	DESCRIPTION
         "This object represents the maximum number of
          sfpRSSIProfiles that can be created. The object
          sfpRSSIProfileMaxIndex will have values ranging
           from 0 to the value represented by this object. 
         ALCATEL NOTE:
		 ACCESS: NA        usage: NA
		 persistent: NA  INSRVMOD:NA
		 RANGE:NA          DEFVALUE: NA  
         UNITS: NA        SPARSE: NA  "
::= {sfpMIB 9 }


--  ==================================================================
--  |           Start of 2E1/DS1 SFP Clock-Reset manager Table                |
--  ==================================================================

dsx1ClockConfigTable	OBJECT-TYPE
        SYNTAX		SEQUENCE OF Dsx1ClockConfigEntry
        ACCESS          not-accessible
        STATUS          mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP Clock configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 10 
         "
::= {sfpMIB 10}

dsx1ClockConfigEntry		OBJECT-TYPE
        SYNTAX			Dsx1ClockConfigEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP general configuration parameters."
        INDEX           {dsx1SfpClkConfigLogicalSlot, dsx1SfpClkConfigFaceplateNumber}
::= {dsx1ClockConfigTable 1}

Dsx1ClockConfigEntry ::=
        SEQUENCE {
                 dsx1SfpClkConfigLogicalSlot		INTEGER,
                 dsx1SfpClkConfigFaceplateNumber	INTEGER,
		 dsx1SfpClkConfigSyncSource		INTEGER,
		 dsx1SfpClkConfigDegradeAlarm		INTEGER,
		 dsx1SfpClkConfigSoftwareReset		INTEGER,
		 dsx1SfpClkAlarmState			INTEGER,
		 dsx1SfpClkConfigClkControlSignal	INTEGER,
		 dsx1SfpClkConfigClkSource		INTEGER,
		 dsx1SfpClkRowStatus              	RowStatus,
		 dsx1SfpClkConfState                    INTEGER
        }


dsx1SfpClkConfigLogicalSlot OBJECT-TYPE
        SYNTAX           INTEGER 
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the first index of the dsx1ClockConfig Table.  

         Normally, this object contains the Logical Slot ID (as defined in
         the Equipment MIB) of the card which has the SFP cage of interest
         on its faceplate.
         If that card does not have a Logical Slot ID, the Logical Slot ID
         of a related card is used.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 1..65535
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1ClockConfigEntry 1}

-- Define the second (and final) index column of the dsx1ClockConfigTable.

dsx1SfpClkConfigFaceplateNumber     OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the second index of the dsx1ClockConfigTable. 
         It is the number of the SFP cage, as shown on the card 
         faceplate.  If the faceplate cage number is zero, 
         sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a
         special case).
         For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1).
         For an XFP cage, it is 256 + (the faceplate number of the XFP cage).  For
         example 257.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 0..511
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1ClockConfigEntry 2}

dsx1SfpClkConfigSyncSource	OBJECT-TYPE
          SYNTAX INTEGER {
                            tributary1 (1),
                            tributary2 (2),
			    serdes (3)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Select as sync source between clock recovered from Serdes or Tributary clock.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1..3
            DEFVALUE: 3
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "

::= {dsx1ClockConfigEntry 3}	

dsx1SfpClkConfigDegradeAlarm	OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Enable degrade alarm on los pin.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1
            DEFVALUE: 1
            UNITS: NA 
            SPARSE: NO
            DESCR: Only Default value enable allowed in R4.4x 
        "

::= {dsx1ClockConfigEntry 4}	

dsx1SfpClkConfigSoftwareReset	OBJECT-TYPE
          SYNTAX INTEGER {
                            softwareReset (0),
                            noSoftwareReset (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "noSoftwareReset (default value), this is the value that is returned when read the attribute. 
	  softwareReset, this is the value that can be set by the manager. This value will trigger a software reset. 
.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1
            DEFVALUE: 1
            UNITS: NA 
            SPARSE: NO
            DESCR: Only Default value allowed in R4.4x
        "
::= {dsx1ClockConfigEntry 5}	

dsx1SfpClkAlarmState	OBJECT-TYPE
          SYNTAX  INTEGER (0..255)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          " serdesFailAlarm (1):Failure of the SERDES clock alarm (active high)   
            tributary1FailAlarm  (2): Failure alarm: the tributary 1 clock is not present (active high)           
            tributary2FailAlarm (4):Failure alarm: the tributary 2 clock is not present (active high)
            tributaryFailAlarm (8):Sync fail alarm: all the selected tribs in LOS
	    aisSyncFail(16):Sync fail alarm: AIS (Alarm Indication signal) on the tributary selected as sync source(active high)	    
	    lofSyncFail(32):Sync fail alarm: LOF(loss of Framing) on the tributary selected as sync source(active high) 
	    losSyncFail(64):Sync fail alarm: LOS (loss of signal) on the tributary selected as sync source(active high) 
	    degradeAlarm(128):
	    Alarm state bitmap.
                           bit 0: high value indicates serdesFailAlarm 
                           bit 1:  high value indicates tributary1FailAlarm
                           bit 2:  high value indicates tributary2FailAlarm
                           bit 3:  high value indicates tributaryFailAlarm
			   bit 4:  high value indicates AIS SyncFail
			   bit 5:  high value indicates LOF SyncFail
			   bit 6:  high value indicates lOS SyncFail
			   bit 7:   high value indicates degradeAlarm

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: Not Supported
        "
::= {dsx1ClockConfigEntry 6}	

dsx1SfpClkConfigClkControlSignal	OBJECT-TYPE
          SYNTAX INTEGER {
                            squarewave (0),
                            pll (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "SEL_LOC_OR_SRC. Control signal to select the VTCXO control signal
	  (PWM) between DPLL output and a ~4MHZ square wave signal
	  generated dividing the same system clock.
	 		0  Square wave generated from system clock.
	 		1  Control signal from PLL(Phase locked loop).
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1ClockConfigEntry 7}	

dsx1SfpClkConfigClkSource	OBJECT-TYPE
          SYNTAX INTEGER {
                            clk125mloc (0),
			    clk125mrec (1)

                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "CLK_SOURCE_SEL. This bit is used to select between local VTCXO and
	   CLOCK FROM SERDES as synchronization source for the signals:
	   CK_EN-25M and CK-EN-ETSI-ANSI 
	   1  CK-125M-REC
	   0  CK-125M-LOC
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1
            DEFVALUE: 1
            UNITS: NA 
            SPARSE: NO
            DESCR: Only Default value allowed in R4.4x 
        "
::= {dsx1ClockConfigEntry 8}	

dsx1SfpClkRowStatus OBJECT-TYPE 
	SYNTAX	RowStatus
	ACCESS	read-write
	STATUS  mandatory
	DESCRIPTION
	"This object is used to create a new row or delete an
	 existing row in this table. The possible valid values are:
            (1) active
            (4) createdAndGo
            (6) destroy
        To create an entry in this table, this object should be set to
        CreateAndGo. To delete an entry from this table, RowStatus
        should be set to Destroy value by the SNMP manager.
	 ALCATEL NOTE:
	 ACCESS: NA        
	 USAGE: MAND
         PERSIST: NO   
	 INSRVMOD:NA
         RANGE:1 | 4 | 6	-- active (1), createAndGo (4), destroy (6)      
	 DEFVALUE: NA  
         UNITS: NA         
	 SPARSE: NA  "
::= { dsx1ClockConfigEntry  9}

dsx1SfpClkConfState	OBJECT-TYPE
          SYNTAX  INTEGER (0..31)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "   Clock Configuration state bitmap.
                           bit 0: high value indicates SyncSource Configuration fail 
                           bit 1:  high value indicates DegradeAlarm Configuration fail 
                           bit 2:  high value indicates SoftwareReset Configuration fail 
                           bit 3:  high value indicates ClkControlSignal Configuration fail 
			   bit 4:  high value indicates ClkSource Configuration fail 
			  

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..31
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1ClockConfigEntry 10}	


--  ==================================================================
--  |           Start of 2E1/DS1 SFP General Configuration Table                |
--  ==================================================================

dsx1GeneralConfigTable OBJECT-TYPE
        SYNTAX			SEQUENCE OF   Dsx1GeneralConfigEntry
        ACCESS            	not-accessible
        STATUS            	mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP General configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 11
         "
::= {sfpMIB 11}

dsx1GeneralConfigEntry		OBJECT-TYPE
        SYNTAX			Dsx1GeneralConfigEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP general configuration parameters.
	A row entry is created or deleted in this table when the corresponding 
         operation on a row is done in dsx1ClockConfigTable"
       AUGMENTS { dsx1ClockConfigEntry } 
::= {dsx1GeneralConfigTable 1}

Dsx1GeneralConfigEntry ::=
        SEQUENCE {
            	 dsx1SfpReadyStatus                     INTEGER,
		 dsx1SfpGenConfigMarket			INTEGER,
		 dsx1SfpGenConfigTributary1		INTEGER,
		 dsx1SfpGenConfigTributary2		INTEGER,
		 dsx1SfpGenConfigSERDES			INTEGER,
		 dsx1SfpGenConfigSERDESLoopBack		INTEGER,
		 dsx1SfpGenConfigSGMIILocalLoopBack	INTEGER,
		 dsx1SfpGenConfigSGMIIRemoteLoopBack	INTEGER,
		 dsx1SfpGenConfigLIUReset		INTEGER,
		 dsx1SfpGenConfigLIUHighImpedence	INTEGER,
		 dsx1SfpGenConfigState			INTEGER
		 		 
        }

dsx1SfpReadyStatus	 OBJECT-TYPE
          SYNTAX INTEGER {
                            notready (0),
                            ready (1)
                        }
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "This is the host  SFP status.
            ready (0):          
            notready (1):          
            
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: No 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: SFP Ready state
        "
::= {dsx1GeneralConfigEntry 1}



dsx1SfpGenConfigMarket	 OBJECT-TYPE
          SYNTAX INTEGER {
                            etsi (0),
                            ansi (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          " ETSI (0):          used for ETSI Market for E1 Lines.
            ANSI (1):          used for ANSI Market for T1/DS1 Lines.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: ETSI vs ANSI selection
	     	   Only etsi value allowed in R4.4x 
        "
::= {dsx1GeneralConfigEntry 2}


dsx1SfpGenConfigTributary1	 OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Enable/Disable Tributary1.
            disable (0):          disable Tributary 1.
            enable  (1):          enable Tributary 1.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: Not Supported

        "

::= {dsx1GeneralConfigEntry 3}	


dsx1SfpGenConfigTributary2	 OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Enable/Disable Tributary2.
            disable (0):          Disable Tributary 2.
            enable  (1):          enable Tributary 0.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: Not supported

        "

::= {dsx1GeneralConfigEntry 4}		


dsx1SfpGenConfigSERDES	 OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          " disable (0):          Disable SERDES device.
            enable  (1):          enable SERDES device.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1
            DEFVALUE: 1
            UNITS: NA 
            SPARSE: NO
            DESCR:  Only Default value allowed in R4.4x 
        "

::= {dsx1GeneralConfigEntry 5}

dsx1SfpGenConfigSERDESLoopBack	 OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Enable of SERDES device. When held low, the SERDES
           device enters in an ultralow-power idle state and 
	   the transmitter output pins are set to high impedance 
	   state 
.
            disable (0):          Disable SERDES LoopBack.
            enable  (1):          enable SERDES LoopBack.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: Not Supported 
		  When held high the loopback function on the SERDES 
		   is enabled, the transmitter serial data is directly
		   routed to the inputs of the receiver.
        "

::= {dsx1GeneralConfigEntry 6}	

dsx1SfpGenConfigSGMIILocalLoopBack	 OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          " disable (0):          SGMII local loopback disable towards CESoP.
            enable  (1):          SGMII local loopback enable towards CESoP.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: Not Supported
        "

::= {dsx1GeneralConfigEntry 7}	

dsx1SfpGenConfigSGMIIRemoteLoopBack	 OBJECT-TYPE
          SYNTAX INTEGER {
                            disable (0),
                            enable (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          " disable (0):          SGMII remote  loopback disable towards serdes.
            enable  (1):          SGMII remote loopback enable towards serdes.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR:  Not Supported
        "

::= {dsx1GeneralConfigEntry 8}	

dsx1SfpGenConfigLIUReset	 OBJECT-TYPE
          SYNTAX INTEGER {
                            reset (0),
                            noReset (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          " reset (0):          A low level value (for more than 100ns) forces the LIU to reset state.
	  This is the value that can be set by the manager. This value will trigger a LIU reset. 
            noReset  (1):     This is the value that is returned when read the attribute.     
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1
            DEFVALUE: 1
            UNITS: NA 
            SPARSE: NO
            DESCR: Only Default value allowed in R4.4x 
        "

::= {dsx1GeneralConfigEntry 9}	
dsx1SfpGenConfigLIUHighImpedence	 OBJECT-TYPE
          SYNTAX INTEGER {
                            low (0),
                            high (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          " low (0):   
            high  (1):        A high level value places all transmitter drivers of the LIU in high Impedence state.    
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0.1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "

::= {dsx1GeneralConfigEntry 10}	

dsx1SfpGenConfigState	OBJECT-TYPE
          SYNTAX  INTEGER (0..255)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "   General Configuration state bitmap.
                           bit 0: high value indicates Market Configuration fail 
                           bit 1:  high value indicates Tributory1 Configuration fail 
                           bit 2:  high value indicates Tributory2 Configuration fail 
                           bit 3:  high value indicates SERDES Configuration fail 
			   bit 4:  high value indicates SERDES local loopback Configuration fail 
			   bit 5:  high value indicates SGMII local loopback Configuration fail 
                           bit 6:  high value indicates SGMII remote loopback Configuration fail 
                           bit 7:  high value indicates LIU Highimpedence Configuration fail 
			   

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..255
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1GeneralConfigEntry 11}	

--  ==================================================================
--  |           Start of 2E1/DS1 SFP dsx1 TDM interface Table                |
--  ==================================================================

dsx1PWTDMInterfaceTable	OBJECT-TYPE
        SYNTAX			SEQUENCE OF Dsx1PWTDMInterfaceEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP PW TDM interface  configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 4 
         "
::= {sfpMIB 12}

dsx1PWTDMInterfaceEntry	OBJECT-TYPE
        SYNTAX			Dsx1PWTDMInterfaceEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP TDM Interface parameters.
	A row entry is created or deleted in this table when the corresponding 
         operation on a row is done in dsx1ClockConfigTable"
        AUGMENTS { dsx1ClockConfigEntry }
::= {dsx1PWTDMInterfaceTable 1}

Dsx1PWTDMInterfaceEntry ::=
        SEQUENCE {
                 dsx1PWTDMInterfaceMarket		INTEGER,
		 dsx1PWTDMInterfaceWindowLength  	INTEGER,
		 dsx1PWTDMInterfaceWindowNumber  	INTEGER,
		 dsx1PWTDMInterfaceConfState            INTEGER    
        }


dsx1PWTDMInterfaceMarket	 OBJECT-TYPE
          SYNTAX INTEGER {
                            etsi (0),
                            ansi (1)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "etsi(0):          used for ETSI Market for E1 Lines.
           ansi (1):          used for ANSI Market for T1/DS1 Lines.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: ETSI vs ANSI selection
	    Only etsi value is allowed in R4.4x
        "
::= {dsx1PWTDMInterfaceEntry 1}


dsx1PWTDMInterfaceWindowLength	 OBJECT-TYPE
          SYNTAX INTEGER (0..255)
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Window length measured in unit of 10 ms.
	   Eg. wndow_len = 10 means window is 10*10 = 100ms long
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0..255
            DEFVALUE: 10
            UNITS: milliseconds
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMInterfaceEntry 2}


dsx1PWTDMInterfaceWindowNumber	 OBJECT-TYPE
          SYNTAX INTEGER (0..255)
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Consecutively detected window number.
		Eg. wndow_num = 20 means if packets lost in consecutive 20
		windows, then assert CESalarm (Circuit emulation service alarm); otherwise, deassert CESalarm
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...255
            DEFVALUE: 20
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMInterfaceEntry 3}
	
dsx1PWTDMInterfaceConfState	OBJECT-TYPE
          SYNTAX  INTEGER (0..7)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "   PWTDM Interface Configuration state bitmap.
                           bit 0: high value indicates Market Configuration fail 
                           bit 1:  high value indicates Window Length Configuration fail 
                           bit 2:  high value indicates Window Number Configuration fail 
                           
			  

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..7
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMInterfaceEntry 4}
	
--  ==================================================================
--  |           Start of 2E1/DS1 SFP dsx1 TDMoP configuration Table                |
--  ==================================================================

dsx1PWTDMConfigTable 	OBJECT-TYPE
        SYNTAX		SEQUENCE OF Dsx1PWTDMConfigEntry
        ACCESS		not-accessible
        STATUS		mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP TDMoP pseudowire  configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 19
         "
::= {sfpMIB 13}

dsx1PWTDMConfigEntry	OBJECT-TYPE
        SYNTAX		Dsx1PWTDMConfigEntry
        ACCESS		not-accessible
        STATUS		mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP TDMoP parameters."
        INDEX           {dsx1SfpPWTDMLogicalSlot, dsx1SfpPWTDMFaceplateNumber, dsx1PWTDMTributaryIndex}
::= {dsx1PWTDMConfigTable 1}

Dsx1PWTDMConfigEntry ::=
        SEQUENCE {
                 dsx1SfpPWTDMLogicalSlot	INTEGER,
                 dsx1SfpPWTDMFaceplateNumber	INTEGER,
		 dsx1PWTDMTributaryIndex	INTEGER,
		 dsx1PWTDMChannel		INTEGER,
		 dsx1PWTDMRtpMode		INTEGER,
		 dsx1PWTDMPacketLength		INTEGER,
		 dsx1PWTDMSourceAddressPointer	INTEGER,
		 dsx1PWTDMSourceAddress		MacAddress,
		 dsx1PWTDMDestinationMac	MacAddress,
		 dsx1PWTDMPriority		INTEGER,
		 dsx1PWTDMVlanId		INTEGER,
		 dsx1PWTDMECIDEthToTDM		INTEGER,
		 dsx1PWTDMECIDTDMToEth		INTEGER,
		 dsx1PWTDJitterBufferSize       INTEGER,
		 dsx1PWTDMConsequenceNumber	INTEGER,
		 dsx1PWTDMClock			INTEGER,
		 dsx1PWTDMFPGAVersion		DisplayString,
		 dsx1PWTDMRowStatus        	RowStatus,
		 dsx1PWTDMConfState		INTEGER

        }


dsx1SfpPWTDMLogicalSlot OBJECT-TYPE
        SYNTAX           INTEGER 
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the first index of the dsx1PWTDMConfig Table.  

         Normally, this object contains the Logical Slot ID (as defined in
         the Equipment MIB) of the card which has the SFP cage of interest
         on its faceplate.
         If that card does not have a Logical Slot ID, the Logical Slot ID
         of a related card is used.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 1..65535
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 1}

-- Define the second  index column of the  dsx1PWTDMConfig Table.

dsx1SfpPWTDMFaceplateNumber     OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the second index of the dsx1PWTDMConfig Table. 
         It is the number of the SFP cage, as shown on the card 
         faceplate.  If the faceplate cage number is zero, 
         sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a
         special case).
         For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1).
         For an XFP cage, it is 256 + (the faceplate number of the XFP cage).  For
         example 257.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 0..511
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 2}

-- Define the third (and final)  index column of the dsx1PWTDMConfig Table.

dsx1PWTDMTributaryIndex OBJECT-TYPE
        SYNTAX           INTEGER 
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the third index of the dsx1PWTDMConfigTable.  

         Normally, this object used to select the tributary selecton (1 or 2 or 3)  of the 2xE1/DS1 FPGA  
	 where value 1 selects tributary 1, value 2 selects tributary 2 and value 3 selects both the tributories
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 1,2,3
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 3}

dsx1PWTDMChannel	OBJECT-TYPE
          SYNTAX INTEGER {
                            close (0),
			    open (1)

                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Chan_ena
	  0: close this channel;
	  1: open this channel
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 4}

dsx1PWTDMRtpMode	OBJECT-TYPE
          SYNTAX INTEGER {
                            acr (0),
			    dcr (1)

                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Rtp_present
	  0: rtp is not present, configure to ACR mode;
	  1: rtp is present, configure DCR mode

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: this attribute is NOT supported in ISAM R4.4.x 

        "
::= {dsx1PWTDMConfigEntry 5}

dsx1PWTDMPacketLength	OBJECT-TYPE
          SYNTAX INTEGER 
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Config packet length  bits (13:0)

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...16382
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 6}

dsx1PWTDMSourceAddressPointer	OBJECT-TYPE
          SYNTAX INTEGER (0..3) 
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "SA select 2 bits field (TDM2Eth)
	   00 - Select Source Address 0
	   01 - Select Source Address 1
	   10 - Select Source Address 2
	   11 - Select Source Address 3

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...3
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR:This is not supported in the R4.4x
	    Source address pointer is handled internally in the sfp hardware.
        "
::= {dsx1PWTDMConfigEntry 7}

dsx1PWTDMSourceAddress	OBJECT-TYPE
          SYNTAX 	MacAddress
          ACCESS        read-write
          STATUS        mandatory
          DESCRIPTION     
          "MAC SA for each tributary

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 8}

dsx1PWTDMDestinationMac	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "MAC DA for each tributary

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 9}

dsx1PWTDMPriority	OBJECT-TYPE
          SYNTAX INTEGER (0..7) 
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "802.1p 3 bits field.

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...7
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 10}

dsx1PWTDMVlanId		OBJECT-TYPE
          SYNTAX INTEGER (0..4095) 
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Vlan ID.

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...4095
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 11}

dsx1PWTDMECIDEthToTDM	OBJECT-TYPE
          SYNTAX INTEGER (0..1048575) 
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "ECID (Emulated Circuit Identifer) 20 bit field Eth2Tdm.

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0..1048575
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 12}

dsx1PWTDMECIDTDMToEth	OBJECT-TYPE
          SYNTAX INTEGER (0..1048575) 
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "ECID (Emulated Circuit Identifer)  20 bit field Tdm2Eth.

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0..1048575
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 13}

dsx1PWTDJitterBufferSize OBJECT-TYPE
          SYNTAX INTEGER (0..1023)  
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "Jitter Buffer Queue size. Actual size + configurable size + 1. Example configuring size of 7 mean buffer size of 8 packets

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE:0..1023
            DEFVALUE: NA
            UNITS: Packets 
            SPARSE: NO
            DESCR: NA
        "

::= {dsx1PWTDMConfigEntry 14}

dsx1PWTDMConsequenceNumber	OBJECT-TYPE
          SYNTAX INTEGER  (0..7)
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "New Sequence number

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...7
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 15}

dsx1PWTDMClock	OBJECT-TYPE
          SYNTAX INTEGER {
                            differentialMode (0),
			    loopbackMode (1),
			    referenceNodeTimeMode(2),
			    addaptiveMode(3)
                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "TDM_clock_strategy.
	    00: differential mode;
	    01: loop back mode;
            10:reference Node time mode;
	    11: adaptive mode.

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 2
            DEFVALUE: 2
            UNITS: NA 
            SPARSE: NO
            DESCR: only referenceNodeTimeMode is supported in R4.4x

        "
::= {dsx1PWTDMConfigEntry 16}

dsx1PWTDMFPGAVersion	OBJECT-TYPE
          SYNTAX	DisplayString
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "FPGA software version.

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMConfigEntry 17}




dsx1PWTDMRowStatus OBJECT-TYPE 
	SYNTAX	RowStatus
	ACCESS	read-write
	STATUS  mandatory
	DESCRIPTION
	"This object is used to create a new row or delete an
	 existing row in this table. The possible valid values are:
            (1) active
            (4) createdAndGo
            (6) destroy
        To create an entry in this table, this object should be set to
        CreateAndGo. To delete an entry from this table, RowStatus
        should be set to Destroy value by the SNMP manager.
	 ALCATEL NOTE:
	 ACCESS: NA        
	 USAGE: MAND
         PERSIST: NO   
	 INSRVMOD:NA
         RANGE:1 | 4 | 6	-- active (1), createAndGo (4), destroy (6)      
	 DEFVALUE: NA  
         UNITS: NA         
	 SPARSE: NA  "
::= { dsx1PWTDMConfigEntry 18}
	
dsx1PWTDMConfState	OBJECT-TYPE
          SYNTAX  INTEGER (0..8191)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "   PWTDM  Configuration state bitmap.
                           bit 0: high value indicates Channel Configuration fail 
                           bit 1:  high value indicates  RTP modeSourceAddress PointerConfiguration fail 
                           bit 2:  high value indicates Packet length Configuration fail 
                           bit 3:  high value indicates SourceAddress Pointer Configuration fail 
                           bit 4:  high value indicates SourceAddress Configuration fail 
			   bit 5:  high value indicates Destination Address Configuration fail 
                           bit 6:  high value indicates Priority Configuration fail 
                           bit 7:  high value indicates vlan index Configuration fail 
                           bit 8:  high value indicates ECID eth2tdm Configuration fail 
                           bit 9:  high value indicates ECID tdm2eth Configuration fail 
			   bit 10: high value indicates Jitter buffer size Configuration fail 
                           bit 11:  high value indicates  Consequence number Configuration fail 
                           bit 12:  high value indicates clock Configuration fail 
                           	
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..8191
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "

::= { dsx1PWTDMConfigEntry 19}

--  ==================================================================
--  |           Start of 2E1/DS1 SFP dsx1LineInterfaceUnit Table                |
--  ==================================================================

dsx1LineInterfaceUnitTable	OBJECT-TYPE
        SYNTAX			SEQUENCE OF Dsx1LineInterfaceUnitEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP Line Interface Unit configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 4
         "
::= {sfpMIB 14}

dsx1LineInterfaceUnitEntry	OBJECT-TYPE
        SYNTAX			Dsx1LineInterfaceUnitEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP Line Interface Unit parameters.
	A row entry is created or deleted in this table when the corresponding 
         operation on a row is done in dsx1PWTDMConfigTable "
        AUGMENTS { dsx1PWTDMConfigEntry }
::= {dsx1LineInterfaceUnitTable 1}

Dsx1LineInterfaceUnitEntry ::=
       SEQUENCE {
                 dsx1SfpLIUConfLine 		INTEGER,
		 dsx1SfpLIURxSensitivity 	INTEGER,
		 dsx1SfpLIUTxConfig 		INTEGER,
		 dsx1SfpLIUConfState            INTEGER		
        }


dsx1SfpLIUConfLine	OBJECT-TYPE
          SYNTAX INTEGER {
                            e1 (0),
			    t1 (1)

                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "This bit selects the E1 or T1/J1 operation mode globally.
		0: E1 mode is selected.
		1: T1/J1 mode is selected.
		Note: After bit T1/E1 is changed: Before accessing any other regisers a delay of 50us is required to 
		allow the internal clocking to be settled.
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: E1 Mode alone allowed in R4.4x 
        "
::= {dsx1LineInterfaceUnitEntry 1}	

dsx1SfpLIURxSensitivity	OBJECT-TYPE
          SYNTAX INTEGER {
                            shorthaul (0),
			    longhaul (1)

                        }
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "0: Receive equalizer off (short haul receiver)
	   1: Receive equalizer on (long haul receiver)
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0,1
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1LineInterfaceUnitEntry 2}

dsx1SfpLIUTxConfig	OBJECT-TYPE
          SYNTAX INTEGER (1..12)             
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION     
          "These bits select the transmit template/LBO for short-haul/long-haul applications.

value  T1/E1/J1    TCLK        Cable    Cable range/  Allowable Cable 
                            impedance      LBO            loss
0001     E1     2.048 MHz      75 O	    -		0-43 dB
0010     E1     2.048 MHz     120 O         -		0-43 dB
0011    DSX1    1.544 MHz     100 O       0-133 ft	0-0.6 dB
0100    DSX1    1.544 MHz     100 O     133-266 ft	0.6-1.2 dB
0101    DSX1    1.544 MHz     100 O     266-399 ft	1.2-1.8 dB
0110    DSX1    1.544 MHz     100 O     399-533 ft	1.8-2.4 dB
0111    DSX1    1.544 MHz     100 O     533-655 ft	2.4-3.0 dB
1000     J1     1.544 MHz     110 O       0-655 ft	0-3.0 dB
1001    DS1     1.544 MHz     100 O       0  dB LBO	0-36 dB
1010    DS1     1.544 MHz     100 O     -7.5 dB LBO	0-28.5 dB
1011    DS1     1.544 MHz     100 O    -15.0 dB LBO	0-21 dB
1100    DS1     1.544 MHz     100 O      22.5 dB LBO	0-13.5 dB
            
        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 1,2
            DEFVALUE: 2
            UNITS: NA 
            SPARSE: NO
            DESCR: Values 1 and 2 (E1 alone) allowed in R4.4x
        "
::= {dsx1LineInterfaceUnitEntry 3}

	
dsx1SfpLIUConfState	OBJECT-TYPE
          SYNTAX  INTEGER (0..7)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "   Line Interface Unit Configuration state bitmap.
                           bit 0: high value indicates ConfLine Configuration fail 
                           bit 1: high value indicates Receiver Sensitivity Configuration fail 
                           bit 2: high value indicates Transmitter Configuration fail 
                          
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO
            INSRVMOD: NA
            RANGE: 0..7
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "

::= { dsx1LineInterfaceUnitEntry 4}

--  ==================================================================
--  |           Start of 2E1/DS1 SFP dsx1 Framer Table                |
--  ==================================================================

dsx1FramerTable 	OBJECT-TYPE
        SYNTAX		SEQUENCE OF Dsx1FramerEntry
        ACCESS		not-accessible
        STATUS		mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP Framer configuration.
        ALCATEL NOTE:
            TABLESIZE: 5
         "
::= {sfpMIB 15}

dsx1FramerEntry	OBJECT-TYPE
        SYNTAX		Dsx1FramerEntry
        ACCESS		not-accessible
        STATUS		mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP Framer parameters.
	A row entry is created or deleted in this table when the corresponding 
         operation on a row is done in dsx1PWTDMConfigTable"
        AUGMENTS { dsx1PWTDMConfigEntry }
::= {dsx1FramerTable 1}
	

Dsx1FramerEntry ::=
       SEQUENCE {
                 dsx1FramerGenConfig		INTEGER,
		 dsx1FramerLIU2IWFConfig	INTEGER,
		 dsx1FramerIWF2LIUConfig	INTEGER,
		 dsx1FramerAlarmStatus		INTEGER,
		 dsx1FramerConfState     	INTEGER
                }


dsx1FramerGenConfig	OBJECT-TYPE
          SYNTAX INTEGER (0..255)
	  
                      
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION    "Generai Configuration bitmap.
                           bit 0: Framed (1) or unframed (0) TDM traffic selection 
                           bit 1: RAI transparent  (only for E1)
				RAI: Remote Alarm Indication defined in E1 where it is derived from the NFAS A bit.
                           bit 2:  REI transparent (only for E1)
				REI: Remote Error Indication usually defined for SDH.
                           bit 3:  Loop toward IWF on LIU side of framer
			   bit 4:  Loop toward LIU on IWF side of framer - Not supported from R4.6x
			   bit 5:  Loop toward LIU on LIU side of framer
			   bit 6:  Loop toward IWF on IWF side of framer - Not supported from R4.6x
			   bit 7:  Extended Super Frame (ESF only for DS1) 			

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0..127
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: Bit 0 to Bit 6 supported in R4.4x, Bit 4 and Bit 6 are not supported from R4.6x
        "
	::= {dsx1FramerEntry 1}

dsx1FramerLIU2IWFConfig	OBJECT-TYPE
          SYNTAX INTEGER (0..255)	
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION    "Line Interface unit to Inter working Function Configuration bitmap.
                           bit 0: Enable performance monitoring toward IWF
                           bit 1: Enable AIS toward IWF 
                           bit 2: Enable RAI  (Remote Alarm Indication) toward IWF  (only for E1)
                           bit 3: Enable REI (Remote Error Indication)  toward IWF (only for E1)
			   bit 4: Force RAI (Remote Alarm Indication) toward IWF  (only for E1)
			   bit 5: Force REI(Remote Error Indication)  toward IWF (only for E1)
			   bit 6: Force AIS toward IWF 
			   bit 7: Unused

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0..15
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: only bit 0..3 are supported 
        "
	::= {dsx1FramerEntry 2}


dsx1FramerIWF2LIUConfig	OBJECT-TYPE
          SYNTAX INTEGER (0..255)
          ACCESS            read-write
          STATUS            mandatory
          DESCRIPTION    "Generai Configuration bitmap.
                           bit 0: Enable performance monitoring toward LIU
                           bit 1: Enable AIS toward LIU
                           bit 2: Enable RAI toward LIU  (only for E1)
                           bit 3: Enable REI toward LIU (only for E1)
			   bit 4: Force RAI toward LIU  (only for E1)
			   bit 5: Force REI toward LIU for CH1 (only for E1)
			   bit 6: Force AIS toward LIU for CH1
			   bit 7: Force E1 multiframe structure generation (payload A5) toward LIU
			
                      

        ALCATEL NOTE: 
            ACCESS: RW
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0..15
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: only bit 0..3 are supported 
        "
	::= {dsx1FramerEntry 3}

dsx1FramerAlarmStatus	OBJECT-TYPE
          SYNTAX INTEGER (0..262143)           
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION    "Alarm Status bitmap. High value indicates an alarm has occured
	  Bit 0	: CRC4 (Cylic Redundancy check-4) threshold alarm from LIU (only for E1) 
	  Bit 1	: CRC4 (Cylic Redundancy check-4) alarm from LIU (only for E1) 
	  Bit 2	: CRC6 (Cylic Redundancy check-6) alarm from LIU (only for ESF DS1) 
	  Bit 3	: RDI (Remote Defect Alarm) alarm from LIU (only for E1) 
	  Bit 4	: REI (Remote Error Indication) alarm from LIU (only for E1) 
          Bit 5	: LOMF (Loss of Multi-frame) alarm from LIU 
	  Bit 6	: LOF (loss of framing) alarm from LIU  
	  Bit 7	: LOS (loss of signal) alarm from LIU  
	  Bit 8	: AIS (alarm Indication Signal) alarm from LIU 
  	  Bit 9	: CRC4 (Cylic Redundancy check-4) threshold alarm from IWF  (only for E1)
	  Bit 10: CRC4 (Cylic Redundancy check-4) alarm from IWF (only for E1)
	  Bit 11: CRC6 (Cylic Redundancy check-6) alarm from IWF (only for ESF DS1)
	  Bit 12: RDI (Remote Defect Alarm) alarm from IWF (only for E1)
	  Bit 13: REI (Remote Error Indication) alarm from IWF (only for E1)
	  Bit 14: LOMF (Loss of Multi-frame) alarm from IWF  
	  Bit 15: LOF (loss of framing) alarm from IWF  
	  Bit 16: LOS (loss of signal) alarm from IWF  
	  Bit 17: AIS (alarm Indication Signal) alarm from IWF 

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: Not Suported
        "
	::= {dsx1FramerEntry 4}


	
dsx1FramerConfState	OBJECT-TYPE
          SYNTAX  INTEGER (0..7)
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "   Framer Configuration state bitmap.
                           bit 0: high value indicates General Configuration fail 
                           bit 1: high value indicates LIU2IWF Configuration fail 
                           bit 2: high value indicates IWF2LIU Configuration fail 
                          
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..7
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "

::= {dsx1FramerEntry  5}
	


--  ==================================================================
--  | Start of 2E1/DS1 SFP dsx1 Protocol Engine / jitter buffer Table           |
--  ==================================================================

dsx1PWTDMProtocolEngineTable	OBJECT-TYPE
        SYNTAX			SEQUENCE OF Dsx1PWTDMProtocolEngineEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "This table contains the 2E1/DS1 SFP protocol engine configuration
         information.
        ALCATEL NOTE:
            TABLESIZE: 11
	   DESCR: This Table is not supported, handled internally in the sfp hardware. 
         "
::= {sfpMIB 16}


dsx1PWTDMProtocolEngineEntry	OBJECT-TYPE
        SYNTAX			Dsx1PWTDMProtocolEngineEntry
        ACCESS			not-accessible
        STATUS			mandatory
        DESCRIPTION     
        "Each entry consists of a list of 2E1/DS1 SFP protocol engine parameters."
        INDEX           {dsx1SfpProtLogicalSlot, dsx1SfpProtFaceplateNumber}
::= {dsx1PWTDMProtocolEngineTable 1}

Dsx1PWTDMProtocolEngineEntry ::=
        SEQUENCE {
                 dsx1SfpProtLogicalSlot		INTEGER,
                 dsx1SfpProtFaceplateNumber	INTEGER,
		 dsx1PWTDMProtocolEngineDA1	MacAddress,
		 dsx1PWTDMProtocolEngineDA2	MacAddress,
		 dsx1PWTDMProtocolEngineDA3		MacAddress,
		 dsx1PWTDMProtocolEngineDA4		MacAddress,
		 dsx1PWTDMProtocolEngineSA1		MacAddress,
		 dsx1PWTDMProtocolEngineSA2		MacAddress,
		 dsx1PWTDMProtocolEngineSA3		MacAddress,
		 dsx1PWTDMProtocolEngineSA4		MacAddress,
		 dsx1RTPPayloadtype             	INTEGER
		        }


dsx1SfpProtLogicalSlot OBJECT-TYPE
        SYNTAX           INTEGER 
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the first index of the dsx1sfpLogicalSlot.  

         Normally, this object contains the Logical Slot ID (as defined in
         the Equipment MIB) of the card which has the SFP cage of interest
         on its faceplate.
         If that card does not have a Logical Slot ID, the Logical Slot ID
         of a related card is used.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 1..65535
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 1}

-- Define the second  index column of the dsx1PWTDMProtocolEngineTable.

dsx1SfpProtFaceplateNumber     OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the second index of the dsx1PWTDMProtocolEngineTable. 
         It is the number of the SFP cage, as shown on the card 
         faceplate.  If the faceplate cage number is zero, 
         sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a
         special case).
         For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1).
         For an XFP cage, it is 256 + (the faceplate number of the XFP cage).  For
         example 257.
	 
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NO
            RANGE: 0..511
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 2}



dsx1PWTDMProtocolEngineDA1	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Destination Address  1 in DA pool (for Eth2TDM packet discard, verify whether
received packets DA is equal to this DA pool or not)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 3}
dsx1PWTDMProtocolEngineDA2	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Destination Address  2 in DA pool (for Eth2TDM packet discard, verify whether
received packets DA is equal to this DA pool or not)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 4}

dsx1PWTDMProtocolEngineDA3	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Destination Address  3 in DA pool (for Eth2TDM packet discard, verify whether
received packets DA is equal to this DA pool or not)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 5}

dsx1PWTDMProtocolEngineDA4	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Destination Address  4 in DA pool (for Eth2TDM packet discard, verify whether
received packets DA is equal to this DA pool or not)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 6}

dsx1PWTDMProtocolEngineSA1	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Source Address  1 in SA pool (TDM2Eth, config SA on per PW basis)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 7}
dsx1PWTDMProtocolEngineSA2	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Source Address  2 in SA pool (TDM2Eth, config SA on per PW basis)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 8}

dsx1PWTDMProtocolEngineSA3	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Source Address  3 in SA pool (TDM2Eth, config SA on per PW basis)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 9}

dsx1PWTDMProtocolEngineSA4	OBJECT-TYPE
          SYNTAX MacAddress
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "MAC Source Address  4 in SA pool (TDM2Eth, config SA on per PW basis)

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 10	}




dsx1RTPPayloadtype 	OBJECT-TYPE
          SYNTAX INTEGER (0..3) 
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "RTP payload type mode.
	   00 - PayloadType=all 0s, SSID=all 1s
	   01 - PayloadType=all 1s, SSID=all 1s
	   10 - PayloadType= ecid(18 downto 12), SSID=ecid
	   11 - PayloadType= vlan_id(6 downto 0), SSID= x0000 & vlan_id

        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: YES 
            INSRVMOD: NA
            RANGE: 0...3
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {dsx1PWTDMProtocolEngineEntry 11}


--  ==================================================================
--  |      Start of Host LT SFP Configuration Extension Table         |
--  ==================================================================

ltHostSfpConfigExtTable    OBJECT-TYPE
          SYNTAX           SEQUENCE OF LtHostSfpConfigExtEntry
          ACCESS           not-accessible
          STATUS           mandatory
          DESCRIPTION
          "This table contains the host shelf LT SFP configuration information
           regarding link assignement to LT on FD-REM
          ALCATEL NOTE:
              TABLESIZE: 288 (Full FX-8 with FELT-B --> 8 * 36)
          "
::= {sfpMIB 17}

ltHostSfpConfigExtEntry    OBJECT-TYPE
          SYNTAX           LtHostSfpConfigExtEntry
          ACCESS           not-accessible
          STATUS           mandatory
          DESCRIPTION
          "Each entry consists of a list of host shelf LT SFP configuration ltHostSfpConfigExtTable."
          INDEX           {ltHostConfigSfpLogSlotId, ltHostConfigExtSfpFaceplateNumber}
::= {ltHostSfpConfigExtTable 1}

LtHostSfpConfigExtEntry ::=
          SEQUENCE {
                   ltHostConfigExtSfpFaceplateNumber INTEGER,
                   ltHostSfpCableToRack              INTEGER,
                   ltHostSfpCableToShelf             INTEGER,
                   ltHostSfpCableToSlot              INTEGER,
                   ltHostConfigSfpLogSlotId          EqptSlotIndex
          }

ltHostConfigExtSfpFaceplateNumber   OBJECT-TYPE
        SYNTAX                    INTEGER
        ACCESS                    read-only
        STATUS                    mandatory
        DESCRIPTION
        "This is the SFP number on the LT identified by ltHostConfigExtSfpLogSlotId.
         ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: YES
            INSRVMOD: NA
            RANGE: 1..24
            DEFVALUE: NA
            UNITS: NA
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpConfigExtEntry 1}

ltHostSfpCableToRack       OBJECT-TYPE
          SYNTAX           INTEGER
          ACCESS           read-write
          STATUS           mandatory
          DESCRIPTION
          "This is the Rack ID of the expansion shelf LSM which the SFP
           is planned to cable to. Value 0 means that no rack is specified.
          ALCATEL NOTE:
              ACCESS: NA
              USAGE: OPT
              PERSIST: YES
              INSRVMOD: YES
              RANGE: 0..7
              DEFVALUE: 0
              UNITS: NA
              SPARSE: NO
              DESCR: NA
          "
::= {ltHostSfpConfigExtEntry 2}

ltHostSfpCableToShelf   OBJECT-TYPE
          SYNTAX          INTEGER
          ACCESS          read-write
          STATUS          mandatory
          DESCRIPTION
           "This is the Shelf ID of the expansion shelf LSM which
           the host shelf SFP is planned to cable to.
           Value 0 means that no shelf is specified.
          ALCATEL NOTE:
              ACCESS: NA
              USAGE: OPT
              PERSIST: YES
              INSRVMOD: YES
              RANGE: 0..4
              DEFVALUE: 0
              UNITS: NA
              SPARSE: NO
              DESCR: The shelf identified by ltHostSfpCableToRack and
                     ltHostSfpCableToShelf must already be planned.
          "
::= {ltHostSfpConfigExtEntry 3}

ltHostSfpCableToSlot       OBJECT-TYPE
          SYNTAX           INTEGER
          ACCESS           read-write
          STATUS           mandatory
          DESCRIPTION
          "This is the Slot ID of the expansion shelf LSM which
          the SFP is planned to cable to.
          Value 0 means that no slot is specified.
          ALCATEL NOTE:
              ACCESS: NA
              USAGE: OPT
              PERSIST: YES
              INSRVMOD: YES
              RANGE: DEP / depends on the shelf type.
              DEFVALUE: 0
              UNITS: NA
              SPARSE: NO
              DESCR: NA
          "
::= {ltHostSfpConfigExtEntry 4}

ltHostConfigSfpLogSlotId   OBJECT-TYPE
          SYNTAX           EqptSlotIndex
          ACCESS           read-only
          STATUS           mandatory
          DESCRIPTION
          "The logical slot id of the board where the remote LT is plugged in
          ALCATEL NOTE:
              ACCESS: NA
              USAGE: OPT
              PERSIST: YES
              INSRVMOD: YES
              RANGE: DEP / depends on the shelf type.
              DEFVALUE: 0
              UNITS: NA
              SPARSE: NO
              DESCR: NA
          "
::= {ltHostSfpConfigExtEntry 5}

--  ==================================================================
--  |               Start of LT Host SFP Status Table                |
--  ==================================================================

ltHostSfpStatusTable      OBJECT-TYPE
      SYNTAX            SEQUENCE OF LtHostSfpStatusEntry
          ACCESS            not-accessible
          STATUS            mandatory
          DESCRIPTION     
          "This table contains the host shelf SFP or XFP status information.
        ALCATEL NOTE:
            TABLESIZE: 26
        "
::= {sfpMIB 18}

ltHostSfpStatusEntry      OBJECT-TYPE
        SYNTAX          LtHostSfpStatusEntry
        ACCESS          not-accessible
        STATUS          mandatory
        DESCRIPTION
          "Each entry consists of a list of SFP or XFP status parameters."
        INDEX           {ltHostStatusSfpLogSlotId, ltHostStatusSfpFaceplateNumber}
::= {ltHostSfpStatusTable 1}

LtHostSfpStatusEntry ::=
        SEQUENCE {
                 ltHostStatusSfpFaceplateNumber  INTEGER,
                 ltLanxPortNumber                INTEGER,
                 ltHostSfpDownlinkStatus         INTEGER,
                 ltHostSfpCabledToRack           INTEGER,
                 ltHostSfpCabledToShelf          INTEGER,
                 ltHostSfpCabledToSlot           INTEGER,
                 ltHostSfpType                   INTEGER,
                 ltHostSfpCablingMismatch        INTEGER,
                 ltHostSfpCabledToPhysAddress    PhysAddress,
                 ltHostStatusSfpLogSlotId        EqptSlotIndex

        }

ltHostStatusSfpFaceplateNumber OBJECT-TYPE
        SYNTAX               INTEGER
        ACCESS               read-only
        STATUS               mandatory
        DESCRIPTION     
        "This is the host shelf SFP or XFP cage number.
         For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1).
         For an XFP cage, it is 256 + (the faceplate number of the XFP cage).  For
         example, if the XFP cage has faceplate label X1, 
         ltHostStatusSfpFaceplateNumber == 257.
         For LT, this is the port number.
         
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 1..258
            DEFVALUE: NA
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpStatusEntry 1}

ltLanxPortNumber           OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        " This is the Physical LANX or IHUB port to which the SFP or XFP is 
         connected to. For an SHUB system, the lanxPortNumber here corresponds 
         to lanxInterfaceIndex in the LANX MIB. For an IHUB system, the 
         lanxPortNumber to the TmnxPortID to be used in the Timetra Port MIB.
         For IHUB this is an 32 bit encoded number for which the structure is
         defined in Timetra-TC-MIB.
         It is set to 0 for LT.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 1..26 for SHUB / 32 Bit Encoded number for IHUB
            DEFVALUE: DEP / depends on the ltHostStatusSfpFaceplateNumber.
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpStatusEntry 2}

ltHostSfpDownlinkStatus OBJECT-TYPE
          SYNTAX INTEGER {
                            ok (1),
                            sfpNotPresent (2),
                            los (3),
                            txFail (4),
                            invalidAlcatelId (5),
                            unknown (6),
                            sfpControlFail (7),
                            notApplicable (8),
                            txFailAndLos (9),
                            sfpPlanDetectMismatch (10)
                        }
          ACCESS            read-only
          STATUS            mandatory
          DESCRIPTION     
          "This is the host shelf SFP or XFP status.
            ok (1):                     The SFP or XFP is operational.
            sfpNotPresent (2):          The SFP or XFP cage is empty.
            los (3):                    The SFP or XFP has detected Loss of Signal. 
            txFail (4):                 The SFP or XFP has detected Transmitter 
                                        Fail.
            invalidAlcatelId (5):       The SFP or XFP does not contain
                                        a valid Alcatel-Lucent ID.
            unknown (6):                The host expansion card is planned but
                                        not inserted.
            sfpControlFail (7):         The SFP or XFP is not responding, or the 
                                        I2C read failed.
            notApplicable (8):          Retrieval of status information from the
                                        SFP or XFP cage is not supported.
            txFailAndLos (9):           The SFP or XFP has detected both 
                                        Transmitter Fail and Loss of Signal.
            sfpPlanDetectMismatch (10): Not used - superseded by the
                                        ltHostSfpCablingMismatch object.
        ALCATEL NOTE: 
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: NA
            DEFVALUE: 6 / status is unknown
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpStatusEntry 3}

ltHostSfpCabledToRack      OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the Rack ID of the expansion shelf LSM to which the host shelf SFP
         is cabled to.
         Value 0 means that SFP is not cabled to any expansion shelf LSM.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..7
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
           DESCR: NA
        "
::= {ltHostSfpStatusEntry 4}

ltHostSfpCabledToShelf     OBJECT-TYPE
        SYNTAX           INTEGER
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
        "This is the Shelf ID of the expansion shelf LSM which the host shelf 
         SFP is cabled to.
         Value 0 means that SFP is not cabled to any expansion shelf LSM.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..4
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpStatusEntry 5}

ltHostSfpCabledToSlot   OBJECT-TYPE
        SYNTAX            INTEGER
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION     
        "This is the Slot ID of the expansion shelf LSM which the host shelf SFP 
         is cabled to.
         Value 0 means that SFP is not cabled to any expansion shelf LSM.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: DEP / depends on the shelf type. 
            DEFVALUE: 0
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpStatusEntry 6}

ltHostSfpType              OBJECT-TYPE
        SYNTAX            INTEGER 
        ACCESS            read-only
        STATUS            mandatory
        DESCRIPTION     
        "This variable indicates the type of the SFP or XFP, as read from the 
        device.
        It is a bitmap represented as a sum, therefore, it can represent
        multiple types (combination of types) simultaneously.
        The SFP type bits (0..7)  are as defined in standard SFF-8472.
        The XFP type bits (8..15) are as defined in standard INF-8077_v4.5.
        The SFP octet and the XFP octet are mutually exclusive (i.e. at least 
        one of the two octets is always zero).
        The various bit positions are:
             bit  0 (1):     1000BASE-SX
             bit  1 (2):     1000BASE-LX
             bit  2 (4):     1000BASE-CX
             bit  3 (8):     1000BASE-T
             bit  4 (16):    100BASE-LX/LX10
             bit  5 (32):    100BASE-FX
             bit  6 (64):    BASE-BX10
             bit  7 (128):   BASE-PX
             bit  8 (256):   reserved for a future XFP type, INF-8077
             bit  9 (512):   10GBASE-EW
             bit 10 (1024):  10GBASE-LW
             bit 11 (2048):  10GBASE-SW
             bit 12 (4096):  10GBASE-LRM
             bit 13 (8192):  10GBASE-ER
             bit 14 (16384): 10GBASE-LR
             bit 15 (32768): 10GBASE-SR
             bit 16 (65536):  2500BASE-SX
             bit 17 (131072): 2500BASE-LX
             bit 18 (262144): 2500BASE-BX

        If the ltHostSfpType is unknown or not specified, ltHostSfpType = 0.
        ALCATEL NOTE:
            ACCESS: RO
            USAGE: NA
            PERSIST: NO 
            INSRVMOD: NA
            RANGE: 0..65535
            DEFVALUE: 0 / ltHostSfpType unknown 
            UNITS: NA 
            SPARSE: NO
            DESCR: NA
        "
::= {ltHostSfpStatusEntry 7}

ltHostSfpCablingMismatch   OBJECT-TYPE
        SYNTAX           INTEGER {
                            noMismatch(1),
                            unexpectedRemoteLt(2),
                            assignmentMismatch(3),
                            incompatibleShelf(4)
                         }
        ACCESS           read-only
        STATUS           mandatory
        DESCRIPTION     
            "This is the host shelf SFP cabling mismatch status:
            noMismatch(1):            no cabling mismatch is detected.
            unexpectedRemoteLt(2):    a remote LT is detected at an unassigned
                                      downlink SFP port.
            assignmentMismatch(3):    the detected remote LT does not match
                                      the LT assigned to this host SFP.
            incompatibleShelf(4):     the detected remote LT is in a shelf
                                      type which is not the planned shelf type.
            ALCATEL NOTE: 
                ACCESS:   RO
                USAGE:    NA
                PERSIST:  NO 
                INSRVMOD: NA
                RANGE:    NA
                DEFVALUE: 1 / noMismatch
                UNITS:    NA
                SPARSE:   NO
                DESCR:    NA
            "
::= {ltHostSfpStatusEntry 8}

ltHostSfpCabledToPhysAddress      OBJECT-TYPE
        SYNTAX                  PhysAddress
        ACCESS                  read-only
        STATUS                  mandatory
        DESCRIPTION
            "The physical (MAC) address of the remote interface that is
            cabled to this host shelf SFP.
            If the remote interface does not have such an address or
            the address is not yet discovered, this object would
            contain an octet string of zero length.
            ALCATEL NOTE: 
                ACCESS:   RO
                USAGE:    NA
                PERSIST:  NO 
                INSRVMOD: NA
                RANGE:    NA
                DEFVALUE: NA
                UNITS:    NA 
                SPARSE:   NO
                DESCR:    NA
        "
::= {ltHostSfpStatusEntry 9}

ltHostStatusSfpLogSlotId        OBJECT-TYPE
        SYNTAX                  EqptSlotIndex
        ACCESS                  read-only
        STATUS                  mandatory
        DESCRIPTION
            "The logical slot id of the board where the remote LT is plugged in
            ALCATEL NOTE: 
                ACCESS:   RO
                USAGE:    NA
                PERSIST:  NO 
                INSRVMOD: NA
                RANGE:    NA
                DEFVALUE: NA
                UNITS:    NA 
                SPARSE:   NO
                DESCR:    NA
        "
::= {ltHostSfpStatusEntry 10}



END