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

IMPORTS
        MODULE-IDENTITY,
        OBJECT-IDENTITY,
        OBJECT-TYPE,
        NOTIFICATION-TYPE,
        Integer32,
        Unsigned32,
        Counter64,
        Gauge32,
        TimeTicks
	FROM SNMPv2-SMI
	
	DisplayString
	FROM SNMPv2-TC
	
        wsMgmt,
        wsExperiment
        FROM WAYSTREAM-SMI;


--
-- Waystream IBOS
--
ibos    MODULE-IDENTITY
    LAST-UPDATED "201702101100Z"	-- February 10, 2017
    ORGANIZATION "Waystream AB"
    CONTACT-INFO
        "Waystream AB
         Customer Service

         Mail : Farogatan 33
                SE-164 51 Kista
                Sweden

         Tel  : +46 8 5626 9450

         E-mail: info@waystream.com
         Web   : http://www.waystream.com"
    DESCRIPTION
        "The Waystream MIB describing iBOS functionality of ASRs"

    REVISION "201710231100Z"	-- October 23, 2017
    DESCRIPTION
        "Added SFP all unit values, SFP part and serial numbers."
    REVISION "201709181100Z"	-- September 18, 2017
    DESCRIPTION
        "Added SFP RX/TX power dBm values."
    REVISION "201702101100Z"	-- February 10, 2017
    DESCRIPTION
        "Company name change:
	 In October 2015 PacketFront Network Products was renamed Waystream.
	 In this update all PacketFront were changed to Waystream and all
	 pf* to ws*."
    REVISION "201207051930Z"
    DESCRIPTION
        "Added sBasePX (BASE-PX) and sBaseBX10 (BASE-BX10) bits
	to pfSFPTransceiver (see SFF-8472 standard)."
    REVISION "201112200908Z"
    DESCRIPTION
        "Add 100M and 10G SFP information from SFF-8472 specification.
	The column pfSFPTransceiver has new bits s100BaseFX and s100BaseLX, 
	a new column pfSFPTransceiverExt which is a combination of the 
	10G Ethernet Compliance Codes SFP+ Cable Technology information."
    REVISION "201112060934Z"
    DESCRIPTION
        "Added new table pfXFPTable that mirrors the pfSFPTable but with minor
         differencies in parameter set and interpretation."
    REVISION "201101111755Z"	-- January 11, 2011
    DESCRIPTION
        "Updated company name"
    REVISION "200904171529Z"
    DESCRIPTION
        "Moved pfCopy to PACKETFRONT-COPY-MIB and added environment notifications
         to the MIB at pfIbosEnvironmentNotifications."
    REVISION "200903231102Z"
    DESCRIPTION
        "Updated telephone information in contact-info. Reordered revision
         information. Fixed enumerated types not starting from zero"
    REVISION "200804301426Z"
    DESCRIPTION
        "Moved pfRpm to PACKETFRONT-RPM-MIB
         Moved pfIgmp to PACKETFRONT-IGMP-CACHE-MIB
         Moved pfProduct to PACKETFRONT-PRODUCTS-MIB
         Moved boilerplate to PACKETFRONT-SMI and PACKETFRONT-TC"
    REVISION "200710031835Z"
    DESCRIPTION
        "Added pfRpm"
    REVISION "200706131437Z"
    DESCRIPTION
        "Added pfIgmp"
    REVISION "200610181341Z"
    DESCRIPTION
        "Corrected pfAccounting member types"
    REVISION "200608231100Z"
    DESCRIPTION
        "Added pfVersionString OID"
    REVISION "200601251330Z"
    DESCRIPTION
        "Changed name of pfNeighbourPlatform to pfNeighbourModel.  Added OID for ASR10K."
    REVISION "200505101124Z"
    DESCRIPTION
        "Added missing connector type SC."
    REVISION "200502010911Z"
    DESCRIPTION
        "Corrected pfPolicyTable entry types. Added description for pfPolicyUseCnt."
    REVISION "200501141500Z"
    DESCRIPTION
        "Added pfAccounting extensions to the MIB."
    REVISION "200410201434Z"
    DESCRIPTION
        "Added the ipdConfig object"
    REVISION "200405141155Z"
    DESCRIPTION
        "Updated to reflect PacketFronts new corporate address"


        ::= { wsMgmt 1 }


--
-- System management objects
wsSystem      	OBJECT-IDENTITY
                STATUS current
                DESCRIPTION
                        "System management objects"
               ::= { ibos 1 }

-- Test object
wsWritedummy	OBJECT-TYPE
                SYNTAX Integer32 (0..2147483647)
                MAX-ACCESS read-write
                STATUS current
                DESCRIPTION
                        "This object is a read-write object that accept an
                         integer. The value written has no effect on the
                         system, but a successful write indicate that 
                         SNMP write operations are possible on the target
                         router. The last written value can be read back"
                ::= { wsSystem 1 }

-- Restart the system
wsReload      	OBJECT-TYPE
                SYNTAX Integer32 (0..2147483647)
                MAX-ACCESS read-write
                STATUS current
                DESCRIPTION
                        "This object is used to restart the target router
                         by setting the number of seconds until system
                         reload. A value of 0 cancels any pending reload.
                         The value returned when reading the object is the
                         number of seconds remaining until reload"
                ::= { wsSystem 2 }

-- System iBOS version
wsVersion  	OBJECT-TYPE
                SYNTAX Integer32 (0..2147483647)
                MAX-ACCESS read-only
                STATUS current
                DESCRIPTION
                        "The iBOS version indicator"
                ::= { wsSystem 3 }

-- System iBOS version
wsAsrRevision  	OBJECT-TYPE
                SYNTAX Integer32 (0..2147483647)
                MAX-ACCESS read-only
                STATUS current
                DESCRIPTION
                        "The ASR hardware revision"
                ::= { wsSystem 4 }

-- System iBOS version string
wsVersionString OBJECT-TYPE
                SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
		    "A textual representation of the iBOS version.
		     For iBOS versions after 3.2, this field should be
		     used to identify the iBOS version instead of the
		     old wsVersion OID"
	        ::= { wsSystem 5 }

--
-- Environment data
wsEnvironment 	OBJECT-IDENTITY
		STATUS current
		DESCRIPTION
			"Environtment data"
		::= { ibos 2 }

-- Temperature table
wsTempTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsTempEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of values from temperature sensors."
		::= { wsEnvironment 1 }

wsTempEntry	OBJECT-TYPE
		SYNTAX WsTempEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a temperature sensor."
		INDEX { wsTempSensor }
		::= { wsTempTable 1 }

WsTempEntry ::=
	SEQUENCE {
		wsTempSensor 		Unsigned32,
		wsTempMeasured		Integer32,
		wsTempTOS 		Integer32,
		wsTempTHYST 		Integer32,
		wsTempThresholdLow 	Integer32,
		wsTempThresholdHigh 	Integer32,
		wsTempStatus 		INTEGER
	}

wsTempSensor	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Sensor number."
		::= { wsTempEntry 1 }

wsTempMeasured	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured temperature in 100ths of degrees centigrade."
		::= { wsTempEntry 2 }

wsTempTOS	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TOS in 100ths of degrees centigrade."
		::= { wsTempEntry 3 }

wsTempTHYST	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"THYST in 100ths of degrees centigrade."
		::= { wsTempEntry 4 }

wsTempThresholdLow	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Threshold (low) in 100ths of degrees centigrade."
		::= { wsTempEntry 5 }

wsTempThresholdHigh	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Threshold (high) in 100ths of degrees centigrade."
		::= { wsTempEntry 6 }
	    
wsTempStatus	OBJECT-TYPE
                SYNTAX INTEGER {
                          failed(-1),
                          ok(0),
                          high(1),
                          low(2),
                          disabled(4)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Status (measurement compared to threshold)."
		::= { wsTempEntry 7 }

-- Voltage table
wsVoltTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsVoltEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of measured board voltages."
		::= { wsEnvironment 2 }

wsVoltEntry	OBJECT-TYPE
		SYNTAX WsVoltEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a board voltage."
		INDEX { wsVoltChannel }
		::= { wsVoltTable 1 }

WsVoltEntry ::=
	SEQUENCE {
		wsVoltChannel 		Unsigned32,
		wsVoltNominal 		Integer32,
		wsVoltMeasured		Integer32,
		wsVoltThresholdLow 	Integer32,
		wsVoltThresholdHigh 	Integer32,
		wsVoltStatus 		INTEGER
	}

wsVoltChannel	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Voltage channel number."
		::= { wsVoltEntry 1 }

wsVoltNominal	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Nominal voltage in mV for channel."
		::= { wsVoltEntry 2 }

wsVoltMeasured	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured voltage in mV for channel."
		::= { wsVoltEntry 3 }

wsVoltThresholdLow	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Threshold (low) voltage in mV for channel."
		::= { wsVoltEntry 4 }

wsVoltThresholdHigh	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Threshold (high) voltage in mV for channel."
		::= { wsVoltEntry 5 }
	    
wsVoltStatus	OBJECT-TYPE
                SYNTAX INTEGER {
			na(-3),
			failed(-1),
			ok(0),
			high(1),
			low(2),
			notPresent(3),
			disabled(4)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Status (measurement compared to threshold)."
		::= { wsVoltEntry 6 }


-- Fan speed table
wsFanTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsFanEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of measured rotation speeds for external fans."
		::= { wsEnvironment 3 }

wsFanEntry	OBJECT-TYPE
		SYNTAX WsFanEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a fan."
		INDEX { wsFanNumber }
		::= { wsFanTable 1 }

WsFanEntry ::=
	SEQUENCE {
		wsFanNumber 		Unsigned32,
		wsFanRPM 		Integer32
	}

wsFanNumber	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Fan number."
		::= { wsFanEntry 1 }

wsFanRPM	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Fan speed in revolutions per minute."
		::= { wsFanEntry 2 }

-- Fan driving voltage
wsFanVoltage	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Fan driving voltage (in mV)."
		::= { wsEnvironment 4 }

-- Provides control over if send ibos environment related traps
wsIbosEnvironmentTrapEnable OBJECT-TYPE
		SYNTAX INTEGER {
			enabled(1),
			disabled(2)
		}
		MAX-ACCESS read-write
		STATUS current
		DESCRIPTION
			"Provides control over iBOS environment related traps."
		::= { wsEnvironment 5 }


--
-- PFDP data
wsPFDP	 	OBJECT-IDENTITY
		STATUS current
		DESCRIPTION
			"PFDP data"
		::= { ibos 3 }


-- PFDP Neighbours Table
wsNeighboursTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsNeighboursEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of discovered PFDB Neighbours."
		::= { wsPFDP 1 }

wsNeighboursEntry	OBJECT-TYPE
		SYNTAX WsNeighboursEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a neighbour."
		INDEX { wsNeighbourIfIndex, wsNeighbourNIndex }
		::= { wsNeighboursTable 1 }

WsNeighboursEntry ::=
	SEQUENCE {
		wsNeighbourIfIndex	Unsigned32,
		wsNeighbourNIndex	Unsigned32,
		wsNeighbourHostname	DisplayString,
		wsNeighbourLocalIf	DisplayString,
		wsNeighbourRemoteIf	DisplayString,
		wsNeighbourModel	DisplayString,
		wsNeighbourLastAct	Integer32,
		wsNeighbourOSVersion	DisplayString,
		wsNeighbourSNPA		OCTET STRING,
		wsNeighbourUptime	Unsigned32,
		wsNeighbourState	INTEGER,
		wsNeighbourDBCount	Unsigned32,
		wsNeighbourCreated	TimeTicks,
		wsNeighbourPacketsIn	Unsigned32,
		wsNeighbourPacketErrorsrIn	Unsigned32
	}

wsNeighbourIfIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour interface index."
		::= { wsNeighboursEntry 1 }

wsNeighbourNIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour index."
		::= { wsNeighboursEntry 2 }

wsNeighbourHostname	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour hostname."
		::= { wsNeighboursEntry 3 }

wsNeighbourLocalIf	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Local interface that neighbour is on."
		::= { wsNeighboursEntry 4 }

wsNeighbourRemoteIf	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Remote interface of neighbour."
		::= { wsNeighboursEntry 5 }

wsNeighbourModel	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour model."
		::= { wsNeighboursEntry 6 }

wsNeighbourLastAct	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Time in seconds since last neighbour advertisment."
		::= { wsNeighboursEntry 7 }

wsNeighbourOSVersion	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour OS version."
		::= { wsNeighboursEntry 8 }

wsNeighbourSNPA		OBJECT-TYPE
		SYNTAX OCTET STRING
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"SNPA of neighbour interface."
		::= { wsNeighboursEntry 9 }

wsNeighbourUptime	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Uptime in seconds for neighbour."
		::= { wsNeighboursEntry 10 }

wsNeighbourState	OBJECT-TYPE
		SYNTAX INTEGER {
				bidirectional(1),
				unidirectional(2)
		       }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"State of neighbour."
		::= { wsNeighboursEntry 11 }

wsNeighbourDBCount	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Database entries for neighbour."
		::= { wsNeighboursEntry 12 }

wsNeighbourCreated	OBJECT-TYPE
		SYNTAX TimeTicks
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The value of sysUpTime at the time the neighbour
			 first appeared on the interface."
		::= { wsNeighboursEntry 13 }

wsNeighbourPacketsIn	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Number of PFDP packets received from neighbour."
		::= { wsNeighboursEntry 14 }

wsNeighbourPacketErrorsrIn	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Number of erroneous PFDP packets received from 
			 neighbour."
		::= { wsNeighboursEntry 15 }

-- PFDP Neighbour Ports Table
wsNeighbourPortsTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsNeighbourPortsEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of ports of discovered PFDB Neighbours."
		::= { wsPFDP 2 }

wsNeighbourPortsEntry	OBJECT-TYPE
		SYNTAX WsNeighbourPortsEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a port of a neighbour."
		INDEX { wsNeighbourPortIfIndex, wsNeighbourPortNIndex, wsNeighbourPortPIndex }
		::= { wsNeighbourPortsTable 1 }

WsNeighbourPortsEntry ::=
	SEQUENCE {
		wsNeighbourPortIfIndex			Unsigned32,
		wsNeighbourPortNIndex			Unsigned32,
		wsNeighbourPortPIndex			Unsigned32,
		wsNeighbourPortName			DisplayString,
		wsNeighbourPortState			BITS,
		wsNeighbourPortTxOctets			Counter64,
		wsNeighbourPortTxDropPkts		Unsigned32,
		wsNeighbourPortTxBroadcastPkts		Unsigned32,
		wsNeighbourPortTxMulticastPkts		Unsigned32,
		wsNeighbourPortTxUnicastPkts		Unsigned32,
		wsNeighbourPortTxCollisions		Unsigned32,
		wsNeighbourPortTxDeferredTransmit	Unsigned32,
		wsNeighbourPortTxFrameInDisc		Unsigned32,
		wsNeighbourPortRxOctets			Counter64,
		wsNeighbourPortRxUndersizePkts		Unsigned32,
		wsNeighbourPortPkts64Octets		Unsigned32,
		wsNeighbourPortPkts65to127Octets	Unsigned32,
		wsNeighbourPortPkts128to255Octets	Unsigned32,
		wsNeighbourPortPkts256to511Octets	Unsigned32,
		wsNeighbourPortPkts512to1023Octets	Unsigned32,
		wsNeighbourPortPkts1024to1522Octets	Unsigned32,
		wsNeighbourPortRxOversizePkts		Unsigned32,
		wsNeighbourPortRxJabbers		Unsigned32,
		wsNeighbourPortRxAlignmentErrors	Unsigned32,
		wsNeighbourPortRxFCSErrors		Unsigned32,
		wsNeighbourPortRxGoodOctets		Counter64,
		wsNeighbourPortRxDropPkts		Unsigned32,
		wsNeighbourPortRxUnicastPkts		Unsigned32,
		wsNeighbourPortRxMulticastPkts		Unsigned32,
		wsNeighbourPortRxBroadcastPkts		Unsigned32,
		wsNeighbourPortRxFragments		Unsigned32,
		wsNeighbourPortRxExcessSizeDisc		Unsigned32,
		wsNeighbourPortRxSymbolError		Unsigned32
	}

wsNeighbourPortIfIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour interface index."
		::= { wsNeighbourPortsEntry 1 }

wsNeighbourPortNIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour index."
		::= { wsNeighbourPortsEntry 2 }

wsNeighbourPortPIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour port index."
		::= { wsNeighbourPortsEntry 3 }

wsNeighbourPortName	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Name of neighbour port."
		::= { wsNeighbourPortsEntry 4 }

wsNeighbourPortState	OBJECT-TYPE
		SYNTAX BITS {
			reserved0(0),
			reserved1(1),
			reserved2(2),
			reserved3(3),
			vlaninfo(4),
			s100mbit(5),
			fullduplex(6),
			up(7)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"State of neighbour port."
		::= { wsNeighbourPortsEntry 5 }
		
wsNeighbourPortTxOctets	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The total number of good bytes of data transmitted by 
			 a port (excluding preamble but including FCS)."
		::= { wsNeighbourPortsEntry 6 }

wsNeighbourPortTxDropPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"This counter is incremented every time a transmit 
			 packet is dropped due to lack of resources (e.g., 
			 transmit FIFO underflow), or an internal MAC sublayer 
			 transmit error not counted by.in either the 
			 TxLateCollision or the TxExcessiveCollision counters."
		::= { wsNeighbourPortsEntry 7 }

wsNeighbourPortTxBroadcastPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets transmitted by a port that
			 are directed to a broadcast address. This counter does
			 not include errored broadcast packets or valid 
			 multicast packets."
		::= { wsNeighbourPortsEntry 8 }

wsNeighbourPortTxMulticastPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets transmitted by a port that 
			 are directed to a multicast address. This counter does
			 not include errored multicast packets or valid 
			 broadcast packets."
		::= { wsNeighbourPortsEntry 9 }

wsNeighbourPortTxUnicastPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets transmitted by a port that 
			 are addressed to a unicast address."
		::= { wsNeighbourPortsEntry 10 }

wsNeighbourPortTxCollisions	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of collisions experienced by a port during
			 packet transmissions."
		::= { wsNeighbourPortsEntry 11 }

wsNeighbourPortTxDeferredTransmit	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets transmitted by a port for which 
			 the first transmission attempt is delayed because the 
			 medium is busy."
		::= { wsNeighbourPortsEntry 12 }

wsNeighbourPortTxFrameInDisc	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of valid packets received which are 
			 discarded by the forwarding process due to lack of 
			 space on an output queue."
		::= { wsNeighbourPortsEntry 13 }

wsNeighbourPortRxOctets	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of bytes of data received by a port 
			 (excluding preamble but including FCS), including 
			 bad packets."
		::= { wsNeighbourPortsEntry 14 }

wsNeighbourPortRxUndersizePkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that are
			 less than 64 bytes long (excluding framing bits but 
			 including the FCS)."
		::= { wsNeighbourPortsEntry 15 }

wsNeighbourPortPkts64Octets	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets (including error packets) that 
			 are 64 bytes long."
		::= { wsNeighbourPortsEntry 16 }

wsNeighbourPortPkts65to127Octets	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets (including error packets) that 
			 are between 65 and 127 bytes long."
		::= { wsNeighbourPortsEntry 17 }

wsNeighbourPortPkts128to255Octets	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets (including error packets) that 
			 are between 128 and 255 bytes long."
		::= { wsNeighbourPortsEntry 18 }

wsNeighbourPortPkts256to511Octets	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets (including error packets) that 
			 are between 256 and 511 bytes long."
		::= { wsNeighbourPortsEntry 19 }

wsNeighbourPortPkts512to1023Octets	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets (including error packets) that 
			 are between 512 and 1023 bytes long."
		::= { wsNeighbourPortsEntry 20 }

wsNeighbourPortPkts1024to1522Octets	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets (including error packets) that 
			 are between 1024 and 1522 bytes long."
		::= { wsNeighbourPortsEntry 21 }

wsNeighbourPortRxOversizePkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that are
			 greater than 1522 bytes inclusive (excluding framing 
			 bits but including the FCS). Note that this counter 
			 alone will be incremented for packets in the range
			 1523-1536 bytes inclusive, whereas both this counter
			 and the RxExcessSizeDisc counter will be incremented
			 for packets of 1537 bytes and higher."
		::= { wsNeighbourPortsEntry 22 }

wsNeighbourPortRxJabbers	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets received by a port that are 
			longer than 1522 bytes and have either an FCS error or 
			an alignment error."
		::= { wsNeighbourPortsEntry 23 }

wsNeighbourPortRxAlignmentErrors	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets received by a port that have a 
			 length (excluding framing bits but including FCS) 
			 between 64 and 1522 bytes, inclusive, and have a bad 
			 FCS with a nonintegral number of bytes."
		::= { wsNeighbourPortsEntry 24 }

wsNeighbourPortRxFCSErrors	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets received by a port that have a 
			 length (excluding framing bits but including FCS) 
			 between 64 and 1522 bytes inclusive, and have a bad 
			 FCS with an integral number of bytes."
		::= { wsNeighbourPortsEntry 25 }

wsNeighbourPortRxGoodOctets	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The total number of bytes in all good packets received
			 by a port (excluding framing bits but including FCS)."
		::= { wsNeighbourPortsEntry 26 }

wsNeighbourPortRxDropPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that were
			 dropped due to lack of resources (e.g., lack of input
			 buffers) or were dropped due to lack of resources 
			 before a determination of the validity of the packet
			 was able to be made (e.g., receive FIFO overflow). The
			 counter is only incremented if the receive error was 
			 not counted by.either the RxExcessSizeDisc, the 
			 RxAlignmentErrors or the RxFCSErrors counters."
		::= { wsNeighbourPortsEntry 27 }

wsNeighbourPortRxUnicastPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that are
			 addressed to a unicast address."
		::= { wsNeighbourPortsEntry 28 }

wsNeighbourPortRxMulticastPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that are
			 directed to a multicast address. This counter does not
			 include errored multicast packets or valid broadcast
			 packets."
		::= { wsNeighbourPortsEntry 29 }

wsNeighbourPortRxBroadcastPkts	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that are
			 directed to the broadcast address. This counter does 
			 not include errored broadcast packets or valid 
			 multicast packets."
		::= { wsNeighbourPortsEntry 30 }

wsNeighbourPortRxFragments	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of packets received by a port that are less
			 than 64 bytes (excluding framing bits) and have either
			 an FCS error or an alignment error."
		::= { wsNeighbourPortsEntry 31 }

wsNeighbourPortRxExcessSizeDisc	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The number of good packets received by a port that are
			 greater than 1536 bytes (excluding framing bits but
			 including the FCS) and were discarded due to excessive
			 length. Note that the RxOversizePkts counter alone is
			 incremented for packets in the range 1523-1536 bytes
			 inclusive, whereas both this counter and the 
			 RxOversizePkts counter are incremented for packets of
			 1537 bytes and higher."
		::= { wsNeighbourPortsEntry 32 }

wsNeighbourPortRxSymbolError	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"The total number of times a valid length packet was
			 received at a port and at least one invalid data 
			 symbol was detected. Counter only increment once per
			 carrier event and does not increment on detection of
			 collision during the carrier event."
		::= { wsNeighbourPortsEntry 33 }



-- PFDP Neighbour Ports SNPA Table
wsNeighbourPortSNPATable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsNeighbourPortSNPAEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of known SNPA on ports of discovered PFDB Neighbours."
		::= { wsPFDP 3 }

wsNeighbourPortSNPAEntry	OBJECT-TYPE
		SYNTAX WsNeighbourPortSNPAEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a known SNPA on a port of a neighbour."
		INDEX { wsNeighbourPortSNPAIfIndex, wsNeighbourPortSNPANIndex, 
			wsNeighbourPortSNPAPIndex, wsNeighbourPortSNPASIndex }
		::= { wsNeighbourPortSNPATable 1 }

WsNeighbourPortSNPAEntry ::=
	SEQUENCE {
		wsNeighbourPortSNPAIfIndex		Unsigned32,
		wsNeighbourPortSNPANIndex		Unsigned32,
		wsNeighbourPortSNPAPIndex		Unsigned32,
		wsNeighbourPortSNPASIndex		Unsigned32,
		wsNeighbourPortSNPASMCast		Integer32,
		wsNeighbourPortSNPA			OCTET STRING
	}

wsNeighbourPortSNPAIfIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour interface index."
		::= { wsNeighbourPortSNPAEntry 1 }

wsNeighbourPortSNPANIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour index."
		::= { wsNeighbourPortSNPAEntry 2 }

wsNeighbourPortSNPAPIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour port index."
		::= { wsNeighbourPortSNPAEntry 3 }

wsNeighbourPortSNPASIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Neighbour port SNPA index."
		::= { wsNeighbourPortSNPAEntry 4 }

wsNeighbourPortSNPASMCast	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Set to 1 if SNPA is a multicast address, 0 otherwise."
		::= { wsNeighbourPortSNPAEntry 5 }

wsNeighbourPortSNPA		OBJECT-TYPE
		SYNTAX OCTET STRING
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Known SNPA on neighbour port."
		::= { wsNeighbourPortSNPAEntry 6 }

--
-- SFP Table
wsSFPTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsSFPEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table with information on SFPs."
		::= { ibos 4 }

wsSFPEntry	OBJECT-TYPE
		SYNTAX WsSFPEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for an SFP."
		INDEX { wsSFPIndex }
		::= { wsSFPTable 1 }

WsSFPEntry ::=
	SEQUENCE {
		wsSFPIndex 		Unsigned32,
		wsSFPStatus 		INTEGER,
		wsSFPConnector 		INTEGER,
		wsSFPTransceiver 	BITS,
		wsSFPEncoding 		INTEGER,
		wsSFPBitrate 		Unsigned32,
		wsSFPSingleModeLen 	Unsigned32,
		wsSFPMultiMode50Len 	Unsigned32,
		wsSFPMultiMode625Len 	Unsigned32,
		wsSFPCopperLen 		Unsigned32,
		wsSFPTempStatus 	INTEGER,
		wsSFPTemp 		Integer32,
		wsSFPVoltStatus 	INTEGER,
		wsSFPVolt 		Integer32,
		wsSFPTXCurrentStatus 	INTEGER,
		wsSFPTXCurrent 		Integer32,
		wsSFPTXPowerStatus 	INTEGER,
		wsSFPTXPower		Integer32,
		wsSFPRXPowerStatus 	INTEGER,
		wsSFPRXPower 		Integer32,
		wsSFPTransceiverExt 	BITS,
		wsSFPTXdBmPower		Integer32,
		wsSFPRXdBmPower		Integer32,
		wsSFPTempNormalLow	Integer32,
		wsSFPTempNormalHigh	Integer32,
		wsSFPTempWarningLow	Integer32,
		wsSFPTempWarningHigh	Integer32,
		wsSFPVoltNormalLow	Integer32,
		wsSFPVoltNormalHigh	Integer32,
		wsSFPVoltWarningLow	Integer32,
		wsSFPVoltWarningHigh	Integer32,
		wsSFPTXCurrentNormalLow		Integer32,
		wsSFPTXCurrentNormalHigh	Integer32,
		wsSFPTXCurrentWarningLow	Integer32,
		wsSFPTXCurrentWarningHigh	Integer32,
		wsSFPTXOutputPowNormalLowuW	Integer32,
		wsSFPTXOutputPowNormalHighuW	Integer32,
		wsSFPTXOutputPowWarningLowuW	Integer32,
		wsSFPTXOutputPowWarningHighuW	Integer32,
		wsSFPTXOutputPowNormalLowdBm	Integer32,
		wsSFPTXOutputPowNormalHighdBm	Integer32,
		wsSFPTXOutputPowWarningLowdBm	Integer32,
		wsSFPTXOutputPowWarningHighdBm	Integer32,
		wsSFPRXInputPowNormalLowuW	Integer32,
		wsSFPRXInputPowNormalHighuW	Integer32,
		wsSFPRXInputPowWarningLowuW	Integer32,
		wsSFPRXInputPowWarningHighuW	Integer32,
		wsSFPRXInputPowNormalLowdBm	Integer32,
		wsSFPRXInputPowNormalHighdBm	Integer32,
		wsSFPRXInputPowWarningLowdBm	Integer32,
		wsSFPRXInputPowWarningHighdBm	Integer32,
		wsSFPPartNumber		DisplayString,
		wsSFPSerialNumber	DisplayString
	}

wsSFPIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"SFP number."
		::= { wsSFPEntry 1 }

wsSFPStatus	OBJECT-TYPE
		SYNTAX INTEGER {
			ok(0),
			missing(1),
			invalid(2)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"SFP status."
		::= { wsSFPEntry 2 }

wsSFPConnector 	OBJECT-TYPE
		SYNTAX INTEGER {
			sc(1),
			fiberJack(6),
			lc(7),
			mtrj(8),
			mu(9),
			sg(10),
			opticalPigtail(11),
			hssdcii(32),
			copperPigtail(33)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Connector type."
		::= { wsSFPEntry 3 }

wsSFPTransceiver	OBJECT-TYPE
		SYNTAX BITS {
			sBasePX(0),
			sBaseBX10(1),
			s100BaseFX(2),
			s100BaseLX(3),
			s1000BaseT(4),
			s1000BaseCX(5),
			s1000BaseLX(6),
			s1000BaseSX(7)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Transceiver capablities."
		::= { wsSFPEntry 4 }

wsSFPEncoding 	OBJECT-TYPE
		SYNTAX INTEGER {
			e8B10B(1),
			e4B5B(2),
			eNRZ(3),
			eManchester(4)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Encoding type."
		::= { wsSFPEntry 5 }

wsSFPBitrate	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"SFP Bitrate (Mbps)."
		::= { wsSFPEntry 6 }

wsSFPSingleModeLen	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported single mode fiber link length (m).
			A value of 255000 means > 254000 m."
		::= { wsSFPEntry 7 }

wsSFPMultiMode50Len	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported 50um multi-mode fiber link length (m).
			A value of 2550 means > 2540 m."
		::= { wsSFPEntry 8 }

wsSFPMultiMode625Len	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported 62.5um multi-mode fiber link length (m).
			A value of 2550 means > 2540 m."
		::= { wsSFPEntry 9 }

wsSFPCopperLen	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported copper link length (m).
			A value of 255 means > 254 m."
		::= { wsSFPEntry 10 }

wsSFPTempStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Temperature status."
		::= { wsSFPEntry 11 }


wsSFPTemp	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured temperature in degrees centigrade."
		::= { wsSFPEntry 12 }

wsSFPVoltStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Voltage status."
		::= { wsSFPEntry 13 }


wsSFPVolt	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured voltage (mV)."
		::= { wsSFPEntry 14 }

wsSFPTXCurrentStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX Current status."
		::= { wsSFPEntry 15 }


wsSFPTXCurrent	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured TX current (mA)."
		::= { wsSFPEntry 16 }

wsSFPTXPowerStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX power status."
		::= { wsSFPEntry 17 }


wsSFPTXPower	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured TX power (uW)."
		::= { wsSFPEntry 18 }

wsSFPRXPowerStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX power status."
		::= { wsSFPEntry 19 }


wsSFPRXPower	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured RX power (uW)."
		::= { wsSFPEntry 20 }

wsSFPTransceiverExt	OBJECT-TYPE
		SYNTAX BITS {
			s10000BaseER(0),
			s10000BaseLRM(1),
			s10000BaseLR(2),
			s10000BaseSR(3),
			sActiveCable(4),
			sPassiveCable(5),
			reserved6(6),
			reserved7(7)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"10G Ethernet Compliance Codes."
		::= { wsSFPEntry 21 }

wsSFPTXdBmPower	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured TX power (dBm x 1000)."
		::= { wsSFPEntry 22 }

wsSFPRXdBmPower	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured RX power (dBm x 1000)."
		::= { wsSFPEntry 23 }

wsSFPTempNormalLow OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Operating temparature normal range low (C)."
		::= { wsSFPEntry 24 }

wsSFPTempNormalHigh OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Operating temparature normal range high (C)."
		::= { wsSFPEntry 25 }

wsSFPTempWarningLow OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Operating temparature warning range low (C)."
		::= { wsSFPEntry 26 }

wsSFPTempWarningHigh OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Operating temparature warning range high (C)."
		::= { wsSFPEntry 27 }

wsSFPVoltNormalLow OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supply voltage normal range low (mV)."
		::= { wsSFPEntry 28 }

wsSFPVoltNormalHigh OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supply voltage normal range high (mV)."
		::= { wsSFPEntry 29 }

wsSFPVoltWarningLow OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supply voltage warning range low (mV)."
		::= { wsSFPEntry 30 }

wsSFPVoltWarningHigh OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supply voltage warning range high (mV)."
		::= { wsSFPEntry 31 }

wsSFPTXCurrentNormalLow OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX Current normal range low (mA)."
		::= { wsSFPEntry 32 }

wsSFPTXCurrentNormalHigh OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX Current normal range high (mA)."
		::= { wsSFPEntry 33 }

wsSFPTXCurrentWarningLow OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX Current warning range low (mA)."
		::= { wsSFPEntry 34 }

wsSFPTXCurrentWarningHigh OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX Current warning range high (mA)."
		::= { wsSFPEntry 35 }

wsSFPTXOutputPowNormalLowuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power normal range low (uW)."
		::= { wsSFPEntry 36 }

wsSFPTXOutputPowNormalHighuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power normal range high (uW)."
		::= { wsSFPEntry 37 }

wsSFPTXOutputPowWarningLowuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power warning range low (uW)."
		::= { wsSFPEntry 38 }

wsSFPTXOutputPowWarningHighuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power warning range high (uW)."
		::= { wsSFPEntry 39 }

wsSFPTXOutputPowNormalLowdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power normal range low (dBm x 1000)."
		::= { wsSFPEntry 40 }

wsSFPTXOutputPowNormalHighdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power normal range high (dBm x 1000)."
		::= { wsSFPEntry 41 }

wsSFPTXOutputPowWarningLowdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power warning range low (dBm x 1000)."
		::= { wsSFPEntry 42 }

wsSFPTXOutputPowWarningHighdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX output power warning range high (dBm x 1000)."
		::= { wsSFPEntry 43 }

wsSFPRXInputPowNormalLowuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power normal range low (uW)."
		::= { wsSFPEntry 44 }

wsSFPRXInputPowNormalHighuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power normal range high (uW)."
		::= { wsSFPEntry 45 }

wsSFPRXInputPowWarningLowuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power warning range low (uW)."
		::= { wsSFPEntry 46 }

wsSFPRXInputPowWarningHighuW OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power warning range high (uW)."
		::= { wsSFPEntry 47 }

wsSFPRXInputPowNormalLowdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power normal range low (dBm x 1000)."
		::= { wsSFPEntry 48 }

wsSFPRXInputPowNormalHighdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power normal range high (dBm x 1000)."
		::= { wsSFPEntry 49 }

wsSFPRXInputPowWarningLowdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power warning range low (dBm x 1000)."
		::= { wsSFPEntry 50 }

wsSFPRXInputPowWarningHighdBm OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX input power warning range high (dBm x 1000)."
		::= { wsSFPEntry 51 }

wsSFPPartNumber OBJECT-TYPE
		SYNTAX DisplayString (SIZE (0..32))
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"SFP part number."
		::= { wsSFPEntry 52 }

wsSFPSerialNumber OBJECT-TYPE
		SYNTAX DisplayString (SIZE (0..32))
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"SFP serial number."
		::= { wsSFPEntry 53 }

--
-- Accounting objects
wsAccounting   	OBJECT-IDENTITY
                STATUS current
                DESCRIPTION
                        "Accounting objects"
               ::= { ibos 5 }

wsPolicyTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsPolicyEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table of policy accounting information."
		::= { wsAccounting 1 }

wsPolicyEntry	OBJECT-TYPE
		SYNTAX WsPolicyEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for a policy."
		INDEX { wsPolicyIfIndex, wsPolicyName }
		::= { wsPolicyTable 1 }

WsPolicyEntry ::=
	SEQUENCE {
		wsPolicyIfIndex		Unsigned32,
		wsPolicyIfName		DisplayString,
		wsPolicyName 		DisplayString,
		wsPolicyCookie		DisplayString,
		wsPolicyInPkts		Counter64,
		wsPolicyInBytes		Counter64,
		wsPolicyInDrops		Counter64,
		wsPolicyOutPkts		Counter64,
		wsPolicyOutBytes	Counter64,
		wsPolicyOutDrops	Counter64,
		wsPolicyUsedCnt		Gauge32
	}

wsPolicyIfIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Interface index of policy accounting entry."
		::= { wsPolicyEntry 1 }

wsPolicyIfName  OBJECT-TYPE
                SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
		        "Interface name of policy accountin entry"
	        ::= { wsPolicyEntry 2 }

wsPolicyName	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Name of policy."
		::= { wsPolicyEntry 3 }

wsPolicyCookie	OBJECT-TYPE
		SYNTAX DisplayString
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Name of policy cookie."
		::= { wsPolicyEntry 4 }

wsPolicyInPkts	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Input packets counter."
		::= { wsPolicyEntry 5 }

wsPolicyInBytes	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Input bytes counter."
		::= { wsPolicyEntry 6 }

wsPolicyInDrops	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Number input packets dropped."
		::= { wsPolicyEntry 7 }

wsPolicyOutPkts	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Output packets counter."
		::= { wsPolicyEntry 8 }

wsPolicyOutBytes	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Output bytes counter."
		::= { wsPolicyEntry 9 }

wsPolicyOutDrops	OBJECT-TYPE
		SYNTAX Counter64
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Number input packets dropped."
		::= { wsPolicyEntry 10 }

wsPolicyUsedCnt	OBJECT-TYPE
		SYNTAX Gauge32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Number policy maps set to use this policy."
		::= { wsPolicyEntry 11 }

--
-- XFP Table
wsXFPTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF WsXFPEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"Table with information on XFPs."
		::= { ibos 6 }

wsXFPEntry	OBJECT-TYPE
		SYNTAX WsXFPEntry
		MAX-ACCESS not-accessible
		STATUS current
		DESCRIPTION
			"An entry for an XFP."
		INDEX { wsXFPIndex }
		::= { wsXFPTable 1 }

WsXFPEntry ::=
	SEQUENCE {
		wsXFPIndex 		Unsigned32,
		wsXFPStatus 		INTEGER,
		wsXFPConnector 		INTEGER,
		wsXFPTransceiver 	BITS,
		wsXFPEncoding 		BITS,
		wsXFPBitrateMin		Unsigned32,
		wsXFPBitrateMax		Unsigned32,
		wsXFPSingleModeLen 	Unsigned32,
		wsXFPMultiMode50Len 	Unsigned32,
		wsXFPMultiMode625Len 	Unsigned32,
		wsXFPCopperLen 		Unsigned32,
		wsXFPTempStatus 	INTEGER,
		wsXFPTemp 		Integer32,
		wsXFPTXCurrentStatus 	INTEGER,
		wsXFPTXCurrent 		Integer32,
		wsXFPTXPowerStatus 	INTEGER,
		wsXFPTXPower		Integer32,
		wsXFPRXPowerStatus 	INTEGER,
		wsXFPRXPower 		Integer32
	}

wsXFPIndex	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"XFP number."
		::= { wsXFPEntry 1 }

wsXFPStatus	OBJECT-TYPE
		SYNTAX INTEGER {
			ok(0),
			missing(1),
			invalid(2)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"XFP status."
		::= { wsXFPEntry 2 }

wsXFPConnector 	OBJECT-TYPE
		SYNTAX INTEGER {
			sc(1),
			fiberJack(6),
			lc(7),
			mtrj(8),
			mu(9),
			sg(10),
			opticalPigtail(11),
			hssdcii(32),
			copperPigtail(33)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Connector type."
		::= { wsXFPEntry 3 }

wsXFPTransceiver	OBJECT-TYPE
		SYNTAX BITS {
			reserved0(0),
			s10GBaseEW(1),
			s10GBaseLW(2),
			s10GBaseSW(3),
			s10GBaseLRM(4),
			s10GBaseER(5),
			s10GBaseLR(6),
			s10GBaseSR(7)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Transceiver capablities."
		::= { wsXFPEntry 4 }

wsXFPEncoding 	OBJECT-TYPE
		SYNTAX BITS {
			reserved0(0),
			reserved1(1),
			reserved2(2),
			eRZ(3),
			eNRZ(4),
			eSonetScrambl(5),
			e8B10B(6),
			e64B66B(7)
		}
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Encoding type."
		::= { wsXFPEntry 5 }

wsXFPBitrateMin	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"XFP Min Bitrate (Mbps)."
		::= { wsXFPEntry 6 }

wsXFPBitrateMax	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"XFP Max Bitrate (Mbps)."
		::= { wsXFPEntry 7 }

wsXFPSingleModeLen	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported single mode fiber link length (m).
			A value of 255000 means > 254000 m."
		::= { wsXFPEntry 8 }

wsXFPMultiMode50Len	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported 50um multi-mode fiber link length (m).
			A value of 510 means > 508 m."
		::= { wsXFPEntry 9 }

wsXFPMultiMode625Len	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported 62.5um multi-mode fiber link length (m).
			A value of 255 means > 254 m."
		::= { wsXFPEntry 10 }

wsXFPCopperLen	OBJECT-TYPE
		SYNTAX Unsigned32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Supported copper link length (m).
			A value of 255 means > 254 m."
		::= { wsXFPEntry 11 }

wsXFPTempStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Temperature status."
		::= { wsXFPEntry 12 }


wsXFPTemp	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured temperature in degrees centigrade."
		::= { wsXFPEntry 13 }

wsXFPTXCurrentStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX Current status."
		::= { wsXFPEntry 14 }


wsXFPTXCurrent	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured TX current (mA)."
		::= { wsXFPEntry 15 }

wsXFPTXPowerStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"TX power status."
		::= { wsXFPEntry 16 }

wsXFPTXPower	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured TX power (uW)."
		::= { wsXFPEntry 17 }

wsXFPRXPowerStatus 	OBJECT-TYPE
		SYNTAX INTEGER {
                       unknown(0),
                       alarmLow(1),
                       warnLow(2),
                       ok(3),
                       warnHigh(4),
                       alarmHigh(5)
                }
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"RX power status."
		::= { wsXFPEntry 18 }

wsXFPRXPower	OBJECT-TYPE
		SYNTAX Integer32
		MAX-ACCESS read-only
		STATUS current
		DESCRIPTION
			"Measured RX power (uW)."
		::= { wsXFPEntry 19 }

--
-- Waystream ibos environment related notifications
wsIbosEnvironmentNotifications      OBJECT IDENTIFIER ::={ wsEnvironment 0 }

wsIbosTempLow   NOTIFICATION-TYPE
                OBJECTS { wsTempSensor, wsTempMeasured, wsTempThresholdLow, wsTempStatus }
                STATUS current
                DESCRIPTION
                        "A wsIbosTempLow trap signifies that the SNMP entity,
			 acting in an agent role, has detected that one of its
                        temperature sensors is outside of the predefined low
                        threshold."
                ::= { wsIbosEnvironmentNotifications 1 }

wsIbosTempHigh  NOTIFICATION-TYPE
                OBJECTS { wsTempSensor, wsTempMeasured, wsTempThresholdHigh, wsTempStatus }
                STATUS current
                DESCRIPTION
                        "A wsIbosTempHigh trap signifies that the SNMP entity,
                        acting in an agent role, has detected that one of its
                        temperature sensors is outside of the predefined high
                        threshold."
                ::= { wsIbosEnvironmentNotifications 2 }

wsIbosVoltLow   NOTIFICATION-TYPE
                OBJECTS { wsVoltChannel, wsVoltMeasured, wsVoltThresholdLow, wsVoltStatus }
                STATUS current
                DESCRIPTION
			"A wsIbosVoltLow trap signifies that the SNMP entity,
			acting in an agent role, has detected that one of its
			voltage channels is outside of the predefined low
			threshold."
                ::= { wsIbosEnvironmentNotifications 3 }

wsIbosVoltHigh  NOTIFICATION-TYPE
                OBJECTS { wsVoltChannel, wsVoltMeasured, wsVoltThresholdHigh, wsVoltStatus }
                STATUS current
                DESCRIPTION
                        "A wsIbosVoltHigh trap signifies that the SNMP entity,
                        acting in an agent role, has detected that one of its
                        voltage channels is outside of the predefined high
                        threshold."
                ::= { wsIbosEnvironmentNotifications 4 }

wsIbosFanRPMLow NOTIFICATION-TYPE
                OBJECTS { wsFanNumber, wsFanRPM }
                STATUS current
                DESCRIPTION
                        "A wsIbosFanRPMLow trap signifies that the SNMP entity,
                        acting in an agent role, has detected that one of its
                        fans's RPM is lower than the system defined threshold."
                ::= { wsIbosEnvironmentNotifications 5 }

wsIbosFanOutVoltLow NOTIFICATION-TYPE
                OBJECTS { wsFanVoltage }
                STATUS current
                DESCRIPTION
			"A wsIbosFanOutVoltLow trap signifies that the SNMP
			entity, acting in an agent role, has detected that its
			fan output voltage is lower than the system defined
			threshold."
                ::= { wsIbosEnvironmentNotifications 6 }

END