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
|
-- File : oasfp.mib
-- Description : Private MIB for SFP Modules
--
-- By : Ilan Weber
-- Version : Revision: 0.7
-- Original Date : May 26, 2005
-- Last Change : Date: January 15, 2006
-- ==========================================================================
--
--
-- Copyright (c) 2005 MRV. All Rights Reserved.
--
-- Reproduction of this document is authorized on condition that this
-- copyright notice is included. This MRV SNMP MIB Specification
-- embodies MRV proprietary intellectual property. MRV
-- retains all title and ownership in the specification, including any
-- revisions.
--
-- It is MRV's intent to encourage the widespread use of this
-- specification in connection with the management of MRV's
-- products. MRV grants vendor, end-users, and other interested
-- parties a non-exclusive license to use this specification in
-- connection with the management of MRV's products.
--
-- This specification is supplied "AS IS," and MRV makes no
-- warranty, either express or implied, as to the use, operation,
-- condition, or performance of the specification.
--
-- MRV retains the right to change this MIB without notification.
--
OA-SFP-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE FROM SNMPv2-SMI
Integer32, Unsigned32 FROM SNMPv2-SMI
-- TRAP-TYPE FROM RFC-1215
TEXTUAL-CONVENTION,
DisplayString FROM SNMPv2-TC
MODULE-IDENTITY FROM SNMPv2-SMI
oaccess FROM OS-COMMON-TC-MIB
MODULE-COMPLIANCE,
-- NOTIFICATION-GROUP FROM SNMPv2-CONF
OBJECT-GROUP FROM SNMPv2-CONF;
------------------------------------------------------------------------------
-- Object Identifier Definition
------------------------------------------------------------------------------
oaSfpMib MODULE-IDENTITY
LAST-UPDATED "200505260000Z" -- 26 May, 2005
ORGANIZATION "MRV Communications"
CONTACT-INFO "For technical support, please contact your service
channel"
DESCRIPTION
"This MIB defines objects of pluggable modules
(such as SFP modules). The MIB objects defined in this MIB are
based on the Small Form Factor Pluggable (SFP) Transceiver
MultiSource Agreement(MSA)."
REVISION "200505260000Z" -- 26 May, 2005
DESCRIPTION "Initial MIB Creation"
::= { oaManagement 18 }
--
-- Textual Conventions
--
SlotIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each Slot
in the managed device."
SYNTAX Integer32 (1..1024)
PortInSlotIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each Port inside a Slot
in the managed device."
SYNTAX Integer32 (1..1024)
-- oaccess OBJECT IDENTIFIER ::= { enterprises 6926 }
oaManagement OBJECT IDENTIFIER ::= { oaccess 1 }
oaSfp OBJECT IDENTIFIER ::= { oaSfpMib 1 }
oaSfpMIBObjects OBJECT IDENTIFIER ::= { oaSfp 1 }
oaXfpMIBObjects OBJECT IDENTIFIER ::= { oaSfp 2 }
oaDsfpMIBObjects OBJECT IDENTIFIER ::= { oaSfp 3 }
oaMsa300PinMIBObjects OBJECT IDENTIFIER ::= { oaSfp 4 }
------------------------------------------------------------------------------
-- SFP MIB Definitions
------------------------------------------------------------------------------
oaSfpCompatibleInterfaceCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports in the system which are sfp compatible"
::= { oaSfpMIBObjects 1 }
------------------------------------------------------------------------------
-- SFP Info Table
------------------------------------------------------------------------------
oaSfpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaSfpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sfp information table."
::= { oaSfpMIBObjects 2 }
oaSfpInfoEntry OBJECT-TYPE
SYNTAX OaSfpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the SFP Information Table"
INDEX { oaSfpInfoSlotIndex, oaSfpInfoPortIndex }
::= { oaSfpInfoTable 1 }
OaSfpInfoEntry ::= SEQUENCE {
oaSfpInfoSlotIndex SlotIndex,
oaSfpInfoPortIndex PortInSlotIndex,
oaSfpInfoIdentifier INTEGER,
oaSfpInfoVendorSpecificIdentifier DisplayString,
oaSfpInfoConnector INTEGER,
oaSfpInfoVendorSpecificConnector DisplayString,
oaSfpInfoVendorName DisplayString,
oaSfpInfoVendorOUI DisplayString,
oaSfpInfoVendorPN DisplayString,
oaSfpInfoVendorRev DisplayString,
oaSfpInfoLaserWavelength Integer32,
oaSfpTunability INTEGER,
oaSfpInfoVendorSN DisplayString,
oaSfpInfoVendorDate DisplayString,
oaSfpInfoVendorSpecificLotCode DisplayString,
oaSfpInfoVendorSpecificData OCTET STRING,
oaSfpInfoDiagnosticPowerType INTEGER,
oaSfpInfoDigitalDiagnostic INTEGER,
oaSfpInfoDiagnosticCalibration INTEGER,
oaSfpInfoInstalledStatus INTEGER,
oaSfpInfofaultStatus INTEGER,
oaSfpInfoEnableStatus INTEGER,
oaSfpInfoUnitName DisplayString,
oaSfpInfoFiberType DisplayString,
oaSfpInfoReach DisplayString,
oaSfpInfoConnectorType DisplayString,
oaSfpInfoItemNum DisplayString,
oaSfpInfoHWRev DisplayString,
oaSfpInfoCleiCode DisplayString,
oaSfpInfoPageA2hSN DisplayString,
oaSfpInfoManufactureDate DisplayString,
oaSfpInfoManufactureID DisplayString
}
oaSfpInfoSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SFP slot number"
::= { oaSfpInfoEntry 1 }
oaSfpInfoPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SFP port number"
::= { oaSfpInfoEntry 2 }
oaSfpInfoIdentifier OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
gbic(3),
fixed(4),
sfp(5),
xbi300pin(6),
xenpak(7),
xfp(8),
xff(9),
xfpE(10),
xpak(11),
x2(12),
dsfp(13)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of serial transceiver
unknown - Unknown or unspecified
other - Vendor specific
gbic - GBIC
fixed - Module/connector soldered to motherboard
sfp - SFP transceiver
xbi300pin - 300 pin XBI
xenpak - XENPAK transceiver
xfp - XFP transceiver
xff - XFF transceiver
xfp-e - XFP-E transceiver
xpak - XPAK transceiver
x2 - X2 transceiver
dsfp - DWDM SFP transceiver"
::= { oaSfpInfoEntry 3 }
oaSfpInfoVendorSpecificIdentifier OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor specific identifier. This Object will be set to
value other than null only if oaSfpInfoIdentifier returns a value
of other"
::= { oaSfpInfoEntry 4 }
oaSfpInfoConnector OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
sc(3),
fcs1cc(4),
fcs2cc(5),
bnctnc(6),
fcch(7),
fiberJack(8),
lc(9),
mtrj(10),
mu(11),
sg(12),
opticalPigtail(13),
hssdcii(34),
copperPigtail(35)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of external connector provided
unknown - Unknown or unspecified
other - Vendor specific
sc - SC
fcs1cc - Fibre Channel Style 1 copper connector
fcs2cc - Fibre Channel Style 2 copper connector
bnctnc - BNC/TNC
fcch - Fibre Channel coaxial headers
fiberJack - Fiber Jack
lc --LC
mtrj - MT-RJ
mu - MU
sg - SG
opticalPigtail - Optical Pigtail
hssdcii - HSSDC II
copperPigtail - Copper Pigtail"
::= { oaSfpInfoEntry 8 }
oaSfpInfoVendorSpecificConnector OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of vendor specific Connector. This Object will be set to
value other than null only if oaSfpInfoConnector returns a value of
other"
::= { oaSfpInfoEntry 9 }
oaSfpInfoVendorName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp vendor name which is 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."
::= { oaSfpInfoEntry 24 }
oaSfpInfoVendorOUI OBJECT-TYPE
SYNTAX DisplayString (SIZE(3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp vendor organizationally unique identifier field (vendor OUI)
that contains the IEEE company identifier for the vendor. A value of
all zero in the 3 octet field indicates that the vendor OUI is
unspecified"
::= { oaSfpInfoEntry 25 }
oaSfpInfoVendorPN OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp vendor part number (Vendor PN) or product name if the
Vendor PN is unspecified, the null string will be returned"
::= { oaSfpInfoEntry 26 }
oaSfpInfoVendorRev OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transceiver vendor's product revision number (Vendor Rev) if the
Vendor Rev is unspecified, the null string will be returned"
::= { oaSfpInfoEntry 27 }
oaSfpInfoLaserWavelength OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Nano Meter(nm)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nominal Transmitter output wavelength at room temperature.
Units: 0.01 Nano Meter(nm)"
::= { oaSfpInfoEntry 28 }
oaSfpTunability OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
tunable(2),
nonTunable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tunability of SFP/XFP transceiver.
unknown - Unknown about tunability feature;
tunable - Wavelength tunability feature is implemented;
nonTunable - Wavelength tunability feature is not implemented."
::= { oaSfpInfoEntry 29 }
-- Extended ID Fields --
oaSfpInfoVendorSN OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Sfp vendor serial number (Vendor SN) if the Vendor SN is
unspecified, the null string will be returned"
::= { oaSfpInfoEntry 32 }
oaSfpInfoVendorDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Vendor's date. Formated: YY MM DD "
::= { oaSfpInfoEntry 33 }
oaSfpInfoVendorSpecificLotCode OBJECT-TYPE
SYNTAX DisplayString (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Vendor Specific Lot code. A null value indicates that
the lot code is unspecified."
::= { oaSfpInfoEntry 34 }
oaSfpInfoVendorSpecificData OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vendor Specific Information which can be read from the SFP transceiver
(Reference: SFF-8472, revision 9.3 - Registers 96-127 )"
::= { oaSfpInfoEntry 35 }
oaSfpInfoDiagnosticPowerType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
average(2),
oma(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The diagnostic monitoring receive power type in the SFP transceiver.
unknown - Unknown
avarage - Received power measurement type is avarage
oma - Received power measurement type is OMA"
::= { oaSfpInfoEntry 36 }
oaSfpInfoDigitalDiagnostic OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
digitalDiagnostic(2),
noDigitalDiagnostic(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The diagnostic monitoring implemented in the SFP transceiver.
unknown - Unknown
digitalDiagMonitoring - Digital diagnostic monitoring
implemented.
noDigitalDiagMonitoring - Digital diagnostic monitoring
not implemented."
::= { oaSfpInfoEntry 37 }
oaSfpInfoDiagnosticCalibration OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
externalCalibration(2),
internalCalibration(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The diagnostic calibration in the SFP transceiver.
unknown - Unknown
ExternalCalibration - External Calibration
InternalCalibration - Internal Calibration"
::= { oaSfpInfoEntry 38 }
oaSfpInfoInstalledStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
notInstalled(2),
installed(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current installed state of the sfp transceiver
unknown - Unknown
notInstalled - the SFP transceiver is not installed
installed - the sfp transceiver is installed"
::= { oaSfpInfoEntry 40 }
oaSfpInfofaultStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
faulty(2),
operational(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current fault state of the sfp transceiver
unknown - Unknown
fault - the sfp transceiver is faulty
operational - the sfp transceiver is working properly"
::= { oaSfpInfoEntry 41 }
oaSfpInfoEnableStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current enable state of the sfp transceiver
unknown - Unknown
enabled - the sfp transceiver has been enabled
disabled - the sfp transceiver has been diabled"
::= { oaSfpInfoEntry 42 }
oaSfpInfoUnitName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..29))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp unit name"
::= { oaSfpInfoEntry 43 }
oaSfpInfoFiberType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..9))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp fiber type multi/single mode."
::= { oaSfpInfoEntry 44 }
oaSfpInfoReach OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp info reach."
::= { oaSfpInfoEntry 45 }
oaSfpInfoConnectorType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp connector type"
::= { oaSfpInfoEntry 46 }
oaSfpInfoItemNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp item number."
::= { oaSfpInfoEntry 47 }
oaSfpInfoHWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp hardware revision."
::= { oaSfpInfoEntry 48 }
oaSfpInfoCleiCode OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp clei code"
::= { oaSfpInfoEntry 49 }
oaSfpInfoPageA2hSN OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..26))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp serial number taken from A2h eeprom page"
::= { oaSfpInfoEntry 50 }
oaSfpInfoManufactureDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp manufacture date."
::= { oaSfpInfoEntry 51 }
oaSfpInfoManufactureID OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..119))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sfp manufacture ID"
::= { oaSfpInfoEntry 52 }
------------------------------------------------------------------------------
-- SFP Diagnostics Table
------------------------------------------------------------------------------
oaSfpDiagnosticTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaSfpDiagnosticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sfp real time diagnostic table."
::= { oaSfpMIBObjects 3 }
oaSfpDiagnosticEntry OBJECT-TYPE
SYNTAX OaSfpDiagnosticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the SFP Real Time Diagnostic Table"
INDEX { oaSfpDiagnosticSlotIndex, oaSfpDiagnosticPortIndex }
::= { oaSfpDiagnosticTable 1 }
OaSfpDiagnosticEntry ::= SEQUENCE {
oaSfpDiagnosticSlotIndex SlotIndex,
oaSfpDiagnosticPortIndex PortInSlotIndex,
-- Real Time Readouts
oaSfpDiagnosticTemperature Integer32,
oaSfpDiagnosticVcc Integer32,
oaSfpDiagnosticTxBias Integer32,
oaSfpDiagnosticTxPower Integer32,
oaSfpDiagnosticRxPower Integer32
}
oaSfpDiagnosticSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SFP slot number"
::= { oaSfpDiagnosticEntry 1 }
oaSfpDiagnosticPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SFP port number"
::= { oaSfpDiagnosticEntry 2 }
oaSfpDiagnosticTemperature OBJECT-TYPE
SYNTAX Integer32
UNITS "1/10 degrees Celsius (C)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internaly measured module temperature.
Units: 1/10 degrees Celsius (C)"
::= { oaSfpDiagnosticEntry 3 }
oaSfpDiagnosticVcc OBJECT-TYPE
SYNTAX Integer32
UNITS "100 micro Volts (V)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internaly measured supply voltage in transceiver.
Units: 100 micro Volts (V)"
::= { oaSfpDiagnosticEntry 4 }
oaSfpDiagnosticTxBias OBJECT-TYPE
SYNTAX Integer32
UNITS "1 micro Amperes (A)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internaly measured Tx Bias current.
Units: 1 micro Amperes (A)"
::= { oaSfpDiagnosticEntry 5 }
oaSfpDiagnosticTxPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 decibel (dBm)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internaly measured Tx output power.
Units: 0.01 decibel (dBm)"
::= { oaSfpDiagnosticEntry 6 }
oaSfpDiagnosticRxPower OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 decibel (dBm)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internaly measured Rx input power.
Units: 0.01 decibel (dBm)"
::= { oaSfpDiagnosticEntry 7 }
------------------------------------------------------------------------------
-- SFP Rates Supported Table
------------------------------------------------------------------------------
oaSfpRatesSupportedTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaSfpRatesSupportedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sfp supported rates."
::= { oaSfpMIBObjects 4 }
oaSfpRatesSupportedEntry OBJECT-TYPE
SYNTAX OaSfpRatesSupportedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the SFP Supported rates list"
INDEX { oaSfpInfoSlotIndex, oaSfpInfoPortIndex, oaSfpRatesSupportedIndex }
::= { oaSfpRatesSupportedTable 1 }
OaSfpRatesSupportedEntry ::= SEQUENCE {
oaSfpRatesSupportedIndex Unsigned32,
oaSfpRatesSupportedValue Unsigned32
}
oaSfpRatesSupportedIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of rates database the SFP support."
::= { oaSfpRatesSupportedEntry 3 }
oaSfpRatesSupportedValue OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Mbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rate value the SFP support - unit are in 100m."
::= { oaSfpRatesSupportedEntry 4 }
------------------------------------------------------------------------------
-- XFP MIB Definitions
------------------------------------------------------------------------------
oaXfpCompatibleInterfaceCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports in the system which are xfp compatible"
::= { oaXfpMIBObjects 1 }
------------------------------------------------------------------------------
-- XFP Info Table
------------------------------------------------------------------------------
oaXfpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaXfpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The XFP information table."
::= { oaXfpMIBObjects 2 }
oaXfpInfoEntry OBJECT-TYPE
SYNTAX OaXfpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the XFP Information Table"
INDEX { oaXfpInfoSlotIndex, oaXfpInfoPortIndex }
::= { oaXfpInfoTable 1 }
OaXfpInfoEntry ::= SEQUENCE {
oaXfpInfoSlotIndex SlotIndex,
oaXfpInfoPortIndex PortInSlotIndex,
oaXfpInfoLaserWavelengthTolerance Integer32
}
oaXfpInfoSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The XFP slot number"
::= { oaXfpInfoEntry 1 }
oaXfpInfoPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The XFP port number"
::= { oaXfpInfoEntry 2 }
oaXfpInfoLaserWavelengthTolerance OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 Nano Meter(nm)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Guaranteed +/- range of transmitter output wavelength under all normal
operating conditions.
Units: 0.001 Nano Meter(nm)"
::= { oaXfpInfoEntry 28 }
------------------------------------------------------------------------------
-- XFP Tunability Table
------------------------------------------------------------------------------
oaXfpTunTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaXfpTunEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The XFP Tunability Parameters table."
::= { oaXfpMIBObjects 3 }
oaXfpTunEntry OBJECT-TYPE
SYNTAX OaXfpTunEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the XFP Tunability Parameters Table"
INDEX { oaXfpTunSlotIndex, oaXfpTunPortIndex }
::= { oaXfpTunTable 1 }
OaXfpTunEntry ::= SEQUENCE {
oaXfpTunSlotIndex Integer32,
oaXfpTunPortIndex Integer32,
oaXfpTunLaserFirstFrequency Integer32,
oaXfpTunLaserLastFrequency Integer32,
oaXfpTunGridSpacing INTEGER,
oaXfpTunLaserItuBand INTEGER,
oaXfpTunLaserItuCh Integer32
}
oaXfpTunSlotIndex OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Tunable XFP slot number"
::= { oaXfpTunEntry 1 }
oaXfpTunPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Tunable XFP port number"
::= { oaXfpTunEntry 2 }
oaXfpTunLaserFirstFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 Terahertz(THz)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First Frequency setting supported by the Tunable XFP port
as defined in the factory prior shipment.
Units: 0.001 Terahertz(THz)"
::= { oaXfpTunEntry 3 }
oaXfpTunLaserLastFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 Terahertz(THz)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Frequency setting supported by the Tunable XFP port
as defined in the factory prior shipment.
Units: 0.001 Terahertz(THz)"
::= { oaXfpTunEntry 4 }
oaXfpTunGridSpacing OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
g200(2),
g100(3),
g50(4),
g25(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Tunable XFP port spacing. The port is compatible with.
unknown - Unknown
g200 - 200 GHz
g100 - 100 GHz
g50 - 50 GHz
g25 - 25 GHz"
::= { oaXfpTunEntry 5 }
oaXfpTunLaserItuBand OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
cBand(2),
lBand(3),
sBand(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ITU Band setting supported by the Tunable XFP port.
unknown - Unknown
cBand - C Band
lBand - L Band
sBand - S Band"
::= { oaXfpTunEntry 6 }
oaXfpTunLaserItuCh OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ITU Channel number of the Tunable XFP port * 1000."
::= { oaXfpTunEntry 7 }
------------------------------------------------------------------------------
-- DWDM SFP MIB Definitions
------------------------------------------------------------------------------
oaDsfpCompatibleInterfaceCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports in the system which are DWDM sfp compatible"
::= { oaDsfpMIBObjects 1 }
------------------------------------------------------------------------------
-- DWDM SFP Info Table
------------------------------------------------------------------------------
oaDsfpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaDsfpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DWDM SFP information table."
::= { oaDsfpMIBObjects 2 }
oaDsfpInfoEntry OBJECT-TYPE
SYNTAX OaDsfpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the XFP Information Table"
INDEX { oaDsfpInfoSlotIndex, oaDsfpInfoPortIndex }
::= { oaDsfpInfoTable 1 }
OaDsfpInfoEntry ::= SEQUENCE {
oaDsfpInfoSlotIndex SlotIndex,
oaDsfpInfoPortIndex PortInSlotIndex,
oaDsfpInfoChannelSpacing INTEGER,
oaDsfpInfoChannelTuning Integer32
}
oaDsfpInfoSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DWDM SFP slot number"
::= { oaDsfpInfoEntry 1 }
oaDsfpInfoPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DWDM SFP port number"
::= { oaDsfpInfoEntry 2 }
oaDsfpInfoChannelSpacing OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
g200(2),
g100(3),
g50(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The densest channel spacing the modle is compatible with.
unknown - Unknown
g200 - 200 GHz
g100 - 100 GHz
g50 - 50 GHz"
::= { oaDsfpInfoEntry 4 }
oaDsfpInfoChannelTuning OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of channel over which the module may be tuned by
user command (1 - 63)."
::= { oaDsfpInfoEntry 5 }
------------------------------------------------------------------------------
-- MSA 300 Pin MIB Definitions
------------------------------------------------------------------------------
oaMsa300PinCompatibleIfCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports in the system which are MSA 300 Pin compatible"
::= { oaMsa300PinMIBObjects 1 }
------------------------------------------------------------------------------
-- MSA 300 Pin Identifier Table
------------------------------------------------------------------------------
oaMsa300PinIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaMsa300PinIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Msa300Pin Identifier table."
::= { oaMsa300PinMIBObjects 2 }
oaMsa300PinIdEntry OBJECT-TYPE
SYNTAX OaMsa300PinIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Msa300Pin Identifier Table"
INDEX { oaMsa300PinIdSlotIndex, oaMsa300PinIdPortIndex }
::= { oaMsa300PinIdTable 1 }
OaMsa300PinIdEntry ::= SEQUENCE {
oaMsa300PinIdSlotIndex SlotIndex,
oaMsa300PinIdPortIndex PortInSlotIndex,
oaMsa300PinIdModuleTypeCode INTEGER,
oaMsa300PinIdFirstLaserItuBand INTEGER,
oaMsa300PinIdFirstLaserItuCh Integer32,
oaMsa300PinIdLastLaserItuBand INTEGER,
oaMsa300PinIdLastLaserItuCh Integer32,
oaMsa300PinIdLaserItuChSpacing INTEGER
}
oaMsa300PinIdSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin slot number"
::= { oaMsa300PinIdEntry 1 }
oaMsa300PinIdPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin port number"
::= { oaMsa300PinIdEntry 2 }
oaMsa300PinIdModuleTypeCode OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
msa10Gb(6),
msa10GbWdm(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Type code.
unknown - Unknown
msa10Gb - 10Gb MSA
msa10GbWdm - 10Gb MSA WDM"
::= { oaMsa300PinIdEntry 4 }
oaMsa300PinIdFirstLaserItuBand OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
cBand(2),
lBand(3),
sBand(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First ITU Band setting supported by the port.
unknown - Unknown
cBand - C Band
lBand - L Band
sBand - S Band"
::= { oaMsa300PinIdEntry 6 }
oaMsa300PinIdFirstLaserItuCh OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Nano Meter(nm)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First ITU Channel setting supported by the port
(i.e. maximum wavelength) as defined in the factory prior shipment.
Units: 0.01 Nano Meter(nm)"
::= { oaMsa300PinIdEntry 7 }
oaMsa300PinIdLastLaserItuBand OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
cBand(2),
lBand(3),
sBand(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last ITU Band setting supported by the port.
unknown - Unknown
cBand - C Band
lBand - L Band
sBand - S Band"
::= { oaMsa300PinIdEntry 8 }
oaMsa300PinIdLastLaserItuCh OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Nano Meter(nm)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last ITU Channel setting supported by the port
(i.e. maximum wavelength) as defined in the factory prior shipment.
Units: 0.01 Nano Meter(nm)"
::= { oaMsa300PinIdEntry 9 }
oaMsa300PinIdLaserItuChSpacing OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
g200(2),
g100(3),
g50(4),
g25(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MSA 300 Pin port spacing the port is compatible with.
unknown - Unknown
g200 - 200 GHz
g100 - 100 GHz
g50 - 50 GHz
g25 - 25 GHz"
::= { oaMsa300PinIdEntry 10 }
------------------------------------------------------------------------------
-- MSA 300 Pin Measurement Table
------------------------------------------------------------------------------
oaMsa300PinMeasTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaMsa300PinMeasEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin Measurement table."
::= { oaMsa300PinMIBObjects 3 }
oaMsa300PinMeasEntry OBJECT-TYPE
SYNTAX OaMsa300PinMeasEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the MSA 300 Pin Measurement Table"
INDEX { oaMsa300PinMeasSlotIndex, oaMsa300PinMeasPortIndex }
::= { oaMsa300PinMeasTable 1 }
OaMsa300PinMeasEntry ::= SEQUENCE {
oaMsa300PinMeasSlotIndex SlotIndex,
oaMsa300PinMeasPortIndex PortInSlotIndex,
oaMsa300PinMeasLaserOutputPwrMon Integer32,
oaMsa300PinMeasLaserTempMon Integer32,
oaMsa300PinMeasRecSigAvrOptPower Integer32,
oaMsa300PinMeasLaserWlengthMon Integer32,
oaMsa300PinMeasTransTempMon Integer32
}
oaMsa300PinMeasSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin slot number"
::= { oaMsa300PinMeasEntry 1 }
oaMsa300PinMeasPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin port number"
::= { oaMsa300PinMeasEntry 2 }
oaMsa300PinMeasLaserOutputPwrMon OBJECT-TYPE
SYNTAX Integer32
UNITS "Micro Watt(uW)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Laser output power.
Units: 1 Micro Watt(uW)"
::= { oaMsa300PinMeasEntry 4 }
oaMsa300PinMeasLaserTempMon OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degrees Celsius (C)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Laser temperature.
Units: 0.001 degrees Celsius (C)"
::= { oaMsa300PinMeasEntry 5 }
oaMsa300PinMeasRecSigAvrOptPower OBJECT-TYPE
SYNTAX Integer32
UNITS "Nano Watt (nW)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average received optical power.
Units: Nano Watt (nW)"
::= { oaMsa300PinMeasEntry 7 }
oaMsa300PinMeasLaserWlengthMon OBJECT-TYPE
SYNTAX Integer32
UNITS "Mega Hertz (MHz)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The offset of the exact ITU channel wavelength.
Units: Mega Hertz (MHz)"
::= { oaMsa300PinMeasEntry 8 }
oaMsa300PinMeasTransTempMon OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degrees Celsius (C)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Photodiode Temperature.
Units: 0.001 degrees Celsius (C)"
::= { oaMsa300PinMeasEntry 9 }
------------------------------------------------------------------------------
-- MSA 300 Pin Alarm Table
------------------------------------------------------------------------------
oaMsa300PinAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaMsa300PinAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin Alarm table."
::= { oaMsa300PinMIBObjects 4 }
oaMsa300PinAlarmEntry OBJECT-TYPE
SYNTAX OaMsa300PinAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the MSA 300 Pin Alarm Table"
INDEX { oaMsa300PinAlarmSlotIndex, oaMsa300PinAlarmPortIndex }
::= { oaMsa300PinAlarmTable 1 }
OaMsa300PinAlarmEntry ::= SEQUENCE {
oaMsa300PinAlarmSlotIndex SlotIndex,
oaMsa300PinAlarmPortIndex PortInSlotIndex,
oaMsa300PinAlarmTxAlarm OCTET STRING,
oaMsa300PinAlarmRxAlarm OCTET STRING,
oaMsa300PinAlarmPsAlarm OCTET STRING
}
oaMsa300PinAlarmSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin slot number"
::= { oaMsa300PinAlarmEntry 1 }
oaMsa300PinAlarmPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin port number"
::= { oaMsa300PinAlarmEntry 2 }
oaMsa300PinAlarmTxAlarm OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmit Alarms.
Alarm bits in this object remain in the alarmed state until a read
of this register occurs.
This object is organised as a bit map. Each bit represents an alarm.
If the object is zero - no alarm is active.
0x000000 ('0000 0000 0000 0000 0000 0000'B) - Normal (No alarm)
0x000001 ('0000 0000 0000 0000 0000 0001'B) - TxALM INT
- Tx Summary alarm
0x000004 ('0000 0000 0000 0000 0000 0100'B) - LsTEMPALM
- Laser temperature alarm
0x000008 ('0000 0000 0000 0000 0000 1000'B) - TxLOCKERR
- Loss of TxPLL lock indicator
0x000020 ('0000 0000 0000 0000 0010 0000'B) - LsPOWALM
- Laser power alarm
0x000200 ('0000 0000 0000 0010 0000 0000'B) - ModTEMPALM
- Modulator temperature alarm
0x002000 ('0000 0000 0010 0000 0000 0000'B) - LsWAVALM
- Laser Wavelength alarm
Any combination of the bits represent the combination of the alarms"
::= { oaMsa300PinAlarmEntry 3 }
oaMsa300PinAlarmRxAlarm OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive Alarms.
Alarm bits in this object remain in the alarmed state until a read
of this register occurs.
This object is organised as a bit map. Each bit represents an alarm.
If the object is zero - no alarm is active.
0x0000 ('0000 0000 0000 0000'B) - Normal (No alarm)
0x0001 ('0000 0000 0000 0001'B) - RxALM INT - Rx Summary alarm
0x0002 ('0000 0000 0000 0010'B) - RxPOWALM
- Loss average optical power alarm
Any combination of the bits represent the combination of the alarms"
::= { oaMsa300PinAlarmEntry 4}
oaMsa300PinAlarmPsAlarm OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive Alarms.
Alarm bits in this object remain in the alarmed state until a read
of this register occurs.
This object is organised as a bit map. Each bit represents an alarm.
If the object is zero - no alarm is active.
0x00 ('0000 0000'B) - Normal (No alarm)
0x01 ('0000 0001'B) - PSUMMARY (poerw summary)
0x02 ('0000 0010'B) - P5VANALOG (+5V analog)
0x04 ('0000 0100'B) - N5P2VANALOG (-5.2V analog)
0x08 ('0000 1000'B) - P3P3VANALOG (_3.3V analog)
0x10 ('0001 0000'B) - P3P3VDIGITAL (+3.3V digital)
0x20 ('0010 0000'B) - LVDIGITAL (+1.8V digital)
0x40 ('0100 0000'B) - N5P2VDIGITAL (-5.2V digital)
Any combination of the bits represent the combination of the alarms"
::= { oaMsa300PinAlarmEntry 5}
------------------------------------------------------------------------------
-- MSA 300 Pin Command Table
------------------------------------------------------------------------------
oaMsa300PinComTable OBJECT-TYPE
SYNTAX SEQUENCE OF OaMsa300PinComEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin Command table."
::= { oaMsa300PinMIBObjects 5 }
oaMsa300PinComEntry OBJECT-TYPE
SYNTAX OaMsa300PinComEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the MSA 300 Pin Command Table"
INDEX { oaMsa300PinComSlotIndex, oaMsa300PinComPortIndex }
::= { oaMsa300PinComTable 1 }
OaMsa300PinComEntry ::= SEQUENCE {
oaMsa300PinComSlotIndex SlotIndex,
oaMsa300PinComPortIndex PortInSlotIndex,
oaMsa300PinComLaserItuBand INTEGER,
oaMsa300PinComLaserItuCh Integer32
}
oaMsa300PinComSlotIndex OBJECT-TYPE
SYNTAX SlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin slot number"
::= { oaMsa300PinComEntry 1 }
oaMsa300PinComPortIndex OBJECT-TYPE
SYNTAX PortInSlotIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MSA 300 Pin port number"
::= { oaMsa300PinComEntry 2 }
oaMsa300PinComLaserItuBand OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
cBand(2),
lBand(3),
sBand(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ITU Band of the port.
unknown - Unknown
cBand - C Band
lBand - L Band
sBand - S Band"
::= { oaMsa300PinComEntry 7 }
oaMsa300PinComLaserItuCh OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Nano Meter(nm)"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ITU Channel wavelength of the port
Units: 0.01 Nano Meter(nm)"
::= { oaMsa300PinComEntry 8 }
------------------------------------------------------------------------------
-- conformance information
------------------------------------------------------------------------------
oaSfpConformance OBJECT IDENTIFIER ::= { oaSfpMib 2 }
oaSfpGroups OBJECT IDENTIFIER ::= { oaSfpConformance 1 }
oaSfpCompliances OBJECT IDENTIFIER ::= { oaSfpConformance 2 }
------------------------------------------------------------------------------
-- compliance statements
------------------------------------------------------------------------------
oaSfpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which have
SFP/DSFP/XFP/MSA300Pin module interfaces."
MODULE -- this module
MANDATORY-GROUPS { oaSfpCompatibleIfCountGroup }
GROUP oaSfpGroup
DESCRIPTION
"This group is mandatory for those port interfaces which
are SFP ports."
GROUP oaXfpGroup
DESCRIPTION
"This group is mandatory for those port interfaces which
are XFP ports."
GROUP oaDsfpGroup
DESCRIPTION
"This group is mandatory for those port interfaces which
are DSFP ports."
GROUP oaMsa300PinGroup
DESCRIPTION
"This group is mandatory for those port interfaces which
are MSA 300 Pin ports."
GROUP oaXfpTunGroup
DESCRIPTION
"This group is mandatory for those port interfaces which
are Tunable XFP ports."
::= { oaSfpCompliances 1 }
------------------------------------------------------------------------------
-- units of conformance
------------------------------------------------------------------------------
oaSfpCompatibleIfCountGroup OBJECT-GROUP
OBJECTS { oaSfpCompatibleInterfaceCount,
oaXfpCompatibleInterfaceCount,
oaDsfpCompatibleInterfaceCount,
oaMsa300PinCompatibleIfCount }
STATUS current
DESCRIPTION
"A collection of objects providing information on number
of specific compatible ports."
::= { oaSfpGroups 1 }
oaSfpGroup OBJECT-GROUP
OBJECTS { oaSfpInfoIdentifier,
oaSfpInfoVendorSpecificIdentifier,
oaSfpInfoConnector,
oaSfpInfoVendorSpecificConnector,
oaSfpInfoVendorName,
oaSfpInfoVendorOUI,
oaSfpInfoVendorPN,
oaSfpInfoVendorRev,
oaSfpInfoLaserWavelength,
oaSfpTunability,
oaSfpInfoVendorSN,
oaSfpInfoVendorDate,
oaSfpInfoVendorSpecificLotCode,
oaSfpInfoVendorSpecificData,
oaSfpInfoDiagnosticPowerType,
oaSfpInfoDigitalDiagnostic,
oaSfpInfoDiagnosticCalibration,
oaSfpInfoInstalledStatus,
oaSfpInfofaultStatus,
oaSfpInfoEnableStatus,
oaSfpDiagnosticTemperature,
oaSfpDiagnosticVcc,
oaSfpDiagnosticTxBias,
oaSfpDiagnosticTxPower,
oaSfpDiagnosticRxPower,
oaSfpRatesSupportedValue
}
STATUS current
DESCRIPTION
"A collection of objects providing information on
SFP compatible ports."
::= { oaSfpGroups 2 }
oaXfpGroup OBJECT-GROUP
OBJECTS { oaXfpInfoLaserWavelengthTolerance }
STATUS current
DESCRIPTION
"A collection of objects providing information on
XFP compatible ports."
::= { oaSfpGroups 3 }
oaDsfpGroup OBJECT-GROUP
OBJECTS { oaDsfpInfoChannelSpacing,
oaDsfpInfoChannelTuning }
STATUS current
DESCRIPTION
"A collection of objects providing information on
DSFP compatible ports."
::= { oaSfpGroups 4 }
oaMsa300PinGroup OBJECT-GROUP
OBJECTS { oaMsa300PinIdModuleTypeCode,
oaMsa300PinIdFirstLaserItuBand,
oaMsa300PinIdFirstLaserItuCh,
oaMsa300PinIdLastLaserItuBand,
oaMsa300PinIdLastLaserItuCh,
oaMsa300PinIdLaserItuChSpacing,
oaMsa300PinMeasLaserOutputPwrMon,
oaMsa300PinMeasLaserTempMon,
oaMsa300PinMeasRecSigAvrOptPower,
oaMsa300PinMeasLaserWlengthMon,
oaMsa300PinMeasTransTempMon,
oaMsa300PinAlarmTxAlarm,
oaMsa300PinAlarmRxAlarm,
oaMsa300PinAlarmPsAlarm,
oaMsa300PinComLaserItuBand,
oaMsa300PinComLaserItuCh }
STATUS current
DESCRIPTION
"A collection of objects providing information on
MSA 300 Pin compatible ports."
::= { oaSfpGroups 5 }
oaXfpTunGroup OBJECT-GROUP
OBJECTS { oaXfpTunLaserFirstFrequency,
oaXfpTunLaserLastFrequency,
oaXfpTunGridSpacing,
oaXfpTunLaserItuBand,
oaXfpTunLaserItuCh }
STATUS current
DESCRIPTION
"A collection of objects providing information on
Tunable XFP compatible ports."
::= { oaSfpGroups 6 }
END
|