summaryrefslogtreecommitdiff
path: root/MIBS/mrv/NBS-SFF-MIB
blob: a2ffbe70343d9d49f4275b2883351169d3e31cbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
NBS-SFF-MIB DEFINITIONS ::= BEGIN

IMPORTS
    Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY
        FROM SNMPv2-SMI
    DisplayString
        FROM SNMPv2-TC
    InterfaceIndex
        FROM IF-MIB
    NbsCmmcChannelBand
        FROM NBS-CMMCENUM-MIB
    nbs, NbsTcMHz
        FROM NBS-MIB;

nbsSffMib  MODULE-IDENTITY
    LAST-UPDATED "201706060000Z" -- June 6, 2017
    ORGANIZATION  "NBS"
    CONTACT-INFO
        "For technical support, please contact your service channel"

    DESCRIPTION
        "MIB for representing SFF MSA standards"

    ::= { nbs 204 }

-- *******************************************************************
-- NBS-SFF-MIB Objects Identifier Definition
-- *******************************************************************
nbsSffObjects  OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "all MIB objects in nbsSFF MIB."
::= { nbsSffMib 1 }

-- *******************************************************************
-- Groups in NBS-SFF-MIB - all under nbsSffObjects
-- *******************************************************************

 nbsSffMsaGrp  OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "All SFF MSA objects."
 ::= { nbsSffObjects 1 }

 nbsSffWdmGrp  OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "All DWDM MSA objects."
 ::= { nbsSffObjects 2 }

 nbsSffDiagnosticsGrp  OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "All Diagnostics objects."
 ::= { nbsSffObjects 3 }

 nbsSffMsxGrp  OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "All SFF MSA Extension objects."
 ::= { nbsSffObjects 4 }

-- *******************************************************************
-- Objects in the nbsSffMsaGrp Group.
-- *******************************************************************

nbsSffMsaTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF NbsSffMsaEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Operations, Administration, and Management information"
    ::= { nbsSffMsaGrp 1 }

nbsSffMsaEntry      OBJECT-TYPE
    SYNTAX  NbsSffMsaEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Represents a SFF MSA details of a port."
    INDEX { nbsSffMsaPhysicalIfIndex }
    ::= { nbsSffMsaTable 1 }

NbsSffMsaEntry ::= SEQUENCE {
    nbsSffMsaPhysicalIfIndex            InterfaceIndex,
    nbsSffMsaIdentifier                 INTEGER,
    nbsSffMsaExtIdentifier              INTEGER,
    nbsSffMsaOpticalConnector           INTEGER,
    nbsSffMsaTransceiverCodes           OCTET STRING,
    nbsSffMsaSerialEncoding             INTEGER,
    nbsSffMsaNominalBitRate             INTEGER,
    nbsSffMsaLinkLengthSmfKm            INTEGER,
    nbsSffMsaLinkLengthSmf100m          INTEGER,
    nbsSffMsaLinkLengthMmf10m           INTEGER,
    nbsSffMsaLinkLength625Mmf10m        INTEGER,
    nbsSffMsaCopperLinkLength           INTEGER,
    nbsSffMsaVendorName                 DisplayString,
    nbsSffMsaVendorOUI                  OCTET STRING,
    nbsSffMsaVendorPartNumber           DisplayString,
    nbsSffMsaVendorRevision             DisplayString,
    nbsSffMsaBaseChecksumMatch          INTEGER,
    nbsSffMsaLossOfSignalImplemented    INTEGER,
    nbsSffMsaLossOfSignalInverted       INTEGER,
    nbsSffMsaTxFault                    INTEGER,
    nbsSffMsaTxDisable                  INTEGER,
    nbsSffMsaRateSelectImplemented      INTEGER,
    nbsSffMsaMaxBitRate                 INTEGER,
    nbsSffMsaMinBitRate                 INTEGER,
    nbsSffMsaVendorSerialNumber         DisplayString,
    nbsSffMsaVendorDateCode             DisplayString,
    nbsSffMsaExtChecksumMatch           INTEGER
}

nbsSffMsaPhysicalIfIndex  OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "ifIndex from MIB2"

    REFERENCE   "rfc1213 (MIB-II)"

    ::= { nbsSffMsaEntry 1 }

nbsSffMsaIdentifier  OBJECT-TYPE
    SYNTAX      INTEGER {
      unknown               (1),
      gbic                  (2),
      moduleSolderedToBoard (3),
      sfpTransceiver        (4),
      threeHundredPinXBI    (5),
      xenpak                (6),
      xfp                   (7),
      xff                   (8),
      xfpe                  (9),
      xpak                  (10),
      x2                    (11),
      dwdm                  (12),
      qsfp                  (13),
      qsfpPlus              (14),
      cfp                   (15),
      cxp                   (16),
      mrvCxp                (130) -- 0x81 vendor-specific pre-MSA
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The MSA Identifier as reported in the MSA memory map, +1.

         Some of these MSA Identifiers are also represented in
         nbsCmmcPortType from the NBS-CMMC-MIB:

         nbsSffMsaIdentifier  nbsCmmcPortType
         -------------------  ---------------
                  gbic   (2)  gbic (147)
        sfpTransceiver   (4)  sfp  (125)
                   xfp   (7)  xfp  (197)
                  qsfp  (13)  qsfp (219)
                 qsfp+  (14)  qsfp (219)
                   cfp  (15)  cfp  (221)
                   cxp  (16)  cxp  (220)
                mrvCxp (130)  cxp  (220)"

    REFERENCE
        "Specification for SFP MSA, Table 3.2
         Specification for XFP MSA v4.5 section 5.2 & table 32
         InfiniBand Architecture Specification Annex A6, section 7.6.3
         CFP MSA Hardware Specification, Table 14 CFP NVR 1"

    ::= { nbsSffMsaEntry 2 }

nbsSffMsaExtIdentifier  OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The field should be set to 04h for all SFP modules indicating
         serial ID module definition.

         Not supported value: 0"

    REFERENCE   "Specification for SFP MSA"

    ::= { nbsSffMsaEntry 3 }

nbsSffMsaOpticalConnector OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The Optical Connector as reported in the MSA memory map, +1.

         Here is the list of values:
         1 - unknown
         2 - SC
         3 - Fiber Channel Style 1 copper connector
         4 - Fiber Channel Style 2 copper connector
         5 - BNC/TNC
         6 - Fiber Channel coaxial headers
         7 - Fiberjack
         8 - LC
         9 - MT-RJ
        10 - MU
        11 - SG
        12 - Optical pigtail
        13 - MPO Parllel Optic
        14 to 32 - Reserved
        33 - HSSDC II
        34 - Copper pigtail
        35 - RJ45
        36 to 128 - Reserved
        -- start InfiniBand Annex A6 (CXP)
        48 (30h: Passive Copper Cable Assembly)
        49 (31h: Active Copper Cable Assembly (ref. Byte 147))
        50 (32h: Active Optical Cable Assembly)
        51 (33h: Optical Transceiver w/ optical connector)
        -- end InfiniBand Annex A6 (CXP)
        129 - firewireA (MRV Specific)
        130 - cuRJ45 (MRV Specific)
        131 - cuRJ45 with LEDs (MRV Specific)
        132 - coaxBNC (MRV Specific)
        133 - sataDevicePlug (MRV Specific)
        134 - sataHostPlug (MRV Specific)
        135 - miniCoax (MRV Specific)
        136 to 256 - Vendor specific"

    REFERENCE
        "Specification for SFP MSA, Table 3.3, and
         InfiniBand Architecture Specification Annex A6, section 7.6.3"

    ::= { nbsSffMsaEntry 4 }

nbsSffMsaTransceiverCodes  OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(8..11))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The following bit significant indicators define the
         electronic or optical interfaces that are supported by the
         SFP transceiver. At least one bit shall be set in this field.
         For Fibre Channel SFPs, the Fibre Channel speed, transmission
         media, transmitter technology, and distance capability shall
         all be indicated.

           Reserved Standard Compliance Codes

          BitIndex  Byte  Bit  Description
                     3    0-7  Reserved
                     4    4-7  Reserved

           SONET Compliance codes

             12      4     3 - Reserved
             13      4     2 - OC48 Long reach
             14      4     1 - OC48 Intermediate reach
             15      4     0 - OC48 Short reach

             16      5     7 - Reserved
             17      5     6 - OC 12 Single mode long reach
             18      5     5 - OC 12 Single mode inter reach
             19      5     4 - OC 12 Multi-mode short reach
             20      5     3 - Reserved
             21      5     2 - OC 3 Single mode long reach
             22      5     1 - OC 3 Single mode inter reach
             23      5     0 - OC 3 Multi-mode short reach

           Gigabit Ethernet Compliance codes
            24-27    6    4-7 - Reserved
             28      6    3 - 1000BASE-T
             29      6    2 - 1000BASE-CX
             30      6    1 - 1000BASE-LX
             31      6    0 - 1000BASE-SX

           Fiber Channel link length
             32      7    7 - Very long distance
             33      7    6 - Short distance
             34      7    5 - Intermediate distance
             35      7    4 - Long distance

           Fibre Channel transmitter technology
            36-37    7    2 to 3 - Reserved
             38      7    1 - Longwave laser
             39      7    0 - Electrical inter-enclosure

             40      8    7 - Electrical intra-enclosure
             41      8    6 - Shortwave laster without OFC
             42      8    5 - Shortwave laster with OFC
             43      8    4 - Longwave laser
            44-47    8    0 to 3 - Reserved

           Fiber channel transmission media
             48      9    7 - Twin Axial pair
             49      9    6 - Shielded Twisted Pair
             50      9    5 - Miniature coax
             51      9    4 - Video coax
             52      9    3 - Multi-mode, 62.5m
             53      9    2 - Multi-mode, 50 m
             54      9    1 - Reserved
             55      9    0 - Single Mode

          Fiber channel speed
            56-58   10    5-7 - Reserved
             59     10    4 - 400 MBps
             60     10    3 - Reserved
             61     10    2 - 200 MBps
             62     10    1 - Reserved
             63     10    0 - 100 MBps"

    REFERENCE  "Specification for SFP MSA, Table 3.4"

    ::= {nbsSffMsaEntry  5 }

nbsSffMsaSerialEncoding OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported   (1),
        lineCode8To10  (2),
        lineCode4To5   (3),
        nrz            (4),
        manchester     (5),
        sonetScrambled (6),
        unspecified    (7)  -- This was missing from Table 3.5 of
    }                       -- SFP MSA
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The encoding value indicates the serial encoding mechanism
         that is the nominal design target of the particular
         transceiver. The value shall be contained in the serial data.
         For XFPs this object must return notSupported, and user should
         refer to these MIB objects
               nbsXfpSerialEncodingRZ
               nbsXfpSerialEncodingNRZ
               nbsXfpSerialEncodingSonetScrm
               nbsXfpSerialEncoding8B10B
               nbsXfpSerialEncoding64B"

    REFERENCE   "Specification for SFP MSA, Table 3.5"

    ::= { nbsSffMsaEntry 6 }

nbsSffMsaNominalBitRate OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The nominal bit rate (BR, nominal) is specified in units of
         100 Megabits per second, rounded off to the nearest 100
         Megabits per second. The bit rate includes those bits
         necessary to encode and delimit the signal as well as those
         bits carrying data information. A value of 0 indicates that
         the bit rate is not specified and must be determined from the
         transceiver technology. The actual information transfer rate
         will depend on the encoding of the data, as defined by the
         encoding value."
    REFERENCE   "Specification for SFP MSA, BR, Nominal"

    ::= { nbsSffMsaEntry 7 }

nbsSffMsaLinkLengthSmfKm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies the link length that is supported by the
         transceiver while operating in compliance with the applicable
         standards using single mode fiber. The value is in units of
         kilometers. A value of 255 means that the transceiver supports
         a link length greater than 254 km. A value of zero means that
         the transceiver does not support single mode fiber or that the
         length information must be determined from the transceiver
         technology. XFP uses this object for the same purpose."
    REFERENCE   "Specification for SFP MSA, Length (9m) - Km and
                  section 5.22 of XFP MSA INF_8077i"

    ::= { nbsSffMsaEntry 8 }

nbsSffMsaLinkLengthSmf100m OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies the link length that is supported by the
         transceiver while operating in compliance with the applicable
         standards using single mode fiber. The value is in units of
         100 meters. A value of 255 means that the transceiver supports
         a link length greater than 25.4 km. A value of zero means that
         the transceiver does not support single mode fiber or that the
         length information must be determined from the transceiver
         technology."
    REFERENCE   "Specification for SFP MSA, Length (9m) and section
                 5.22 of XFP MSA INF_8077i"


    ::= { nbsSffMsaEntry 9 }

nbsSffMsaLinkLengthMmf10m OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies link length that is supported by the
         transceiver while operating in compliance with applicable
         standards using 50 micron multimode OM2 [500MHz*km at 850nm,]
         fiber. The value is in units of 10 meters. A value of 255
         means that the transceiver supports a link length greater
         than 2.54 km. A value of zero means that the transceiver
         does not support 50 micron multimode fiber or that the
         length information must be determined from the transceiver
         technology."
    REFERENCE   "Specification for SFP MSA, Length (50m)"

    ::= { nbsSffMsaEntry 10 }

nbsSffMsaLinkLength625Mmf10m OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies link length that is supported by the
         transceiver while operating in compliance with applicable
         standards using 62.5 micron multimode OM1 [200 MHz*km at
         850nm, 500 MHz*km at 1310nm] fiber. The value is in units
         of 10 meters. A value of 255 means that the transceiver
         supports a link length greater than 2.54 km. A value of zero
         means that the transceiver does not support 62.5 micron
         multimode fiber or that the length information must determined
         from the transceiver technology. It is common for a multimode
         transceiver to support OM1, OM2 and OM3 fiber."

    REFERENCE   "Specification for SFP MSA, Length (62.5m) and
                section 5.22 of XFP MSA INF_8077i"

    ::= { nbsSffMsaEntry 11 }

nbsSffMsaCopperLinkLength OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies the minimum link length that is supported
         by the transceiver while operating in compliance with the
         applicable standards using copper cable. The value is in units
         of 1 meter. A value of 255 means that the transceiver supports
         a link length greater than 254 meters. A value of zero means
         that the transceiver does not support copper cables or that
         the length information must be determined from the transceiver
         technology. Further information about the cable design,
         equalization, and connectors is usually required to guarantee
         meeting a particular length requirement."
    REFERENCE   "Specification for SFP MSA, Length Copper & section
                 5.22 of XFP MSA INF_8077i"

    ::= { nbsSffMsaEntry 12 }

nbsSffMsaVendorName OBJECT-TYPE
    SYNTAX       DisplayString(SIZE(0..16))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The vendor name is a 16 character field that contains ASCII
         characters, The vendor name shall be the full name of the
         corporation, a commonly accepted abbreviation of the name of
         the corporation, the SCSI company code for the corporation,
         or the stock exchange code for the corporation. At least one
         of the vendor name or the vendor OUI fields shall contain
         valid serial data."
    REFERENCE  "Specification for SFP MSA, Vendor name"

    ::= { nbsSffMsaEntry 13 }

nbsSffMsaVendorOUI OBJECT-TYPE
    SYNTAX       OCTET STRING (SIZE(3))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The vendor organizationally unique identifier field (vendor
         OUI) is a 3-byte field that contains the IEEE Company
         Identifier for the vendor. A value of all zero in the 3-byte
         field indicates that the Vendor OUI is unspecified."
    REFERENCE  "Specification for SFP MSA, Vendor OUI"

    ::= { nbsSffMsaEntry 14 }

nbsSffMsaVendorPartNumber OBJECT-TYPE
    SYNTAX       DisplayString(SIZE(0..16))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The vendor part number (vendor PN) is a 16-byte field that
         contains ASCII characters, left-aligned, defining the vendor
         part number or product name.

         Unlike the MSA standard, agent returns size 0 string if the
         part number is unspecified and there will be no white space
         padding."
    REFERENCE  "Specification for SFP MSA, Vendor PN"

    ::= { nbsSffMsaEntry 15 }

nbsSffMsaVendorRevision OBJECT-TYPE
    SYNTAX       DisplayString(SIZE(0..4))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The vendor revision number (vendor rev) is a 4-byte field that
         contains ASCII characters, defining the vendor's product
         revision number.

         Unlike the MSA standard, agent returns size 0 string if the
         part number is unspecified and there will be no white space
         padding.

         This is a two byte string for XFP, four bytes for others."

    REFERENCE  "Specification for SFP MSA, Vendor Rev and XFP for MSA
                INF8077i section 5.32"

    ::= { nbsSffMsaEntry 16 }

nbsSffMsaBaseChecksumMatch OBJECT-TYPE
    SYNTAX      INTEGER {
        no             (1),
        yes            (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The check code is a one byte code that can be used to verify
         that the first 64 (0-63) bytes of serial information in the
         SFP transceiver is valid.Returns yes if checksum matches, no
         if checksum doesn't match. For XFPs, The check code shall be
         the low order 8 bits of the sum of the contents of all the
         bytes from byte 128 to byte 190, inclusive."
    REFERENCE  "Specification for SFP MSA, CC_BASE and Specification
                for XFP for MSA INF8077i section 5.36"

    ::= {nbsSffMsaEntry  17  }

nbsSffMsaLossOfSignalImplemented OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Byte 65 Bit 1. Signal as defined in the specification"
    REFERENCE  "Specification for SFP MSA Table 3.6"

    ::= { nbsSffMsaEntry 18 }

nbsSffMsaLossOfSignalInverted OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Byte 65 Bit 2. Signal as defined in the specification"
    REFERENCE  "Specification for SFP MSA Table 3.6"

    ::= { nbsSffMsaEntry 19 }

nbsSffMsaTxFault OBJECT-TYPE
    SYNTAX      INTEGER {
        off  (1),
        on   (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 65 Bit 3.TX_FAULT signal implemented. Reset definition
          in Section III and Laser Fault condition, Generated by laser
          safety system."
    REFERENCE   "Specification for SFP MSA Table 3.6 and
                Specification for XFP MSA INF8077i, section 5.11 &
                table 39"

    ::= { nbsSffMsaEntry 20 }

nbsSffMsaTxDisable OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 65 Bit 4.TX_DISABLE is implemented and disables the
          serial output."
    REFERENCE   "Specification for SFP MSA Table 3.6"

    ::= { nbsSffMsaEntry 21 }

nbsSffMsaRateSelectImplemented OBJECT-TYPE
    SYNTAX      INTEGER {
        no      (1),
        yes     (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 65 Bit 5.If this bit is set then active control of the
          rate select pin is required to change rates. If bit is not
          set, no control of pin is required. In all cases, compliance
          with multiple rate standards should be determined by
          Transceiver codes in bytes 4,5,6, and 10. See table 3.4"
    REFERENCE   "Specification for SFP MSA Table 3.6"

    ::= { nbsSffMsaEntry 22 }

nbsSffMsaMaxBitRate OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The upper bit rate limit at which the SFP transceiver will
         still meet its specifications (BR, max) is specified in units
         of 1% above the nominal bit rate. A value of zero indicates
         that this field is not specified."
    REFERENCE  "Specification for SFP MSA  BR,max"

    ::= { nbsSffMsaEntry 23 }

nbsSffMsaMinBitRate OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The lower bit rate limit at which the SFP transceiver will
         still meet its specifications (BR, min) is specified in units
         of 1% below the nominal bit rate. A value of zero indicates
         that this field is not specified."
    REFERENCE  "Specification for SFP MSA  BR,min"

    ::= { nbsSffMsaEntry 24 }

nbsSffMsaVendorSerialNumber OBJECT-TYPE
    SYNTAX       DisplayString(SIZE(0..16))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The vendor serial number (vendor SN) is a 16 character field
         that contains ASCII characters, left-aligned and padded on
         the right with ASCII spaces (20h), defining the vendor's
         serial number for the SFP transceiver. A value of all zero
         in the 16-byte field indicates that the vendor SN is
         unspecified."

    REFERENCE  "Specification for SFP MSA  Vendor SN and XFP for MSA
                INF8077i section 5.38"

    ::= { nbsSffMsaEntry 25 }

nbsSffMsaVendorDateCode OBJECT-TYPE
    SYNTAX       DisplayString(SIZE(6..8))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The date code is an 8-byte field that contains the vendor's
         date code in ASCII characters. The date code is mandatory."
    REFERENCE  "Specification for SFP MSA Table 3.7 and XFP for MSA
                INF8077i section 5.39"

    ::= { nbsSffMsaEntry 26 }

nbsSffMsaExtChecksumMatch OBJECT-TYPE
    SYNTAX      INTEGER {
        no             (1),
        yes            (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The check code is a one byte code that can be used to verify
         that the first 32 bytes of extended serial information in the
         SFP transceiver is valid. The check code shall be the low
         order 8 bits of the sum of the contents of all the bytes from
         byte 64 to byte 94, inclusive."
    REFERENCE  "Specification for SFP MSA, CC_BASE"

    ::= {nbsSffMsaEntry  27  }


-- **********************************************************
-- nbsSffWdmGrp DWDM objects
-- **********************************************************

nbsSffWdmTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NbsSffWdmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Operations, Administration, and Management information"
    ::= { nbsSffWdmGrp 1 }

nbsSffWdmEntry OBJECT-TYPE
    SYNTAX  NbsSffWdmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Represents WDM properties of a port."
    INDEX { nbsSffMsaPhysicalIfIndex }
    ::= { nbsSffWdmTable 1 }

NbsSffWdmEntry ::= SEQUENCE {
    nbsSffWdmClassOfPower               INTEGER,
    nbsSffWdmClassOfTemperature         INTEGER,
    nbsSffWdmClassOfWdm                 INTEGER,
    nbsSffWdmOpticalReach               INTEGER,
    nbsSffWdmMaxCaseTemperature         INTEGER,
    nbsSffWdmMinCaseTemperature         INTEGER,
    nbsSffWdmMaxSupplyCurrent           INTEGER,
    nbsSffWdmNumberOfChannels           INTEGER,
    nbsSffWdmChannelSpacing             INTEGER,
    nbsSffWdmVariableDecisionThreshold  INTEGER,
    nbsSffWdmWavelengthMonitorType      INTEGER,
    nbsSffWdmExtTransmitPowerType       INTEGER,
    nbsSffWdmVariableOpticalAttenuator  INTEGER,
    nbsSffWdmPilotToneFunctionality     INTEGER,
    nbsSffWdmOptionalInterruptPin       INTEGER,
    nbsSffWdmLaserWavelength            DisplayString,
    nbsSffWdmFrequency                  NbsTcMHz,
    nbsSffWdmChannelBand                NbsCmmcChannelBand,
    nbsSffWdmChannelNumber              INTEGER
}

nbsSffWdmClassOfPower OBJECT-TYPE
    SYNTAX      INTEGER {
        under1W          (1),
        oneToOneAndHalfW (2),
        overOneAndHalfW  (3),
        reserved         (4)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Extended identifier of class of Power."
    REFERENCE   "Specification for DWDM SFP Transceiver, section 2.2.3"

    ::= {nbsSffWdmEntry  1 }

nbsSffWdmClassOfTemperature OBJECT-TYPE
    SYNTAX      INTEGER {
        class0           (1),
        class1           (2),
        class2           (3),
        class3           (4)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Extended identifier of class of Temperature.
         class0 - Temperature in [-5, 70C]
         class1 - Temperature in [-40, 85C]
         class2 - reserved
         class3 - defined by MIB objects nbsSffDwdmMaxCaseTemperature &
                  nbsSffDwdmMinCaseTemperature"
    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.3"

    ::= {nbsSffWdmEntry  2 }

nbsSffWdmClassOfWdm OBJECT-TYPE
    SYNTAX      INTEGER {
        noWdm           (1),
        cwdm            (2),
        dwdm            (3),
        reserved        (4)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Extended identifier of class of WDM.
         1 - No WDM
         2 - CWDM
         3 - DWDM
         4 - Reserved"
    REFERENCE   "Specification for DWDM SFP Transceiver, section 2.2.3"

    ::= {nbsSffWdmEntry  3 }

nbsSffWdmOpticalReach OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies the link length in kilometers that is
         supported by the transceiver while operating in compliance
         with the applicable standards using single mode fiber."
    REFERENCE   "Specification for DWDM SFP Transceiver, section 2.2.8"

    ::= { nbsSffWdmEntry 4 }

nbsSffWdmMaxCaseTemperature OBJECT-TYPE
    SYNTAX      INTEGER (-2147483647..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This field defines the maximum operating case temperature in
         Celsius. For WDMs, this value is in byte 15 in A0h, For XFPs,
         this value is in byte 190."
    REFERENCE   "Specification for DWDM SFP Transceiver, section 2.2.9
                and Specification for XFP MSA, INF8077i section 5.35"
    DEFVAL { 70 }
    ::= { nbsSffWdmEntry 5 }

nbsSffWdmMinCaseTemperature OBJECT-TYPE
    SYNTAX      INTEGER (-2147483647..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This field defines the minimum operating case temperature
         in Celsius."
    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.10"

    ::= { nbsSffWdmEntry 6 }

nbsSffWdmMaxSupplyCurrent OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This field defines the maximum supply current, in milli Amps,
         which the module will consume under worst case conditions."
    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.11"

    ::= { nbsSffWdmEntry 7 }

nbsSffWdmNumberOfChannels OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This specifies the tuning range from 1 to 63, where 1
         indicates this module is not tunable by user commands."
    REFERENCE   "Specification for DWDM SFP Transceiver, section 2.2.12"

    ::= { nbsSffWdmEntry 8 }

nbsSffWdmChannelSpacing OBJECT-TYPE
    SYNTAX      INTEGER {
        notTunable    (1),
        ghz50         (2),
        ghz100        (3),
        ghz200        (4)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This field identifies the densest channel spacing the module
         is compatible with and the number of channels over which the
         module may be tuned by user command."
    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.12"

    ::= { nbsSffWdmEntry 9 }

nbsSffWdmVariableDecisionThreshold  OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported    (1),
        supported       (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "DWDM Variable Decission Threshold."

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.14"

    ::= {nbsSffWdmEntry  10 }

nbsSffWdmWavelengthMonitorType  OBJECT-TYPE
    SYNTAX      INTEGER {
        wavelength       (1),
        laserTemperature (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "DWDM Wavelength monitor type in A2 byte."

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.14"

    ::= {nbsSffWdmEntry  11 }

nbsSffWdmExtTransmitPowerType  OBJECT-TYPE
    SYNTAX      INTEGER {
        pwrDefault      (1),
        pwrExtended     (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "DWDM Extended Transmit Power Type."

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.14"

    ::= {nbsSffWdmEntry  12 }

nbsSffWdmVariableOpticalAttenuator  OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "DWDM Variable Optical Atttenuator."

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.14"

    ::= {nbsSffWdmEntry  13 }

nbsSffWdmPilotToneFunctionality  OBJECT-TYPE
    SYNTAX      INTEGER {
        pilotToneNone               (1),
        pilotToneDetection          (2),
        pilotToneInjection          (3),
        pilotToneInjectionDetection (4),
        pilotToneEnhanced           (5)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "DWDM Pilot Tone Functionality."

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.14"

    ::= {nbsSffWdmEntry  14 }

nbsSffWdmOptionalInterruptPin  OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported   (1),
        supported      (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "DWDM Optional Interrupt Pin."

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.14"

    ::= {nbsSffWdmEntry  15 }

nbsSffWdmLaserWavelength OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..150))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Nominal transmitter output wavelength.

         For SFPs, per Specification for DWDM SFP Transceiver,
         section 2.2.1, The laser wavelength
         is equal to the 16 bit integer value in nm (16 bit value with
         byte 60 as high order byte and byte 61 as low order byte) and
         with the fractional part of the wavelength in units of 0.01nm
         (byte 62).

         For XFPs,per specification for INF8077i, see section 5.33"

    REFERENCE  "Specification for DWDM SFP Transceiver, section 2.2.18"

    ::= { nbsSffWdmEntry 16 }

nbsSffWdmFrequency  OBJECT-TYPE
    SYNTAX      NbsTcMHz
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Nominal transmitter frequency, in MHz"

    ::= {nbsSffWdmEntry  17 }

nbsSffWdmChannelBand  OBJECT-TYPE
    SYNTAX      NbsCmmcChannelBand
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "ITU Channel Band"
    ::= {nbsSffWdmEntry  18 }

nbsSffWdmChannelNumber  OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "ITU Channel Number"

    ::= {nbsSffWdmEntry  19 }


-- ************************
-- Diagnostics objects ****
-- ************************

nbsSffDiagsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NbsSffDiagsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Operations, Administration, and Management information"
    ::= { nbsSffDiagnosticsGrp 1 }

nbsSffDiagsEntry  OBJECT-TYPE
    SYNTAX  NbsSffDiagsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Represents Digital Diagnostics of a port."
    INDEX { nbsSffMsaPhysicalIfIndex }
    ::= { nbsSffDiagsTable 1 }

NbsSffDiagsEntry ::= SEQUENCE {
    nbsSffDiagsRateIdentifier             INTEGER,
    nbsSffDiagsLinkLengthOm3              INTEGER,
    nbsSffDiagsLaserWavelength            INTEGER,
    nbsSffDiagsLROutputImplemented        INTEGER,
    nbsSffDiagsPowerLevelDeclaration      INTEGER,
    nbsSffDiagsCooledTranDeclaration      INTEGER,
    nbsSffDiagsAddressChangeRequired      INTEGER,
    nbsSffDiagsPowerMeasurementType       INTEGER,
    nbsSffDiagsExternallyCalibrated       INTEGER,
    nbsSffDiagsInternallyCalibrated       INTEGER,
    nbsSffDiagsDDMonitoringImplemented    INTEGER,
    nbsSffDiagsOptRateSelectControl       INTEGER,
    nbsSffDiagsOptAppSelectControl        INTEGER,
    nbsSffDiagsOptSoftRSControlMon        INTEGER,
    nbsSffDiagsOptSoftRxLoSMonitoring     INTEGER,
    nbsSffDiagsOptSoftTxFaultMonitoring   INTEGER,
    nbsSffDiagsOptSoftTxDisable           INTEGER,
    nbsSffDiagsOptAlarmWarningFlags       INTEGER,
    nbsSffDiags8472Compliance             INTEGER,
    nbsSffDiagsTemperature                INTEGER,
    nbsSffDiagsTempLowAlarm               INTEGER,
    nbsSffDiagsTempLowWarn                INTEGER,
    nbsSffDiagsTempHighWarn               INTEGER,
    nbsSffDiagsTempHighAlarm              INTEGER,
    nbsSffDiagsVoltage                    DisplayString,
    nbsSffDiagsVoltLowAlarm               INTEGER,
    nbsSffDiagsVoltLowWarn                INTEGER,
    nbsSffDiagsVoltHighWarn               INTEGER,
    nbsSffDiagsVoltHighAlarm              INTEGER,
    nbsSffDiagsBiasCurrent                DisplayString,
    nbsSffDiagsBiasLowAlarm               INTEGER,
    nbsSffDiagsBiasLowWarn                INTEGER,
    nbsSffDiagsBiasHighWarn               INTEGER,
    nbsSffDiagsBiasHighAlarm              INTEGER,
    nbsSffDiagsTxPower                    DisplayString,
    nbsSffDiagsTxPowerLowAlarm            INTEGER,
    nbsSffDiagsTxPowerLowWarn             INTEGER,
    nbsSffDiagsTxPowerHighWarn            INTEGER,
    nbsSffDiagsTxPowerHighAlarm           INTEGER,
    nbsSffDiagsRxPower                    DisplayString,
    nbsSffDiagsRxPowerLowAlarm            INTEGER,
    nbsSffDiagsRxPowerLowWarn             INTEGER,
    nbsSffDiagsRxPowerHighWarn            INTEGER,
    nbsSffDiagsRxPowerHighAlarm           INTEGER,
    nbsSffDiagsDataReadyBarState          INTEGER,
    nbsSffDiagsRxLosState                 INTEGER,
    nbsSffDiagsTxFaultState               INTEGER,
    nbsSffDiagsSoftRateSelect             INTEGER,
    nbsSffDiagsRateSelectState0           INTEGER,
    nbsSffDiagsRS1State                   INTEGER,
    nbsSffDiagsSoftTxDisableSelect        INTEGER,
    nbsSffDiagsTxDisableState             INTEGER,
--  Calibration constants
    nbsSffDiagsBiasCurrentSlope           DisplayString,
    nbsSffDiagsBiasCurrentOffset          INTEGER,
    nbsSffDiagsTxPowerSlope               DisplayString,
    nbsSffDiagsTxPowerOffset              INTEGER,
    nbsSffDiagsTemperatureSlope           DisplayString,
    nbsSffDiagsTemperatureOffset          INTEGER,
    nbsSffDiagsVoltageSlope               DisplayString,
    nbsSffDiagsVoltageOffset              INTEGER,

--  Extended module control
    nbsSffDiagsPowerLevelSelect           INTEGER,
    nbsSffDiagsPowerLevelOpState          INTEGER,
    nbsSffDiagsSoftRSSelect               INTEGER
}

nbsSffDiagsRateIdentifier  OBJECT-TYPE
    SYNTAX      INTEGER {
       notSupported (1),
       rate421G     (2),
       rate842GRx   (3),
       rate842GRxTx (4),
       rate842GTx   (5)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The rate identifier byte refers to several (optional) industry
         standard definitions of Rate_Select or Application_Select
         control behaviors, intended to manage transceiver optimization
         for multiple operating rates."

    REFERENCE   "Table 3.6a of SFF-8472 Rev 10.3 Diagnostic monitoring
                 interface for optical transceiver"

    ::= { nbsSffDiagsEntry 1 }

nbsSffDiagsLinkLengthOm3 OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This value specifies link length that is supported by the
         transceiver while operating in compliance with applicable
         standards using 50 micron multimode OM3 [2000 MHz*km] fiber.
         The value is in units of 10 meters. A value of 255 means that
         the transceiver supports a link length greater than 2.54 km.
         A value of zero means that the transceiver does not support
         50 micron multimode fiber or that the length information must
         be determined from the transceiver technology."
    REFERENCE   "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3)"

    ::= { nbsSffDiagsEntry 2 }

nbsSffDiagsLaserWavelength OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Nominal transmitter output wavelength at room temperature. 16
         bit value with byte 60 as high order byte and byte 61 as low
         order byte. The laser wavelength is equal to the the 16 bit
         integer value in nm. This field allows the user to read the
         laser wavelength directly, so it is not necessary to infer
         it from the transceiver Code for Electronic Compatibility
         (bytes 3 to 10). This also allows specification of wavelengths
         not covered in bytes 3 to 10, such as those used in coarse WDM
         systems."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3)"

    ::= { nbsSffDiagsEntry 3 }

nbsSffDiagsLROutputImplemented OBJECT-TYPE
    SYNTAX      INTEGER {
        no            (1),
        yes           (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 64, bit 0. Value of 1 identifies a conventional
          limiting (or unspecified) receiver output. Value of 2
          identifies a linear receiver output."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.7"

    ::= { nbsSffDiagsEntry 4 }

nbsSffDiagsPowerLevelDeclaration OBJECT-TYPE
    SYNTAX      INTEGER {
        level1        (1),
        level2        (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 64, bit 1. Value 1 identifies Power Level 1 (or
          unspecified) requirements. Value 2 identifies a Power
          Level2 requirements."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.7"

    ::= { nbsSffDiagsEntry 5 }

nbsSffDiagsCooledTranDeclaration OBJECT-TYPE
    SYNTAX      INTEGER {
        uncooled      (1),
        cooled        (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         " Byte 64, bit 2. Value 1 identifies a conventional
           uncooled (or unspecified) laser implementation. Value 2
           identifies a cooled laser transmitter implementation."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.7"

    ::= { nbsSffDiagsEntry 6 }

nbsSffDiagsAddressChangeRequired OBJECT-TYPE
    SYNTAX      INTEGER {
        no            (1),
        yes           (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 92, bit 2 indicates whether or not it is necessary for
          the host to perform an address change sequence before
          accessing information at 2-wire serial address A2h. If this
          bit is not set, the host may simply read from either address,
          A0h or A2h, by using that value in the address byte during
          the 2-wire communication sequence. If the bit is set, the
          defined sequence must be executed prior to accessing
          information at address A2h."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.9"

    ::= { nbsSffDiagsEntry 7 }

nbsSffDiagsPowerMeasurementType OBJECT-TYPE
    SYNTAX      INTEGER {
        oma           (1),
        averagePower  (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 92, bit 3 indicates whether the received power
          measurement represents average input optical power or OMA.
          If the bit is set, average power is monitored. If it is not,
          OMA is monitored. For XFPs, the address location would be
          byte 220, bit 3"
    REFERENCE  "Specification for Diagnostic monitoring interface for
                optical transceiver (SFF-8472 rev 10.3), Table 3.9
                Specification for XFP for MSA, INF8077i, section 5.40
                table 56"

    ::= { nbsSffDiagsEntry 8 }

nbsSffDiagsExternallyCalibrated OBJECT-TYPE
    SYNTAX      INTEGER {
        no            (1),
        yes           (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 92, bit 4 Externally Calibrated
          Two calibration options are possible if bit 6 has been set
          indicating that digital diagnostic monitoring has been
          implemented. If bit 4 is set, the reported values are A/D
          counts which must be converted to real world units using
          calibration values read using 2 wire serial address
          1010001X (A2h) from bytes 56 to 95."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.9"

    ::= { nbsSffDiagsEntry 9 }

nbsSffDiagsInternallyCalibrated OBJECT-TYPE
    SYNTAX      INTEGER {
        no            (1),
        yes           (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 92, bit 5 Internally Calibrated.
          Two calibration options are possible if bit 6 has been set
          indicating that digital diagnostic monitoring has been
          implemented. If bit 5, Internally calibrated is set, the
          transceiver directly reports calibrated values in units of
          current, power etc."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.9"

    ::= { nbsSffDiagsEntry 10 }

nbsSffDiagsDDMonitoringImplemented OBJECT-TYPE
    SYNTAX      INTEGER {
        no            (1),
        yes           (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 92, bit 6. If this bit is set indicating that digital
          diagnostic monitoring has been implemented, received power
          monitoring, transmitted power monitoring, bias current
          monitoring, supply voltage monitoring and temperature
          monitoring must all be implemented. Additionally, alarm and
          warning thresholds must be written as specified in this
          document at locations 00 to 55 on 2 wire serial address
          1010001X (A2h)"

    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.9"

    ::= { nbsSffDiagsEntry 11 }

nbsSffDiagsOptRateSelectControl OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Byte 93 bit 1. Optional Rate Select control implemented per
          SFF-8431. Sets to 1 if not implemented, 2 if implemented."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.10"

    ::= { nbsSffDiagsEntry 12 }

nbsSffDiagsOptAppSelectControl OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Based on byte 93 bit 2. Optional Application Select control
          implemented per SFF-8079. Sets to 1 if not
          implemented, 2 if implemented."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.10"

    ::= { nbsSffDiagsEntry 13 }

nbsSffDiagsOptSoftRSControlMon OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Based on byte 93 bit 3. Optional soft RATE_SELECT control and
          monitoring implemented. Sets to 1 if not implemented,
          2 if implemented."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                optical transceiver (SFF-8472 rev 10.3), Table 3.10
                and Table 3.11"

    ::= { nbsSffDiagsEntry 14 }

nbsSffDiagsOptSoftRxLoSMonitoring OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Based on byte 93 bit 4. Optional soft RX_LOS monitoring
          implemented. Sets to 1 if not implemented, 2 if implemented."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                optical transceiver (SFF-8472 rev 10.3), Table 3.10
                and Table 3.11"

    ::= { nbsSffDiagsEntry 15 }

nbsSffDiagsOptSoftTxFaultMonitoring OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Based on byte 93 bit 5. Optional soft TX_FAULT monitoring
          implemented. Sets to 1 if not implemented, 2 if implemented."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                optical transceiver (SFF-8472 rev 10.3), Table 3.10
                and Table 3.11"

    ::= { nbsSffDiagsEntry 16 }

nbsSffDiagsOptSoftTxDisable OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Based on byte 93 bit 6. Optional soft TX_DISABLE control and
          monitoring implemented.Sets to 1 if not implemented, 2 if
          implemented."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                optical transceiver (SFF-8472 rev 10.3), Table 3.10
                and Table 3.11"

    ::= { nbsSffDiagsEntry 17 }

nbsSffDiagsOptAlarmWarningFlags OBJECT-TYPE
    SYNTAX      INTEGER {
        notImplemented (1),
        implemented    (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Based on byte 93 bit 7. Optional Alarm/warning flags
          implemented for all monitored quantities.Sets to 1 if
          not implemented, 2 if implemented. See Table 3.18"
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.10"

    ::= { nbsSffDiagsEntry 18 }

nbsSffDiags8472Compliance  OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported    (1),
        rev9dot3of8472  (2),
        rev9dot5of8472  (3),
        rev10dot2of8472 (4),
        rev10dot4of8472 (5),
        rev11dot0of8472 (6),
        rev11dot3of8472 (7),
        rev11dot4of8472 (8),
        rev12dot0of8472 (9),
        unallocated   (256)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Byte 94 contains an unsigned integer that indicates which
         feature set(s) are implemented in the transceiver."
    REFERENCE  "Specification for Diagnostic monitoring interface for
                 optical transceiver (SFF-8472 rev 10.3), Table 3.12"

    ::= {nbsSffDiagsEntry  19 }

nbsSffDiagsTemperature OBJECT-TYPE
    SYNTAX      INTEGER  (-2147483647..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Module temperature in centigradese."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 20 }

nbsSffDiagsTempLowAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined temperature for low alarm threshold in
         Centigrades."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15 and
                 XFP for MSA INF8077i table 35."

    ::= { nbsSffDiagsEntry 21 }

nbsSffDiagsTempLowWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined temperature for low warning threshold in
         Centigrades"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF8077i table 35."

    ::= { nbsSffDiagsEntry 22 }

nbsSffDiagsTempHighWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined temperature for high warning threshold in
         Centigrades"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF8077i table 35."

    ::= { nbsSffDiagsEntry 23 }

nbsSffDiagsTempHighAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined temperature for high alarm threshold in
         Centigrades"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 24 }

nbsSffDiagsVoltage OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Internally measured supply voltage in transceiver in the
         units of Volts. Bytes 98 & 99 of Address A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 25 }

nbsSffDiagsVoltLowAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined voltage for low alarm threshold in the
         units of Volts."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15"

    ::= { nbsSffDiagsEntry 26 }

nbsSffDiagsVoltLowWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined voltage for low warning threshold in the
         units of Volts."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15"

    ::= { nbsSffDiagsEntry 27 }

nbsSffDiagsVoltHighWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined voltage for high warning threshold in the
         units of Volts."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15"

    ::= { nbsSffDiagsEntry 28 }

nbsSffDiagsVoltHighAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined voltage for high alarm threshold in the
         units of Volts."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15"

    ::= { nbsSffDiagsEntry 29 }

nbsSffDiagsBiasCurrent OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Internally measured TX Bias Current in the units of mA.
         Bytes 100 & 101 of Address A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 30 }

nbsSffDiagsBiasLowAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined bias current for low alarm threshold in the
         units of mA"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 31 }

nbsSffDiagsBiasLowWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined bias current for low warning threshold in
         the units of mA"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 32 }

nbsSffDiagsBiasHighWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined bias current for high warning threshold in the
         units of mA"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 33 }

nbsSffDiagsBiasHighAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined bias current for high alarm threshold in the
         units of mA"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 34 }

nbsSffDiagsTxPower OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Measured TX output power in the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 35 }

nbsSffDiagsTxPowerLowAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Tx output power for low alarm threshold in the
         units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 36 }

nbsSffDiagsTxPowerLowWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Tx output power for low warning threshold in the
         units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 37 }

nbsSffDiagsTxPowerHighWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Tx output power for high warning threshold in the
         units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 38 }

nbsSffDiagsTxPowerHighAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Tx output power for high alarm threshold in
         the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 39 }

nbsSffDiagsRxPower OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Measured received optical power.
          Received power, RX_PWR, is given in uW by the
          following equation:
          Rx_PWR (uW) = Rx_PWR(4) * Rx_PWR AD
          4 (16 bit unsigned integer) +
          Rx_PWR(3) * Rx_PWR AD
          3 (16 bit unsigned integer) +
          Rx_PWR(2) * Rx_PWR AD
          2 (16 bit unsigned integer) +
          Rx_PWR(1) * Rx_PWR AD (16 bit unsigned integer) +
          Rx_PWR(0)"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 40 }

nbsSffDiagsRxPowerLowAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Rx input power for low alarm threshold in
         the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 41 }

nbsSffDiagsRxPowerLowWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Rx input power for low warning threshold in
         the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 42 }

nbsSffDiagsRxPowerHighWarn OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Rx input power for high warning threshold in the
         units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 43 }

nbsSffDiagsRxPowerHighAlarm OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Predefined Rx input power for high alarm threshold in
         the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.15  and
                 XFP for MSA INF 8077i table 35."

    ::= { nbsSffDiagsEntry 44 }

nbsSffDiagsDataReadyBarState OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Indicates transceiver has achieved power up and data is ready.
         Bit remains high until data is ready to be read at which time
         the device sets the bit low. Byte 110, bit 0 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 45 }

nbsSffDiagsRxLosState OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Digital state of the RX_LOS Output Pin. Updated within 100ms
         of change on pin. Byte 110, bit 1 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 46 }

nbsSffDiagsTxFaultState OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Digital state of the TX Fault Output Pin. Updated within
         100ms of change on pin. Byte 110, bit 2 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 47 }

nbsSffDiagsSoftRateSelect OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Read/write bit that allows software rate select control.
         Writing 1 selects full bandwidth operation. This bit is
         OR'd with the hard Rate_Select, AS(0) or RS(0) pin value.
         See Table 3.11 for timing requirements. Default at power
         up is logic zero/low. If Soft Rate Select is not implemented,
         the transceiver ignores the value of this bit. Note: Specific
         transceiver behaviors of this bit are identified in Table 3.6a
         and referenced documents. See Table 3.18a, byte 118, bit 3 for
         Soft RS(1) Select. Byte 110, bit 3 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 48 }

nbsSffDiagsRateSelectState0 OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Digital state of the SFP Rate_Select Input Pin. Updated within
         100ms of change on pin. Note: This pin is also known as AS(0)
         in SFF-8079 and RS(0) in SFF-8431. Byte 110, bit 4 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 49 }

nbsSffDiagsRS1State OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Reserved for digital state of input pin AS(1) per SFF-8079 and
         RS(1) per SFF-8431. Updated within 100ms of change on pin. See
         A2h Byte 118, Bit 3 for Soft RS(1) Select control information.
         Byte 110, bit 5 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 50 }

nbsSffDiagsSoftTxDisableSelect OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Read/write bit that allows software disable of laser.
         Writing 1 disables laser. See Table 3.11 for enable/
         disable timing requirements. This bit is OR d with the hard
         TX_DISABLE pin value. Note, per SFP MSA TX_DISABLE pin is
         default enabled unless pulled low by hardware. If Soft TX
         Disable is not implemented, the transceiver ignores the value
         of this bit. Default power up value is zero/low.
         Byte 110, bit 6 of A2h"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 51 }

nbsSffDiagsTxDisableState OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Digital state of the TX Disable Input Pin. Updated within
          100ms of change on pin."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.17"

    ::= { nbsSffDiagsEntry 52 }

nbsSffDiagsBiasCurrentSlope OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (unsigned) calibration data, laser bias
          current measured in mA."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 53 }

nbsSffDiagsBiasCurrentOffset OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (signed two's complement) calibration data,
          laser bias current measured in mA."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 54 }

nbsSffDiagsTxPowerSlope OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (unsigned) calibration data, transmitter
          coupled output power in the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 55 }

nbsSffDiagsTxPowerOffset OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (signed two's complement) calibration data,
          transmitter coupled output power in the units of dBm."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 56 }

nbsSffDiagsTemperatureSlope OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (unsigned) calibration data, internal module
          temperature in C"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 57 }

nbsSffDiagsTemperatureOffset OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (signed two's complement) calibration data,
          internal module temperature in C"
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 58 }

nbsSffDiagsVoltageSlope OBJECT-TYPE
    SYNTAX      DisplayString(SIZE(0..16))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (unsigned) calibration data, internal module
          supply voltage in Volts."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 59 }

nbsSffDiagsVoltageOffset OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fixed decimal (signed two's complement) calibration data,
          internal module supply voltage in Volts."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.16"

    ::= { nbsSffDiagsEntry 60 }

nbsSffDiagsPowerLevelSelect OBJECT-TYPE
    SYNTAX      INTEGER {
        off        (1),
        on         (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Reserved for SFF-8431 Power Level (maximum power dissipation)
          enable.
          Value of zero disables Power Level 2 (1.0 Watt max).
          Value of one enables Power Level 2 (1.5 Watt max).
          Refer to Table 3.7 for Power Level declaration.
          Refer to Table 3.11 for timing."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.18a of A2h"

    ::= { nbsSffDiagsEntry 61 }

nbsSffDiagsPowerLevelOpState OBJECT-TYPE
    SYNTAX      INTEGER {
        off        (1),
        on         (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Reserved for SFF-8431 Power Level (maximum power dissipation)
          status.Value of zero indicates Power Level 1 operation
         (1.0 Watt max) Value of one indicates Power Level 2 operation
         (1.5 Watt max).Refer to Table 3.7 for Power Level declaration.
         Refer to Table 3.11 for timing."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.18a of A2h"

    ::= { nbsSffDiagsEntry 62 }

nbsSffDiagsSoftRSSelect OBJECT-TYPE
    SYNTAX      INTEGER {
        off        (1),
        on         (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Read/write bit that allows software Tx rate control. Writing
          1 selects full speed Tx operation. This bit is OR d with the
          hard RS(1) pin value.See Table 3.11 for timing requirements.
          Default at power up is logic zero/low. If Soft RS(1) is not
          implemented, the transceiver ignores the value of this bit.
          Note: Specific transceiver behaviors of this bit are
          identified in Table 3.6a and referenced documents. See
          Table 3.17, byte 110, bit 3 for Soft RS(0) Select."
    REFERENCE   "Diagnostic Monitoring Interface for Optical
                 Transceivers, SFF-8472 Rev 10.3 Table 3.18a of A2h"

    ::= { nbsSffDiagsEntry 63 }


--
-- the MSA Extensions table
--

nbsSffMsxTableSize OBJECT-TYPE
        SYNTAX      Unsigned32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
          "The number of entries in nbsSffMsxTable"
        ::= { nbsSffMsxGrp 1 }

nbsSffMsxTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF NbsSffMsxEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Non-standardized extensions to the Multi-Source Agreement"
    ::= { nbsSffMsxGrp 2 }

nbsSffMsxEntry      OBJECT-TYPE
    SYNTAX  NbsSffMsxEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Pluggable Transceiver information and settings yet to be
         standardized"
    INDEX { nbsSffMsxPhysicalIfIndex }
    ::= { nbsSffMsxTable 1 }

NbsSffMsxEntry ::= SEQUENCE {
    nbsSffMsxPhysicalIfIndex   InterfaceIndex,
    nbsSffMsxHasSgmiiPhy       INTEGER
}

nbsSffMsxPhysicalIfIndex  OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "MIB2 ifIndex of this port"
    ::= { nbsSffMsxEntry 1 }

nbsSffMsxHasSgmiiPhy OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        no           (2),
        yes          (3)
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Some Gigabit Ethernet compatible SFP transeivers, such as
         SFP-FDSGMII-M and SFP-FDSGMII-LR, have a built-in SGMII PHY.
         Those that do require special autonegotiation processing,
         without which autonegotiation will fail and the port will be
         unable to pass traffic.

         If the SFP has a built-in SGMII PHY, the user should set this
         to yes(3)."
    DEFVAL { no }
    ::= { nbsSffMsxEntry 2 }

END