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
|
-- This file was automatically generated from ciena-ws-port.yang. Do not edit.
CIENA-WS-PORT-MIB DEFINITIONS ::= BEGIN
IMPORTS
cienaWsConfig
FROM CIENA-WS-MIB
Decimal1Dig, DescriptionString, EnabledDisabledEnum, MacString, PortId, PortName, ServiceDomainIdx, ServiceIdx, XcvrType
FROM CIENA-WS-TYPEDEFS-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
Counter64, Integer32, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC;
cienaWsPortMIB MODULE-IDENTITY
LAST-UPDATED "201707070000Z"
ORGANIZATION "Ciena Corporation"
CONTACT-INFO "Web URL: http://www.ciena.com/
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A.
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION "This module defines port data for the Waveserver. Ports are related to both client and line and represent the port through which the line or client signal travels. They are automatically created by the system. By default, line ports are automatically mapped to client ports via services and service-domains."
REVISION "201707070000Z"
DESCRIPTION "Waveserver Release 1.5
Added ncx:user-write to 'ports'."
REVISION "201703020000Z"
DESCRIPTION "Waveserver Rel 1.4 revision.
Obsolete: mac-layer container and its sub node unavailable-seconds leaf.
Added: unavailable-seconds leaf to container pcs-layer.
Added: odu-layer container which contains errored-seconds, severely-errored-seconds, unavailable-seconds leaves.
Added: average-link-utilization leaf to container interface-counts/rx and interface-counts/tx respectively.
Added: xcvr-type leaf to properties container.
New ciena-ws-encryption.yang now contains augments for the ports properties container.
Aligned MIB files to respect YANG read/write status."
REVISION "201612120000Z"
DESCRIPTION "Waveserver Rel 1.3 revised.
Added: errored-seconds, severely-errored-seconds to the pcs-layer container,
Added: mac-layer container and unavailable-seconds leaf."
REVISION "201605300000Z"
DESCRIPTION "Waveserver Rel 1.2 revised.
Major restructuring of this YANG module."
REVISION "201602230000Z"
DESCRIPTION "Waveserver Rel 1.1 revised.
leaf 'speed' changed to be 'config false'.
leaf 'tunability-supported' type updated.
leaf 'port-speeds' type definition updated.
removed 'rpc ws-port-clear-total-statistics'.
leaf 'max-frame-size' range modified.
leaf loopback enum values updated.
"
REVISION "201509300000Z"
DESCRIPTION "Initial version."
::= { cienaWsConfig 7 }
PortOperationalState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "None"
SYNTAX INTEGER { unknown(-1), invalid(0), up(1), down(2), notauthenticated(3), loopbacktx(4), loopbackrx(5), unequipped(6) }
PortSpeed ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "None"
SYNTAX INTEGER { speedauto(-1), speed10gig(10000000), speed40gig(40000000), speed100gig(100000000) }
PortTypeEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "None"
SYNTAX INTEGER { unknown(5), ethernet10gig(6), ethernet40gig(7), ethernet100gig(8) }
cwsPortPortsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortPortsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Configuration and operational data for the port."
::= { cienaWsPortMIB 3 }
cwsPortPortsEntry OBJECT-TYPE
SYNTAX CwsPortPortsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortPortsTable."
INDEX { cwsPortPortsPortId }
::= { cwsPortPortsTable 1 }
CwsPortPortsEntry ::= SEQUENCE {
cwsPortPortsPortId Integer32
}
cwsPortPortsPortId OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Unique, logical ID of the port."
::= { cwsPortPortsEntry 1 }
cwsPortIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port identification."
::= { cienaWsPortMIB 4 }
cwsPortIdEntry OBJECT-TYPE
SYNTAX CwsPortIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortIdTable."
INDEX { cwsPortPortsPortId, cwsPortIdTableSnmpKey }
::= { cwsPortIdTable 1 }
CwsPortIdEntry ::= SEQUENCE {
cwsPortIdTableSnmpKey Integer32,
cwsPortIdName PortName,
cwsPortIdDescription DescriptionString,
cwsPortIdPortType PortTypeEnum,
cwsPortIdMacAddress MacString,
cwsPortIdInterfaceType INTEGER
}
cwsPortIdTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortId"
::= { cwsPortIdEntry 1 }
cwsPortIdName OBJECT-TYPE
SYNTAX PortName
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name of the port interface. Format is: port# or majorport#.minorport# "
::= { cwsPortIdEntry 2 }
cwsPortIdDescription OBJECT-TYPE
SYNTAX DescriptionString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Description of the port interface."
::= { cwsPortIdEntry 3 }
cwsPortIdPortType OBJECT-TYPE
SYNTAX PortTypeEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The port interface type."
::= { cwsPortIdEntry 4 }
cwsPortIdMacAddress OBJECT-TYPE
SYNTAX MacString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of the port."
::= { cwsPortIdEntry 5 }
cwsPortIdInterfaceType OBJECT-TYPE
SYNTAX INTEGER { inni(0), uni(1), enni(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The configured port interface type."
::= { cwsPortIdEntry 6 }
cwsPortStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port administrative and operational states."
::= { cienaWsPortMIB 5 }
cwsPortStateEntry OBJECT-TYPE
SYNTAX CwsPortStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortStateTable."
INDEX { cwsPortPortsPortId, cwsPortStateTableSnmpKey }
::= { cwsPortStateTable 1 }
CwsPortStateEntry ::= SEQUENCE {
cwsPortStateTableSnmpKey Integer32,
cwsPortStateAdminState INTEGER,
cwsPortStateOperationalState PortOperationalState,
cwsPortStateOperationalStateDuration OCTET STRING
}
cwsPortStateTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortState"
::= { cwsPortStateEntry 1 }
cwsPortStateAdminState OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The configured administrative state of the port."
::= { cwsPortStateEntry 2 }
cwsPortStateOperationalState OBJECT-TYPE
SYNTAX PortOperationalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operational state of the port."
::= { cwsPortStateEntry 3 }
cwsPortStateOperationalStateDuration OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Amount of time since last state transition."
::= { cwsPortStateEntry 4 }
cwsPortCapabilitiesTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCapabilitiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port capabilities."
::= { cienaWsPortMIB 6 }
cwsPortCapabilitiesEntry OBJECT-TYPE
SYNTAX CwsPortCapabilitiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCapabilitiesTable."
INDEX { cwsPortPortsPortId, cwsPortCapabilitiesTableSnmpKey }
::= { cwsPortCapabilitiesTable 1 }
CwsPortCapabilitiesEntry ::= SEQUENCE {
cwsPortCapabilitiesTableSnmpKey Integer32,
cwsPortCapabilitiesPortSpeeds BITS,
cwsPortCapabilitiesDuplex BITS,
cwsPortCapabilitiesAutoNegotiation BITS,
cwsPortCapabilitiesFlowControl BITS,
cwsPortCapabilitiesFecSupport EnabledDisabledEnum
}
cwsPortCapabilitiesTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCapabilities"
::= { cwsPortCapabilitiesEntry 1 }
cwsPortCapabilitiesPortSpeeds OBJECT-TYPE
SYNTAX BITS { ethernet10gig(3), ethernet40gig(4), ethernet100gig(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The speeds that the port can support."
::= { cwsPortCapabilitiesEntry 2 }
cwsPortCapabilitiesDuplex OBJECT-TYPE
SYNTAX BITS { half(0), full(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port duplex setting. The default setting is full."
::= { cwsPortCapabilitiesEntry 3 }
cwsPortCapabilitiesAutoNegotiation OBJECT-TYPE
SYNTAX BITS { off(0), on(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port auto-negotiation setting. The default setting is off."
::= { cwsPortCapabilitiesEntry 4 }
cwsPortCapabilitiesFlowControl OBJECT-TYPE
SYNTAX BITS { off(0), atx(1), arx(2), symmetric(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The default setting is off."
::= { cwsPortCapabilitiesEntry 5 }
cwsPortCapabilitiesFecSupport OBJECT-TYPE
SYNTAX EnabledDisabledEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Forward error correction"
::= { cwsPortCapabilitiesEntry 6 }
cwsPortPropertiesTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortPropertiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port properties."
::= { cienaWsPortMIB 7 }
cwsPortPropertiesEntry OBJECT-TYPE
SYNTAX CwsPortPropertiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortPropertiesTable."
INDEX { cwsPortPortsPortId, cwsPortPropertiesTableSnmpKey }
::= { cwsPortPropertiesTable 1 }
CwsPortPropertiesEntry ::= SEQUENCE {
cwsPortPropertiesTableSnmpKey Integer32,
cwsPortPropertiesXcvrType XcvrType,
cwsPortPropertiesLoopback INTEGER,
cwsPortPropertiesServiceIndex ServiceIdx,
cwsPortPropertiesServiceDomainIndex ServiceDomainIdx
}
cwsPortPropertiesTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortProperties"
::= { cwsPortPropertiesEntry 1 }
cwsPortPropertiesXcvrType OBJECT-TYPE
SYNTAX XcvrType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Transceiver type of the xcvr that's associated with this port. Type depends on what is physically plugged in. Read only attribute."
::= { cwsPortPropertiesEntry 5 }
cwsPortPropertiesLoopback OBJECT-TYPE
SYNTAX INTEGER { disabled(0), rx(1), tx(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Port PHY layer loopback. RX loopback is a loopback forwarding ingress traffic from RX port directly to TX port. TX loopback is a loopback forwarding egress traffic from TX port directly to RX port, TX loopback is not supported in I-NNI ports. The RX/TX loopback can only be enabled when the port admin-state is disabled. Enable an RX/TX loopback shall fail when the port has its admin-state enabled. Users shall be able to disable the xcvr/ptp when its child port loopback enabled. Enable xcvr/ptp shall not enable its child port with loopback enabled. A port shall has its operational state rx loopback when rx loopback is enabled, and tx loopback when tx loopback is enabled."
::= { cwsPortPropertiesEntry 2 }
cwsPortPropertiesServiceIndex OBJECT-TYPE
SYNTAX ServiceIdx
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The index number of the service the port is attached to. Only applies to UNI interface type."
::= { cwsPortPropertiesEntry 3 }
cwsPortPropertiesServiceDomainIndex OBJECT-TYPE
SYNTAX ServiceDomainIdx
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The index number of the service domain the port is attached to. Only applies to I-NNI interface type."
::= { cwsPortPropertiesEntry 4 }
cwsPortEthernetTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortEthernetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Ethernet properties."
::= { cienaWsPortMIB 8 }
cwsPortEthernetEntry OBJECT-TYPE
SYNTAX CwsPortEthernetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortEthernetTable."
INDEX { cwsPortPortsPortId, cwsPortEthernetTableSnmpKey }
::= { cwsPortEthernetTable 1 }
CwsPortEthernetEntry ::= SEQUENCE {
cwsPortEthernetTableSnmpKey Integer32,
cwsPortEthernetSpeed PortSpeed,
cwsPortEthernetMaxFrameSize Unsigned32,
cwsPortEthernetPauseProfile INTEGER,
cwsPortEthernetForwardErrorCorrection EnabledDisabledEnum
}
cwsPortEthernetTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortEthernet"
::= { cwsPortEthernetEntry 1 }
cwsPortEthernetSpeed OBJECT-TYPE
SYNTAX PortSpeed
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The configured port speed."
::= { cwsPortEthernetEntry 2 }
cwsPortEthernetMaxFrameSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The maximum transmission unit value (bytes)."
::= { cwsPortEthernetEntry 3 }
cwsPortEthernetPauseProfile OBJECT-TYPE
SYNTAX INTEGER { discard(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Port handling of ingress flow control"
::= { cwsPortEthernetEntry 4 }
cwsPortEthernetForwardErrorCorrection OBJECT-TYPE
SYNTAX EnabledDisabledEnum
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Forward error correction"
::= { cwsPortEthernetEntry 5 }
cwsPortConditioningTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortConditioningEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conditioning."
::= { cienaWsPortMIB 9 }
cwsPortConditioningEntry OBJECT-TYPE
SYNTAX CwsPortConditioningEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortConditioningTable."
INDEX { cwsPortPortsPortId, cwsPortConditioningTableSnmpKey }
::= { cwsPortConditioningTable 1 }
CwsPortConditioningEntry ::= SEQUENCE {
cwsPortConditioningTableSnmpKey Integer32,
cwsPortConditioningType INTEGER,
cwsPortConditioningHoldoff INTEGER
}
cwsPortConditioningTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortConditioning"
::= { cwsPortConditioningEntry 1 }
cwsPortConditioningType OBJECT-TYPE
SYNTAX INTEGER { none(0), laseroff(1), ethernet(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Egress UNI port consequent action for an EPL service to be applied on a far-end ingress UNI failure or network failure."
::= { cwsPortConditioningEntry 2 }
cwsPortConditioningHoldoff OBJECT-TYPE
SYNTAX INTEGER { ms0(0), ms100(100), ms200(200), ms300(300), ms400(400), ms500(500), ms600(600), ms700(700), ms800(800), ms900(900), ms1000(1000) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of milliseconds to delay Egress UNI port consequent action for an EPL service."
::= { cwsPortConditioningEntry 3 }
cwsPortCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Current statistics data."
::= { cienaWsPortMIB 10 }
cwsPortCurrentEntry OBJECT-TYPE
SYNTAX CwsPortCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentTableSnmpKey }
::= { cwsPortCurrentTable 1 }
CwsPortCurrentEntry ::= SEQUENCE {
cwsPortCurrentTableSnmpKey Integer32,
cwsPortCurrentFrameErrorRatio Counter64
}
cwsPortCurrentTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrent"
::= { cwsPortCurrentEntry 1 }
cwsPortCurrentFrameErrorRatio OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "RMON frame error ratio."
::= { cwsPortCurrentEntry 2 }
cwsPortCurrentRxCountsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentRxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Rx counts."
::= { cienaWsPortMIB 11 }
cwsPortCurrentRxCountsEntry OBJECT-TYPE
SYNTAX CwsPortCurrentRxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentRxCountsTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentRxCountsTableSnmpKey }
::= { cwsPortCurrentRxCountsTable 1 }
CwsPortCurrentRxCountsEntry ::= SEQUENCE {
cwsPortCurrentRxCountsTableSnmpKey Integer32,
cwsPortCurrentRxCountsBytes Counter64,
cwsPortCurrentRxCountsPackets Counter64,
cwsPortCurrentRxCountsAverageLinkUtilization Decimal1Dig,
cwsPortCurrentRxCountsCrcErroredPackets Counter64,
cwsPortCurrentRxCountsMulticastPackets Counter64,
cwsPortCurrentRxCountsBroadcastPackets Counter64,
cwsPortCurrentRxCountsPausePackets Counter64,
cwsPortCurrentRxCountsUndersizedPackets Counter64,
cwsPortCurrentRxCountsOversizedPackets Counter64,
cwsPortCurrentRxCountsFragmentPackets Counter64,
cwsPortCurrentRxCountsJabberPackets Counter64,
cwsPortCurrentRxCountsLengthOutRangePackets Counter64,
cwsPortCurrentRxCountsPackets64Octet Counter64,
cwsPortCurrentRxCountsPackets65127Octet Counter64,
cwsPortCurrentRxCountsPackets128255Octet Counter64,
cwsPortCurrentRxCountsPackets256511Octet Counter64,
cwsPortCurrentRxCountsPackets5121023Octet Counter64,
cwsPortCurrentRxCountsPackets10241518Octet Counter64
}
cwsPortCurrentRxCountsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentRxCounts"
::= { cwsPortCurrentRxCountsEntry 1 }
cwsPortCurrentRxCountsBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of bytes received including good and bad packets. This includes FCS bytes, but excludes framing bits."
::= { cwsPortCurrentRxCountsEntry 2 }
cwsPortCurrentRxCountsPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received, including all unicast, multicast, broadcast, MAC control, and bad packets"
::= { cwsPortCurrentRxCountsEntry 3 }
cwsPortCurrentRxCountsAverageLinkUtilization OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Average percent utilization derived from Rx bytes and port speed."
::= { cwsPortCurrentRxCountsEntry 19 }
cwsPortCurrentRxCountsCrcErroredPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received which contained an FCS error and were between 64 and 1518 bytes in length."
::= { cwsPortCurrentRxCountsEntry 4 }
cwsPortCurrentRxCountsMulticastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good multicast packets received that were between 64 and 1518 bytes in length. Excludes MAC control frames"
::= { cwsPortCurrentRxCountsEntry 5 }
cwsPortCurrentRxCountsBroadcastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good broadcast packets received that were between 64 and 1518 bytes in length. Excludes MAC control frames"
::= { cwsPortCurrentRxCountsEntry 6 }
cwsPortCurrentRxCountsPausePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of received valid pause packets that were between 64 and 1518 bytes in length"
::= { cwsPortCurrentRxCountsEntry 7 }
cwsPortCurrentRxCountsUndersizedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received that were less than 64 bytes (excluding framing bits but including FCS bytes) and were otherwise well formed. This counter also includes the number of packets discarded because of Ethernet length check errors. Undersize packets are discarded."
::= { cwsPortCurrentRxCountsEntry 8 }
cwsPortCurrentRxCountsOversizedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received (including unicast, multicast, and broadcast packets) that were longer than 1518 bytes up to the configured maximum frame size, that contained a valid FCS (excluding framing bits but including FCS bytes), and that were otherwise well formed"
::= { cwsPortCurrentRxCountsEntry 9 }
cwsPortCurrentRxCountsFragmentPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received between 10 and 63 bytes in length (excluding framing bits but including FCS bytes) that had either a bad FCS with an integral number of bytes (FCS Error) or a bad FCS with a non-integral number of bytes (Alignment Error). Fragment packets are discarded."
::= { cwsPortCurrentRxCountsEntry 10 }
cwsPortCurrentRxCountsJabberPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received that were longer than 1518 bytes up to the configured maximum frame size (excluding framing bits, but including FCS bytes), and had either a bad FCS with an integral number of bytes (FCS Error) or a bad FCS with a non-integral number of bytes (Alignment Error). Jabber packets are discarded"
::= { cwsPortCurrentRxCountsEntry 11 }
cwsPortCurrentRxCountsLengthOutRangePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received that exceeded the maximum frame size and contained a valid or invalid FCS"
::= { cwsPortCurrentRxCountsEntry 12 }
cwsPortCurrentRxCountsPackets64Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets (including bad packets) received that were 64 bytes in length (excluding framing bits but including FCS bytes)."
::= { cwsPortCurrentRxCountsEntry 13 }
cwsPortCurrentRxCountsPackets65127Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 65 and 127 bytes in length (excluding framing bits but including FCS bytes)."
::= { cwsPortCurrentRxCountsEntry 14 }
cwsPortCurrentRxCountsPackets128255Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 128 and 255 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortCurrentRxCountsEntry 15 }
cwsPortCurrentRxCountsPackets256511Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 256 and 511 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortCurrentRxCountsEntry 16 }
cwsPortCurrentRxCountsPackets5121023Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 512 and 1023 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortCurrentRxCountsEntry 17 }
cwsPortCurrentRxCountsPackets10241518Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 1024 and 1518 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortCurrentRxCountsEntry 18 }
cwsPortCurrentTxCountsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentTxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Tx counts."
::= { cienaWsPortMIB 12 }
cwsPortCurrentTxCountsEntry OBJECT-TYPE
SYNTAX CwsPortCurrentTxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentTxCountsTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentTxCountsTableSnmpKey }
::= { cwsPortCurrentTxCountsTable 1 }
CwsPortCurrentTxCountsEntry ::= SEQUENCE {
cwsPortCurrentTxCountsTableSnmpKey Integer32,
cwsPortCurrentTxCountsBytes Counter64,
cwsPortCurrentTxCountsPackets Counter64,
cwsPortCurrentTxCountsAverageLinkUtilization Decimal1Dig,
cwsPortCurrentTxCountsCrcErroredPackets Counter64,
cwsPortCurrentTxCountsMulticastPackets Counter64,
cwsPortCurrentTxCountsBroadcastPackets Counter64,
cwsPortCurrentTxCountsPausePackets Counter64,
cwsPortCurrentTxCountsExcessiveDeferredPackets Counter64,
cwsPortCurrentTxCountsGiantPackets Counter64,
cwsPortCurrentTxCountsUnderrunPackets Counter64,
cwsPortCurrentTxCountsLengthCheckErrorPackets Counter64,
cwsPortCurrentTxCountsLengthOutRangePackets Counter64
}
cwsPortCurrentTxCountsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentTxCounts"
::= { cwsPortCurrentTxCountsEntry 1 }
cwsPortCurrentTxCountsBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted bytes in good and bad packets including FCS bytes and excluding frame bits."
::= { cwsPortCurrentTxCountsEntry 2 }
cwsPortCurrentTxCountsPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted packets, including all unicast, multicast, broadcast, MAC control, and bad packets"
::= { cwsPortCurrentTxCountsEntry 3 }
cwsPortCurrentTxCountsAverageLinkUtilization OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Average percent utilization derived from Tx bytes and port speed."
::= { cwsPortCurrentTxCountsEntry 13 }
cwsPortCurrentTxCountsCrcErroredPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted packets with an FCS error"
::= { cwsPortCurrentTxCountsEntry 4 }
cwsPortCurrentTxCountsMulticastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good multicast packets transmitted"
::= { cwsPortCurrentTxCountsEntry 5 }
cwsPortCurrentTxCountsBroadcastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good broadcast packets transmitted"
::= { cwsPortCurrentTxCountsEntry 6 }
cwsPortCurrentTxCountsPausePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of pause packets transmitted"
::= { cwsPortCurrentTxCountsEntry 7 }
cwsPortCurrentTxCountsExcessiveDeferredPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted packets experiencing two or more deferrals. Applicable to copper ports only"
::= { cwsPortCurrentTxCountsEntry 8 }
cwsPortCurrentTxCountsGiantPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of well-formed packets larger than 1518 bytes, including FCS bytes but excluding framing bits."
::= { cwsPortCurrentTxCountsEntry 9 }
cwsPortCurrentTxCountsUnderrunPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of underrun packets transmitted"
::= { cwsPortCurrentTxCountsEntry 10 }
cwsPortCurrentTxCountsLengthCheckErrorPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of length check packets transmitted"
::= { cwsPortCurrentTxCountsEntry 11 }
cwsPortCurrentTxCountsLengthOutRangePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of length out-of-range packets transmitted"
::= { cwsPortCurrentTxCountsEntry 12 }
cwsPortCurrentTxQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentTxQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Tx queue."
::= { cienaWsPortMIB 13 }
cwsPortCurrentTxQueueEntry OBJECT-TYPE
SYNTAX CwsPortCurrentTxQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentTxQueueTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentTxQueueTableSnmpKey }
::= { cwsPortCurrentTxQueueTable 1 }
CwsPortCurrentTxQueueEntry ::= SEQUENCE {
cwsPortCurrentTxQueueTableSnmpKey Integer32,
cwsPortCurrentTxQueuePacketDropCountSummary Counter64,
cwsPortCurrentTxQueueQ0PacketDropCount Counter64,
cwsPortCurrentTxQueueQ1PacketDropCount Counter64,
cwsPortCurrentTxQueueQ2PacketDropCount Counter64,
cwsPortCurrentTxQueueQ3PacketDropCount Counter64,
cwsPortCurrentTxQueueQ4PacketDropCount Counter64,
cwsPortCurrentTxQueueQ5PacketDropCount Counter64,
cwsPortCurrentTxQueueQ6PacketDropCount Counter64,
cwsPortCurrentTxQueueQ7PacketDropCount Counter64
}
cwsPortCurrentTxQueueTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentTxQueue"
::= { cwsPortCurrentTxQueueEntry 1 }
cwsPortCurrentTxQueuePacketDropCountSummary OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Summary of the number of bytes dropped from queues 0 to 3 (Q0, Q1, Q2, and Q3)"
::= { cwsPortCurrentTxQueueEntry 2 }
cwsPortCurrentTxQueueQ0PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 0 (Q0)"
::= { cwsPortCurrentTxQueueEntry 3 }
cwsPortCurrentTxQueueQ1PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 1 (Q1)"
::= { cwsPortCurrentTxQueueEntry 4 }
cwsPortCurrentTxQueueQ2PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 2 (Q2)"
::= { cwsPortCurrentTxQueueEntry 5 }
cwsPortCurrentTxQueueQ3PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 3 (Q3)"
::= { cwsPortCurrentTxQueueEntry 6 }
cwsPortCurrentTxQueueQ4PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 4 (Q4)"
::= { cwsPortCurrentTxQueueEntry 7 }
cwsPortCurrentTxQueueQ5PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 5 (Q5)"
::= { cwsPortCurrentTxQueueEntry 8 }
cwsPortCurrentTxQueueQ6PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 6 (Q6)"
::= { cwsPortCurrentTxQueueEntry 9 }
cwsPortCurrentTxQueueQ7PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 7 (Q7)"
::= { cwsPortCurrentTxQueueEntry 10 }
cwsPortCurrentMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentMacEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "None"
::= { cienaWsPortMIB 14 }
cwsPortCurrentMacEntry OBJECT-TYPE
SYNTAX CwsPortCurrentMacEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "Entry for cwsPortCurrentMacTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentMacTableSnmpKey }
::= { cwsPortCurrentMacTable 1 }
CwsPortCurrentMacEntry ::= SEQUENCE {
cwsPortCurrentMacTableSnmpKey Integer32,
cwsPortCurrentMacUnavailableSeconds Counter64
}
cwsPortCurrentMacTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentMac"
::= { cwsPortCurrentMacEntry 1 }
cwsPortCurrentMacUnavailableSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "The number of seconds that the interface was unavailable."
::= { cwsPortCurrentMacEntry 2 }
cwsPortPcsCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortPcsCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 15 }
cwsPortPcsCurrentEntry OBJECT-TYPE
SYNTAX CwsPortPcsCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortPcsCurrentTable."
INDEX { cwsPortPortsPortId, cwsPortPcsCurrentTableSnmpKey }
::= { cwsPortPcsCurrentTable 1 }
CwsPortPcsCurrentEntry ::= SEQUENCE {
cwsPortPcsCurrentTableSnmpKey Integer32,
cwsPortPcsCurrentErroredSeconds Counter64,
cwsPortPcsCurrentSeverelyErroredSeconds Counter64,
cwsPortPcsCurrentUnavailableSeconds Counter64
}
cwsPortPcsCurrentTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortPcsCurrent"
::= { cwsPortPcsCurrentEntry 1 }
cwsPortPcsCurrentErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that error happened."
::= { cwsPortPcsCurrentEntry 2 }
cwsPortPcsCurrentSeverelyErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that severe error happened."
::= { cwsPortPcsCurrentEntry 3 }
cwsPortPcsCurrentUnavailableSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that the interface was unavailable."
::= { cwsPortPcsCurrentEntry 4 }
cwsPortCurrentPcsSyncHeaderErrorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentPcsSyncHeaderErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 16 }
cwsPortCurrentPcsSyncHeaderErrorsEntry OBJECT-TYPE
SYNTAX CwsPortCurrentPcsSyncHeaderErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentPcsSyncHeaderErrorsTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentPcsSyncHeaderErrorsTableSnmpKey }
::= { cwsPortCurrentPcsSyncHeaderErrorsTable 1 }
CwsPortCurrentPcsSyncHeaderErrorsEntry ::= SEQUENCE {
cwsPortCurrentPcsSyncHeaderErrorsTableSnmpKey Integer32,
cwsPortCurrentPcsSyncHeaderErrorsCount Counter64
}
cwsPortCurrentPcsSyncHeaderErrorsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentPcsSyncHeaderErrors"
::= { cwsPortCurrentPcsSyncHeaderErrorsEntry 1 }
cwsPortCurrentPcsSyncHeaderErrorsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sync header errors count value."
::= { cwsPortCurrentPcsSyncHeaderErrorsEntry 2 }
cwsPortCurrentPcsBlockErrorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentPcsBlockErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 17 }
cwsPortCurrentPcsBlockErrorsEntry OBJECT-TYPE
SYNTAX CwsPortCurrentPcsBlockErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentPcsBlockErrorsTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentPcsBlockErrorsTableSnmpKey }
::= { cwsPortCurrentPcsBlockErrorsTable 1 }
CwsPortCurrentPcsBlockErrorsEntry ::= SEQUENCE {
cwsPortCurrentPcsBlockErrorsTableSnmpKey Integer32,
cwsPortCurrentPcsBlockErrorsCount Counter64
}
cwsPortCurrentPcsBlockErrorsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentPcsBlockErrors"
::= { cwsPortCurrentPcsBlockErrorsEntry 1 }
cwsPortCurrentPcsBlockErrorsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Block errors count value."
::= { cwsPortCurrentPcsBlockErrorsEntry 2 }
cwsPortCurrentPcsMultilaneBipErrorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentPcsMultilaneBipErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 18 }
cwsPortCurrentPcsMultilaneBipErrorsEntry OBJECT-TYPE
SYNTAX CwsPortCurrentPcsMultilaneBipErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentPcsMultilaneBipErrorsTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentPcsMultilaneBipErrorsTableSnmpKey }
::= { cwsPortCurrentPcsMultilaneBipErrorsTable 1 }
CwsPortCurrentPcsMultilaneBipErrorsEntry ::= SEQUENCE {
cwsPortCurrentPcsMultilaneBipErrorsTableSnmpKey Integer32,
cwsPortCurrentPcsMultilaneBipErrorsCount Counter64
}
cwsPortCurrentPcsMultilaneBipErrorsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentPcsMultilaneBipErrors"
::= { cwsPortCurrentPcsMultilaneBipErrorsEntry 1 }
cwsPortCurrentPcsMultilaneBipErrorsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Multilane bip errors count value."
::= { cwsPortCurrentPcsMultilaneBipErrorsEntry 2 }
cwsPortCurrentOduTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentOduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 30 }
cwsPortCurrentOduEntry OBJECT-TYPE
SYNTAX CwsPortCurrentOduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentOduTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentOduTableSnmpKey }
::= { cwsPortCurrentOduTable 1 }
CwsPortCurrentOduEntry ::= SEQUENCE {
cwsPortCurrentOduTableSnmpKey Integer32,
cwsPortCurrentOduErroredSeconds Counter64,
cwsPortCurrentOduSeverelyErroredSeconds Counter64,
cwsPortCurrentOduUnavailableSeconds Counter64
}
cwsPortCurrentOduTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentOdu"
::= { cwsPortCurrentOduEntry 1 }
cwsPortCurrentOduErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that error happened."
::= { cwsPortCurrentOduEntry 2 }
cwsPortCurrentOduSeverelyErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that severe error happened."
::= { cwsPortCurrentOduEntry 3 }
cwsPortCurrentOduUnavailableSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that the interface was unavailable."
::= { cwsPortCurrentOduEntry 4 }
cwsPortCurrentFecTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortCurrentFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 19 }
cwsPortCurrentFecEntry OBJECT-TYPE
SYNTAX CwsPortCurrentFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortCurrentFecTable."
INDEX { cwsPortPortsPortId, cwsPortCurrentFecTableSnmpKey }
::= { cwsPortCurrentFecTable 1 }
CwsPortCurrentFecEntry ::= SEQUENCE {
cwsPortCurrentFecTableSnmpKey Integer32,
cwsPortCurrentFecCorrectedBlockCount Counter64,
cwsPortCurrentFecUncorrectedBlockCount Counter64,
cwsPortCurrentFecSymbolErrorCount Counter64
}
cwsPortCurrentFecTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortCurrentFec"
::= { cwsPortCurrentFecEntry 1 }
cwsPortCurrentFecCorrectedBlockCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fec layer corrected block count"
::= { cwsPortCurrentFecEntry 2 }
cwsPortCurrentFecUncorrectedBlockCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fec layer uncorrected block count"
::= { cwsPortCurrentFecEntry 3 }
cwsPortCurrentFecSymbolErrorCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fec layer symbol error count"
::= { cwsPortCurrentFecEntry 4 }
cwsPortTotalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Total statistics data."
::= { cienaWsPortMIB 20 }
cwsPortTotalEntry OBJECT-TYPE
SYNTAX CwsPortTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalTable."
INDEX { cwsPortPortsPortId, cwsPortTotalTableSnmpKey }
::= { cwsPortTotalTable 1 }
CwsPortTotalEntry ::= SEQUENCE {
cwsPortTotalTableSnmpKey Integer32,
cwsPortTotalFrameErrorRatio Counter64
}
cwsPortTotalTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotal"
::= { cwsPortTotalEntry 1 }
cwsPortTotalFrameErrorRatio OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "RMON frame error ratio."
::= { cwsPortTotalEntry 2 }
cwsPortTotalRxCountsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalRxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Rx counts."
::= { cienaWsPortMIB 21 }
cwsPortTotalRxCountsEntry OBJECT-TYPE
SYNTAX CwsPortTotalRxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalRxCountsTable."
INDEX { cwsPortPortsPortId, cwsPortTotalRxCountsTableSnmpKey }
::= { cwsPortTotalRxCountsTable 1 }
CwsPortTotalRxCountsEntry ::= SEQUENCE {
cwsPortTotalRxCountsTableSnmpKey Integer32,
cwsPortTotalRxCountsBytes Counter64,
cwsPortTotalRxCountsPackets Counter64,
cwsPortTotalRxCountsAverageLinkUtilization Decimal1Dig,
cwsPortTotalRxCountsCrcErroredPackets Counter64,
cwsPortTotalRxCountsMulticastPackets Counter64,
cwsPortTotalRxCountsBroadcastPackets Counter64,
cwsPortTotalRxCountsPausePackets Counter64,
cwsPortTotalRxCountsUndersizedPackets Counter64,
cwsPortTotalRxCountsOversizedPackets Counter64,
cwsPortTotalRxCountsFragmentPackets Counter64,
cwsPortTotalRxCountsJabberPackets Counter64,
cwsPortTotalRxCountsLengthOutRangePackets Counter64,
cwsPortTotalRxCountsPackets64Octet Counter64,
cwsPortTotalRxCountsPackets65127Octet Counter64,
cwsPortTotalRxCountsPackets128255Octet Counter64,
cwsPortTotalRxCountsPackets256511Octet Counter64,
cwsPortTotalRxCountsPackets5121023Octet Counter64,
cwsPortTotalRxCountsPackets10241518Octet Counter64
}
cwsPortTotalRxCountsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalRxCounts"
::= { cwsPortTotalRxCountsEntry 1 }
cwsPortTotalRxCountsBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of bytes received including good and bad packets. This includes FCS bytes, but excludes framing bits."
::= { cwsPortTotalRxCountsEntry 2 }
cwsPortTotalRxCountsPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received, including all unicast, multicast, broadcast, MAC control, and bad packets"
::= { cwsPortTotalRxCountsEntry 3 }
cwsPortTotalRxCountsAverageLinkUtilization OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Average percent utilization derived from Rx bytes and port speed."
::= { cwsPortTotalRxCountsEntry 19 }
cwsPortTotalRxCountsCrcErroredPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received which contained an FCS error and were between 64 and 1518 bytes in length."
::= { cwsPortTotalRxCountsEntry 4 }
cwsPortTotalRxCountsMulticastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good multicast packets received that were between 64 and 1518 bytes in length. Excludes MAC control frames"
::= { cwsPortTotalRxCountsEntry 5 }
cwsPortTotalRxCountsBroadcastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good broadcast packets received that were between 64 and 1518 bytes in length. Excludes MAC control frames"
::= { cwsPortTotalRxCountsEntry 6 }
cwsPortTotalRxCountsPausePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of received valid pause packets that were between 64 and 1518 bytes in length"
::= { cwsPortTotalRxCountsEntry 7 }
cwsPortTotalRxCountsUndersizedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received that were less than 64 bytes (excluding framing bits but including FCS bytes) and were otherwise well formed. This counter also includes the number of packets discarded because of Ethernet length check errors. Undersize packets are discarded."
::= { cwsPortTotalRxCountsEntry 8 }
cwsPortTotalRxCountsOversizedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received (including unicast, multicast, and broadcast packets) that were longer than 1518 bytes up to the configured maximum frame size, that contained a valid FCS (excluding framing bits but including FCS bytes), and that were otherwise well formed"
::= { cwsPortTotalRxCountsEntry 9 }
cwsPortTotalRxCountsFragmentPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received between 10 and 63 bytes in length (excluding framing bits but including FCS bytes) that had either a bad FCS with an integral number of bytes (FCS Error) or a bad FCS with a non-integral number of bytes (Alignment Error). Fragment packets are discarded."
::= { cwsPortTotalRxCountsEntry 10 }
cwsPortTotalRxCountsJabberPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received that were longer than 1518 bytes up to the configured maximum frame size (excluding framing bits, but including FCS bytes), and had either a bad FCS with an integral number of bytes (FCS Error) or a bad FCS with a non-integral number of bytes (Alignment Error). Jabber packets are discarded"
::= { cwsPortTotalRxCountsEntry 11 }
cwsPortTotalRxCountsLengthOutRangePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets received that exceeded the maximum frame size and contained a valid or invalid FCS"
::= { cwsPortTotalRxCountsEntry 12 }
cwsPortTotalRxCountsPackets64Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of packets (including bad packets) received that were 64 bytes in length (excluding framing bits but including FCS bytes)."
::= { cwsPortTotalRxCountsEntry 13 }
cwsPortTotalRxCountsPackets65127Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 65 and 127 bytes in length (excluding framing bits but including FCS bytes)."
::= { cwsPortTotalRxCountsEntry 14 }
cwsPortTotalRxCountsPackets128255Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 128 and 255 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortTotalRxCountsEntry 15 }
cwsPortTotalRxCountsPackets256511Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 256 and 511 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortTotalRxCountsEntry 16 }
cwsPortTotalRxCountsPackets5121023Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 512 and 1023 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortTotalRxCountsEntry 17 }
cwsPortTotalRxCountsPackets10241518Octet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good and bad packets received that were between 1024 and 1518 bytes in length inclusive (excluding framing bits but including FCS bytes)."
::= { cwsPortTotalRxCountsEntry 18 }
cwsPortTotalTxCountsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalTxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Tx counts."
::= { cienaWsPortMIB 22 }
cwsPortTotalTxCountsEntry OBJECT-TYPE
SYNTAX CwsPortTotalTxCountsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalTxCountsTable."
INDEX { cwsPortPortsPortId, cwsPortTotalTxCountsTableSnmpKey }
::= { cwsPortTotalTxCountsTable 1 }
CwsPortTotalTxCountsEntry ::= SEQUENCE {
cwsPortTotalTxCountsTableSnmpKey Integer32,
cwsPortTotalTxCountsBytes Counter64,
cwsPortTotalTxCountsPackets Counter64,
cwsPortTotalTxCountsAverageLinkUtilization Decimal1Dig,
cwsPortTotalTxCountsCrcErroredPackets Counter64,
cwsPortTotalTxCountsMulticastPackets Counter64,
cwsPortTotalTxCountsBroadcastPackets Counter64,
cwsPortTotalTxCountsPausePackets Counter64,
cwsPortTotalTxCountsExcessiveDeferredPackets Counter64,
cwsPortTotalTxCountsGiantPackets Counter64,
cwsPortTotalTxCountsUnderrunPackets Counter64,
cwsPortTotalTxCountsLengthCheckErrorPackets Counter64,
cwsPortTotalTxCountsLengthOutRangePackets Counter64
}
cwsPortTotalTxCountsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalTxCounts"
::= { cwsPortTotalTxCountsEntry 1 }
cwsPortTotalTxCountsBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted bytes in good and bad packets including FCS bytes and excluding frame bits."
::= { cwsPortTotalTxCountsEntry 2 }
cwsPortTotalTxCountsPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted packets, including all unicast, multicast, broadcast, MAC control, and bad packets"
::= { cwsPortTotalTxCountsEntry 3 }
cwsPortTotalTxCountsAverageLinkUtilization OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Average percent utilization derived from Tx bytes and port speed."
::= { cwsPortTotalTxCountsEntry 13 }
cwsPortTotalTxCountsCrcErroredPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted packets with an FCS error"
::= { cwsPortTotalTxCountsEntry 4 }
cwsPortTotalTxCountsMulticastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good multicast packets transmitted"
::= { cwsPortTotalTxCountsEntry 5 }
cwsPortTotalTxCountsBroadcastPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of good broadcast packets transmitted"
::= { cwsPortTotalTxCountsEntry 6 }
cwsPortTotalTxCountsPausePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of pause packets transmitted"
::= { cwsPortTotalTxCountsEntry 7 }
cwsPortTotalTxCountsExcessiveDeferredPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of transmitted packets experiencing two or more deferrals. Applicable to copper ports only"
::= { cwsPortTotalTxCountsEntry 8 }
cwsPortTotalTxCountsGiantPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of well-formed packets larger than 1518 bytes, including FCS bytes but excluding framing bits."
::= { cwsPortTotalTxCountsEntry 9 }
cwsPortTotalTxCountsUnderrunPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of underrun packets transmitted"
::= { cwsPortTotalTxCountsEntry 10 }
cwsPortTotalTxCountsLengthCheckErrorPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of length check packets transmitted"
::= { cwsPortTotalTxCountsEntry 11 }
cwsPortTotalTxCountsLengthOutRangePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of length out-of-range packets transmitted"
::= { cwsPortTotalTxCountsEntry 12 }
cwsPortTotalTxQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalTxQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Tx queue."
::= { cienaWsPortMIB 23 }
cwsPortTotalTxQueueEntry OBJECT-TYPE
SYNTAX CwsPortTotalTxQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalTxQueueTable."
INDEX { cwsPortPortsPortId, cwsPortTotalTxQueueTableSnmpKey }
::= { cwsPortTotalTxQueueTable 1 }
CwsPortTotalTxQueueEntry ::= SEQUENCE {
cwsPortTotalTxQueueTableSnmpKey Integer32,
cwsPortTotalTxQueuePacketDropCountSummary Counter64,
cwsPortTotalTxQueueQ0PacketDropCount Counter64,
cwsPortTotalTxQueueQ1PacketDropCount Counter64,
cwsPortTotalTxQueueQ2PacketDropCount Counter64,
cwsPortTotalTxQueueQ3PacketDropCount Counter64,
cwsPortTotalTxQueueQ4PacketDropCount Counter64,
cwsPortTotalTxQueueQ5PacketDropCount Counter64,
cwsPortTotalTxQueueQ6PacketDropCount Counter64,
cwsPortTotalTxQueueQ7PacketDropCount Counter64
}
cwsPortTotalTxQueueTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalTxQueue"
::= { cwsPortTotalTxQueueEntry 1 }
cwsPortTotalTxQueuePacketDropCountSummary OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Summary of the number of bytes dropped from queues 0 to 3 (Q0, Q1, Q2, and Q3)"
::= { cwsPortTotalTxQueueEntry 2 }
cwsPortTotalTxQueueQ0PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 0 (Q0)"
::= { cwsPortTotalTxQueueEntry 3 }
cwsPortTotalTxQueueQ1PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 1 (Q1)"
::= { cwsPortTotalTxQueueEntry 4 }
cwsPortTotalTxQueueQ2PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 2 (Q2)"
::= { cwsPortTotalTxQueueEntry 5 }
cwsPortTotalTxQueueQ3PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 3 (Q3)"
::= { cwsPortTotalTxQueueEntry 6 }
cwsPortTotalTxQueueQ4PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 4 (Q4)"
::= { cwsPortTotalTxQueueEntry 7 }
cwsPortTotalTxQueueQ5PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 5 (Q5)"
::= { cwsPortTotalTxQueueEntry 8 }
cwsPortTotalTxQueueQ6PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 6 (Q6)"
::= { cwsPortTotalTxQueueEntry 9 }
cwsPortTotalTxQueueQ7PacketDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of bytes dropped from queue 7 (Q7)"
::= { cwsPortTotalTxQueueEntry 10 }
cwsPortTotalMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalMacEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "None"
::= { cienaWsPortMIB 24 }
cwsPortTotalMacEntry OBJECT-TYPE
SYNTAX CwsPortTotalMacEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "Entry for cwsPortTotalMacTable."
INDEX { cwsPortPortsPortId, cwsPortTotalMacTableSnmpKey }
::= { cwsPortTotalMacTable 1 }
CwsPortTotalMacEntry ::= SEQUENCE {
cwsPortTotalMacTableSnmpKey Integer32,
cwsPortTotalMacUnavailableSeconds Counter64
}
cwsPortTotalMacTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalMac"
::= { cwsPortTotalMacEntry 1 }
cwsPortTotalMacUnavailableSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "The number of seconds that the interface was unavailable."
::= { cwsPortTotalMacEntry 2 }
cwsPortTotalPcsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalPcsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 25 }
cwsPortTotalPcsEntry OBJECT-TYPE
SYNTAX CwsPortTotalPcsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalPcsTable."
INDEX { cwsPortPortsPortId, cwsPortTotalPcsTableSnmpKey }
::= { cwsPortTotalPcsTable 1 }
CwsPortTotalPcsEntry ::= SEQUENCE {
cwsPortTotalPcsTableSnmpKey Integer32,
cwsPortTotalPcsErroredSeconds Counter64,
cwsPortTotalPcsSeverelyErroredSeconds Counter64,
cwsPortTotalPcsUnavailableSeconds Counter64
}
cwsPortTotalPcsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalPcs"
::= { cwsPortTotalPcsEntry 1 }
cwsPortTotalPcsErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that error happened."
::= { cwsPortTotalPcsEntry 2 }
cwsPortTotalPcsSeverelyErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that severe error happened."
::= { cwsPortTotalPcsEntry 3 }
cwsPortTotalPcsUnavailableSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that the interface was unavailable."
::= { cwsPortTotalPcsEntry 4 }
cwsPortTotalPcsSyncHeaderErrorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalPcsSyncHeaderErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 26 }
cwsPortTotalPcsSyncHeaderErrorsEntry OBJECT-TYPE
SYNTAX CwsPortTotalPcsSyncHeaderErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalPcsSyncHeaderErrorsTable."
INDEX { cwsPortPortsPortId, cwsPortTotalPcsSyncHeaderErrorsTableSnmpKey }
::= { cwsPortTotalPcsSyncHeaderErrorsTable 1 }
CwsPortTotalPcsSyncHeaderErrorsEntry ::= SEQUENCE {
cwsPortTotalPcsSyncHeaderErrorsTableSnmpKey Integer32,
cwsPortTotalPcsSyncHeaderErrorsCount Counter64
}
cwsPortTotalPcsSyncHeaderErrorsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalPcsSyncHeaderErrors"
::= { cwsPortTotalPcsSyncHeaderErrorsEntry 1 }
cwsPortTotalPcsSyncHeaderErrorsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sync header errors count value."
::= { cwsPortTotalPcsSyncHeaderErrorsEntry 2 }
cwsPortTotalPcsBlockErrorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalPcsBlockErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 27 }
cwsPortTotalPcsBlockErrorsEntry OBJECT-TYPE
SYNTAX CwsPortTotalPcsBlockErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalPcsBlockErrorsTable."
INDEX { cwsPortPortsPortId, cwsPortTotalPcsBlockErrorsTableSnmpKey }
::= { cwsPortTotalPcsBlockErrorsTable 1 }
CwsPortTotalPcsBlockErrorsEntry ::= SEQUENCE {
cwsPortTotalPcsBlockErrorsTableSnmpKey Integer32,
cwsPortTotalPcsBlockErrorsCount Counter64
}
cwsPortTotalPcsBlockErrorsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalPcsBlockErrors"
::= { cwsPortTotalPcsBlockErrorsEntry 1 }
cwsPortTotalPcsBlockErrorsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Block errors count value."
::= { cwsPortTotalPcsBlockErrorsEntry 2 }
cwsPortTotalPcsMultilaneBipErrorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalPcsMultilaneBipErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 28 }
cwsPortTotalPcsMultilaneBipErrorsEntry OBJECT-TYPE
SYNTAX CwsPortTotalPcsMultilaneBipErrorsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalPcsMultilaneBipErrorsTable."
INDEX { cwsPortPortsPortId, cwsPortTotalPcsMultilaneBipErrorsTableSnmpKey }
::= { cwsPortTotalPcsMultilaneBipErrorsTable 1 }
CwsPortTotalPcsMultilaneBipErrorsEntry ::= SEQUENCE {
cwsPortTotalPcsMultilaneBipErrorsTableSnmpKey Integer32,
cwsPortTotalPcsMultilaneBipErrorsCount Counter64
}
cwsPortTotalPcsMultilaneBipErrorsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalPcsMultilaneBipErrors"
::= { cwsPortTotalPcsMultilaneBipErrorsEntry 1 }
cwsPortTotalPcsMultilaneBipErrorsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Multilane bip errors count value."
::= { cwsPortTotalPcsMultilaneBipErrorsEntry 2 }
cwsPortTotalOduTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalOduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 31 }
cwsPortTotalOduEntry OBJECT-TYPE
SYNTAX CwsPortTotalOduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalOduTable."
INDEX { cwsPortPortsPortId, cwsPortTotalOduTableSnmpKey }
::= { cwsPortTotalOduTable 1 }
CwsPortTotalOduEntry ::= SEQUENCE {
cwsPortTotalOduTableSnmpKey Integer32,
cwsPortTotalOduErroredSeconds Counter64,
cwsPortTotalOduSeverelyErroredSeconds Counter64,
cwsPortTotalOduUnavailableSeconds Counter64
}
cwsPortTotalOduTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalOdu"
::= { cwsPortTotalOduEntry 1 }
cwsPortTotalOduErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that error happened."
::= { cwsPortTotalOduEntry 2 }
cwsPortTotalOduSeverelyErroredSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that severe error happened."
::= { cwsPortTotalOduEntry 3 }
cwsPortTotalOduUnavailableSeconds OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Number of seconds that the interface was unavailable."
::= { cwsPortTotalOduEntry 4 }
cwsPortTotalFecTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPortTotalFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPortMIB 29 }
cwsPortTotalFecEntry OBJECT-TYPE
SYNTAX CwsPortTotalFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPortTotalFecTable."
INDEX { cwsPortPortsPortId, cwsPortTotalFecTableSnmpKey }
::= { cwsPortTotalFecTable 1 }
CwsPortTotalFecEntry ::= SEQUENCE {
cwsPortTotalFecTableSnmpKey Integer32,
cwsPortTotalFecCorrectedBlockCount Counter64,
cwsPortTotalFecUncorrectedBlockCount Counter64,
cwsPortTotalFecSymbolErrorCount Counter64
}
cwsPortTotalFecTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPortTotalFec"
::= { cwsPortTotalFecEntry 1 }
cwsPortTotalFecCorrectedBlockCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fec layer corrected block count"
::= { cwsPortTotalFecEntry 2 }
cwsPortTotalFecUncorrectedBlockCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fec layer uncorrected block count"
::= { cwsPortTotalFecEntry 3 }
cwsPortTotalFecSymbolErrorCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fec layer symbol error count"
::= { cwsPortTotalFecEntry 4 }
-- Conformance statements
cienaWsPortObjects OBJECT IDENTIFIER
::= { cienaWsPortMIB 1 }
cienaWsPortConformance OBJECT IDENTIFIER
::= { cienaWsPortMIB 2 }
cienaWsPortGroups OBJECT IDENTIFIER
::= { cienaWsPortConformance 1 }
cienaWsPortGroup OBJECT-GROUP
OBJECTS {
cwsPortPortsPortId,
cwsPortIdName,
cwsPortIdDescription,
cwsPortIdPortType,
cwsPortIdMacAddress,
cwsPortIdInterfaceType,
cwsPortStateAdminState,
cwsPortStateOperationalState,
cwsPortStateOperationalStateDuration,
cwsPortCapabilitiesPortSpeeds,
cwsPortCapabilitiesDuplex,
cwsPortCapabilitiesAutoNegotiation,
cwsPortCapabilitiesFlowControl,
cwsPortCapabilitiesFecSupport,
cwsPortPropertiesXcvrType,
cwsPortPropertiesLoopback,
cwsPortPropertiesServiceIndex,
cwsPortPropertiesServiceDomainIndex,
cwsPortEthernetSpeed,
cwsPortEthernetMaxFrameSize,
cwsPortEthernetPauseProfile,
cwsPortEthernetForwardErrorCorrection,
cwsPortConditioningType,
cwsPortConditioningHoldoff,
cwsPortCurrentFrameErrorRatio,
cwsPortCurrentRxCountsBytes,
cwsPortCurrentRxCountsPackets,
cwsPortCurrentRxCountsAverageLinkUtilization,
cwsPortCurrentRxCountsCrcErroredPackets,
cwsPortCurrentRxCountsMulticastPackets,
cwsPortCurrentRxCountsBroadcastPackets,
cwsPortCurrentRxCountsPausePackets,
cwsPortCurrentRxCountsUndersizedPackets,
cwsPortCurrentRxCountsOversizedPackets,
cwsPortCurrentRxCountsFragmentPackets,
cwsPortCurrentRxCountsJabberPackets,
cwsPortCurrentRxCountsLengthOutRangePackets,
cwsPortCurrentRxCountsPackets64Octet,
cwsPortCurrentRxCountsPackets65127Octet,
cwsPortCurrentRxCountsPackets128255Octet,
cwsPortCurrentRxCountsPackets256511Octet,
cwsPortCurrentRxCountsPackets5121023Octet,
cwsPortCurrentRxCountsPackets10241518Octet,
cwsPortCurrentTxCountsBytes,
cwsPortCurrentTxCountsPackets,
cwsPortCurrentTxCountsAverageLinkUtilization,
cwsPortCurrentTxCountsCrcErroredPackets,
cwsPortCurrentTxCountsMulticastPackets,
cwsPortCurrentTxCountsBroadcastPackets,
cwsPortCurrentTxCountsPausePackets,
cwsPortCurrentTxCountsExcessiveDeferredPackets,
cwsPortCurrentTxCountsGiantPackets,
cwsPortCurrentTxCountsUnderrunPackets,
cwsPortCurrentTxCountsLengthCheckErrorPackets,
cwsPortCurrentTxCountsLengthOutRangePackets,
cwsPortCurrentTxQueuePacketDropCountSummary,
cwsPortCurrentTxQueueQ0PacketDropCount,
cwsPortCurrentTxQueueQ1PacketDropCount,
cwsPortCurrentTxQueueQ2PacketDropCount,
cwsPortCurrentTxQueueQ3PacketDropCount,
cwsPortCurrentTxQueueQ4PacketDropCount,
cwsPortCurrentTxQueueQ5PacketDropCount,
cwsPortCurrentTxQueueQ6PacketDropCount,
cwsPortCurrentTxQueueQ7PacketDropCount,
cwsPortCurrentMacUnavailableSeconds,
cwsPortPcsCurrentErroredSeconds,
cwsPortPcsCurrentSeverelyErroredSeconds,
cwsPortPcsCurrentUnavailableSeconds,
cwsPortCurrentPcsSyncHeaderErrorsCount,
cwsPortCurrentPcsBlockErrorsCount,
cwsPortCurrentPcsMultilaneBipErrorsCount,
cwsPortCurrentOduErroredSeconds,
cwsPortCurrentOduSeverelyErroredSeconds,
cwsPortCurrentOduUnavailableSeconds,
cwsPortCurrentFecCorrectedBlockCount,
cwsPortCurrentFecUncorrectedBlockCount,
cwsPortCurrentFecSymbolErrorCount,
cwsPortTotalFrameErrorRatio,
cwsPortTotalRxCountsBytes,
cwsPortTotalRxCountsPackets,
cwsPortTotalRxCountsAverageLinkUtilization,
cwsPortTotalRxCountsCrcErroredPackets,
cwsPortTotalRxCountsMulticastPackets,
cwsPortTotalRxCountsBroadcastPackets,
cwsPortTotalRxCountsPausePackets,
cwsPortTotalRxCountsUndersizedPackets,
cwsPortTotalRxCountsOversizedPackets,
cwsPortTotalRxCountsFragmentPackets,
cwsPortTotalRxCountsJabberPackets,
cwsPortTotalRxCountsLengthOutRangePackets,
cwsPortTotalRxCountsPackets64Octet,
cwsPortTotalRxCountsPackets65127Octet,
cwsPortTotalRxCountsPackets128255Octet,
cwsPortTotalRxCountsPackets256511Octet,
cwsPortTotalRxCountsPackets5121023Octet,
cwsPortTotalRxCountsPackets10241518Octet,
cwsPortTotalTxCountsBytes,
cwsPortTotalTxCountsPackets,
cwsPortTotalTxCountsAverageLinkUtilization,
cwsPortTotalTxCountsCrcErroredPackets,
cwsPortTotalTxCountsMulticastPackets,
cwsPortTotalTxCountsBroadcastPackets,
cwsPortTotalTxCountsPausePackets,
cwsPortTotalTxCountsExcessiveDeferredPackets,
cwsPortTotalTxCountsGiantPackets,
cwsPortTotalTxCountsUnderrunPackets,
cwsPortTotalTxCountsLengthCheckErrorPackets,
cwsPortTotalTxCountsLengthOutRangePackets,
cwsPortTotalTxQueuePacketDropCountSummary,
cwsPortTotalTxQueueQ0PacketDropCount,
cwsPortTotalTxQueueQ1PacketDropCount,
cwsPortTotalTxQueueQ2PacketDropCount,
cwsPortTotalTxQueueQ3PacketDropCount,
cwsPortTotalTxQueueQ4PacketDropCount,
cwsPortTotalTxQueueQ5PacketDropCount,
cwsPortTotalTxQueueQ6PacketDropCount,
cwsPortTotalTxQueueQ7PacketDropCount,
cwsPortTotalMacUnavailableSeconds,
cwsPortTotalPcsErroredSeconds,
cwsPortTotalPcsSeverelyErroredSeconds,
cwsPortTotalPcsUnavailableSeconds,
cwsPortTotalPcsSyncHeaderErrorsCount,
cwsPortTotalPcsBlockErrorsCount,
cwsPortTotalPcsMultilaneBipErrorsCount,
cwsPortTotalOduErroredSeconds,
cwsPortTotalOduSeverelyErroredSeconds,
cwsPortTotalOduUnavailableSeconds,
cwsPortTotalFecCorrectedBlockCount,
cwsPortTotalFecUncorrectedBlockCount,
cwsPortTotalFecSymbolErrorCount
}
STATUS current
DESCRIPTION "Conformance Group"
::= { cienaWsPortGroups 1 }
cienaWsPortCompliances OBJECT IDENTIFIER
::= { cienaWsPortConformance 2 }
cienaWsPortCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "Compliance"
MODULE MANDATORY-GROUPS { cienaWsPortGroup }
::= { cienaWsPortCompliances 1 }
END -- End module
|