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
|
--MibName=raisecomOpticalMonitorMIB
-- *****************************************************************
-- RAISECOM-OPTICAL-TRANSCEIVER-MIB.my
--
-- Copyright(c) 2003-2005 by RAISECOM TECH, Ltd.
-- All rights reserved.
-- *****************************************************************
-- *****************************************************************
-- Modi Report£ºFormat: <number>, <time>, <author>, <desc>
-- 01, 20110623, yangzhognhong, change the value of the node raisecomOpticalTransceiverMediaType
-- for SFP+ development
--
-- *****************************************************************
RAISECOM-OPTICAL-TRANSCEIVER-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Unsigned32,
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,
TimeTicks FROM SNMPv2-SMI
raisecomAgent
FROM RAISECOM-BASE-MIB
TEXTUAL-CONVENTION FROM SNMPv2-TC
MODULE-COMPLIANCE,
NOTIFICATION-GROUP,
OBJECT-GROUP FROM SNMPv2-CONF
ifIndex FROM IF-MIB
raisecomNotificationLocation FROM RAISECOM-COMMON-MANAGEMENT-MIB
ClearVar FROM SWITCH-TC;
raisecomOpticalTransceiver MODULE-IDENTITY
LAST-UPDATED "201005190000Z"
ORGANIZATION "Raisecom, Inc."
CONTACT-INFO
" Raise Systems
Postal: Beijing,
China
Tel: 86-010-82884499
E-mail: chenyu@raisecom.com"
DESCRIPTION
"This MIB module defines objects to monitor optical
characteristics on the optical interfaces in a network element. "
REVISION "201005190000Z"
DESCRIPTION
"The initial revision of this MIB."
::={ raisecomAgent 18 }
-- Textual Conventions
EnableVar ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"enable or disable a function."
SYNTAX INTEGER {
enable(1),
disable(2)
}
OpticalParameterType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This value indicates the optical parameter that is
being monitored. Valid values are -OpticalParameterType
transceiverTemperature(1) :transceiver temperature
txbiasCurrent(2) :TX bias current
txPower(3) :TX output power
rxPower(4) :RX received optical power
laserTemperature(5) :laser temperature
p5V0supplyVoltage(6) :+5V supply voltage
p3V3supplyVoltage(7) :+3.3V supply voltage
p1V8supplyVoltage(8) :+1.8V supply voltage
n5V2supplyVoltage(9) :-5.2V supply voltage
apdBiasVoltage(10) :APD bias voltage
p5V0supplyCurrent(11) :+5V supply currnet
p3V3supplyCurrent(12) :+3.3V supply currnet
p1V8supplyCurrent(13) :+1.8V supply currnet
n5V2supplyCurrent(14) :-5.2V supply currnet
tecCurrent(15) :TEC currnet
laserWavelength(16) :laser wavelength
"
SYNTAX INTEGER {
transceiverTemperature (1),
txbiasCurrent (2),
txPower (3),
rxPower (4),
laserTemperature(5),
p5V0supplyVoltage(6),
p3V3supplyVoltage(7),
p1V8supplyVoltage(8),
n5V2supplyVoltage(9),
apdBiasVoltage(10),
p5V0supplyCurrent(11),
p3V3supplyCurrent(12),
p1V8supplyCurrent(13),
n5V2supplyCurrent(14),
tecCurrent(15),
laserWavelength(16)
}
OpticalParameterValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of the optical parameter that is being monitored.
The range of values varies depending on the type of optical parameter being monitored,
as identified by a corresponding object with syntax OpticalParameterType.
When the optical parameter being monitored is 'XXTemperature',the supported range
is from -40000 to 125000, in units of 1/1000 degrees centigrade.
Example: A value of 23500 represents a temperature reading of 23.5 degrees C.
The temperature is shown in unit of degrees centigrade, and the precision is 0.1.
When the optical parameter being monitored is 'txbiasCurrent',the supported range
is from 0 to 131000, in units of 1/1000 mA.
Example: A value of 1000 represents a TX bias current reading of 1.0mA.
The 'txbiasCurrent'is shown in unit of mA, and the precision is 0.1.
When the optical parameter being monitored is 'txPower',the supported range
is from -40000 to 8200, in units of 1/1000 dbm.
Example: A value of 77800 represents a TX output power reading of 7.78 dBm.
The 'txPower' is shown in unit of dBm, and the precision is 0.1.
When the optical parameter being monitored is 'rxPower',the supported range
is from -40000 to 8200, in units of 1/1000 dbm.
Example: A value of 7780 represents a RX received optical power reading of 7.78 dBm.
The 'rxPower' is shown in unit of dBm, and the precision is 0.1.
When the optical parameter being monitored is 'XXsupplyVoltage',the supported range
is from 0 to 6550, in units of 1/1000 V.
Example: A value of 6000 represents a XX supply Voltage eading of 6.00V.
The 'XXsupplyVoltage'is shown in unit of V, and the precision is 0.01.
When the optical parameter being monitored is 'apdBiasVoltage,the supported range
is from 0 to 655300 , in units of 1/1000 V .
Example: A value of 600000 represents a APD BiasVoltage reading of 600.0V.
The 'apdBiasVoltage' is shown in unit of V, and the precision is 0.1.
When the optical parameter being monitored is 'XXsupplyCurrent',the supported range
is from 0 to 6553600, in units of 1/1000 mA .
Example: A value of 6000000 represents a XX supply current reading of 6000.0mA.
The 'XXsupplyCurrent' is shown in unit of mA, and the precision is 0.1.
When the optical parameter being monitored is 'tecCurrent',the supported range
is from 0 to 6553600, in units of 1/1000 mA .
Example: A value of 6000000 represents a TEC Current reading of 6000.0mA.
The 'tecCurrent' is shown in unit of mA, and the precision is 0.1.
When the optical parameter being monitored is 'laserWavelength,the supported range
is from 0 to 3276750, in units of 1/1000 nm .
Example: A value of 3000000 represents a laser wavelength reading of 3000.0nm.
The 'laserWavelength'is shown in unit of nm, and the precision is 0.01.
"
SYNTAX Integer32 (-1000000 | -40000..6553600)
OpticalPMPeriod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This value indicates the time period over which performance
monitoring data has been collected."
SYNTAX INTEGER {
fifteenMin(1),
twentyFourHour(2)
}
-- MIB Global Enable Definitions
raisecomOpticalTransceiverGlobalEnable OBJECT IDENTIFIER ::=
{raisecomOpticalTransceiver 1 }
raisecomOpticalTransceiverNotifyEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the generation of device notifications,
enable or disable.
this object belongs to xfp and sfp.
"
DEFVAL { disable }
::={ raisecomOpticalTransceiverGlobalEnable 1 }
raisecomOpticalTransceiverDDMEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable digitaldiagnotic on the device.
this object belongs to xfp and sfp.
"
DEFVAL { disable}
::={ raisecomOpticalTransceiverGlobalEnable 2 }
raisecomOpticalTransceiverCheckPwdEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the status of password checking on the device,
enable or disable.
this object belongs to xfp.
"
DEFVAL { disable}
::={ raisecomOpticalTransceiverGlobalEnable 3 }
raisecomOpticalTransceiverPollInterval OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the value of poll-interval on the device.
this object belongs to xfp and sfp.
"
::={ raisecomOpticalTransceiverGlobalEnable 4 }
-- MIB Object Definitions
raisecomOpticalTransceiverObjects OBJECT IDENTIFIER ::=
{raisecomOpticalTransceiver 2 }
-- groups in this MIB module
raisecomOpticalTransceiverInfoGroup OBJECT IDENTIFIER ::=
{raisecomOpticalTransceiverObjects 1 }
raisecomOpticalTransceiverDDMGroup OBJECT IDENTIFIER ::=
{raisecomOpticalTransceiverObjects 2 }
raisecomOpticalTransceiverPMGroup OBJECT IDENTIFIER ::=
{raisecomOpticalTransceiverObjects 3 }
raisecomOpticalTransceiverStatusGroup OBJECT IDENTIFIER ::=
{raisecomOpticalTransceiverObjects 4 }
-- raisecomOpticalTransceiverInfoTable
raisecomOpticalTransceiverInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomOpticalTransceiverInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Trancetver information Table."
::= { raisecomOpticalTransceiverInfoGroup 1 }
raisecomOpticalTransceiverInfoEntry OBJECT-TYPE
SYNTAX RaisecomOpticalTransceiverInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raisecomOpticalTransceiverInfoTable."
INDEX { ifIndex }
::={ raisecomOpticalTransceiverInfoTable 1 }
RaisecomOpticalTransceiverInfoEntry ::= SEQUENCE {
raisecomOpticalTransceiverType INTEGER,
raisecomOpticalTransceiverConnectorType INTEGER,
raisecomOpticalTransceiverVendorName OCTET STRING,
raisecomOpticalTransceiverVendorPN OCTET STRING,
raisecomOpticalTransceiverVendorSN OCTET STRING,
raisecomOpticalTransceiverMediaType INTEGER,
raisecomOpticalTransceiverTransmissionDistance Integer32,
raisecomOpticalTransceiverAbility Unsigned32,
raisecomOpticalTransceiverDDM INTEGER,
raisecomOpticalTransceiverCalibrationType INTEGER,
raisecomOpticalTransceiverRSSI INTEGER,
raisecomOpticalTransceiverVendorRev OCTET STRING,
raisecomOpticalTransceiverBRMax INTEGER,
raisecomOpticalTransceiverBRMin INTEGER,
raisecomOpticalTransceiverWavelengthContrl INTEGER,
raisecomOpticalTransceiverWavelength Integer32,
raisecomOpticalTransceiverWaveTolerance OCTET STRING,
raisecomOpticalTransceiverCompatibility OCTET STRING,
raisecomOpticalTransceiverPowerDissipation INTEGER,
raisecomOpticalTransceiverCDR INTEGER,
raisecomOpticalTransceiverRefClock INTEGER,
raisecomOpticalTransceiverTransmitterType INTEGER,
raisecomOpticalTransceiverCooled INTEGER,
raisecomOpticalTransceiverTunalbe INTEGER,
raisecomOpticalTransceiverDetectorType INTEGER,
raisecomOpticalTransceiverLineLoopBack INTEGER,
raisecomOpticalTransceiverXFILoopBack INTEGER,
raisecomOpticalTransceiverVps INTEGER,
raisecomOpticalTransceiverTxDis INTEGER,
raisecomOpticalTransceiverStandby INTEGER,
raisecomOpticalTransceiverInVpsLowPower INTEGER,
raisecomOpticalTransceiverOutVpsLowPower INTEGER,
raisecomOpticalTransceiverFEC INTEGER,
raisecomOpticalTransceiverCMU INTEGER,
raisecomOpticalTransceiverBR INTEGER
}
raisecomOpticalTransceiverType OBJECT-TYPE
SYNTAX INTEGER{
unknown(1),
gbic(2),
soldered(3),
sfp(4),
xbi(5),
xenpak(6),
xfp(7),
xff(8),
xfp-e(9),
xpak(10),
x2(11),
sfpj(12)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the physical type of the transceiver,
such as xfp or sfp , and so on.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 1 }
raisecomOpticalTransceiverConnectorType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(0),
sc (1),
db9(2),
hssdc(3),
bnc-tnc(4),
fiber-coaxial-head(5),
fiber-jack(6),
lc(7),
mt-rj(8),
mu(9),
sg(10),
fiber-pigtail(11),
mpo-parallel-optic(12),
hssdcII (20),
copper (21),
rj45 (22)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the connector type of the transceiver£¬
unknown, sc, db9, hssdc, bnc_tnc, fiber_coaxial_head, fiber_outlet,
lc, mt_rj, mu, sg, fiber_pigtail, mpo_parallel_optic , hssdcII,
copper, rj45.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 2 }
raisecomOpticalTransceiverVendorName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS current
DESCRIPTION
"Vendor name of the interface.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 3 }
raisecomOpticalTransceiverVendorPN OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS current
DESCRIPTION
"Vendor part number of the interface.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 4 }
raisecomOpticalTransceiverVendorSN OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS current
DESCRIPTION
"Vendor serial number of the interface.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 5 }
raisecomOpticalTransceiverMediaType OBJECT-TYPE
SYNTAX INTEGER
{
single-mode(1),
multi-modeE50(2),
multi-mode50(3),
multi-mode625(4),
copper(5),
single-modeKm(6),
multi-modeOM3(7)
}
ACCESS read-only
STATUS current
DESCRIPTION
"Types of the fiber,
single_mode, multi_modeE50, multi_mode50,multi_mode625,copper.
single_modeKm,multi_modeOM3
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 6 }
raisecomOpticalTransceiverTransmissionDistance OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS current
DESCRIPTION
"The max distance which the interface could transmit,
measured in meter.
The object will be shown in unit of Km, and the precision is 0.001.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 7 }
raisecomOpticalTransceiverAbility OBJECT-TYPE
SYNTAX Unsigned32
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the ability of optical module digitaldiagnotic
funtion. Currently, the digitaldiagnotic objects of our optical module
inculde 16 parameters.
this object has 32 bits, each bit represents a digital diagnotic parameter.
if the bit value is 0, it means that the optical module does not provide
digital diagnotic funtion for relative parameter.if the bit value is 1,it
means that the optical module provides digital diagnotic funtion for
relative parameter.
this object belongs to xfp and sfp.
The relation between parameters and bits is following:
32¡¡16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1:
The relation between parameters and bits is following:
32¡¡16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1:
| 1bit | 2bit | 3bit | 4bit
| APDÆ«Öõçѹ | 0£¨±£Áô£© | TECµçÁ÷ | ¼¤¹âÆ÷ζÈ
| 5bit | 6bit |7bit | 8bit
| ¼¤¹âÆ÷²¨³¤ | +5V¹©µçµçѹ | +3.3V¹©µçµçѹ | +1.8V¹©µçµçѹ
| 9bit | 10bit |11bit | 12bit
| -5.2V¹©µçµçѹ | +5V¹©µçµçÁ÷ | 0£¨ÎÞ£© | 0£¨ÎÞ£©
| 13bit | 14bit | 15bit | 16bit
| +3.3V¹©µçµçÁ÷ | +1.8V¹©µçµçÁ÷ | -5.2V¹©µçµçÁ÷ | Ä£¿éζÈ
| 17bit | 18bit | 19bit | 20bit ~ 32bit
| ¼¤¹âÆ÷Æ«ÖõçÁ÷ | ·¢Ë͹⹦ÂÊ |½ÓÊչ⹦ÂÊ | 0
But when the optical module is sfp, the 6 bit will represents
the supplyVoltage of sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 8 }
raisecomOpticalTransceiverDDM OBJECT-TYPE
SYNTAX INTEGER{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if the transceiver supports on digital diagnostic function,
support or not support.To the xfp, the default value of this object is support.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 9 }
raisecomOpticalTransceiverCalibrationType OBJECT-TYPE
SYNTAX INTEGER{
unknown(1),
internal(2),
external(3)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the calibration type of the transceiver,
internal, external, unknown.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 10 }
raisecomOpticalTransceiverRSSI OBJECT-TYPE
SYNTAX INTEGER{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the calibration type of the transceiver,
support or not support.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 11 }
raisecomOpticalTransceiverVendorRev OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS current
DESCRIPTION
" the version number of the transceiver.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 12 }
raisecomOpticalTransceiverBRMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
" the min data rate of the transceiver,mesured in Mbps .
this object belongs to xfp and sfp.
The object will be shown in unit of Gbps, and the precision is 0.1.
"
::= { raisecomOpticalTransceiverInfoEntry 13 }
raisecomOpticalTransceiverBRMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
" the min data rate of the transceiver,mesured in Mbps.
this object belongs to xfp and sfp.To the sfp,
the min data rate value is equal to the max data rate value.
The object will be shown in unit of Gbps, and the precision is 0.1.
"
::= { raisecomOpticalTransceiverInfoEntry 14 }
raisecomOpticalTransceiverWavelengthContrl OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport (2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"if the transceiver supports on wavelength control
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 15 }
raisecomOpticalTransceiverWavelength OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS current
DESCRIPTION
"Wavelength of the interface, measured in pm(0.001nm).
this object belongs to xfp.
The object will be shown in unit of nm, and the precision is 0.01.
"
::= { raisecomOpticalTransceiverInfoEntry 16 }
raisecomOpticalTransceiverWaveTolerance OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS current
DESCRIPTION
"the range of laser wavelength from nominal wavelength,mesured in pm(0.001*nm).
this object belongs to xfp.
The object will be shown in unit of nm, and the precision is 0.01.
"
::= { raisecomOpticalTransceiverInfoEntry 17 }
raisecomOpticalTransceiverCompatibility OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS current
DESCRIPTION
"the compatibility type that the transceiver supports,such as 10GBASE-SR.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 18 }
raisecomOpticalTransceiverPowerDissipation OBJECT-TYPE
SYNTAX INTEGER
{
p1W5(1),
p2W5(2),
p3W5(3),
exceed(4)
}
ACCESS read-only
STATUS current
DESCRIPTION
"the max power dissipation of the transceiver,
p1W5,p2W5,p3W5,exceed3W5.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 19 }
raisecomOpticalTransceiverCDR OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"the optical module supports on CDR fundtion.
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 20 }
raisecomOpticalTransceiverRefClock OBJECT-TYPE
SYNTAX INTEGER
{
required(1),
notrequired (2)
}
ACCESS read-only
STATUS current
DESCRIPTION
" if the transceiver requires outside reference clock
required,notrequired.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 21 }
raisecomOpticalTransceiverTransmitterType OBJECT-TYPE
SYNTAX INTEGER
{
vcsel850nm(1),
vcsel1310nm(2),
vcsel1550nm(3),
fp1310nm(4),
dfb1310nm(5),
dfb1550nm(6),
eml1310nm(7),
eml1550nm(8),
copper-others(9)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transmitter type of the transceiver,such as 850 nm VCSEL.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 22 }
raisecomOpticalTransceiverCooled OBJECT-TYPE
SYNTAX INTEGER
{
cooled(1),
uncooled (2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transmitter cooled type of the transceiver
cooled,uncooled.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 24 }
raisecomOpticalTransceiverTunalbe OBJECT-TYPE
SYNTAX INTEGER
{
tunable (1),
untunable (2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transmitter tunable type of the transceiver
tunable,untunable.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 25 }
raisecomOpticalTransceiverDetectorType OBJECT-TYPE
SYNTAX INTEGER
{
pin(1),
apd(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The detector type of the transceiver
pin, apd.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 26 }
raisecomOpticalTransceiverLineLoopBack OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of sideline loop-back control
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 27 }
raisecomOpticalTransceiverXFILoopBack OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of XFI loop-back control
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 28 }
raisecomOpticalTransceiverVps OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if the optical module supports on VPS
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 29 }
raisecomOpticalTransceiverTxDis OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of software control the transmitter status
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 30 }
raisecomOpticalTransceiverStandby OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of software control the standby mode.
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 31 }
raisecomOpticalTransceiverInVpsLowPower OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The VPS in low power support status of the transceiver
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 32 }
raisecomOpticalTransceiverOutVpsLowPower OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The VPS out low power support status of the transceiver
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 33 }
raisecomOpticalTransceiverFEC OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The FEC support status of transceiver
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 34 }
raisecomOpticalTransceiverCMU OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The CMU support status of transceiver
support,notsupport.
this object belongs to xfp.
"
::= { raisecomOpticalTransceiverInfoEntry 35 }
raisecomOpticalTransceiverBR OBJECT-TYPE
SYNTAX INTEGER
{
unknown(0),
bitrate-125Mbps(1),
bitrate-155Mbps (2),
bitrate-622Mbps(6),
bitrate-1DOT25Gbps(13),
bitrate-2DOT5Gbps(19)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Nominal bitrate of the transceiver£¬
125Mbps, 155Mbps, 622Mbps, 1.25Gbps, 2.5Gbps.
this object belongs to xfp and sfp.
"
::= { raisecomOpticalTransceiverInfoEntry 36 }
-- raisecomOpticalDDMTable
raisecomOpticalTransceiverDDMTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomOpticalTransceiverDDMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides objects to monitor optical
parameters in a network element. "
::={ raisecomOpticalTransceiverDDMGroup 1 }
raisecomOpticalTransceiverDDMEntry OBJECT-TYPE
SYNTAX RaisecomOpticalTransceiverDDMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raisecomOpticalTransceiverMonTable provides objects to
monitor an optical parameter at an optical interface.
"
INDEX { ifIndex,
raisecomOpticalTransceiverParameterType
}
::={ raisecomOpticalTransceiverDDMTable 1 }
RaisecomOpticalTransceiverDDMEntry ::= SEQUENCE {
raisecomOpticalTransceiverParameterType OpticalParameterType,
raisecomOpticalTransceiverParameterValue OpticalParameterValue,
raisecomOpticalTransceiverParamHighAlarmThresh OpticalParameterValue,
raisecomOpticalTransceiverParamHighWarningThresh OpticalParameterValue,
raisecomOpticalTransceiverParamLowAlarmThresh OpticalParameterValue,
raisecomOpticalTransceiverParamLowWarningThresh OpticalParameterValue,
raisecomOpticalTransceiverParamAlarmStatus INTEGER,
raisecomOpticalTransceiverParamAlarmLastValue OpticalParameterValue,
raisecomOpticalTransceiverParamAlarmLastChange TimeTicks,
raisecomOpticalTransceiverDDM15MinValidIntervals Unsigned32,
raisecomOpticalTransceiverDDM24HrValidIntervals Unsigned32,
raisecomOpticalTransceiverDDMValidStatus INTEGER
}
raisecomOpticalTransceiverParameterType OBJECT-TYPE
SYNTAX OpticalParameterType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the optical parameter that is being
monitored in this entry.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 1 }
raisecomOpticalTransceiverParameterValue OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the value measured for the particular
optical parameter specified by the raisecomOpticalMonParameterType
object.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 2 }
raisecomOpticalTransceiverParamHighAlarmThresh OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the high alarm threshold on the
optical parameter being monitored.
An alarm condition will be raised if the value given by
raisecomOpticalParameterValue goes from below the value of
this object to above the value of this object, or if
the initial value of raisecomOpticalParameterValue exceeds the value
of this object. This alarm will be indicated in the
raisecomOpticalParamAlarmStatus object.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 3 }
raisecomOpticalTransceiverParamHighWarningThresh OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set a high warning threshold on
the optical parameter being monitored.
A threshold crossing condition will be indicated if the value
given by raisecomOpticalParameterValue goes from below the value
of this object to above the value of this
object, or if the initial value of raisecomOpticalParameterValue
exceeds the value of this object. This alarm will be indicated in the
raisecomOpticalParamAlarmStatus object.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 4 }
raisecomOpticalTransceiverParamLowAlarmThresh OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set a low alarm threshold on the
optical parameter being monitored.
An alarm condition will be raised if the value given by
raisecomOpticalParameterValue goes from above the value of
this object to below the value of this object, or if
the initial value of raisecomOpticalParameterValue is lower than the
value of this object. This alarm
will be indicated in the raisecomOpticalParamAlarmStatus object ..
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 5 }
raisecomOpticalTransceiverParamLowWarningThresh OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to set a low warning threshold on
the optical parameter being monitored.
A threshold crossing condition will be indicated if the value
given by raisecomOpticalParameterValue goes from above the value
of this object to below the value of this
object, or if the initial value of raisecomOpticalParameterValue
object is lower than the value of this object. For
network elements in the status
indications, this threshold violation will be indicated in the
raisecomOpticalParamAlarmStatus object .
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 6 }
raisecomOpticalTransceiverParamAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
normal(1),
high-alarm(2),
high-warning(3),
low-alarm(4),
low-warning(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate the current status of
the thresholds for the monitored optical parameter
on the interface.
If a threshold is currently being exceeded on the
interface, the object will be set. Otherwise,
the object will be set to 1.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 7 }
raisecomOpticalTransceiverParamAlarmLastValue OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the optical parameter value at the last time
a threshold related to a particular optical parameter was
exceeded on the interface.
If no threshold value is currently being
exceeded, then the value '-1000000' is returned.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 8 }
raisecomOpticalTransceiverParamAlarmLastChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the value of sysUpTime at the last time
a threshold related to a particular optical parameter was
exceeded on the interface.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 9 }
raisecomOpticalTransceiverDDM15MinValidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the number of previous 15 minute
intervals for which valid performance monitoring data
has been stored on the interface.
The value of this object will be n (where n is the maximum
number of 15 minute intervals supported at this interface),
unless the measurement was (re-)started within the last
(nx15) minutes, in which case the value will be the
number of previous 15 minute intervals for which the agent
has some data.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 10 }
raisecomOpticalTransceiverDDM24HrValidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the number of previous 24 hour intervals
for which valid performance monitoring data has been stored
on the interface. The max value of this object is 7, it
means that the user can look up 7days history information.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 11 }
raisecomOpticalTransceiverDDMValidStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
valid(1),
invalid(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the parameter row is valid or invalid.
The object value is 'valide' when the module is present and
supporting digitaldiagnotic. The object value is 'invalid'
when the module is absent, or when the module is present and
not supporting digitaldiagnotic.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverDDMEntry 12 }
-- raisecomOpticalTransceiverPMCurrent Table
raisecomOpticalTransceiverPMCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomOpticalTransceiverPMCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains performance monitoring data for the
various optical parameters, collected over the current 15
minute or the current 24 hour interval."
::={ raisecomOpticalTransceiverPMGroup 1 }
raisecomOpticalTransceiverPMCurrentEntry OBJECT-TYPE
SYNTAX RaisecomOpticalTransceiverPMCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raisecomOpticalTransceiverPMCurrentTable. It contains
performance monitoring data for a monitored optical
parameter at an interface, collected over the current 15
minute or the current 24 hour interval.
"
INDEX { ifIndex,
raisecomOpticalTransceiverPMCurrentPeriod,
raisecomOpticalTransceiverPMCurrentParamType }
::={ raisecomOpticalTransceiverPMCurrentTable 1 }
RaisecomOpticalTransceiverPMCurrentEntry ::= SEQUENCE {
raisecomOpticalTransceiverPMCurrentPeriod OpticalPMPeriod,
raisecomOpticalTransceiverPMCurrentParamType OpticalParameterType,
raisecomOpticalTransceiverPMCurrentMaxParam OpticalParameterValue,
raisecomOpticalTransceiverPMCurrentMinParam OpticalParameterValue,
raisecomOpticalTransceiverPMCurrentMeanParam OpticalParameterValue
}
raisecomOpticalTransceiverPMCurrentPeriod OBJECT-TYPE
SYNTAX OpticalPMPeriod
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates whether the optical parameter values
given in this entry are collected over the current 15 minute or
the current 24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMCurrentEntry 1 }
raisecomOpticalTransceiverPMCurrentParamType OBJECT-TYPE
SYNTAX OpticalParameterType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the optical parameter that is being
monitored, in this entry.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMCurrentEntry 2 }
raisecomOpticalTransceiverPMCurrentMaxParam OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the maximum value measured for the monitored
optical parameter, in the current 15 minute or the current
24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMCurrentEntry 3 }
raisecomOpticalTransceiverPMCurrentMinParam OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the minimum value measured for the monitored
optical parameter, in the current 15 minute or the current
24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMCurrentEntry 4 }
raisecomOpticalTransceiverPMCurrentMeanParam OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the average value of the monitored
optical parameter, in the current 15 minute or the current
24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMCurrentEntry 5 }
-- raisecomOpticalTransceiverPMInterval Table
raisecomOpticalTransceiverPMIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomOpticalTransceiverPMIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores performance monitoring data for the
various optical parameters, collected over previous
intervals.
This table can have entries for one complete 24 hour
interval and up to 96 complete 15 minute
intervals. A system is required to store at least
4 completed 15 minute intervals. The number of valid
15 minute intervals in this table is indicated by the
raisecomOpticalTransceiverDDM15MinValidIntervals object
and the number of valid 24 hour intervals is indicated by the
raisecomOpticalTransceiverDDM24HrValidIntervals object.
when the optical module is removed from the device, the relative
history records will be cleaned.
"
::={ raisecomOpticalTransceiverPMGroup 2 }
raisecomOpticalTransceiverPMIntervalEntry OBJECT-TYPE
SYNTAX RaisecomOpticalTransceiverPMIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raisecomOpticalTransceiverPMIntervalTable. It contains
performance monitoring data for an optical parameter,
collected over a previous interval.
"
INDEX { ifIndex,
raisecomOpticalTransceiverPMIntervalPeriod,
raisecomOpticalTransceiverPMIntervalNumber,
raisecomOpticalTransceiverPMIntervalParamType }
::={ raisecomOpticalTransceiverPMIntervalTable 1 }
RaisecomOpticalTransceiverPMIntervalEntry ::= SEQUENCE {
raisecomOpticalTransceiverPMIntervalPeriod OpticalPMPeriod,
raisecomOpticalTransceiverPMIntervalNumber Integer32,
raisecomOpticalTransceiverPMIntervalParamType OpticalParameterType,
raisecomOpticalTransceiverPMIntervalMaxParam OpticalParameterValue,
raisecomOpticalTransceiverPMIntervalMinParam OpticalParameterValue,
raisecomOpticalTransceiverPMIntervalMeanParam OpticalParameterValue
}
raisecomOpticalTransceiverPMIntervalPeriod OBJECT-TYPE
SYNTAX OpticalPMPeriod
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates whether the optical parameter values,
given in this entry, are collected over a period of 15 minutes
or 24 hours.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMIntervalEntry 1 }
raisecomOpticalTransceiverPMIntervalNumber OBJECT-TYPE
SYNTAX Integer32 (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number between 1 and 96, which identifies the
interval for which the set of optical parameter values is
available. The interval identified by 1 is the most recently
completed 15 minute or 24 hour interval, and the interval
identified by N is the interval immediately preceding the one
identified by N-1.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMIntervalEntry 2 }
raisecomOpticalTransceiverPMIntervalParamType OBJECT-TYPE
SYNTAX OpticalParameterType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the optical parameter that is being
monitored, in this entry.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMIntervalEntry 3 }
raisecomOpticalTransceiverPMIntervalMaxParam OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the maximum value measured for the optical
parameter, in a particular 15 minute or 24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMIntervalEntry 4 }
raisecomOpticalTransceiverPMIntervalMinParam OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the minimum value measured for the optical
parameter, in a particular 15 minute or 24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMIntervalEntry 5 }
raisecomOpticalTransceiverPMIntervalMeanParam OBJECT-TYPE
SYNTAX OpticalParameterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the average value of the measured optical
parameter, in a particular 15 minute or 24 hour interval.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverPMIntervalEntry 6 }
-- raisecomOpticalTransceiverCurrentStatus Table
raisecomOpticalTransceiverCurrentStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomOpticalTransceiverCurrentStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores the hard ware information and the information
set by user of the transceiver.
This object belongs to xfp/sfp.
"
::={ raisecomOpticalTransceiverStatusGroup 1 }
raisecomOpticalTransceiverCurrentStatusEntry OBJECT-TYPE
SYNTAX RaisecomOpticalTransceiverCurrentStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raisecomOpticalTransceiverCurrentStatusTable. It contains
performance monitoring data for an optical parameter,
collected over a previous interval.
This object belongs to xfp/sfp.
"
INDEX { ifIndex }
::={ raisecomOpticalTransceiverCurrentStatusTable 1 }
RaisecomOpticalTransceiverCurrentStatusEntry ::= SEQUENCE {
raisecomOpticalTransceiverHwInfoAbsStatus INTEGER,
raisecomOpticalTransceiverHwInfoNRStatus INTEGER,
raisecomOpticalTransceiverHwInfoRxLosStatus INTEGER,
raisecomOpticalTransceiverHwInfoStandby INTEGER,
raisecomOpticalTransceiverHwInfoLaser INTEGER,
raisecomOpticalTransceiverWaveLengthError Integer32,
raisecomOpticalTransceiverUserWaveLength Integer32,
raisecomOpticalTransceiverUserDataRate INTEGER,
raisecomOpticalTransceiverUserLineLoopBack INTEGER,
raisecomOpticalTransceiverUserXFILoopBack INTEGER,
raisecomOpticalTransceiverPortNotifyEnable EnableVar,
raisecomOpticalTransceiverPortDDMEnable EnableVar,
raisecomOpticalTransceiverPortCheckPwdEnable EnableVar,
raisecomOpticalTransceiverTxFaultCount Integer32,
raisecomOpticalTransceiverTxFaultCountClear ClearVar,
raisecomOpticalTransceiverSpecificationCheckStatus INTEGER,
raisecomOpticalTransceiverTxFaultStatus INTEGER
}
raisecomOpticalTransceiverHwInfoAbsStatus OBJECT-TYPE
SYNTAX INTEGER
{
absent(1),
present(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if the optical module is absent
present,absent.
This object belongs to xfp and sfp."
::={ raisecomOpticalTransceiverCurrentStatusEntry 1 }
raisecomOpticalTransceiverHwInfoNRStatus OBJECT-TYPE
SYNTAX INTEGER
{
ready(1),
notready(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if the optical module is ready for operation.
ready,notready.
This object belongs to xfp.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 2 }
raisecomOpticalTransceiverHwInfoRxLosStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
loss(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if the optical module operation losses the receiving signal
normal,loss.
This object belongs to xfp.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 3 }
raisecomOpticalTransceiverHwInfoStandby OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
standby(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies if the optical module works under standby mode.
normal,standby.
This object belongs to xfp.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 4 }
raisecomOpticalTransceiverHwInfoLaser OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies if the optical module laser is turned on
on,off.
This object belongs to xfp.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 5 }
raisecomOpticalTransceiverWaveLengthError OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies error between the actual wavelength
and the wavelength set by the user,measured in pm.
This object belongs to xfp.
The object will be shown in unit of nm, and the precision is 0.001.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 6 }
raisecomOpticalTransceiverUserWaveLength OBJECT-TYPE
SYNTAX Integer32(0..3276800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the wavelength value of the optical module set by user,measured in pm.
This object belongs to xfp.
The object will be shown in unit of nm, and the precision is 0.01.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 7 }
raisecomOpticalTransceiverUserDataRate OBJECT-TYPE
SYNTAX INTEGER(9500..12500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the data rate of the optical module set by user,measured in Mbps.
This object belongs to xfp.
The object will be shown in unit of Gbps, and the precision is 0.1.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 8 }
raisecomOpticalTransceiverUserLineLoopBack OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
lineLoopback(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies if the sideline loop-back is tuned on ,
user can change the loop back mode through the object.
normal,lineLoopback.
This object belongs to xfp.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 9 }
raisecomOpticalTransceiverUserXFILoopBack OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
xfiLoopback(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies if the XFI loop-back is tuned on
user can change the loop back mode through the object.
normal,xfiLoopback.
This object belongs to xfp.
"
::={ raisecomOpticalTransceiverCurrentStatusEntry 10 }
raisecomOpticalTransceiverPortNotifyEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the generation of a port notifications,
enable or disable.
This object belongs to xfp and sfp.
"
DEFVAL { enable}
::={ raisecomOpticalTransceiverCurrentStatusEntry 11 }
raisecomOpticalTransceiverPortDDMEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the status of digitaldiagnotic on a port,
enable or disable.
This object belongs to xfp and sfp.
"
DEFVAL { enable}
::={ raisecomOpticalTransceiverCurrentStatusEntry 12 }
raisecomOpticalTransceiverPortCheckPwdEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the status of password checking on a port,
enable or disable.
This object belongs to xfp.
"
DEFVAL { enable}
::={ raisecomOpticalTransceiverCurrentStatusEntry 13 }
raisecomOpticalTransceiverTxFaultCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of tx-fault signals."
::={ raisecomOpticalTransceiverCurrentStatusEntry 14 }
raisecomOpticalTransceiverTxFaultCountClear OBJECT-TYPE
SYNTAX ClearVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies clear the statistcs of tx-fault signals."
::={ raisecomOpticalTransceiverCurrentStatusEntry 15 }
raisecomOpticalTransceiverSpecificationCheckStatus OBJECT-TYPE
SYNTAX INTEGER{none(0),accord(1),not-accord(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the check status, accord(0)specifies
the optical module accord with industrial. not-accord(2)
specifies the optical module not accord with industrial."
::={ raisecomOpticalTransceiverCurrentStatusEntry 16 }
raisecomOpticalTransceiverTxFaultStatus OBJECT-TYPE
SYNTAX INTEGER{normal(1),tx-fault(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the tx-fault status."
::={ raisecomOpticalTransceiverCurrentStatusEntry 17 }
-- Notifications
raisecomOpticalTransceiverNotifications OBJECT IDENTIFIER ::=
{ raisecomOpticalTransceiver 3 }
raisecomOpticalTransceiverAbsentTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverHwInfoAbsStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module is removed from the device.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 1 }
raisecomOpticalTransceiverPresentTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverHwInfoAbsStatus,
raisecomOpticalTransceiverSpecificationCheckStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module is plugged into the device.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 2 }
raisecomOpticalTransceiverNRAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverHwInfoNRStatus }
STATUS current
DESCRIPTION
"This notification is sent when the transmitted or received data of optical module is invalid.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 3 }
raisecomOpticalTransceiverNRNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverHwInfoNRStatus }
STATUS current
DESCRIPTION
"This notification is sent when the transmitted or received data of optical module is valid.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 4 }
raisecomOpticalTransceiverRxLosAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverHwInfoRxLosStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module receiving signal is lost.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 5 }
raisecomOpticalTransceiverRxLosNormaTrap NOTIFICATION-TYPE
OBJECTS {raisecomOpticalTransceiverHwInfoRxLosStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module receiving signal is back to normal.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 6 }
raisecomOpticalTransceiverCheckPwdFailureTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This notification is sent when the optical module password checking is failed.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 7 }
raisecomOpticalTransceiverCheckPwdSucceedTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This notification is sent when the optical module password cheching is successful.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 8 }
raisecomOpticalTransceiverParamAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 9 }
raisecomOpticalTransceiverParamAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 10 }
raisecomOpticalTransceiverParamWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 11 }
raisecomOpticalTransceiverParamWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 12 }
raisecomOpticalTransceiverLaserBackLightAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module password cheching is successful.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 13 }
raisecomOpticalTransceiverLaserBackLightAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module password cheching is successful.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 14 }
raisecomOpticalTransceiverLaserLifeAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module password cheching is successful.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 15 }
raisecomOpticalTransceiverLaserLifeAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module password cheching is successful.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 16 }
raisecomOpticalTransceiverParamLowAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 17 }
raisecomOpticalTransceiverParamLowAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 18 }
raisecomOpticalTransceiverParamLowWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 19 }
raisecomOpticalTransceiverParamLowWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module parameter value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverNotifications 20 }
-- Parameters and Notifications
raisecomOpticalTransceiverParamNotifications OBJECT IDENTIFIER ::=
{ raisecomOpticalTransceiver 4 }
raisecomOpticalTransceiverTemperatureAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Temperature value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 1 }
raisecomOpticalTransceiverTemperatureAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Temperature value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 2 }
raisecomOpticalTransceiverTemperatureWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Temperature value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 3 }
raisecomOpticalTransceiverTemperatureWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Temperature value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 4 }
raisecomOpticalTransceiverTxbiasCurrentAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx bias Current value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 5 }
raisecomOpticalTransceiverTxbiasCurrentAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx bias Current value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 6 }
raisecomOpticalTransceiverTxbiasCurrentWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx bias Current value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 7 }
raisecomOpticalTransceiverTxbiasCurrentWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx bias Current value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 8 }
raisecomOpticalTransceiverTxPowerAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx Power value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 9 }
raisecomOpticalTransceiverTxPowerAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx Power value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 10 }
raisecomOpticalTransceiverTxPowerWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx Power value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 11 }
raisecomOpticalTransceiverTxPowerWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Tx Power value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 12 }
raisecomOpticalTransceiverRxPowerAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Rx Power value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 13 }
raisecomOpticalTransceiverRxPowerWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Rx Power value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 14 }
raisecomOpticalTransceiverRxPowerWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Rx Power value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 15 }
raisecomOpticalTransceiverRxPowerAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Rx Power value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 16 }
raisecomOpticalTransceiverLaserTemperatureAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Laser Temperature value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 17 }
raisecomOpticalTransceiverLaserTemperatureWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Laser Temperature value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 18 }
raisecomOpticalTransceiverLaserTemperatureWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Laser Temperature value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 19 }
raisecomOpticalTransceiverLaserTemperatureAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module Laser Temperature value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 20 }
raisecomOpticalTransceiverP5V0supplyVoltageAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Voltage value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 21 }
raisecomOpticalTransceiverP5V0supplyVoltageWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Voltage value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 22 }
raisecomOpticalTransceiverP5V0supplyVoltageWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Voltage value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 23 }
raisecomOpticalTransceiverP5V0supplyVoltageAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Voltage value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 24 }
raisecomOpticalTransceiverP3V3supplyVoltageAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Voltage value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 25 }
raisecomOpticalTransceiverP3V3supplyVoltageWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Voltage value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 26 }
raisecomOpticalTransceiverP3V3supplyVoltageWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Voltage value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 27 }
raisecomOpticalTransceiverP3V3supplyVoltageAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Voltage value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 28 }
raisecomOpticalTransceiverP1V8supplyVoltageAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8v supply Voltage value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 29 }
raisecomOpticalTransceiverP1V8supplyVoltageWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8v supply Voltage value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 30 }
raisecomOpticalTransceiverP1V8supplyVoltageWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8v supply Voltage value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 31 }
raisecomOpticalTransceiverP1V8supplyVoltageAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8v supply Voltage value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 32 }
raisecomOpticalTransceiverN5V2supplyVoltageAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2v supply Voltage value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 33 }
raisecomOpticalTransceiverN5V2supplyVoltageWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2v supply Voltage value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 34 }
raisecomOpticalTransceiverN5V2supplyVoltageWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2v supply Voltage value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 35 }
raisecomOpticalTransceiverN5V2supplyVoltageAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2v supply Voltage value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 36 }
raisecomOpticalTransceiverApdBiasVoltageAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module APD Bias Voltage value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 37 }
raisecomOpticalTransceiverApdBiasVoltageWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module APD Bias Voltage value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 38 }
raisecomOpticalTransceiverApdBiasVoltageWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module APD Bias Voltage value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 39 }
raisecomOpticalTransceiverApdBiasVoltageAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module APD Bias Voltage value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 40 }
raisecomOpticalTransceiverP5V0supplyCurrentAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Current value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 41 }
raisecomOpticalTransceiverP5V0supplyCurrentWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Current value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 42 }
raisecomOpticalTransceiverP5V0supplyCurrentWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Current value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 43 }
raisecomOpticalTransceiverP5V0supplyCurrentAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +5.0V supply Current value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 44 }
raisecomOpticalTransceiverP3V3supplyCurrentAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Current value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 45 }
raisecomOpticalTransceiverP3V3supplyCurrentWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Current value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 46 }
raisecomOpticalTransceiverP3V3supplyCurrentWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Current value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 47 }
raisecomOpticalTransceiverP3V3supplyCurrentAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +3.3V supply Current value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 48 }
raisecomOpticalTransceiverP1V8supplyCurrentAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8V supply Current value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 49 }
raisecomOpticalTransceiverP1V8supplyCurrentWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8V supply Current value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 50 }
raisecomOpticalTransceiverP1V8supplyCurrentWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8V supply Current value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 51 }
raisecomOpticalTransceiverP1V8supplyCurrentAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module +1.8V supply Current value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 52 }
raisecomOpticalTransceiverN5V2supplyCurrentAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2V supply Current value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 53 }
raisecomOpticalTransceiverN5V2supplyCurrentWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2V supply Current value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 54 }
raisecomOpticalTransceiverN5V2supplyCurrentWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2V supply Current value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 55 }
raisecomOpticalTransceiverN5V2supplyCurrentAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module -5.2V supply Current value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 56 }
raisecomOpticalTransceiverTecCurrentAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module TecCurrent value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 57 }
raisecomOpticalTransceiverTecCurrentWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module TecCurrent value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 58 }
raisecomOpticalTransceiverTecCurrentWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module TecCurrent value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 59 }
raisecomOpticalTransceiverTecCurrentAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module TecCurrent value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 60 }
raisecomOpticalTransceiverLaserWavelengthAlarmTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module laserWavelength value increase to above
the high alarm threshold or dicrease to under the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 61 }
raisecomOpticalTransceiverLaserWavelengthWarningTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module laserWavelength value increase to above
the high warning threshold or dicrease to under the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 62 }
raisecomOpticalTransceiverLaserWavelengthWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module laserWavelength value dicrease to
under the high warning threshold or increase to above the low warning threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 63 }
raisecomOpticalTransceiverLaserWavelengthAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomNotificationLocation,
raisecomOpticalTransceiverParameterValue,
raisecomOpticalTransceiverParamAlarmStatus }
STATUS current
DESCRIPTION
"This notification is sent when the optical module laserWavelength value dicrease to
under the high alarm threshold or increase to above the low alarm threshold.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 64 }
raisecomOpticalTransceiverTxFaultTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverTxFaultStatus }
STATUS current
DESCRIPTION
"This notification is sent when the SFP optical module occures Tx-fault signal.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 65 }
raisecomOpticalTransceiverTxNormalTrap NOTIFICATION-TYPE
OBJECTS { raisecomOpticalTransceiverTxFaultStatus }
STATUS current
DESCRIPTION
"This notification is sent when the SFP optical module cancels the Tx-fault signal.
This notification may be suppressed under the following
conditions:
- depending on the value of the raisecomOpticalNotifyEnable and raisecomOpticalPortNotifyEnable objects.
"
::={ raisecomOpticalTransceiverParamNotifications 66 }
END
|