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
|
--MibName=ROSMGMT-OPTICAL-TRANSCEIVER-MIB.mib
-- *****************************************************************
-- ROSMGMT-OPTICAL-TRANSCEIVER-MIB.mib
--
-- 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
--
-- *****************************************************************
ROSMGMT-OPTICAL-TRANSCEIVER-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Unsigned32,
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,TimeTicks FROM SNMPv2-SMI
rosMgmt FROM RAISECOM-BASE-MIB
TEXTUAL-CONVENTION,
TruthValue FROM SNMPv2-TC
-- OBJECT-GROUP FROM SNMPv2-CONF
ifIndex FROM IF-MIB;
-- raisecomNotificationLocation FROM RAISECOM-COMMON-MANAGEMENT-MIB
-- ClearVar FROM SWITCH-TC;
rosMgmtOpticalTransceiver MODULE-IDENTITY
LAST-UPDATED "202004160000Z"
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 "202004160000Z"
DESCRIPTION
"The initial revision of this MIB."
::={ rosMgmt 18 }
rosMgmtOpticalTransceiverNotifications OBJECT IDENTIFIER ::= { rosMgmtOpticalTransceiver 0 }
rosMgmtOpticalTransceiverObjects OBJECT IDENTIFIER ::= { rosMgmtOpticalTransceiver 1 }
rosMgmtOpticalTransceiverConformance OBJECT IDENTIFIER ::= { rosMgmtOpticalTransceiver 2 }
rosMgmtOpticalTransceiverAbsentTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverHwInfoAbsStatus,
rosMgmtOpticalTransceiverSpecificationCheckStatus }
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.
"
::={ rosMgmtOpticalTransceiverNotifications 1 }
rosMgmtOpticalTransceiverPresentTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverHwInfoAbsStatus,
rosMgmtOpticalTransceiverSpecificationCheckStatus }
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.
"
::={ rosMgmtOpticalTransceiverNotifications 2 }
rosMgmtOpticalTransceiverNRAlarmTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverHwInfoNRStatus }
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.
"
::={ rosMgmtOpticalTransceiverNotifications 3 }
rosMgmtOpticalTransceiverNRNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverHwInfoNRStatus }
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.
"
::={ rosMgmtOpticalTransceiverNotifications 4 }
rosMgmtOpticalTransceiverRxLosAlarmTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverHwInfoRxLosStatus }
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.
"
::={ rosMgmtOpticalTransceiverNotifications 5 }
rosMgmtOpticalTransceiverRxLosNormaTrap NOTIFICATION-TYPE
OBJECTS {rosMgmtOpticalTransceiverHwInfoRxLosStatus }
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.
"
::={ rosMgmtOpticalTransceiverNotifications 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.
-- "
-- ::={ rosMgmtOpticalTransceiverNotifications 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.
-- "
-- ::={ rosMgmtOpticalTransceiverNotifications 8 }
rosMgmtOpticalTransceiverParamAlarmTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 7 }
rosMgmtOpticalTransceiverParamAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 8 }
rosMgmtOpticalTransceiverParamWarningTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 9 }
rosMgmtOpticalTransceiverParamWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 10 }
rosMgmtOpticalTransceiverLaserBackLightAlarmTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 11 }
rosMgmtOpticalTransceiverLaserBackLightAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 12 }
rosMgmtOpticalTransceiverLaserLifeAlarmTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 13 }
rosMgmtOpticalTransceiverLaserLifeAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 14 }
rosMgmtOpticalTransceiverParamLowAlarmTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 15 }
rosMgmtOpticalTransceiverParamLowAlarmNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 16 }
rosMgmtOpticalTransceiverParamLowWarningTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 17 }
rosMgmtOpticalTransceiverParamLowWarningNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 18 }
rosMgmtOpticalTransceiverTxFaultTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverTxFaultStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 19 }
rosMgmtOpticalTransceiverTxNormalTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtOpticalTransceiverTxFaultStatus }
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 rosMgmtOpticalNotifyEnable and rosMgmtOpticalPortNotifyEnable objects.
"
::={ rosMgmtOpticalTransceiverNotifications 20 }
-- 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
DISPLAY-HINT "d-2"
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 Scalar Group Definitions
rosMgmtOpticalTransceiverScalarGroup OBJECT IDENTIFIER ::=
{rosMgmtOpticalTransceiverObjects 1 }
rosMgmtOpticalTransceiverNotifyEnable 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 }
::={ rosMgmtOpticalTransceiverScalarGroup 1 }
rosMgmtOpticalTransceiverDDMEnable 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}
::={ rosMgmtOpticalTransceiverScalarGroup 2 }
rosMgmtOpticalTransceiverCheckPwdEnable 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}
::={ rosMgmtOpticalTransceiverScalarGroup 3 }
rosMgmtOpticalTransceiverPollInterval OBJECT-TYPE
SYNTAX Integer32 (5..15)
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.
"
::={ rosMgmtOpticalTransceiverScalarGroup 4 }
rosMgmtOpticalTransceiverCRCCheckEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the status of crc checking on the device,
enable or disable.
this object belongs to sfp and xfp.
"
DEFVAL { disable}
::={ rosMgmtOpticalTransceiverScalarGroup 5 }
-- MIB Object Definitions
rosMgmtOpticalTransceiverCfgObjects OBJECT IDENTIFIER ::=
{rosMgmtOpticalTransceiverObjects 2 }
-- groups in this MIB module
rosMgmtOpticalTransceiverInfoGroup OBJECT IDENTIFIER ::=
{rosMgmtOpticalTransceiverCfgObjects 1 }
rosMgmtOpticalTransceiverDDMGroup OBJECT IDENTIFIER ::=
{rosMgmtOpticalTransceiverCfgObjects 2 }
rosMgmtOpticalTransceiverPMGroup OBJECT IDENTIFIER ::=
{rosMgmtOpticalTransceiverCfgObjects 3 }
rosMgmtOpticalTransceiverStatusGroup OBJECT IDENTIFIER ::=
{rosMgmtOpticalTransceiverCfgObjects 4 }
-- rosMgmtOpticalTransceiverInfoTable
rosMgmtOpticalTransceiverInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtOpticalTransceiverInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Trancetver information Table."
::= { rosMgmtOpticalTransceiverInfoGroup 1 }
rosMgmtOpticalTransceiverInfoEntry OBJECT-TYPE
SYNTAX RosMgmtOpticalTransceiverInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rosMgmtOpticalTransceiverInfoTable."
INDEX { ifIndex }
::={ rosMgmtOpticalTransceiverInfoTable 1 }
RosMgmtOpticalTransceiverInfoEntry ::= SEQUENCE {
rosMgmtOpticalTransceiverType INTEGER,
rosMgmtOpticalTransceiverConnectorType INTEGER,
rosMgmtOpticalTransceiverVendorName OCTET STRING,
rosMgmtOpticalTransceiverVendorPN OCTET STRING,
rosMgmtOpticalTransceiverVendorSN OCTET STRING,
rosMgmtOpticalTransceiverMediaType INTEGER,
rosMgmtOpticalTransceiverTransmissionDistance Integer32,
rosMgmtOpticalTransceiverAbility Unsigned32,
rosMgmtOpticalTransceiverDDM INTEGER,
rosMgmtOpticalTransceiverCalibrationType INTEGER,
rosMgmtOpticalTransceiverRSSI INTEGER,
rosMgmtOpticalTransceiverVendorRev OCTET STRING,
rosMgmtOpticalTransceiverBRMax Integer32,
rosMgmtOpticalTransceiverBRMin Integer32,
rosMgmtOpticalTransceiverWavelengthContrl INTEGER,
rosMgmtOpticalTransceiverWavelength Integer32,
rosMgmtOpticalTransceiverWaveTolerance Integer32,
rosMgmtOpticalTransceiverCompatibility OCTET STRING,
rosMgmtOpticalTransceiverPowerDissipation INTEGER,
rosMgmtOpticalTransceiverCDR INTEGER,
rosMgmtOpticalTransceiverRefClock INTEGER,
rosMgmtOpticalTransceiverTransmitterType INTEGER,
rosMgmtOpticalTransceiverCooled INTEGER,
rosMgmtOpticalTransceiverTunalbe INTEGER,
rosMgmtOpticalTransceiverDetectorType INTEGER,
rosMgmtOpticalTransceiverLineLoopBack INTEGER,
rosMgmtOpticalTransceiverXFILoopBack INTEGER,
rosMgmtOpticalTransceiverVps INTEGER,
rosMgmtOpticalTransceiverTxDis INTEGER,
rosMgmtOpticalTransceiverStandby INTEGER,
rosMgmtOpticalTransceiverInVpsLowPower INTEGER,
rosMgmtOpticalTransceiverOutVpsLowPower INTEGER,
rosMgmtOpticalTransceiverFEC INTEGER,
rosMgmtOpticalTransceiverCMU INTEGER,
rosMgmtOpticalTransceiverBR INTEGER
}
rosMgmtOpticalTransceiverType OBJECT-TYPE
SYNTAX INTEGER{
unknown(1),
gbic(2),
soldered(3),
sfp(4),
xbi(5),
xenpak(6),
xfp(7),
xff(8),
xfpe(9),
xpak(10),
x2(11),
sfpj(12),
qsfp(14),
qsfp28(18)
}
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 1 }
rosMgmtOpticalTransceiverConnectorType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
sc (2),
db9(3),
hssdc(4),
bnctnc(5),
fibercoaxialhead(6),
fiberjack(7),
lc(8),
mtrj(9),
mu(10),
sg(11),
fiberpigtail(12),
mpoparalleloptic(13),
hssdcII (14),
copper (15),
rj45 (16)
}
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 2 }
rosMgmtOpticalTransceiverVendorName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vendor name of the interface.
this object belongs to xfp and sfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 3 }
rosMgmtOpticalTransceiverVendorPN OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vendor part number of the interface.
this object belongs to xfp and sfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 4 }
rosMgmtOpticalTransceiverVendorSN OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vendor serial number of the interface.
this object belongs to xfp and sfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 5 }
rosMgmtOpticalTransceiverMediaType OBJECT-TYPE
SYNTAX INTEGER
{
singlemode(1),
multimodeE50(2),
multimode50(3),
multimode625(4),
copper(5),
singlemodeKm(6),
multimodeOM3(7),
multimodeOM3Qsfp(8),
multimodeOM2Qsfp(9),
multimodeOM1Qsfp(10),
multimodeOM4Qsfp(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Types of the fiber,
single_mode, multi_modeE50, multi_mode50,multi_mode625,copper,
single_modeKm,multi_modeOM3,multi_modeOM3Qsfp,multi_modeOM2Qsfp,
multi_modeOM1Qsfp,multi_modeOM4Qsfp.
this object belongs to xfp, sfp and qsfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 6 }
rosMgmtOpticalTransceiverTransmissionDistance OBJECT-TYPE
SYNTAX Integer32
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 7 }
rosMgmtOpticalTransceiverAbility OBJECT-TYPE
SYNTAX Unsigned32
MAX-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 Bias voltage | 0(reserve) | TEC Current | Laser temperature
| 5bit | 6bit |7bit | 8bit
| Laser wavelength | +5V Supply voltage | +3.3V Supply voltage | +1.8V Supply voltage
| 9bit | 10bit |11bit | 12bit
| -5.2V Supply voltage | +5V Supply current | 0(None) | 0(None)
| 13bit | 14bit | 15bit | 16bit
| +3.3V Supply current | +1.8V Supply current | -5.2V Supply current | temperature
| 17bit | 18bit | 19bit | 20bit ~ 32bit
| Laser bias current | Rx power |Tx power | 0
But when the optical module is sfp, the 6 bit will represents
the supplyVoltage of sfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 8 }
rosMgmtOpticalTransceiverDDM OBJECT-TYPE
SYNTAX INTEGER{
support(1),
notsupport(2)
}
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 9 }
rosMgmtOpticalTransceiverCalibrationType OBJECT-TYPE
SYNTAX INTEGER{
unknown(1),
internal(2),
external(3)
}
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 10 }
rosMgmtOpticalTransceiverRSSI OBJECT-TYPE
SYNTAX INTEGER{
support(1),
notsupport(2)
}
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 11 }
rosMgmtOpticalTransceiverVendorRev OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" the version number of the transceiver.
this object belongs to xfp and sfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 12 }
rosMgmtOpticalTransceiverBRMax OBJECT-TYPE
SYNTAX Integer32
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 13 }
rosMgmtOpticalTransceiverBRMin OBJECT-TYPE
SYNTAX Integer32
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 14 }
rosMgmtOpticalTransceiverWavelengthContrl OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"if the transceiver supports on wavelength control
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 15 }
rosMgmtOpticalTransceiverWavelength OBJECT-TYPE
SYNTAX Integer32
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 16 }
rosMgmtOpticalTransceiverWaveTolerance OBJECT-TYPE
SYNTAX Integer32
MAX-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.
"
::= { rosMgmtOpticalTransceiverInfoEntry 17 }
rosMgmtOpticalTransceiverCompatibility OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the compatibility type that the transceiver supports,such as 10GBASE-SR.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 18 }
rosMgmtOpticalTransceiverPowerDissipation OBJECT-TYPE
SYNTAX INTEGER
{
p1W5(1),
p2W5(2),
p3W5(3),
exceed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the max power dissipation of the transceiver,
p1W5,p2W5,p3W5,exceed3W5.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 19 }
rosMgmtOpticalTransceiverCDR OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the optical module supports on CDR fundtion.
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 20 }
rosMgmtOpticalTransceiverRefClock OBJECT-TYPE
SYNTAX INTEGER
{
required(1),
notrequired (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" if the transceiver requires outside reference clock
required,notrequired.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 21 }
rosMgmtOpticalTransceiverTransmitterType OBJECT-TYPE
SYNTAX INTEGER
{
vcsel850nm(1),
vcsel1310nm(2),
vcsel1550nm(3),
fp1310nm(4),
dfb1310nm(5),
dfb1550nm(6),
eml1310nm(7),
eml1550nm(8),
copperothers(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmitter type of the transceiver,such as 850 nm VCSEL.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 22 }
rosMgmtOpticalTransceiverCooled OBJECT-TYPE
SYNTAX INTEGER
{
cooled(1),
uncooled (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmitter cooled type of the transceiver
cooled,uncooled.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 24 }
rosMgmtOpticalTransceiverTunalbe OBJECT-TYPE
SYNTAX INTEGER
{
tunable (1),
untunable (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmitter tunable type of the transceiver
tunable,untunable.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 25 }
rosMgmtOpticalTransceiverDetectorType OBJECT-TYPE
SYNTAX INTEGER
{
pin(1),
apd(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The detector type of the transceiver
pin, apd.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 26 }
rosMgmtOpticalTransceiverLineLoopBack OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of sideline loop-back control
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 27 }
rosMgmtOpticalTransceiverXFILoopBack OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of XFI loop-back control
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 28 }
rosMgmtOpticalTransceiverVps OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if the optical module supports on VPS
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 29 }
rosMgmtOpticalTransceiverTxDis OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of software control the transmitter status
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 30 }
rosMgmtOpticalTransceiverStandby OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver support status of software control the standby mode.
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 31 }
rosMgmtOpticalTransceiverInVpsLowPower OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VPS in low power support status of the transceiver
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 32 }
rosMgmtOpticalTransceiverOutVpsLowPower OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VPS out low power support status of the transceiver
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 33 }
rosMgmtOpticalTransceiverFEC OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FEC support status of transceiver
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 34 }
rosMgmtOpticalTransceiverCMU OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notsupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CMU support status of transceiver
support,notsupport.
this object belongs to xfp.
"
::= { rosMgmtOpticalTransceiverInfoEntry 35 }
rosMgmtOpticalTransceiverBR OBJECT-TYPE
SYNTAX INTEGER
{
unknown(0),
bitrate125Mbps(1),
bitrate155Mbps (2),
bitrate622Mbps(6),
bitrate1250Mbps(12),
bitrate1DOT25Gbps(13),
bitrate2DOT5Gbps(19),
bitrate10GbpsOr100Gbps1(103),
bitrate100Gbps2(114),
bitrate25Gbps(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Nominal bitrate of the transceiver,
125Mbps, 155Mbps, 622Mbps, 1.25Gbps, 2.5Gbps, 10Gbps, 100Gbps, 25Gbps.
this object belongs to xfp and sfp and qsfp and qsfp28.
"
::= { rosMgmtOpticalTransceiverInfoEntry 36 }
-- rosMgmtOpticalDDMTable
rosMgmtOpticalTransceiverDDMTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtOpticalTransceiverDDMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides objects to monitor optical
parameters in a network element. "
::={ rosMgmtOpticalTransceiverDDMGroup 1 }
rosMgmtOpticalTransceiverDDMEntry OBJECT-TYPE
SYNTAX RosMgmtOpticalTransceiverDDMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rosMgmtOpticalTransceiverMonTable provides objects to
monitor an optical parameter at an optical interface.
"
INDEX { ifIndex,
rosMgmtOpticalTransceiverParameterType
}
::={ rosMgmtOpticalTransceiverDDMTable 1 }
RosMgmtOpticalTransceiverDDMEntry ::= SEQUENCE {
rosMgmtOpticalTransceiverParameterType OpticalParameterType,
-- rosMgmtOpticalTransceiverOPType INTEGER,
rosMgmtOpticalTransceiverParameterValue OpticalParameterValue,
rosMgmtOpticalTransceiverParamHighAlarmThresh OpticalParameterValue,
rosMgmtOpticalTransceiverParamHighWarningThresh OpticalParameterValue,
rosMgmtOpticalTransceiverParamLowAlarmThresh OpticalParameterValue,
rosMgmtOpticalTransceiverParamLowWarningThresh OpticalParameterValue,
rosMgmtOpticalTransceiverParamAlarmStatus INTEGER,
rosMgmtOpticalTransceiverParamAlarmLastValue OpticalParameterValue,
rosMgmtOpticalTransceiverParamAlarmLastChange TimeTicks,
rosMgmtOpticalTransceiverDDM15MinValidIntervals Unsigned32,
rosMgmtOpticalTransceiverDDM24HrValidIntervals Unsigned32,
rosMgmtOpticalTransceiverDDMValidStatus INTEGER,
rosMgmtOpticalTransceiverQsfpParameterValue OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamHighAlarmThresh OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamHighWarningThresh OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamLowAlarmThresh OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamLowWarningThresh OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamAlarmStatus OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamAlarmLastValue OCTET STRING,
rosMgmtOpticalTransceiverQsfpParamAlarmLastChange OCTET STRING,
rosMgmtOpticalTransceiverQsfpDDM15MinValidIntervals OCTET STRING,
rosMgmtOpticalTransceiverQsfpDDM24HrValidIntervals OCTET STRING,
rosMgmtOpticalTransceiverQsfpDDMValidStatus OCTET STRING
}
rosMgmtOpticalTransceiverParameterType 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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 1 }
--rosMgmtOpticalTransceiverOPType OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- others(1),
-- sfp(2),
-- xfp(3),
-- sfpj(4),
-- qsfp(5)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This object specifies the optical type "
-- ::={ rosMgmtOpticalTransceiverDDMEntry 2 }
rosMgmtOpticalTransceiverParameterValue 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 rosMgmtOpticalMonParameterType
object.
This object belongs to xfp/sfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 2 }
rosMgmtOpticalTransceiverParamHighAlarmThresh 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
rosMgmtOpticalParameterValue goes from below the value of
this object to above the value of this object, or if
the initial value of rosMgmtOpticalParameterValue exceeds the value
of this object. This alarm will be indicated in the
rosMgmtOpticalParamAlarmStatus object.
This object belongs to xfp/sfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 3 }
rosMgmtOpticalTransceiverParamHighWarningThresh 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 rosMgmtOpticalParameterValue goes from below the value
of this object to above the value of this
object, or if the initial value of rosMgmtOpticalParameterValue
exceeds the value of this object. This alarm will be indicated in the
rosMgmtOpticalParamAlarmStatus object.
This object belongs to xfp/sfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 4 }
rosMgmtOpticalTransceiverParamLowAlarmThresh 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
rosMgmtOpticalParameterValue goes from above the value of
this object to below the value of this object, or if
the initial value of rosMgmtOpticalParameterValue is lower than the
value of this object. This alarm
will be indicated in the rosMgmtOpticalParamAlarmStatus object ..
This object belongs to xfp/sfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 5 }
rosMgmtOpticalTransceiverParamLowWarningThresh 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 rosMgmtOpticalParameterValue goes from above the value
of this object to below the value of this
object, or if the initial value of rosMgmtOpticalParameterValue
object is lower than the value of this object. For
network elements in the status
indications, this threshold violation will be indicated in the
rosMgmtOpticalParamAlarmStatus object .
This object belongs to xfp/sfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 6 }
rosMgmtOpticalTransceiverParamAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
highalarm(2),
highwarning(3),
lowalarm(4),
lowwarning(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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 7 }
rosMgmtOpticalTransceiverParamAlarmLastValue 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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 8 }
rosMgmtOpticalTransceiverParamAlarmLastChange 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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 9 }
rosMgmtOpticalTransceiverDDM15MinValidIntervals 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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 10 }
rosMgmtOpticalTransceiverDDM24HrValidIntervals 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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 11 }
rosMgmtOpticalTransceiverDDMValidStatus OBJECT-TYPE
SYNTAX INTEGER {
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.
"
::={ rosMgmtOpticalTransceiverDDMEntry 12 }
rosMgmtOpticalTransceiverQsfpParameterValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives the value measured for the particular
optical parameter specified by the rosMgmtOpticalMonParameterType
object.
This object belongs to Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 13 }
rosMgmtOpticalTransceiverQsfpParamHighAlarmThresh OBJECT-TYPE
SYNTAX OCTET STRING
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
rosMgmtOpticalParameterValue goes from below the value of
this object to above the value of this object, or if
the initial value of rosMgmtOpticalParameterValue exceeds the value
of this object. This alarm will be indicated in the
rosMgmtOpticalParamAlarmStatus object.
This object belongs to Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 14 }
rosMgmtOpticalTransceiverQsfpParamHighWarningThresh OBJECT-TYPE
SYNTAX OCTET STRING
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 rosMgmtOpticalParameterValue goes from below the value
of this object to above the value of this
object, or if the initial value of rosMgmtOpticalParameterValue
exceeds the value of this object. This alarm will be indicated in the
rosMgmtOpticalParamAlarmStatus object.
This object belongs to Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 15 }
rosMgmtOpticalTransceiverQsfpParamLowAlarmThresh OBJECT-TYPE
SYNTAX OCTET STRING
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
rosMgmtOpticalParameterValue goes from above the value of
this object to below the value of this object, or if
the initial value of rosMgmtOpticalParameterValue is lower than the
value of this object. This alarm
will be indicated in the rosMgmtOpticalParamAlarmStatus object ..
This object belongs to Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 16 }
rosMgmtOpticalTransceiverQsfpParamLowWarningThresh OBJECT-TYPE
SYNTAX OCTET STRING
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 rosMgmtOpticalParameterValue goes from above the value
of this object to below the value of this
object, or if the initial value of rosMgmtOpticalParameterValue
object is lower than the value of this object. For
network elements in the status
indications, this threshold violation will be indicated in the
rosMgmtOpticalParamAlarmStatus object .
This object belongs to Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 17 }
rosMgmtOpticalTransceiverQsfpParamAlarmStatus OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 18 }
rosMgmtOpticalTransceiverQsfpParamAlarmLastValue OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 19 }
rosMgmtOpticalTransceiverQsfpParamAlarmLastChange OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 20 }
rosMgmtOpticalTransceiverQsfpDDM15MinValidIntervals OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 21 }
rosMgmtOpticalTransceiverQsfpDDM24HrValidIntervals OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 22 }
rosMgmtOpticalTransceiverQsfpDDMValidStatus OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverDDMEntry 23 }
-- rosMgmtOpticalTransceiverPMCurrent Table
rosMgmtOpticalTransceiverPMCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtOpticalTransceiverPMCurrentEntry
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."
::={ rosMgmtOpticalTransceiverPMGroup 1 }
rosMgmtOpticalTransceiverPMCurrentEntry OBJECT-TYPE
SYNTAX RosMgmtOpticalTransceiverPMCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rosMgmtOpticalTransceiverPMCurrentTable. 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,
rosMgmtOpticalTransceiverPMCurrentPeriod,
rosMgmtOpticalTransceiverPMCurrentParamType }
::={ rosMgmtOpticalTransceiverPMCurrentTable 1 }
RosMgmtOpticalTransceiverPMCurrentEntry ::= SEQUENCE {
rosMgmtOpticalTransceiverPMCurrentPeriod OpticalPMPeriod,
rosMgmtOpticalTransceiverPMCurrentParamType OpticalParameterType,
-- rosMgmtOpticalTransceiverPMType INTEGER,
rosMgmtOpticalTransceiverPMCurrentMaxParam OpticalParameterValue,
rosMgmtOpticalTransceiverPMCurrentMinParam OpticalParameterValue,
rosMgmtOpticalTransceiverPMCurrentMeanParam OpticalParameterValue,
rosMgmtOpticalTransceiverQsfpPMCurrentMaxParam OCTET STRING,
rosMgmtOpticalTransceiverQsfpPMCurrentMinParam OCTET STRING,
rosMgmtOpticalTransceiverQsfpPMCurrentMeanParam OCTET STRING
}
rosMgmtOpticalTransceiverPMCurrentPeriod 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.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 1 }
rosMgmtOpticalTransceiverPMCurrentParamType 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.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 2 }
-- rosMgmtOpticalTransceiverPMType OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- others(1),
-- sfp(2),
-- xfp(3),
-- sfpj(4),
-- qsfp(5)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This object specifies the optical type "
-- ::={ rosMgmtOpticalTransceiverPMCurrentEntry 3 }
rosMgmtOpticalTransceiverPMCurrentMaxParam 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.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 3 }
rosMgmtOpticalTransceiverPMCurrentMinParam 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.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 4 }
rosMgmtOpticalTransceiverPMCurrentMeanParam 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.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 5 }
rosMgmtOpticalTransceiverQsfpPMCurrentMaxParam OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 6 }
rosMgmtOpticalTransceiverQsfpPMCurrentMinParam OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 7 }
rosMgmtOpticalTransceiverQsfpPMCurrentMeanParam OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverPMCurrentEntry 8 }
-- rosMgmtOpticalTransceiverPMInterval Table
rosMgmtOpticalTransceiverPMIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtOpticalTransceiverPMIntervalEntry
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
rosMgmtOpticalTransceiverDDM15MinValidIntervals object
and the number of valid 24 hour intervals is indicated by the
rosMgmtOpticalTransceiverDDM24HrValidIntervals object.
when the optical module is removed from the device, the relative
history records will be cleaned.
"
::={ rosMgmtOpticalTransceiverPMGroup 2 }
rosMgmtOpticalTransceiverPMIntervalEntry OBJECT-TYPE
SYNTAX RosMgmtOpticalTransceiverPMIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rosMgmtOpticalTransceiverPMIntervalTable. It contains
performance monitoring data for an optical parameter,
collected over a previous interval.
"
INDEX { ifIndex,
rosMgmtOpticalTransceiverPMIntervalPeriod,
rosMgmtOpticalTransceiverPMIntervalNumber,
rosMgmtOpticalTransceiverPMIntervalParamType }
::={ rosMgmtOpticalTransceiverPMIntervalTable 1 }
RosMgmtOpticalTransceiverPMIntervalEntry ::= SEQUENCE {
rosMgmtOpticalTransceiverPMIntervalPeriod OpticalPMPeriod,
rosMgmtOpticalTransceiverPMIntervalNumber Integer32,
rosMgmtOpticalTransceiverPMIntervalParamType OpticalParameterType,
-- rosMgmtOpticalTransceiverPMIntervalType INTEGER,
rosMgmtOpticalTransceiverPMIntervalMaxParam OpticalParameterValue,
rosMgmtOpticalTransceiverPMIntervalMinParam OpticalParameterValue,
rosMgmtOpticalTransceiverPMIntervalMeanParam OpticalParameterValue,
rosMgmtOpticalTransceiverQsfpPMIntervalMaxParam OCTET STRING,
rosMgmtOpticalTransceiverQsfpPMIntervalMinParam OCTET STRING,
rosMgmtOpticalTransceiverQsfpPMIntervalMeanParam OCTET STRING
}
rosMgmtOpticalTransceiverPMIntervalPeriod 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.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 1 }
rosMgmtOpticalTransceiverPMIntervalNumber 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.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 2 }
rosMgmtOpticalTransceiverPMIntervalParamType 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.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 3 }
--rosMgmtOpticalTransceiverPMIntervalType OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- others(1),
-- sfp(2),
-- xfp(3),
-- sfpj(4),
-- qsfp(5)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This object specifies the optical type "
-- ::={ rosMgmtOpticalTransceiverPMIntervalEntry 4 }
rosMgmtOpticalTransceiverPMIntervalMaxParam 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.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 4 }
rosMgmtOpticalTransceiverPMIntervalMinParam 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.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 5 }
rosMgmtOpticalTransceiverPMIntervalMeanParam 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.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 6 }
rosMgmtOpticalTransceiverQsfpPMIntervalMaxParam OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 7 }
rosMgmtOpticalTransceiverQsfpPMIntervalMinParam OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 8 }
rosMgmtOpticalTransceiverQsfpPMIntervalMeanParam OBJECT-TYPE
SYNTAX OCTET STRING
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 Qsfp.
"
::={ rosMgmtOpticalTransceiverPMIntervalEntry 9 }
-- rosMgmtOpticalTransceiverCurrentStatus Table
rosMgmtOpticalTransceiverCurrentStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtOpticalTransceiverCurrentStatusEntry
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.
"
::={ rosMgmtOpticalTransceiverStatusGroup 1 }
rosMgmtOpticalTransceiverCurrentStatusEntry OBJECT-TYPE
SYNTAX RosMgmtOpticalTransceiverCurrentStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rosMgmtOpticalTransceiverCurrentStatusTable. It contains
performance monitoring data for an optical parameter,
collected over a previous interval.
This object belongs to xfp/sfp.
"
INDEX { ifIndex }
::={ rosMgmtOpticalTransceiverCurrentStatusTable 1 }
RosMgmtOpticalTransceiverCurrentStatusEntry ::= SEQUENCE {
rosMgmtOpticalTransceiverHwInfoAbsStatus INTEGER,
rosMgmtOpticalTransceiverHwInfoNRStatus INTEGER,
rosMgmtOpticalTransceiverHwInfoRxLosStatus INTEGER,
rosMgmtOpticalTransceiverHwInfoStandby INTEGER,
rosMgmtOpticalTransceiverHwInfoLaser INTEGER,
rosMgmtOpticalTransceiverWaveLengthError Integer32,
rosMgmtOpticalTransceiverUserWaveLength Integer32,
rosMgmtOpticalTransceiverUserDataRate Integer32,
rosMgmtOpticalTransceiverUserLineLoopBack INTEGER,
rosMgmtOpticalTransceiverUserXFILoopBack INTEGER,
rosMgmtOpticalTransceiverPortNotifyEnable EnableVar,
rosMgmtOpticalTransceiverPortDDMEnable EnableVar,
rosMgmtOpticalTransceiverPortCheckPwdEnable EnableVar,
rosMgmtOpticalTransceiverTxFaultCount Integer32,
rosMgmtOpticalTransceiverTxFaultCountClear TruthValue,
rosMgmtOpticalTransceiverSpecificationCheckStatus INTEGER,
rosMgmtOpticalTransceiverTxFaultStatus INTEGER,
rosMgmtOpticalTransceiverPortCRCCheckEnable EnableVar,
rosMgmtOpticalTransceiverBaseCRCCheckStatus INTEGER,
rosMgmtOpticalTransceiverStaticDdmCRCCheckStatus INTEGER,
rosMgmtOpticalTransceiverDynamicDdmCRCCheckStatus INTEGER
}
rosMgmtOpticalTransceiverHwInfoAbsStatus 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."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 1 }
rosMgmtOpticalTransceiverHwInfoNRStatus 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 2 }
rosMgmtOpticalTransceiverHwInfoRxLosStatus 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 3 }
rosMgmtOpticalTransceiverHwInfoStandby 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 4 }
rosMgmtOpticalTransceiverHwInfoLaser 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 5 }
rosMgmtOpticalTransceiverWaveLengthError 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 6 }
rosMgmtOpticalTransceiverUserWaveLength 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 7 }
rosMgmtOpticalTransceiverUserDataRate OBJECT-TYPE
SYNTAX Integer32(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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 8 }
rosMgmtOpticalTransceiverUserLineLoopBack 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 9 }
rosMgmtOpticalTransceiverUserXFILoopBack 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.
"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 10 }
rosMgmtOpticalTransceiverPortNotifyEnable 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}
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 11 }
rosMgmtOpticalTransceiverPortDDMEnable 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}
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 12 }
rosMgmtOpticalTransceiverPortCheckPwdEnable 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}
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 13 }
rosMgmtOpticalTransceiverTxFaultCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of tx-fault signals."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 14 }
rosMgmtOpticalTransceiverTxFaultCountClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies clear the statistcs of tx-fault signals."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 15 }
rosMgmtOpticalTransceiverSpecificationCheckStatus OBJECT-TYPE
SYNTAX INTEGER{none(0),accord(1),notaccord(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."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 16 }
rosMgmtOpticalTransceiverTxFaultStatus OBJECT-TYPE
SYNTAX INTEGER{normal(1),txfault(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the tx-fault status."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 17 }
rosMgmtOpticalTransceiverPortCRCCheckEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the status of CRC checking on a port, enable or disable.
This object belongs to sfp and xfp"
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 18 }
rosMgmtOpticalTransceiverBaseCRCCheckStatus OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
pass(1),
notpass(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the result of base information crc checking."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 19 }
rosMgmtOpticalTransceiverStaticDdmCRCCheckStatus OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
pass(1),
notpass(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the result of static ddm crc checking."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 20 }
rosMgmtOpticalTransceiverDynamicDdmCRCCheckStatus OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
pass(1),
notpass(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the result of Dynamic ddm crc checking."
::={ rosMgmtOpticalTransceiverCurrentStatusEntry 21 }
END
|