-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-OPTICAL-MIB-V1SMI.my
2635 lines (2441 loc) · 83.5 KB
/
CISCO-OPTICAL-MIB-V1SMI.my
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
-- MIB file created 13-Oct-2016 03:08:14, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-OPTICAL-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-OPTICAL-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue, DisplayString, MacAddress, TimeStamp
FROM SNMPv2-TC-v1
ifIndex, ifName
FROM IF-MIB
ciscoMgmt
FROM CISCO-SMI
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoOpticalMIB OBJECT IDENTIFIER ::= { ciscoMgmt 828 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201605240000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: cs-<list>@cisco.com
-- Descr
-- This MIB module defines the managed objects for physical layer
-- characteristics of optical interfaces and performance
-- statistics objects for protocol specific counters in optical
-- devices.
-- Performance monitoring (PM) parameters are used by service
-- providers to gather, store, set thresholds for and report
-- performance data for early detection of problems.
-- Thresholds are used to set error levels for each PM parameter.
-- During the accumulation cycle, if the current value of a
-- performance monitoring parameter reaches or exceeds its
-- corresponding threshold value, a threshold crossing alarm (TCA)
-- is generated. The TCAs provide early detection of performance
-- degradation.
-- Glossary:
-- LBC : Laser Bias Current
-- TX : Transmit
-- RX : Receive
-- PMD : Polarization Mode Dispersion
-- OSNR : Optical Signal to Noise Ratio
-- DGD : Differential Group Delay
-- CD : Chromatic Dispersion
-- rad/s : radian per second
-- dB : decibel
-- dBm : decibel-milliwatt
-- ps : picosecond
-- nm : nanometer.
-- RevDate
-- 201605240000Z
-- RevDescr
-- Added
-- 1. Extend CoiIntervalType to include thirtySecond.
-- 2. Extend coiOpticalControllerEntry to include
-- coiOpticalControllerTotalRXPower,
-- coiOpticalControllerTotalTXPower.
-- 3. Add coiOpticalPowerGroup.
-- 4. Deprecated the ciscoOpticalMIBCompliance compliance,
-- added ciscoOpticalMIBComplianceRev1.
-- RevDate
-- 201512010000Z
-- RevDescr
-- Added
-- 1. NOTIFICATION-TYPE coiOpticalEquipmentAlarm
-- 2. Textual Convention CoiOptAlarmType, CoiOptAlarmStatus,
-- CoiOptAlarmSeverity, CoiOptAlarmServiceAffecting.
-- 3. coiOpticalEquipmentAlarmGroup OBJECT INDENTIFIER, with
-- coiOpticalAlarmLocation, coiOpticalAlarmType,
-- coiOpticalAlarmTimeStamp, coiOpticalAlarmName,
-- coiOpticalAlarmAdditionalInfo, coiOpticalAlarmSeverity,
-- coiOpticalAlarmStatus, coiOpticalAlarmServiceAffecting as
-- OBJECT-TYPE.
-- 4. ppmFail bit for coiOpticalControllerStatus.
-- RevDate
-- 201510300000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoOpticalMIBNotifs OBJECT IDENTIFIER ::= { ciscoOpticalMIB 0 }
ciscoOpticalMIBObjects OBJECT IDENTIFIER ::= { ciscoOpticalMIB 1 }
coiOpticalController OBJECT IDENTIFIER ::= { ciscoOpticalMIBObjects 1 }
coiOpticalPerformanceMonitoring OBJECT IDENTIFIER ::= { ciscoOpticalMIBObjects 2 }
coiOpticalEquipmentAlarmGroup OBJECT IDENTIFIER ::= { ciscoOpticalMIBObjects 4 }
ciscoOpticalMIBConformance OBJECT IDENTIFIER ::= { ciscoOpticalMIB 2 }
ciscoOpticalMIBCompliances OBJECT IDENTIFIER ::= { ciscoOpticalMIBConformance 1 }
ciscoOpticalMIBGroups OBJECT IDENTIFIER ::= { ciscoOpticalMIBConformance 2 }
CoiOpticalPower ::= INTEGER(-4000..3000)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This value indicates the optical receive or transmit power.
CoiOpticalWavelength ::= Gauge(0|1528770..1604030)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This value represents the wavelength of optical signals, in an
-- optical interface. It is represented in units of nanometers.
-- A value of zero either indicates that the wavelength is
-- unknown, or that it does not fall under the frequency grid
-- defined in ITU-T G.694.1
-- Refer
-- ITU - T Recommendation G.694.1 - Spectral grids for WDM
-- applications: DWDM frequency grid, May 2002
CoiIntervalType ::= INTEGER {
fifteenMin(1),
oneDay(2),
thirtySecond(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This value indicates the time period over which performance
-- monitoring data has been collected. Valid values are -
-- fifteenMin(1) - values for the 15 min interval.
-- oneDay(2) - values for the 1 Day interval.
-- thirtySecond(3)- values for the 30 Sec interval.
CoiPortType ::= INTEGER {
clientPort(1),
trunkPort(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This value indicates the port type of the optical
-- interface. Valid values are -
-- clientPort(1) - denotes client port.
-- trunkPort(2) - denotes trunk port.
CoiOptAlarmType ::= INTEGER {
alarmUnknown(1),
equipmentFailure(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This value indicates the alarm type.
-- alarmUnknown(1) - denotes unknown alarm type.
-- equipmentFailure(2) - denotes equipment fail alarm type.
CoiOptAlarmSeverity ::= INTEGER {
notReported(1),
notAlarmed(2),
minor(3),
major(4),
critical(5)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This will indicate the severity of the notification being
-- sent out. Valid values are -
-- notReported(1) - alarm not reported.
-- notAlarmed(2) - alarm not raised.
-- minor(3) - minor alarm.
-- major(4) - major alarm.
-- critical(5) - critical alarm.
CoiOptAlarmStatus ::= INTEGER {
raised(1),
cleared(2),
transient(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This will indicate the status of the alarm.
-- Valid values are -
-- raised(1) - alarm in raised state.
-- cleared(2) - alarm in cleared state.
-- transient(3)- alarm in transient state.
CoiOptAlarmServiceAffecting ::= INTEGER {
serviceAffecting(1),
nonServiceAffecting(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This will indicate the sevice-affecting state of the alarm.
-- Valid values are -
-- Service affecting(1) - alarm affects service.
-- Non-Service affecting(2)- alarm does not affect service.
coiOpticalNotifEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object controls the generation of coiOpticsStatusChange
notification.
If the value of this object is 'true', then the generation of
coiOpticsStatusChange notification is enabled. If the value of
this object is 'false', then the generation of
coiOpticsStatusChange notification is disabled."
::= { coiOpticalController 1 }
coiOpticalControllerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoiOpticalControllerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides management information for optical layer
related attributes of interfaces with an ifType of
opticalChannel(195)."
::= { coiOpticalController 2 }
coiOpticalControllerEntry OBJECT-TYPE
SYNTAX CoiOpticalControllerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing management information on optical layer
related attributes of interfaces with an ifType
opticalChannel(195). Entries are created by the feature when a
new interface is added to the ifTable."
INDEX { ifIndex }
::= { coiOpticalControllerTable 1 }
CoiOpticalControllerEntry ::= SEQUENCE {
coiOpticalControllerWavelength CoiOpticalWavelength,
coiOpticalControllerLaserStatus INTEGER,
coiOpticalControllerFrequency Gauge,
coiOpticalControllerChannelNumber Gauge,
coiOpticalControllerTransmitPower CoiOpticalPower,
coiOpticalControllerOpticsType DisplayString,
coiOpticalControllerRXLowThreshold CoiOpticalPower,
coiOpticalControllerTXLowThreshold CoiOpticalPower,
coiOpticalControllerRXHighThreshold CoiOpticalPower,
coiOpticalControllerTXHighThreshold CoiOpticalPower,
coiOpticalControllerLBCHighThreshold INTEGER,
coiOpticalControllerStatus OCTET STRING,
coiOpticalControllerPortType CoiPortType,
coiOpticalControllerTotalRXPower CoiOpticalPower,
coiOpticalControllerTotalTXPower CoiOpticalPower
}
coiOpticalControllerWavelength OBJECT-TYPE
SYNTAX CoiOpticalWavelength
-- Rsyntax Gauge(0|1528770..1604030)
-- Units
-- 1/100 nm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the wavelength on
optical channel interfaces in 1/100 nm."
DEFVAL { 1529553 }
::= { coiOpticalControllerEntry 1 }
coiOpticalControllerLaserStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object gives the current operational state of the Laser.
Valid values are -
'up' - The laser is operational.
'down' - The laser is not operational."
::= { coiOpticalControllerEntry 2 }
coiOpticalControllerFrequency OBJECT-TYPE
SYNTAX Gauge
-- Units
-- 100 MHz
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the frequency on optical
channel interfaces in 100 MHz."
::= { coiOpticalControllerEntry 3 }
coiOpticalControllerChannelNumber OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the channel number on
optical channel interfaces. Channel Number is set to 0 if not
50GHz grid."
::= { coiOpticalControllerEntry 4 }
coiOpticalControllerTransmitPower OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the Transmit Power in
1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 5 }
coiOpticalControllerOpticsType OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object gives the description of optics present on optical
channel interfaces."
::= { coiOpticalControllerEntry 6 }
coiOpticalControllerRXLowThreshold OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the Receive Low Threshold in
1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 7 }
coiOpticalControllerTXLowThreshold OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the Transmit Low Threshold in
1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 8 }
coiOpticalControllerRXHighThreshold OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the Receive High Threshold in
1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 9 }
coiOpticalControllerTXHighThreshold OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the Transmit High Threshold
in 1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 10 }
coiOpticalControllerLBCHighThreshold OBJECT-TYPE
SYNTAX INTEGER(0..1000)
-- Units
-- 1/10 %
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the Laser Bias Current High
Threshold in 1/10% on optical channel interfaces."
::= { coiOpticalControllerEntry 11 }
coiOpticalControllerStatus OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- noDefect(0)
-- improprmvl(1)
-- mea(2)
-- provMismatch(3)
-- highRXPwr(4)
-- highTXPwr(5)
-- lowRXPwr(6)
-- lowTXPwr(7)
-- highLBC(8)
-- highDGD(9)
-- outOfRangeCD(10)
-- lowOSNR(11)
-- wvlOutOfLock(12)
-- highLaserTemp(13)
-- lowLaserTemp(14)
-- ppmFail(15)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the current defect status of the Optics
layer.
noDefect(0): No Defect. This bit is set high when no
defect is detected on the optics.
improprmvl(1): Improper Removal. This will be set when
a physical pluggable is absent on a service
(hw-module) provisioned port.
mea(2): This bit will be set when Port Pluggable
Module Mismatches With Pre-Provisoned PPM.
provMismatch(3): Provision Mismatch. This bit is set when
Provisioned wavelength is Not supported By
Pluggable.
highRXPwr(4): High Receive Power. This bit is set when the
measured optical power of the received
signal exceeds the threshold high value,
which is user-provisionable.
highTXPwr(5): High Transmit Power. This bit is set when
Pluggable measured optical power of the
transmitted signal falls over the threshold.
lowRXPwr(6): Low Receive Power. This bit is set when the
measured optical power of the received
signal falls below the low threshold value,
which is user-provisionable.
lowTXPwr(7): Low Transmit Power. This bit is set when
Pluggable measured optical power of the
transmitted signal falls below the low
threshold.
highLBC(8): High Laser Bias. This bit is set when the
Physical Pluggable Port laser reads laser
bias value beyond configured high threshold.
highDGD(9): High DGD. This bit is set when the pluggable
port Module reads the Differential Group
delay value that exceeds the configured high
threshold.
outOfRangeCD(10): Out of Range Chromatic Dispersion. This bit
is set when the Chromatic dispersion value
read by the associated HW is out of range
with the configured threshold.
lowOSNR(11): Low Optical Signal to Noise Ratio. This bit
is set when the HW read Optical Signal to
Noise ratio falls below the configured low
threshold.
wvlOutOfLock(12): Wavelength Out of Lock. This bit is set when
Trunk Port optics detects that optical input
frequency is out of range.
highLaserTemp(13): High LaserTemp.This bit is set when the
internally measured transceiver temperature
exceeds the card setting by 35.6 degrees F
or 2 degrees C. A laser temperature change
affects the transmitted wavelength.
lowLaserTemp(14): Low LaserTemp. This bit is set when the
internally measured transceiver temperature
falls below the card setting by 35.6 degrees
F or 2 degrees C. A laser temperature change
affects the transmitted wavelength. (This
temperature is equivalent to about 200
picometers of wavelength.
ppmFail(15): Pluggable Equipment Fail. This bit is set
when Pluggable Equipment is not operational
or manageable.
This object is sent out as a notification to the agent."
::= { coiOpticalControllerEntry 12 }
coiOpticalControllerPortType OBJECT-TYPE
SYNTAX CoiPortType
-- Rsyntax INTEGER {
-- clientPort(1),
-- trunkPort(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object gives the port type of the optical interface."
::= { coiOpticalControllerEntry 13 }
coiOpticalControllerTotalRXPower OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the total receive power in
1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 14 }
coiOpticalControllerTotalTXPower OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the total transmit power
in 1/100 dBm on optical channel interfaces."
::= { coiOpticalControllerEntry 15 }
coiOpticalControllerPerLaneTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoiOpticalControllerPerLaneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides the management information for optical
layer related attributes of interfaces with an ifType of
opticalChannel(195) and lane number as
coiOpticalControllerLane."
::= { coiOpticalController 3 }
coiOpticalControllerPerLaneEntry OBJECT-TYPE
SYNTAX CoiOpticalControllerPerLaneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing management information on optical layer
related attributes of interfaces with an ifType
opticalChannel(195) and lane number as
coiOpticalControllerLane. Entries are created by the feature
when a new interface is added to the ifTable."
INDEX { ifIndex, coiOpticalControllerLane }
::= { coiOpticalControllerPerLaneTable 1 }
CoiOpticalControllerPerLaneEntry ::= SEQUENCE {
coiOpticalControllerLane INTEGER,
coiOpticalControllerPerLaneRXPower CoiOpticalPower,
coiOpticalControllerPerLaneTXPower CoiOpticalPower,
coiOpticalControllerPerLaneLBC INTEGER,
coiOpticalControllerPerLaneOSNR INTEGER,
coiOpticalControllerPerLaneChromaticDispersion INTEGER,
coiOpticalControllerPerLaneDifferentialGroupDelay INTEGER,
coiOpticalControllerPerLaneSecondOrderPMD INTEGER,
coiOpticalControllerPerLanePolarizationDependentLoss INTEGER,
coiOpticalControllerPerLanePolarizationChangeRate INTEGER,
coiOpticalControllerPerLanePhaseNoise INTEGER
}
coiOpticalControllerLane OBJECT-TYPE
SYNTAX INTEGER(1..12)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specifies the lane number for the optical
controller. Each optical controller is divided into data lanes,
with each lane operating at some data rate, giving an aggregated
bandwidth of the controller, as a whole. Lane is applicable for
breakout mode of operation."
::= { coiOpticalControllerPerLaneEntry 1 }
coiOpticalControllerPerLaneRXPower OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the Receive power in 1/100 dBm."
::= { coiOpticalControllerPerLaneEntry 2 }
coiOpticalControllerPerLaneTXPower OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the Transmit power in 1/100 dBm."
::= { coiOpticalControllerPerLaneEntry 3 }
coiOpticalControllerPerLaneLBC OBJECT-TYPE
SYNTAX INTEGER(0..1000)
-- Units
-- 1/10 %
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the Laser Bias Current in 1/10%."
::= { coiOpticalControllerPerLaneEntry 4 }
coiOpticalControllerPerLaneOSNR OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the Optical Signal to Noise Ratio in
1/100 dB."
::= { coiOpticalControllerPerLaneEntry 5 }
coiOpticalControllerPerLaneChromaticDispersion OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- ps/nm
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the measure of spread of light pulse
in ps/nm."
::= { coiOpticalControllerPerLaneEntry 6 }
coiOpticalControllerPerLaneDifferentialGroupDelay OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 ps
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the propagation time difference
between eigenmodes X and Y in 1/100 ps."
::= { coiOpticalControllerPerLaneEntry 7 }
coiOpticalControllerPerLaneSecondOrderPMD OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 ps^2
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the threshold Second Order Polarization
Mode Dispersion in 1/100 ps^2."
::= { coiOpticalControllerPerLaneEntry 8 }
coiOpticalControllerPerLanePolarizationDependentLoss OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the threshold Polarization Dependent
Loss in 1/100 dB."
::= { coiOpticalControllerPerLaneEntry 9 }
coiOpticalControllerPerLanePolarizationChangeRate OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 rad/s
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the Polarization Change Rate in
1/100 rad/s."
::= { coiOpticalControllerPerLaneEntry 10 }
coiOpticalControllerPerLanePhaseNoise OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/1000 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the Fluctuations in the Phase of a
Waveform in 1/1000 dB."
::= { coiOpticalControllerPerLaneEntry 11 }
coiOpticalClientInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoiOpticalClientInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides management information for optical's
client layer related attributes of interfaces with an ifType
of ethernetCsmacd(6).This parameter is applicable only for
client interfaces."
::= { ciscoOpticalMIBObjects 3 }
coiOpticalClientInfoEntry OBJECT-TYPE
SYNTAX CoiOpticalClientInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing information for optical's
client layer related attributes of interfaces with an ifType
of ethernetCsmacd(6). Entries are created by the feature when
the interface discovers the neighbour's ethernet MAC Address."
INDEX { ifIndex }
::= { coiOpticalClientInfoTable 1 }
CoiOpticalClientInfoEntry ::= SEQUENCE {
coiOpticalClientEthernetNeighbourMAC MacAddress
}
coiOpticalClientEthernetNeighbourMAC OBJECT-TYPE
SYNTAX MacAddress
-- Rsyntax OCTET STRING(SIZE(6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object gives the neighbour MAC Address to which the
interface is connected."
::= { coiOpticalClientInfoEntry 1 }
coiOpticalThresholdTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoiOpticalThresholdEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides threshold information for optical layer
related attributes of interfaces with an ifType of
opticalChannel(195) and Interval type as
coiOptThreshIntervalType."
::= { coiOpticalPerformanceMonitoring 1 }
coiOpticalThresholdEntry OBJECT-TYPE
SYNTAX CoiOpticalThresholdEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing threshold information on optical layer
related attributes of interfaces with an ifType
opticalChannel(195). Entries are created by the feature
when a new interface is added to the ifTable."
INDEX { ifIndex, coiOptThreshIntervalType }
::= { coiOpticalThresholdTable 1 }
CoiOpticalThresholdEntry ::= SEQUENCE {
coiOptThreshIntervalType CoiIntervalType,
coiOptThreshTXPowerMin CoiOpticalPower,
coiOptThreshRXPowerMin CoiOpticalPower,
coiOptThreshOSNRMin INTEGER,
coiOptThreshChromaticDispersionMin INTEGER,
coiOptThreshDifferentialGroupDelayMin INTEGER,
coiOptThreshSecondOrderPMDMin INTEGER,
coiOptThreshPolarizationDependentLossMin INTEGER,
coiOptThreshPolarizationChangeRateMin INTEGER,
coiOptThreshPhaseNoiseMin INTEGER,
coiOptThreshLBCMin INTEGER,
coiOptThreshTXPowerMax CoiOpticalPower,
coiOptThreshRXPowerMax CoiOpticalPower,
coiOptThreshOSNRMax INTEGER,
coiOptThreshChromaticDispersionMax INTEGER,
coiOptThreshDifferentialGroupDelayMax INTEGER,
coiOptThreshSecondOrderPMDMax INTEGER,
coiOptThreshPolarizationDependentLossMax INTEGER,
coiOptThreshPolarizationChangeRateMax INTEGER,
coiOptThreshPhaseNoiseMax INTEGER,
coiOptThreshLBCMax INTEGER,
coiOptThreshTXPowerEnableMin TruthValue,
coiOptThreshRXPowerEnableMin TruthValue,
coiOptThreshOSNREnableMin TruthValue,
coiOptThreshChromaticDispersionEnableMin TruthValue,
coiOptThreshDifferentialGroupDelayEnableMin TruthValue,
coiOptThreshSecondOrderPMDEnableMin TruthValue,
coiOptThreshPolarizationDependentLossEnableMin TruthValue,
coiOptThreshPolarizationChangeRateEnableMin TruthValue,
coiOptThreshPhaseNoiseEnableMin TruthValue,
coiOptThreshLBCEnableMin TruthValue,
coiOptThreshTXPowerEnableMax TruthValue,
coiOptThreshRXPowerEnableMax TruthValue,
coiOptThreshOSNREnableMax TruthValue,
coiOptThreshChromaticDispersionEnableMax TruthValue,
coiOptThreshDifferentialGroupDelayEnableMax TruthValue,
coiOptThreshSecondOrderPMDEnableMax TruthValue,
coiOptThreshPolarizationDependentLossEnableMax TruthValue,
coiOptThreshPolarizationChangeRateEnableMax TruthValue,
coiOptThreshPhaseNoiseEnableMax TruthValue,
coiOptThreshLBCEnableMax TruthValue
}
coiOptThreshIntervalType OBJECT-TYPE
SYNTAX CoiIntervalType
-- Rsyntax INTEGER {
-- fifteenMin(1),
-- oneDay(2),
-- thirtySecond(3)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object gives the interval type during which the
performance statistics are accumulated for the interface."
::= { coiOpticalThresholdEntry 1 }
coiOptThreshTXPowerMin OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Transmit power for the interface in 1/100 dBm."
::= { coiOpticalThresholdEntry 2 }
coiOptThreshRXPowerMin OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Receive power for the interface in 1/100 dBm."
::= { coiOpticalThresholdEntry 3 }
coiOptThreshOSNRMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Optical Signal to Noise Ratio for the interface in 1/100 dB."
::= { coiOpticalThresholdEntry 4 }
coiOptThreshChromaticDispersionMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- ps/nm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
measure of spread of light pulse for the interface in ps/nm."
::= { coiOpticalThresholdEntry 5 }
coiOptThreshDifferentialGroupDelayMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 ps
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
propagation time difference between eigenmodes X and Y for the
interface in 1/100 ps."
::= { coiOpticalThresholdEntry 6 }
coiOptThreshSecondOrderPMDMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 ps^2
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Second Order Polarization Mode Dispersion for the interface in
1/100 ps^2."
::= { coiOpticalThresholdEntry 7 }
coiOptThreshPolarizationDependentLossMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Polarization Dependent Loss for the interface in 1/100 dB."
::= { coiOpticalThresholdEntry 8 }
coiOptThreshPolarizationChangeRateMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 rad/s
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Polarization Change Rate for the interface in 1/100 rad/s."
::= { coiOpticalThresholdEntry 9 }
coiOptThreshPhaseNoiseMin OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/1000 dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minimum
Fluctuations in the Phase of a Waveform for the interface in
1/1000 dB."
::= { coiOpticalThresholdEntry 10 }
coiOptThreshLBCMin OBJECT-TYPE
SYNTAX INTEGER(0..1000)
-- Units
-- 1/10 %
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of minumum
Laser Bias Current in 1/10%."
::= { coiOpticalThresholdEntry 11 }
coiOptThreshTXPowerMax OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
Transmit power for the interface in 1/100 dBm."
::= { coiOpticalThresholdEntry 12 }
coiOptThreshRXPowerMax OBJECT-TYPE
SYNTAX CoiOpticalPower
-- Rsyntax INTEGER(-4000..3000)
-- Units
-- 1/100 dBm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
Receive power for the interface in 1/100 dBm."
::= { coiOpticalThresholdEntry 13 }
coiOptThreshOSNRMax OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
Optical Signal to Noise Ratio for the interface in 1/100 dB."
::= { coiOpticalThresholdEntry 14 }
coiOptThreshChromaticDispersionMax OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- ps/nm
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
measure of spread of light pulse for the interface in ps/nm."
::= { coiOpticalThresholdEntry 15 }
coiOptThreshDifferentialGroupDelayMax OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 ps
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
propagation time difference between eigenmodes X and Y for the
interface in 1/100 ps."
::= { coiOpticalThresholdEntry 16 }
coiOptThreshSecondOrderPMDMax OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 ps^2
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
Second Order Polarization Mode Dispersion for the interface in
1/100 ps^2."
::= { coiOpticalThresholdEntry 17 }
coiOptThreshPolarizationDependentLossMax OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to configure the threshold of maximum
Polarization Dependent Loss for the interface in 1/100 dB."
::= { coiOpticalThresholdEntry 18 }
coiOptThreshPolarizationChangeRateMax OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- 1/100 rad/s
ACCESS read-write
STATUS mandatory
DESCRIPTION