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
|
-- This file was included in Ciena MIB release MIBS-CIENA-CES-08-07-00-024
--
-- CIENA-CES-PORT-MIB.my
--
CIENA-CES-PORT-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, MacAddress, TruthValue, TEXTUAL-CONVENTION
FROM SNMPv2-TC
OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
sysName, sysLocation
FROM RFC1213-MIB
cienaGlobalSeverity, cienaGlobalMacAddress
FROM CIENA-GLOBAL-MIB
CienaGlobalState
FROM CIENA-TC
cienaCesNotifications, cienaCesConfig
FROM CIENA-SMI
cienaCesChassisSystemId
FROM CIENA-CES-CHASSIS-MIB;
cienaCesPortConfigMIB MODULE-IDENTITY
LAST-UPDATED "201812180000Z"
ORGANIZATION "Ciena Corp."
CONTACT-INFO
" Mib Meister
7035 Ridge Road
Hanover, Maryland 21076
USA
Phone: +1 800 921 1144
Email: support@ciena.com"
DESCRIPTION
"This module defines the port configuration objects and also the objects required for
port related notifications."
REVISION
"201812180000Z"
DESCRIPTION
"Added cienaCesPortL2CftProfileId and cienaCesPortL2CftStatus objects and
changed the name of cienaCesLogicalPortHoldOffState and cienaCesLogicalPortHoldOffTime to cienaCesPortHoldOffState and cienaCesPortHoldOffTime respectively
to align with ../dev/5170-main branch.
Currenty cienaCesPortL2CftProfileId and cienaCesPortL2CftStatus objects are not supported in 8.7"
REVISION
"201811120000Z"
DESCRIPTION
"Modified the SIZE range of cienaCesPortMaxFrameSize from (1522..9216) to (1200..10222) to accommodate wider range available in some devices."
REVISION
"201810090000Z"
DESCRIPTION
"Added cienaCesPortOperFecState to CienaCesLogicalPortConfigEntry MIB objects."
REVISION
"201806120000Z"
DESCRIPTION
"Added cienaCesLogicalPortHoldOffState and cienaCesLogicalPortHoldOffTime to CienaCesLogicalPortConfigEntry MIB objects."
REVISION
"201706070000Z"
DESCRIPTION
"Updated contact info."
REVISION
"201705190000Z"
DESCRIPTION
"Added y1731SytheticLoss as mode of signal degrade detection in object
cienaCesLogicalPortConfigSignalDegradeDetection."
REVISION
"201705080000Z"
DESCRIPTION
"Changed cienaCesLogicalPortSignalDegradeDetection to
cienaCesLogicalPortConfigSignalDegradeDetection."
REVISION
"201610240000Z"
DESCRIPTION
"Added cienaCesLogicalPortSignalDegradeDetection and
cienaCesLogicalPortConfigSignalDegradeState.
Added trap cienaCesPortNotificationPortSignalDegradeSet and
cienaCesPortNotificationPortSignalDegradeClear"
REVISION
"201507030000Z"
DESCRIPTION
"Added cienaCesChPortPgIdMappingTable. Added trap cienaCesChPortNotificationPortUp
and cienaCesChPortNotificationPortDown"
REVISION
"201506230000Z"
DESCRIPTION
" Added object cienaCesPortTerminalLoopbackState."
REVISION
"201505150000Z"
DESCRIPTION
"Added odu4 to cienaCesLogicalPortConfigPortType, cienaCesLogicalPortConfigEttpType,
and cienaCesEttpConfigEttpType."
REVISION
"201505050000Z"
DESCRIPTION
" Added object cienaCesPortLearnLimit. Port learn limit count"
REVISION
"201505010000Z"
DESCRIPTION
"Added twoPointFiveGigEthernet to cienaCesLogicalPortConfigPortType, cienaCesLogicalPortConfigEttpType,
and cienaCesEttpConfigEttpType.
Added twoPtFiveGig to cienaCesPortAdminSpeed, cienaCesPortOperSpeed, cienaCesEttpConfigAdminSpeed,
and cienaCesEttpConfigOperSpeed."
REVISION
"201407300000Z"
DESCRIPTION
"Added cienaCesPortAdministrativeSpeed. Port administrative speed in kbps."
REVISION
"201411280000Z"
DESCRIPTION
" Added objects cienaCesPortOuterTpidList,cienaCesPortEgressOuterTpid
and cienaCesPortOuterVtagTpid"
REVISION
"201404140000Z"
DESCRIPTION
"Added objects cienaCesPortIngressRcosProfileId,cienaCesPortIngressRcosProfileName
and cienaCesPortIngressRcosPolicy."
REVISION
"201404110000Z"
DESCRIPTION
"Added cienaCesPortOperationalSpeed. Port operational speed in kbps."
REVISION
"201404010000Z"
DESCRIPTION
"Add per-port inner + outer TPIDs"
REVISION
"201308220000Z"
DESCRIPTION
"Added hundred gig ethernet support."
REVISION
"201308060000Z"
DESCRIPTION
"Updated cienaCesLogicalPortConfigEntry and cienaCesEttpConfigEntry. Added
cienaCesEttpConfigDuplex, cienaCesEttpConfigFlowCntl, cienaCesEttpConfigAutoNeg,
cienaCesEttpConfigAdvertisedFlowCntl, cienaCesEttpConfigIfgDecr,
cienaCesLogicalPortConfigIngMirrorPort, cienaCesLogicalPortConfigEgrMirrorPort,
cienaCesLogicalPortConfigIngFloodContainer, cienaCesLogicalPortConfigPriorityTagMode
to match Port, ETTP Configuration CLI."
REVISION
"201307310000Z"
DESCRIPTION
" Updated cienaCesLogicalPortConfigEttpType under CienaCesLogicalPortConfigEntry. Added ETTP Port Type"
REVISION
"201307160000Z"
DESCRIPTION
" Updated cienaCesLogicalPortConfigEttpId under CienaCesLogicalPortConfigEntry. Added ettpId"
REVISION
"201307150000Z"
DESCRIPTION
" Added cienaCesEttpConfigTable. ETTPs for default-physical-ports and logical port mapping"
REVISION
"201303050000Z"
DESCRIPTION
" Updated cienaCesLogicalPortConfigPortType, cienaCesPortAdminSpeed and cienaCesPortOperSpeed
with support for 100GE, ODU and ODUFlex rate."
REVISION
"201208010000Z"
DESCRIPTION
" Corrected the size of the cienaCesLogicalPortConfigPortDesc object
from (0..31) to (0..128)."
REVISION
"201106010000Z"
DESCRIPTION
" Added objects cienaCesPortAdminSpeed, cienaCesPortOperSpeed and cienaCesPortMaxFrameSize
under cienaCesPortConfig."
REVISION
"201003280000Z"
DESCRIPTION
"Initial creation."
::= { cienaCesConfig 1 }
--
-- Textual conventions
--
EttpDuplexPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Port Duplex Policy."
SYNTAX INTEGER {
half(1),
full(2)
}
EttpAdvertisedFlowControlPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Port Flow Control Policy."
SYNTAX INTEGER {
off(1),
asym-tx(2),
sym(3),
sym-asym-rx(4)
}
EttpFlowControlPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Port Flow Control Policy."
SYNTAX INTEGER {
off(1),
asym-tx(2),
sym(3),
asym-rx(5)
}
EttpAutoNegPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Port Auto Negotiation Policy."
SYNTAX INTEGER {
off(1),
on(2)
}
PortPriorityTagPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Port Priority Tagged Policy."
SYNTAX INTEGER {
leave-tag(1),
strip-tag(2)
}
--
-- Node definitions
--
cienaCesPortConfigMIBObjects OBJECT IDENTIFIER ::= { cienaCesPortConfigMIB 1 }
--cienaCesPortGlobal OBJECT IDENTIFIER ::= { cienaCesPortConfigMIBObjects 1 }
cienaCesPortConfig OBJECT IDENTIFIER ::= { cienaCesPortConfigMIBObjects 1 }
cienaCesPortPgIdMapping OBJECT IDENTIFIER ::= { cienaCesPortConfigMIBObjects 2 }
cienaCesEttpConfig OBJECT IDENTIFIER ::= { cienaCesPortConfigMIBObjects 3 }
cienaCesLogicalPortTpid OBJECT IDENTIFIER ::= { cienaCesPortConfigMIBObjects 4 }
cienaCesChPortPgIdMapping OBJECT IDENTIFIER ::= { cienaCesPortConfigMIBObjects 5 }
-- Notifications
cienaCesPortNotificationMIBNotificationPrefix OBJECT IDENTIFIER ::= { cienaCesNotifications 2 }
cienaCesPortNotificationMIBNotifications OBJECT IDENTIFIER ::=
{ cienaCesPortNotificationMIBNotificationPrefix 0 }
-- Conformance information
cienaCesPortMIBConformance OBJECT IDENTIFIER ::= { cienaCesPortConfigMIB 2 }
cienaCesPortMIBCompliances OBJECT IDENTIFIER ::= { cienaCesPortMIBConformance 1 }
cienaCesPortMIBGroups OBJECT IDENTIFIER ::= { cienaCesPortMIBConformance 2 }
--
-- Port table
--
cienaCesLogicalPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesLogicalPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of Ethernet ports."
::= { cienaCesPortConfig 1 }
cienaCesLogicalPortConfigEntry OBJECT-TYPE
SYNTAX CienaCesLogicalPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port entry in the Ethernet port table."
INDEX { cienaCesLogicalPortConfigPgId }
::= { cienaCesLogicalPortConfigTable 1 }
CienaCesLogicalPortConfigEntry ::= SEQUENCE {
cienaCesLogicalPortConfigPgId Unsigned32,
cienaCesLogicalPortConfigPortAdminState CienaGlobalState,
cienaCesLogicalPortConfigPortOperState INTEGER,
cienaCesLogicalPortConfigPortLinkUpDownTrapState CienaGlobalState,
cienaCesLogicalPortConfigPortAllTrapState CienaGlobalState,
cienaCesLogicalPortConfigPortPortMacAddress MacAddress,
cienaCesLogicalPortConfigPortName DisplayString,
cienaCesLogicalPortConfigPortDesc DisplayString,
cienaCesLogicalPortConfigPortType INTEGER,
cienaCesLogicalPortConfigPortIfIndex Integer32,
cienaCesPortAdminSpeed INTEGER,
cienaCesPortOperSpeed INTEGER,
cienaCesPortMaxFrameSize INTEGER,
cienaCesLogicalPortConfigEttpAid DisplayString,
cienaCesLogicalPortLastDownReason1 DisplayString,
cienaCesLogicalPortLastDownReason2 DisplayString,
cienaCesLogicalPortLastDownReason3 DisplayString,
cienaCesLogicalPortMaskedDownReason DisplayString,
cienaCesLogicalPortFacilityLoopback CienaGlobalState,
cienaCesPortIngressRcosProfileId Integer32,
cienaCesPortIngressRcosProfileName DisplayString,
cienaCesPortIngressRcosPolicy INTEGER,
cienaCesLogicalPortConfigEttpId Unsigned32,
cienaCesLogicalPortConfigEttpType INTEGER,
cienaCesLogicalPortConfigIngMirrorPort DisplayString,
cienaCesLogicalPortConfigEgrMirrorPort DisplayString,
cienaCesLogicalPortConfigIngFloodContainer DisplayString,
cienaCesLogicalPortConfigPriorityTagMode PortPriorityTagPolicy,
cienaCesLogicalPortConfigVidTpidCount Unsigned32,
cienaCesPortOperationalSpeed Gauge32,
cienaCesPortOuterTpidList DisplayString,
cienaCesPortEgressOuterTpid DisplayString,
cienaCesPortOuterVtagTpid DisplayString,
cienaCesPortAdministrativeSpeed Unsigned32,
cienaCesPortTerminalLoopbackState CienaGlobalState,
cienaCesPortLearnLimit INTEGER,
cienaCesLogicalPortConfigSignalDegradeDetection INTEGER,
cienaCesLogicalPortConfigSignalDegradeState INTEGER,
cienaCesPortL2CftStatus INTEGER,
cienaCesPortL2CftProfileId Unsigned32,
cienaCesPortConfigHoldOffState TruthValue,
cienaCesPortConfigHoldOffTime Unsigned32,
cienaCesPortOperFecState INTEGER
}
cienaCesLogicalPortConfigPgId OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port ID for the instance. Port IDs start at 1,
and may not be consecutive for each additional port.
This port ID should refer to the dot1dBasePort in the
dot1dBasePortEntry."
::= { cienaCesLogicalPortConfigEntry 1 }
cienaCesLogicalPortConfigPortAdminState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative state of the port."
::= { cienaCesLogicalPortConfigEntry 2 }
cienaCesLogicalPortConfigPortOperState OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
enabled(2),
disabled(3),
notAuthenticated(4),
loopbackTx(5),
loopbackRx(6),
unequipped(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the port."
::= { cienaCesLogicalPortConfigEntry 3 }
cienaCesLogicalPortConfigPortLinkUpDownTrapState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the current value of the enterprise port traps state."
DEFVAL { enabled }
::= { cienaCesLogicalPortConfigEntry 4 }
cienaCesLogicalPortConfigPortAllTrapState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the device generates traps for this port."
DEFVAL { enabled }
::= { cienaCesLogicalPortConfigEntry 5 }
cienaCesLogicalPortConfigPortPortMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the port MAC address."
::= { cienaCesLogicalPortConfigEntry 6 }
cienaCesLogicalPortConfigPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the
port. This string should indicate the physical
location of the port as well."
::= { cienaCesLogicalPortConfigEntry 7 }
cienaCesLogicalPortConfigPortDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the port description."
::= { cienaCesLogicalPortConfigEntry 8 }
cienaCesLogicalPortConfigPortType OBJECT-TYPE --need to review this list.
SYNTAX INTEGER {
unknown(1),
ethernet(2),
fastEthernet(3),
hundredFx(4),
gigEthernet(5),
lagPort(6),
gigHundredFx(7),
tripleSpeed(8),
tenGigEthernet(9),
vmTripleSpeedTX(10),
sonetOc3(11),
sonetOc12(12),
sonetOc48(13),
sonetOc192(14),
fortyGigEthernet(15),
hundredGigEthernet(16),
odu(17),
ethLp(18),
twoPointFiveGigEthernet(19),
odu4(20)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port type for the port."
::= { cienaCesLogicalPortConfigEntry 9 }
cienaCesLogicalPortConfigPortIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the corresponding ifNumber for the PGID in the standard IF-MIB."
::= { cienaCesLogicalPortConfigEntry 10 }
cienaCesPortAdminSpeed OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
tenMbps(2),
hundredMbps(3),
gig(4),
tenGig(5),
auto(6),
fortyGig(7),
hundredGig(8),
oduFlex(9),
twoPtFiveGig(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The desired speed of the port."
DEFVAL {auto}
::= { cienaCesLogicalPortConfigEntry 11 }
cienaCesPortOperSpeed OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
tenMbps(2),
hundredMbps(3),
gig(4),
tenGig(5),
fortyGig(6),
hundredGig(7),
oduFlex(8),
twoPtFiveGig(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational speed of the port."
::= { cienaCesLogicalPortConfigEntry 12 }
cienaCesPortMaxFrameSize OBJECT-TYPE
SYNTAX INTEGER (1200..10222)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum frame size allowed on this port including jumbo frame size."
::= { cienaCesLogicalPortConfigEntry 13 }
cienaCesLogicalPortConfigEttpAid OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TL1 AID of the ETTP object represented by this port.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 14 }
cienaCesLogicalPortLastDownReason1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The most recent fault(s) that changed the port state to down.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 15 }
cienaCesLogicalPortLastDownReason2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The most recent fault(s) that changed the port state to down.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 16 }
cienaCesLogicalPortLastDownReason3 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The most recent fault(s) that changed the port state to down.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 17 }
cienaCesLogicalPortMaskedDownReason OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The masked/debounced fault that explains why the port is down.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 18 }
cienaCesLogicalPortFacilityLoopback OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The facility loopback state of the port.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 19 }
cienaCesPortIngressRcosProfileId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the ID of the attached ingress resolved CoS profile."
::= { cienaCesLogicalPortConfigEntry 20 }
cienaCesPortIngressRcosProfileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the name of the attached ingress resolved CoS profile."
::= { cienaCesLogicalPortConfigEntry 21 }
cienaCesPortIngressRcosPolicy OBJECT-TYPE
SYNTAX INTEGER {
ignore(1),
fixed(2),
dot1dToRcosTag1(3),
dot1dToRcosTag2(4),
dscpToRcos(5),
mplsToRcos(6),
dscpMplsToRcos(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the ingress resolved CoS policy."
DEFVAL {dot1dToRcosTag1}
::= { cienaCesLogicalPortConfigEntry 22 }
cienaCesLogicalPortConfigEttpId OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ETTP mapped to by PG-ID of the instance. ETTP IDs start at 1,
and may not be consecutive for each additional port.
An ETTP-ID of 0 denotes that the logical port is not mapped directly to an ETTP
e.g. Aggregate port or default physical port which has been port-aliased."
::= { cienaCesLogicalPortConfigEntry 23 }
cienaCesLogicalPortConfigEttpType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
ethernet(2),
fastEthernet(3),
hundredFx(4),
gigEthernet(5),
-- lagPort(6),
gigHundredFx(7),
tripleSpeed(8),
tenGigEthernet(9),
vmTripleSpeedTX(10),
sonetOc3(11),
sonetOc12(12),
sonetOc48(13),
sonetOc192(14),
fortyGigEthernet(15),
hundredGigEthernet(16),
twoPointFiveGigEthernet(17),
odu4(18)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port type for the associated ettp."
::= { cienaCesLogicalPortConfigEntry 24 }
cienaCesLogicalPortConfigIngMirrorPort OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether ingress traffic is being
mirrored. If ingress traffic is being mirrored this object
specifies which port the traffic is being mirrored to."
::= { cienaCesLogicalPortConfigEntry 25 }
cienaCesLogicalPortConfigEgrMirrorPort OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether egress traffic is being
mirrored. If egress traffic is being mirrored this object
specifies which port the traffic is being mirrored to."
::= { cienaCesLogicalPortConfigEntry 26 }
cienaCesLogicalPortConfigIngFloodContainer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether ingress flood traffic is
rate limited. If ingress flood traffic is rate limited
this object specifies the flood containment profile for
the port."
::= { cienaCesLogicalPortConfigEntry 27 }
cienaCesLogicalPortConfigPriorityTagMode OBJECT-TYPE
SYNTAX PortPriorityTagPolicy
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies whether the priority tag of a frame
is stripped (strip-tag) or left intact (leave-tag) upon
ingress and egress."
DEFVAL {strip-tag}
::= { cienaCesLogicalPortConfigEntry 28 }
cienaCesLogicalPortConfigVidTpidCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of ingress TPID-pairs (inner + outer)
configured on the port"
DEFVAL {2}
::= { cienaCesLogicalPortConfigEntry 29 }
cienaCesPortOperationalSpeed OBJECT-TYPE
SYNTAX Gauge32
UNITS "kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the port's current bandwidth in
kilobits per second"
::= { cienaCesLogicalPortConfigEntry 30 }
cienaCesPortOuterTpidList OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the valid outer vlan tag list which can be used as egress vlan tag or outer vlan tag."
::= { cienaCesLogicalPortConfigEntry 31 }
cienaCesPortEgressOuterTpid OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the egress vlan tag."
::= { cienaCesLogicalPortConfigEntry 32 }
cienaCesPortOuterVtagTpid OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the outer vlan tag."
::= { cienaCesLogicalPortConfigEntry 33 }
cienaCesPortAdministrativeSpeed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the port's administrative bandwidth in
kilobits per second"
::= { cienaCesLogicalPortConfigEntry 34 }
cienaCesPortTerminalLoopbackState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The terminal loopback state of the port.
This field is undefined if the logical port maps to a LAG."
::= { cienaCesLogicalPortConfigEntry 35 }
cienaCesPortLearnLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies learn limit count for port"
DEFVAL {64000}
::= { cienaCesLogicalPortConfigEntry 36 }
cienaCesLogicalPortConfigSignalDegradeDetection OBJECT-TYPE
SYNTAX INTEGER {
off(1),
otn(2),
y1731SyntheticLoss(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies if signal degrade detection is enabled
or disabled on the port. And if enabled, this object specifies
the technology of which signal degrade detection uses."
::= { cienaCesLogicalPortConfigEntry 37 }
cienaCesLogicalPortConfigSignalDegradeState OBJECT-TYPE
SYNTAX INTEGER {
none(1),
degraded(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal degrade state of the port."
::= { cienaCesLogicalPortConfigEntry 38 }
cienaCesPortL2CftStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Admin Status of L2CFT profile attached to the port."
DEFVAL { disabled }
::= { cienaCesLogicalPortConfigEntry 39 }
cienaCesPortL2CftProfileId OBJECT-TYPE
SYNTAX Unsigned32 (0..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the custom L2CFT profile attached to the given port.
A non-zero value refers to the L2CFT profile as indexed by the cienaCesDpL2CftProfileIndex object
in the cienaCesDataplaneMIB module.
A value of 0 means no L2CFT profile is attached to this port.
Setting a non-zero value will attach the corresponding L2CFT profile to the given port."
DEFVAL { 0 }
::= { cienaCesLogicalPortConfigEntry 40 }
cienaCesPortConfigHoldOffState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object specifies the hold-off state of the port."
DEFVAL { false }
::= { cienaCesLogicalPortConfigEntry 41 }
cienaCesPortConfigHoldOffTime OBJECT-TYPE
SYNTAX Unsigned32 (3..20)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the time (in deciseconds, 1ds=100ms) for which port
remains in hold-off state. During the hold-off time, all physical link
transitions are ignored."
DEFVAL { 10 }
::= { cienaCesLogicalPortConfigEntry 42 }
cienaCesPortOperFecState OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational Forward Error Correction (FEC) state of the port."
::= { cienaCesLogicalPortConfigEntry 43 }
--
--cienaCesPortPgIdMappingTable
--
cienaCesPortPgIdMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesPortPgIdMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table to map the hierarchical (dotted) port index to PGID value."
::= { cienaCesPortPgIdMapping 1 }
cienaCesPortPgIdMappingEntry OBJECT-TYPE
SYNTAX CienaCesPortPgIdMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the PGID mapping table."
INDEX { cienaCesPortPgIdMappingChassisIndex, cienaCesPortPgIdMappingShelfIndex,
cienaCesPortPgIdMappingSlotIndex, cienaCesPortPgidMappingPortNumber }
::= { cienaCesPortPgIdMappingTable 1 }
CienaCesPortPgIdMappingEntry ::= SEQUENCE {
cienaCesPortPgIdMappingChassisIndex Unsigned32,
cienaCesPortPgIdMappingShelfIndex Unsigned32,
cienaCesPortPgIdMappingSlotIndex Unsigned32,
cienaCesPortPgidMappingPortNumber Unsigned32,
cienaCesPortPgIdMappingPgId Unsigned32,
cienaCesPortPgIdMappingNotifChassisIndex Unsigned32,
cienaCesPortPgIdMappingNotifShelfIndex Unsigned32,
cienaCesPortPgIdMappingNotifSlotIndex Unsigned32,
cienaCesPortPgIdMappingNotifPortNumber Unsigned32
}
cienaCesPortPgIdMappingChassisIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..1)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the chassis index for the port."
::= { cienaCesPortPgIdMappingEntry 1 }
cienaCesPortPgIdMappingShelfIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..992)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the shelf index for the port."
::= { cienaCesPortPgIdMappingEntry 2 }
cienaCesPortPgIdMappingSlotIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..38)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the slot index for the port."
::= { cienaCesPortPgIdMappingEntry 3 }
cienaCesPortPgidMappingPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the port number for the corresponding PGID."
::= { cienaCesPortPgIdMappingEntry 4 }
cienaCesPortPgIdMappingPgId OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the PGID value for the corresponding dotted index value."
::= { cienaCesPortPgIdMappingEntry 5 }
cienaCesPortPgIdMappingNotifChassisIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..1)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the chassis index for the port used for trap definition."
::= { cienaCesPortPgIdMappingEntry 6 }
cienaCesPortPgIdMappingNotifShelfIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..992)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the shelf index for the port used for trap definition."
::= { cienaCesPortPgIdMappingEntry 7 }
cienaCesPortPgIdMappingNotifSlotIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..38)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the slot index for the port used for trap definition."
::= { cienaCesPortPgIdMappingEntry 8 }
cienaCesPortPgIdMappingNotifPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the port number for the corresponding PGID
used for trap definition."
::= { cienaCesPortPgIdMappingEntry 9 }
--
--cienaCesChPortPgIdMappingTable
--
cienaCesChPortPgIdMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesChPortPgIdMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table to map the hierarchical (dotted) port index to PgId value.
This table supports channelized interfaces."
::= { cienaCesChPortPgIdMapping 1 }
cienaCesChPortPgIdMappingEntry OBJECT-TYPE
SYNTAX CienaCesChPortPgIdMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the PgId mapping table."
INDEX { cienaCesChPortPgIdMappingChassisIndex, cienaCesChPortPgIdMappingShelfIndex,
cienaCesChPortPgIdMappingSlotIndex, cienaCesChPortPgIdMappingPortNumber,
cienaCesChPortPgIdMappingChannelNumber }
::= { cienaCesChPortPgIdMappingTable 1 }
CienaCesChPortPgIdMappingEntry ::= SEQUENCE {
cienaCesChPortPgIdMappingChassisIndex Unsigned32,
cienaCesChPortPgIdMappingShelfIndex Unsigned32,
cienaCesChPortPgIdMappingSlotIndex Unsigned32,
cienaCesChPortPgIdMappingPortNumber Unsigned32,
cienaCesChPortPgIdMappingChannelNumber Unsigned32,
cienaCesChPortPgIdMappingPgId Unsigned32,
cienaCesChPortPgIdMappingNotifChassisIndex Unsigned32,
cienaCesChPortPgIdMappingNotifShelfIndex Unsigned32,
cienaCesChPortPgIdMappingNotifSlotIndex Unsigned32,
cienaCesChPortPgIdMappingNotifPortNumber Unsigned32,
cienaCesChPortPgIdMappingNotifChannelNumber Unsigned32
}
cienaCesChPortPgIdMappingChassisIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..1)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the chassis index for the port."
::= { cienaCesChPortPgIdMappingEntry 1 }
cienaCesChPortPgIdMappingShelfIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..992)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the shelf index for the port."
::= { cienaCesChPortPgIdMappingEntry 2 }
cienaCesChPortPgIdMappingSlotIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..38)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the slot index for the port."
::= { cienaCesChPortPgIdMappingEntry 3 }
cienaCesChPortPgIdMappingPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the port number for the corresponding PgId."
::= { cienaCesChPortPgIdMappingEntry 4 }
cienaCesChPortPgIdMappingChannelNumber OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the channel number for the corresponding PgId.
The value 0 is used if the port is not channelized."
::= { cienaCesChPortPgIdMappingEntry 5 }
cienaCesChPortPgIdMappingPgId OBJECT-TYPE
SYNTAX Unsigned32(1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the PgId value for the port as specified by this object's index."
::= { cienaCesChPortPgIdMappingEntry 6 }
cienaCesChPortPgIdMappingNotifChassisIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..1)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the chassis index for the port used for trap definition."
::= { cienaCesChPortPgIdMappingEntry 7 }
cienaCesChPortPgIdMappingNotifShelfIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..992)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the shelf index for the port used for trap definition."
::= { cienaCesChPortPgIdMappingEntry 8 }
cienaCesChPortPgIdMappingNotifSlotIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..38)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the slot index for the port used for trap definition."
::= { cienaCesChPortPgIdMappingEntry 9 }
cienaCesChPortPgIdMappingNotifPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the port number for the corresponding PgId
used for trap definition."
::= { cienaCesChPortPgIdMappingEntry 10 }
cienaCesChPortPgIdMappingNotifChannelNumber OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object indicates the channel number for the corresponding PgId
used for trap definition. The value 0 is used if the port is
not channelized."
::= { cienaCesChPortPgIdMappingEntry 11 }
--
-- Port Traps
--
cienaCesPortNotificationPortUp NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid
}
STATUS current
DESCRIPTION
"A cienaCesLogicalPortNotificationPortUp trap signifies that the SNMP entity, acting in
an agent role, has detected the link status has become operationally up for
one of its communication links.
To enable the device to send this notification:
- cienaCesPortEnhancedLinkTrapState needs to be set to enabled
- cienaCesPortAllTrapState needs to be set to enabled
- cienaCesLogicalPortConfigPortAllTrapState for the port needs to be set to enabled
- cienaCesLogicalPortConfigPortLinkUpDownTrapState for the port needs to be set to enabled
These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
cienaGlobalMacAddress, cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex, cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber, cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState, cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType, cienaCesLogicalPortConfigPortDesc, sysName,
sysLocation, cienaCesChassisSystemId and cienaCesLogicalPortConfigEttpAid."
::= { cienaCesPortNotificationMIBNotifications 2 }
cienaCesPortNotificationPortDown NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid,
cienaCesLogicalPortLastDownReason1,
cienaCesLogicalPortLastDownReason2,
cienaCesLogicalPortLastDownReason3,
cienaCesLogicalPortMaskedDownReason
}
STATUS current
DESCRIPTION
"A cienaCesLogicalPortNotificationPortDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the link status has become operationally down
for one of its communication links.
To enable the device to send this notification:
- cienaCesPortEnhancedLinkTrapState needs to be set to enabled
- cienaCesPortAllTrapState needs to be set to enabled
- cienaCesLogicalPortConfigPortAllTrapState for the port needs to be set to enabled
- cienaCesLogicalPortConfigPortLinkUpDownTrapState for the port needs to be set to enabled
These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
cienaGlobalMacAddress, cienaCesPortPgIdMappingNotifChassisIndex, cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex, cienaCesPortPgIdMappingNotifPortNumber,
cienaCesLogicalPortConfigPortAdminState, cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName, cienaCesLogicalPortConfigPortType, cienaCesLogicalPortConfigPortDesc,
sysName, and sysLocation."
::= { cienaCesPortNotificationMIBNotifications 1 }
cienaCesChPortNotificationPortUp NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesChPortPgIdMappingNotifChassisIndex,
cienaCesChPortPgIdMappingNotifShelfIndex,
cienaCesChPortPgIdMappingNotifSlotIndex,
cienaCesChPortPgIdMappingNotifPortNumber,
cienaCesChPortPgIdMappingNotifChannelNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid
}
STATUS current
DESCRIPTION
"A cienaCesChPortNotificationPortUp trap signifies that the SNMP entity, acting in
an agent role, has detected the link status has become operationally up for
one of its communication links.
To enable the device to send this notification:
- cienaCesPortEnhancedLinkTrapState needs to be set to enabled
- cienaCesPortAllTrapState needs to be set to enabled
- cienaCesLogicalPortConfigPortAllTrapState for the port needs to be set to enabled
- cienaCesLogicalPortConfigPortLinkUpDownTrapState for the port needs to be set to enabled
These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
cienaGlobalMacAddress, cienaCesChPortPgIdMappingNotifChassisIndex,
cienaCesChPortPgIdMappingNotifShelfIndex, cienaCesChPortPgIdMappingNotifSlotIndex,
cienaCesChPortPgIdMappingNotifPortNumber, cienaCesChPortPgIdMappingNotifChannelNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState, cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType, cienaCesLogicalPortConfigPortDesc, sysName,
sysLocation, cienaCesChassisSystemId and cienaCesLogicalPortConfigEttpAid."
::= { cienaCesPortNotificationMIBNotifications 3 }
cienaCesChPortNotificationPortDown NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesChPortPgIdMappingNotifChassisIndex,
cienaCesChPortPgIdMappingNotifShelfIndex,
cienaCesChPortPgIdMappingNotifSlotIndex,
cienaCesChPortPgIdMappingNotifPortNumber,
cienaCesChPortPgIdMappingNotifChannelNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid,
cienaCesLogicalPortLastDownReason1,
cienaCesLogicalPortLastDownReason2,
cienaCesLogicalPortLastDownReason3,
cienaCesLogicalPortMaskedDownReason
}
STATUS current
DESCRIPTION
"A cienaCesChPortNotificationPortDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the link status has become operationally down
for one of its communication links.
To enable the device to send this notification:
- cienaCesPortEnhancedLinkTrapState needs to be set to enabled
- cienaCesPortAllTrapState needs to be set to enabled
- cienaCesLogicalPortConfigPortAllTrapState for the port needs to be set to enabled
- cienaCesLogicalPortConfigPortLinkUpDownTrapState for the port needs to be set to enabled
These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
cienaGlobalMacAddress, cienaCesChPortPgIdMappingNotifChassisIndex, cienaCesChPortPgIdMappingNotifShelfIndex,
cienaCesChPortPgIdMappingNotifSlotIndex, cienaCesChPortPgIdMappingNotifPortNumber,
cienaCesChPortPgIdMappingNotifChannelNumber,
cienaCesLogicalPortConfigPortAdminState, cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName, cienaCesLogicalPortConfigPortType, cienaCesLogicalPortConfigPortDesc,
sysName, and sysLocation."
::= { cienaCesPortNotificationMIBNotifications 4 }
cienaCesPortNotificationPortSignalDegradeSet NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber,
cienaCesChPortPgIdMappingNotifChannelNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid,
cienaCesLogicalPortConfigSignalDegradeDetection
}
STATUS current
DESCRIPTION
"A cienaCesPortNotificationPortSignalDegradeSet trap is raised when a
signal degrade condition is detected against the specified port.
This trap is enabled by default. Variable bindings include:
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid,
cienaCesLogicalPortConfigSignalDegradeDetection"
::= { cienaCesPortNotificationMIBNotifications 5 }
cienaCesPortNotificationPortSignalDegradeClear NOTIFICATION-TYPE
OBJECTS { cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber,
cienaCesChPortPgIdMappingNotifChannelNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId,
cienaCesLogicalPortConfigEttpAid
}
STATUS current
DESCRIPTION
"A cienaCesPortNotificationPortSignalDegradeClear trap is raised when
the signal degrade condition is cleared against the specified port.
This trap is enabled by default. Variable bindings include:
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPortPgIdMappingNotifChassisIndex,
cienaCesPortPgIdMappingNotifShelfIndex,
cienaCesPortPgIdMappingNotifSlotIndex,
cienaCesPortPgIdMappingNotifPortNumber,
cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortType,
cienaCesLogicalPortConfigPortDesc,
sysName,
sysLocation,
cienaCesChassisSystemId
cienaCesLogicalPortConfigEttpAid."
::= { cienaCesPortNotificationMIBNotifications 6 }
--
-- Groups definition
portConfigGroup OBJECT-GROUP
OBJECTS { cienaCesLogicalPortConfigPortAdminState,
cienaCesLogicalPortConfigPortOperState,
cienaCesLogicalPortConfigPortLinkUpDownTrapState,
cienaCesLogicalPortConfigPortAllTrapState,
cienaCesLogicalPortConfigPortPortMacAddress,
cienaCesLogicalPortConfigPortName,
cienaCesLogicalPortConfigPortDesc,
cienaCesLogicalPortConfigPortType }
STATUS current
DESCRIPTION
"A collection of objects providing information
about port configurations."
::= { cienaCesPortMIBGroups 1 }
portNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS { cienaCesPortNotificationPortDown, cienaCesPortNotificationPortUp }
STATUS current
DESCRIPTION
"A collection of objects providing information
about port notifications."
::= { cienaCesPortMIBGroups 2 }
portPgIdMappingGroup OBJECT-GROUP
OBJECTS { cienaCesPortPgidMappingPortNumber,
cienaCesPortPgIdMappingPgId }
STATUS current
DESCRIPTION
"A collection of objects providing information
about port PgId mappings."
::= { cienaCesPortMIBGroups 3 }
--
-- Ettp table
--
cienaCesEttpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesEttpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of Ethernet (default) physical ports. (ETTPs)."
::= { cienaCesEttpConfig 1 }
cienaCesEttpConfigEntry OBJECT-TYPE
SYNTAX CienaCesEttpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ETTP entry in the Ethernet default physical port table."
INDEX { cienaCesEttpConfigEttpId }
::= { cienaCesEttpConfigTable 1 }
CienaCesEttpConfigEntry ::= SEQUENCE {
cienaCesEttpConfigEttpId Unsigned32,
cienaCesEttpConfigOperState INTEGER,
cienaCesEttpConfigLinkUpDownTrapState CienaGlobalState,
cienaCesEttpConfigAllTrapState CienaGlobalState,
cienaCesEttpConfigMacAddress MacAddress,
cienaCesEttpConfigName DisplayString,
cienaCesEttpConfigEttpType INTEGER,
cienaCesEttpConfigAdminSpeed INTEGER,
cienaCesEttpConfigOperSpeed INTEGER,
cienaCesEttpConfigEthLpPgid Unsigned32,
cienaCesEttpConfigDuplex EttpDuplexPolicy,
cienaCesEttpConfigFlowCntl EttpFlowControlPolicy,
cienaCesEttpConfigAutoNeg EttpAutoNegPolicy,
cienaCesEttpConfigAdvertisedFlowCntl EttpAdvertisedFlowControlPolicy,
cienaCesEttpConfigIfgDecr Unsigned32,
cienaCesEttpConfigXcvrFreq Unsigned32
}
cienaCesEttpConfigEttpId OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ETTP ID for the instance. ETTP IDs start at 1,
and may not be consecutive for each additional ettp.
Note that ETTP-IDs map directly 1:1 to default physical port PGIDs"
::= { cienaCesEttpConfigEntry 1 }
cienaCesEttpConfigOperState OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
enabled(2),
disabled(3),
notAuthenticated(4),
loopbackTx(5),
loopbackRx(6),
unequipped(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the ettp."
::= { cienaCesEttpConfigEntry 2 }
cienaCesEttpConfigLinkUpDownTrapState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the current value of the enterprise ettp traps state."
DEFVAL { enabled }
::= { cienaCesEttpConfigEntry 3 }
cienaCesEttpConfigAllTrapState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the device generates traps for this ettp."
DEFVAL { enabled }
::= { cienaCesEttpConfigEntry 4 }
cienaCesEttpConfigMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the ettp MAC address."
::= { cienaCesEttpConfigEntry 5 }
cienaCesEttpConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the
ettp. This string should indicate the physical
location of the ettp as well."
::= { cienaCesEttpConfigEntry 6 }
cienaCesEttpConfigEttpType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
ethernet(2),
fastEthernet(3),
hundredFx(4),
gigEthernet(5),
-- lagPort(6),
gigHundredFx(7),
tripleSpeed(8),
tenGigEthernet(9),
vmTripleSpeedTX(10),
sonetOc3(11),
sonetOc12(12),
sonetOc48(13),
sonetOc192(14),
fortyGigEthernet(15),
hundredGigEthernet(16),
twoPointFiveGigEthernet(17),
odu4(18)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port type for the ettp."
::= { cienaCesEttpConfigEntry 7 }
cienaCesEttpConfigAdminSpeed OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
tenMbps(2),
hundredMbps(3),
gig(4),
tenGig(5),
auto(6),
fortyGig(7),
hundredGig(8),
-- oduFlex(9),
twoPtFiveGig(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The desired speed of the ettp."
DEFVAL {auto}
::= { cienaCesEttpConfigEntry 8 }
cienaCesEttpConfigOperSpeed OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
tenMbps(2),
hundredMbps(3),
gig(4),
tenGig(5),
fortyGig(6),
hundredGig(7),
-- oduFlex(8),
twoPtFiveGig(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational speed of the ettp."
::= { cienaCesEttpConfigEntry 9 }
cienaCesEttpConfigEthLpPgid OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PG ID-mapped to the instance.
ETTPs will map to a logical port which can be one of default-physical-port, aggregate-port, port-alias-port"
::= { cienaCesEttpConfigEntry 10 }
cienaCesEttpConfigDuplex OBJECT-TYPE
SYNTAX EttpDuplexPolicy
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the port can transmit and receive data simultaneously."
DEFVAL {full}
::= { cienaCesEttpConfigEntry 11 }
cienaCesEttpConfigFlowCntl OBJECT-TYPE
SYNTAX EttpFlowControlPolicy
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the port action when frames are received faster than the port can process them."
DEFVAL {off}
::= { cienaCesEttpConfigEntry 12 }
cienaCesEttpConfigAutoNeg OBJECT-TYPE
SYNTAX EttpAutoNegPolicy
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the port should negotiate with its link partner to determine common operating parameters."
DEFVAL {off}
::= { cienaCesEttpConfigEntry 13 }
cienaCesEttpConfigAdvertisedFlowCntl OBJECT-TYPE
SYNTAX EttpAdvertisedFlowControlPolicy
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether flow control settings are advertised."
DEFVAL {off}
::= { cienaCesEttpConfigEntry 14 }
cienaCesEttpConfigIfgDecr OBJECT-TYPE
SYNTAX Unsigned32 (0..5)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of bytes by which to decrease the Inter-frame Gap (IFG) for frames being received on the port."
::= { cienaCesEttpConfigEntry 15 }
cienaCesEttpConfigXcvrFreq OBJECT-TYPE
SYNTAX Unsigned32 (191100..196150)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the desired frequency of the transceiver in GHz."
::= { cienaCesEttpConfigEntry 16 }
--
-- Logical Port TPID table
--
cienaCesLogicalPortTpidTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesLogicalPortTpidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of ingress TPIDs for every port"
::= { cienaCesLogicalPortTpid 1 }
cienaCesLogicalPortTpidEntry OBJECT-TYPE
SYNTAX CienaCesLogicalPortTpidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents an individual ingress TPID pairs belonging to a port.
The number of ingress TPID entries per port is decided by the
cienaCesLogicalPortConfigVidTpidCount object. E.g. 8100 and 88A8"
INDEX { cienaCesLogicalPortConfigPgId,
cienaCesLogicalPortTpidIndex }
::= { cienaCesLogicalPortTpidTable 1 }
CienaCesLogicalPortTpidEntry ::= SEQUENCE {
cienaCesLogicalPortTpidIndex Unsigned32,
cienaCesLogicalPortInnerVidTpid Unsigned32,
cienaCesLogicalPortOuterVidTpid Unsigned32
}
cienaCesLogicalPortTpidIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the ingress tpid pair index for the port. size => CS_MAX_L2_ETYPES"
::= { cienaCesLogicalPortTpidEntry 1 }
cienaCesLogicalPortInnerVidTpid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the inner vlan tag TPID for the ingress tpid pair index of the port."
::= { cienaCesLogicalPortTpidEntry 2 }
cienaCesLogicalPortOuterVidTpid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the outer vlan tag TPID for the ingress tpid pair index of the port."
::= { cienaCesLogicalPortTpidEntry 3 }
END
|