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
|
LUM-OCM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Integer32
FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
DisplayString, DateAndTime
FROM SNMPv2-TC
lumModules, lumOcmMIB
FROM LUM-REG
FaultStatus, MgmtNameString, SubrackNumber, SlotNumber, PortNumber,
LambdaFrequency, BoardOrInterfaceOperStatus, BoardOrInterfaceAdminStatus,
CommandString
FROM LUM-TC;
lumOcmMIBModule MODULE-IDENTITY
LAST-UPDATED
"201806150000Z" -- June 15th 2018
ORGANIZATION
"Infinera Corporation"
CONTACT-INFO
"techsupport@infinera.com"
DESCRIPTION
"The optical control interface MIB.
- General
- Monitor interfaces
Note that, every time a get operation is performed and both ports are set
to admin status up, the switch will switch to update both ports. (unless
commissioning mode) The guaranteed durability of switching is 10 million times.
That means, if you switch (perform a get operation) more than every 50 second,
product lifetime of 15 years can not be guaranteed.
"
REVISION
"201806150000Z" -- June 15th 2018
DESCRIPTION
" Changes made for release r31.0:
- Added ocmIfSpacingMode and ocmIfHighInputPower in ocmIfEntry."
REVISION
"201712150000Z" -- Dec 15th 2017
DESCRIPTION
" Changes made for release r30.0:
- Added ocmChannelReferenceTime and ocmChannelSaveReference action in ocmChannel."
REVISION
"201706150000Z" -- June 15th 2017
DESCRIPTION
"Changes made for release r29.0:
- Changed ORGANIZATION and CONTACT-INFO"
REVISION
"201601110000Z" -- Jan 11th 2016
DESCRIPTION
"Added default value notPresent for operStatus."
REVISION
"201405160000Z" -- May 16th 2014
DESCRIPTION
"Added a parameter for offset adjustment which will allow for better
regulation in the optical control loop"
REVISION
"200801160000Z" -- January 16th 2008
DESCRIPTION
"First version."
::= { lumModules 33 }
-- ----------------------------------------------------
-- Conformance area, containing groups and complicance
-- specifications.
-- ----------------------------------------------------
lumOcmConfs OBJECT IDENTIFIER ::= { lumOcmMIB 1 }
lumOcmGroups OBJECT IDENTIFIER ::= { lumOcmConfs 1 }
lumOcmCompl OBJECT IDENTIFIER ::= { lumOcmConfs 2 }
lumOcmMinimalGroups OBJECT IDENTIFIER ::= { lumOcmConfs 3 }
lumOcmMinimalCompl OBJECT IDENTIFIER ::= { lumOcmConfs 4 }
-- ----------------------------------------------------
-- Root for objects in the ocm MIB
-- ----------------------------------------------------
lumOcmMIBObjects OBJECT IDENTIFIER ::= { lumOcmMIB 2 }
-- ----------------------------------------------------
-- This MIB contains the following groups:
-- ----------------------------------------------------
ocmGeneral OBJECT IDENTIFIER ::= { lumOcmMIBObjects 1 }
ocmIfList OBJECT IDENTIFIER ::= { lumOcmMIBObjects 2 }
ocmChannelList OBJECT IDENTIFIER ::= { lumOcmMIBObjects 3 }
lumentisOcmNotifications OBJECT IDENTIFIER ::= { lumOcmMIBObjects 4 }
-- ----------------------------------------------------
-- Textual Conventions
-- ----------------------------------------------------
-- ----------------------------------------------------
-- General group
-- ----------------------------------------------------
ocmGeneralLastChangeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the configuration of the MIB
was last changed.
"
::= { ocmGeneral 1 }
ocmGeneralStateLastChangeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the state of the MIB was last
changed.
"
::= { ocmGeneral 2 }
ocmGeneralOcmIfTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of table
"
::= { ocmGeneral 3 }
ocmGeneralOcmChannelTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of table
"
::= { ocmGeneral 4 }
-- ----------------------------------------------------
-- Optical control interfaces
-- ----------------------------------------------------
ocmIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF OcmIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface list."
::= { ocmIfList 1 }
ocmIfEntry OBJECT-TYPE
SYNTAX OcmIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the interface list.
"
INDEX { ocmIfIndex }
::= { ocmIfTable 1 }
OcmIfEntry ::=
SEQUENCE {
ocmIfIndex Unsigned32,
ocmIfName MgmtNameString,
ocmIfDescr DisplayString,
ocmIfSubrack SubrackNumber,
ocmIfSlot SlotNumber,
ocmIfRxPort PortNumber,
ocmIfInvPhysIndexOrZero Unsigned32,
ocmIfAdminStatus BoardOrInterfaceAdminStatus,
ocmIfOperStatus BoardOrInterfaceOperStatus,
ocmIfPowerThreshold Integer32,
ocmIfPowerOffset Integer32,
ocmIfMaxPowerLevel Integer32,
ocmIfMinPowerLevel Integer32,
ocmIfDeltaPower Integer32,
ocmIfConnectedBoardType INTEGER,
ocmIfUpdateLastChangeTime DateAndTime,
ocmIfConnectedSubrack SubrackNumber,
ocmIfConnectedSlot SlotNumber,
ocmIfConnectedPort PortNumber,
ocmIfActivePort PortNumber,
ocmIfControlMode INTEGER,
ocmIfReferenceTime DisplayString,
ocmIfSwitchFailure FaultStatus,
ocmIfDataSourceNotDefined FaultStatus,
ocmIfCommissioningMode FaultStatus,
ocmIfModuleFailure FaultStatus,
ocmIfConfigurationCommand CommandString,
ocmIfChangeConnectedPort CommandString,
ocmIfSaveReference CommandString,
ocmIfChangeConnectedBoardType CommandString,
ocmIfChangePowerThreshold CommandString,
ocmIfChangePowerOffset CommandString,
ocmIfPowerOffsetAdjustment Integer32,
ocmIfSpacingMode Integer32,
ocmIfHighInputPower FaultStatus }
ocmIfIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary index assigned to each entry.
"
::= { ocmIfEntry 1 }
ocmIfName OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management name of the interface, for
example 'ocm:1:2:1', where the first number
indicates sub-rack, the second slot number and
the third is the port number.
Examples:
ocm:s:s:p - Optical channel module interface
"
::= { ocmIfEntry 2 }
ocmIfDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User configurable label.
"
DEFVAL { "" }
::= { ocmIfEntry 3 }
ocmIfSubrack OBJECT-TYPE
SYNTAX SubrackNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the subrack where the interface
is located.
"
::= { ocmIfEntry 4 }
ocmIfSlot OBJECT-TYPE
SYNTAX SlotNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the slot where the interface is
located.
"
::= { ocmIfEntry 5 }
ocmIfRxPort OBJECT-TYPE
SYNTAX PortNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the port where the RX-side of
the interface is located.
"
::= { ocmIfEntry 6 }
ocmIfInvPhysIndexOrZero OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row in the invPhysTable for this interface.
Set to 0 if not known.
"
::= { ocmIfEntry 7 }
ocmIfAdminStatus OBJECT-TYPE
SYNTAX BoardOrInterfaceAdminStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative state for the interface.
down - The interface should be inactive.
service - The interface is activated but alarms
are suppressed. Intended for use during service
or re-configuration. When service is concluded
adminStatus should be set to 'up' again.
up - The interface should be activated when
it becomes available. Alarms are not suppressed.
"
DEFVAL { up }
::= { ocmIfEntry 8 }
ocmIfOperStatus OBJECT-TYPE
SYNTAX BoardOrInterfaceOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state for the interface.
notPresent - The physical resources are not
available.
down - The interface is de-activated or the are
faults preventing it from going to the 'up'-state.
up - The interface is operational.
"
DEFVAL { notPresent }
::= { ocmIfEntry 9 }
ocmIfPowerThreshold OBJECT-TYPE
SYNTAX Integer32 (-50..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for power levels. If the measured
power level is below the threshold, it is regarded
as no signal.
For OCM8p:
Default -13dBm
Range -35 to 100dBm
For OCM2p:
"
DEFVAL { -24 }
::= { ocmIfEntry 12 }
ocmIfUpdateLastChangeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the last measurement was done.
"
::= { ocmIfEntry 13 }
ocmIfConnectedSubrack OBJECT-TYPE
SYNTAX SubrackNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the subrack where the connected
interface is located. (0 is not valid)
"
DEFVAL { 0 }
::= { ocmIfEntry 14 }
ocmIfConnectedSlot OBJECT-TYPE
SYNTAX SlotNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the slot where the connected
interface is located. (not possible to set 0, 1,
19-22, oa/roadm can not be placed in those slots)
"
DEFVAL { 0 }
::= { ocmIfEntry 15 }
ocmIfConnectedPort OBJECT-TYPE
SYNTAX PortNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the connected port.
(the tx port number).
1 or 3 for OA,
5 for 1x2ROADM/100G/50G,
9 for 1x4ROADM/100G,ROADM1x4f,
17 for 1x8ROADM/50G,
19 for ROADM1x9f,
1 for OA26C,
5 for OARAED21HG
81 for MDU40.
and 1 to 82 for other boards.
"
DEFVAL { 0 }
::= { ocmIfEntry 16 }
ocmIfActivePort OBJECT-TYPE
SYNTAX PortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the active port.
Only valid when commissioning mode.
"
DEFVAL { 1 }
::= { ocmIfEntry 17 }
ocmIfControlMode OBJECT-TYPE
SYNTAX INTEGER {
normal (1),
commissioning (2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"What mode the ocm is in.
normal - the switch toggle every hour
and measure both ports.
commissioning - the switch is set to one active
port and measurement is made continuously on this port.
After 15 minutes it will change back to normal mode.
Note that it is not possible to get updated
values on port that is not chosen as active during
commissioning mode.
"
DEFVAL { normal }
::= { ocmIfEntry 18 }
ocmIfReferenceTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Time where reference values were saved.
"
::= { ocmIfEntry 21 }
ocmIfSwitchFailure OBJECT-TYPE
SYNTAX FaultStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Switch failure.
A: The switch is stuck and it is not possible
to change port. It is not sure if it the values
comes from the expected port.
D: The switch works as expected.
"
::= { ocmIfEntry 22 }
ocmIfDataSourceNotDefined OBJECT-TYPE
SYNTAX FaultStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data source not defined,
A: No connected slot, connected subrack
nor connected port is defined.
D: Connected slot, connected subrack and
connected port is ok.
"
::= { ocmIfEntry 23 }
ocmIfCommissioningMode OBJECT-TYPE
SYNTAX FaultStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data source not defined,
A: Commissioning mode is used
D: Normal mode
"
::= { ocmIfEntry 24 }
ocmIfModuleFailure OBJECT-TYPE
SYNTAX FaultStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module HW has detected a failure.
A: The module has failed
D: The module is OK again
"
::= { ocmIfEntry 25 }
ocmIfConfigurationCommand OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Select which control mode to use.
normal - the switch toggle every hour
and measure both ports.
commissioning - the switch is set to one
port while adjusting surrounding boards.
"
::= { ocmIfEntry 26 }
ocmIfChangeConnectedPort OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Select which monitor port that is connected
to this ocm port.
"
::= { ocmIfEntry 27 }
ocmIfSaveReference OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Save current measurement as reference values
"
::= { ocmIfEntry 28 }
ocmIfPowerOffset OBJECT-TYPE
SYNTAX Integer32 (0..350)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An offset value added to all power levels to get
an accurate presentation of channel powers at the line
port.
Generally offset values depends upon board type connected.
oa - 20.0
roadm - 17.0
oa26c - 20.0
mdu40 - 20.0
other - 20.0
oaraed21hg - 20.0
oaraed20lg - 20.0
OA boards have more accurate values for power offset
named Monitor port insertion loss visible in the OA
interface.
Note however that the reference power level values
are not affected by a change of this offset. A new
reference calculation should be made after a change.
"
::= { ocmIfEntry 29 }
ocmIfConnectedBoardType OBJECT-TYPE
SYNTAX INTEGER {
oa (1),
roadm (2),
oa26c (3),
mdu40 (4),
other (5),
oaraed21hg (6),
oaraed20lg (7)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"What board type that is connected to the ocm.
The power offset default value is changed
based on the chosen board type.
Please note that this function is not
applicable for mdu40lite boards.
"
DEFVAL { oa }
::= { ocmIfEntry 30 }
ocmIfChangeConnectedBoardType OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Select board type for the monitor port connected
to this ocm port.
"
::= { ocmIfEntry 31 }
ocmIfMaxPowerLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum received power level for this port
in units of 0.1 dBm.
"
::= { ocmIfEntry 32 }
ocmIfMinPowerLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum received power level for this port
in units of 0.1 dBm.
"
::= { ocmIfEntry 33 }
ocmIfDeltaPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The difference between the maximum and the minimum
received power level for this port in units of 0.1 dBm.
"
::= { ocmIfEntry 34 }
ocmIfChangePowerThreshold OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Select the power threshold for this ocm port.
If the measured power level is below the threshold, it
is regarded as no signal.
"
::= { ocmIfEntry 35 }
ocmIfChangePowerOffset OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Select the power offset for this ocm port.
The power offset is a value added to all power levels to get
an accurate presentation of channel powers at the line port.
"
::= { ocmIfEntry 36 }
ocmIfPowerOffsetAdjustment OBJECT-TYPE
SYNTAX Integer32 (0..350)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An offset adjustment added to the power offset to
mitigate the effects of differences between actual
power measured at the OCM and the configured power
offset value.
This adjustment allows the optical control loop to
regulate with better precision.
"
::= { ocmIfEntry 37 }
ocmIfSpacingMode OBJECT-TYPE
SYNTAX INTEGER {
spacing50GHz (1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Spacing mode is configured for monitoring channel power
with the channel spacing of 50GHz.
spacing50GHz: interface with channels in 50 GHz intervals
"
DEFVAL { spacing50GHz }
::= { ocmIfEntry 38 }
ocmIfHighInputPower OBJECT-TYPE
SYNTAX FaultStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OCM module has detected a high input power.
A: OCM module has dectected high input power (above 20dBm)
on particular port.
D: Optical input power is within the limit (below 20dBm).
"
::= { ocmIfEntry 39 }
-- ----------------------------------------------------
-- Optical control channels
-- ----------------------------------------------------
ocmChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF OcmChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel list."
::= { ocmChannelList 1 }
ocmChannelEntry OBJECT-TYPE
SYNTAX OcmChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the channel list.
"
INDEX { ocmChannelIndex }
::= { ocmChannelTable 1 }
OcmChannelEntry ::=
SEQUENCE {
ocmChannelIndex Unsigned32,
ocmChannelName MgmtNameString,
ocmChannelFrequency LambdaFrequency,
ocmChannelPowerLevel Integer32,
ocmChannelUpdateLastChangeTime DateAndTime,
ocmChannelOcmRefIfIndex Unsigned32,
ocmChannelReferencePowerLevel Integer32,
ocmChannelReferenceTime DisplayString,
ocmChannelSaveReference CommandString}
ocmChannelIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary index assigned to each entry.
"
::= { ocmChannelEntry 1 }
ocmChannelName OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management name of the interface, for
example 'ocm:1:2:1', where the first number
indicates sub-rack, the second slot number and
the third is the port number.
Examples:
ocm:s:s:p - Optical channel module interface
"
::= { ocmChannelEntry 2 }
ocmChannelFrequency OBJECT-TYPE
SYNTAX LambdaFrequency
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Freqency in hundreds of GHz (0.01 GHz).
"
::= { ocmChannelEntry 3 }
ocmChannelPowerLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The received power level in units of 0.1 dBm.
"
::= { ocmChannelEntry 4 }
ocmChannelUpdateLastChangeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when last measurement was done.
"
::= { ocmChannelEntry 5 }
ocmChannelOcmRefIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNMP-index of the OCM i/f object related to this
object.
"
DEFVAL { 1 }
::= { ocmChannelEntry 6 }
ocmChannelReferencePowerLevel OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The reference power level in units of 0.1 dBm.
"
DEFVAL { 1000 }
::= { ocmChannelEntry 7 }
ocmChannelReferenceTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Time where reference values were saved.
"
::= { ocmChannelEntry 8 }
ocmChannelSaveReference OBJECT-TYPE
SYNTAX CommandString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Save current measurement as reference values
"
::= { ocmChannelEntry 9 }
-- ----------------------------------------------------
-- Notifications
-- ----------------------------------------------------
-- n/a
-- ----------------------------------------------------
-- Object and event groups
-- ----------------------------------------------------
ocmGeneralGroup OBJECT-GROUP
OBJECTS {
ocmGeneralLastChangeTime,
ocmGeneralStateLastChangeTime,
ocmGeneralOcmIfTableSize }
STATUS current
DESCRIPTION
"The general objects."
::= { lumOcmGroups 1 }
ocmIfGroup OBJECT-GROUP
OBJECTS {
ocmIfIndex,
ocmIfName,
ocmIfDescr,
ocmIfSubrack,
ocmIfSlot,
ocmIfRxPort,
ocmIfInvPhysIndexOrZero,
ocmIfAdminStatus,
ocmIfOperStatus,
ocmIfPowerThreshold,
ocmIfUpdateLastChangeTime,
ocmIfConnectedSubrack,
ocmIfConnectedSlot,
ocmIfConnectedPort,
ocmIfActivePort,
ocmIfControlMode,
ocmIfReferenceTime,
ocmIfSwitchFailure,
ocmIfDataSourceNotDefined,
ocmIfCommissioningMode,
ocmIfModuleFailure,
ocmIfConfigurationCommand,
ocmIfChangeConnectedPort,
ocmIfSaveReference,
ocmIfPowerOffset,
ocmIfConnectedBoardType,
ocmIfChangeConnectedBoardType,
ocmIfMaxPowerLevel,
ocmIfMinPowerLevel,
ocmIfDeltaPower }
STATUS deprecated
DESCRIPTION
"The ocm interface objects."
::= { lumOcmGroups 2 }
ocmChannelGroup OBJECT-GROUP
OBJECTS {
ocmChannelIndex,
ocmChannelName,
ocmChannelFrequency,
ocmChannelPowerLevel,
ocmChannelUpdateLastChangeTime,
ocmChannelOcmRefIfIndex,
ocmChannelReferencePowerLevel }
STATUS deprecated
DESCRIPTION
"The ocm channel objects."
::= { lumOcmGroups 3 }
ocmIfGroupV2 OBJECT-GROUP
OBJECTS {
ocmIfIndex,
ocmIfName,
ocmIfDescr,
ocmIfSubrack,
ocmIfSlot,
ocmIfRxPort,
ocmIfInvPhysIndexOrZero,
ocmIfAdminStatus,
ocmIfOperStatus,
ocmIfPowerThreshold,
ocmIfUpdateLastChangeTime,
ocmIfConnectedSubrack,
ocmIfConnectedSlot,
ocmIfConnectedPort,
ocmIfActivePort,
ocmIfControlMode,
ocmIfReferenceTime,
ocmIfSwitchFailure,
ocmIfDataSourceNotDefined,
ocmIfCommissioningMode,
ocmIfModuleFailure,
ocmIfConfigurationCommand,
ocmIfChangeConnectedPort,
ocmIfSaveReference,
ocmIfPowerOffset,
ocmIfConnectedBoardType,
ocmIfChangeConnectedBoardType,
ocmIfMaxPowerLevel,
ocmIfMinPowerLevel,
ocmIfDeltaPower,
ocmIfChangePowerThreshold,
ocmIfChangePowerOffset }
STATUS deprecated
DESCRIPTION
"The ocm interface objects."
::= { lumOcmGroups 4 }
ocmIfGroupV3 OBJECT-GROUP
OBJECTS {
ocmIfIndex,
ocmIfName,
ocmIfDescr,
ocmIfSubrack,
ocmIfSlot,
ocmIfRxPort,
ocmIfInvPhysIndexOrZero,
ocmIfAdminStatus,
ocmIfOperStatus,
ocmIfPowerThreshold,
ocmIfUpdateLastChangeTime,
ocmIfConnectedSubrack,
ocmIfConnectedSlot,
ocmIfConnectedPort,
ocmIfActivePort,
ocmIfControlMode,
ocmIfReferenceTime,
ocmIfSwitchFailure,
ocmIfDataSourceNotDefined,
ocmIfCommissioningMode,
ocmIfModuleFailure,
ocmIfConfigurationCommand,
ocmIfChangeConnectedPort,
ocmIfSaveReference,
ocmIfPowerOffset,
ocmIfConnectedBoardType,
ocmIfChangeConnectedBoardType,
ocmIfMaxPowerLevel,
ocmIfMinPowerLevel,
ocmIfDeltaPower,
ocmIfChangePowerThreshold,
ocmIfChangePowerOffset,
ocmIfPowerOffsetAdjustment }
STATUS deprecated
DESCRIPTION
"The ocm interface objects."
::= { lumOcmGroups 5 }
ocmChannelGroupV2 OBJECT-GROUP
OBJECTS {
ocmChannelIndex,
ocmChannelName,
ocmChannelFrequency,
ocmChannelPowerLevel,
ocmChannelUpdateLastChangeTime,
ocmChannelOcmRefIfIndex,
ocmChannelReferencePowerLevel,
ocmChannelReferenceTime,
ocmChannelSaveReference }
STATUS current
DESCRIPTION
"The ocm channel objects."
::= { lumOcmGroups 6 }
ocmIfGroupV4 OBJECT-GROUP
OBJECTS {
ocmIfIndex,
ocmIfName,
ocmIfDescr,
ocmIfSubrack,
ocmIfSlot,
ocmIfRxPort,
ocmIfInvPhysIndexOrZero,
ocmIfAdminStatus,
ocmIfOperStatus,
ocmIfPowerThreshold,
ocmIfUpdateLastChangeTime,
ocmIfConnectedSubrack,
ocmIfConnectedSlot,
ocmIfConnectedPort,
ocmIfActivePort,
ocmIfControlMode,
ocmIfReferenceTime,
ocmIfSwitchFailure,
ocmIfDataSourceNotDefined,
ocmIfCommissioningMode,
ocmIfModuleFailure,
ocmIfConfigurationCommand,
ocmIfChangeConnectedPort,
ocmIfSaveReference,
ocmIfPowerOffset,
ocmIfConnectedBoardType,
ocmIfChangeConnectedBoardType,
ocmIfMaxPowerLevel,
ocmIfMinPowerLevel,
ocmIfDeltaPower,
ocmIfChangePowerThreshold,
ocmIfChangePowerOffset,
ocmIfPowerOffsetAdjustment,
ocmIfSpacingMode,
ocmIfHighInputPower }
STATUS current
DESCRIPTION
"The ocm interface objects."
::= { lumOcmGroups 7 }
-- ----------------------------------------------------
-- Compliance
-- ----------------------------------------------------
lumOcmBasicComplV1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the OCM MIB V1."
MODULE
MANDATORY-GROUPS {
ocmGeneralGroup,
ocmIfGroup,
ocmChannelGroup }
::= { lumOcmCompl 1 }
lumOcmBasicComplV2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the OCM MIB V2 (14.0)."
MODULE
MANDATORY-GROUPS {
ocmGeneralGroup,
ocmIfGroupV2,
ocmChannelGroup }
::= { lumOcmCompl 2 }
lumOcmBasicComplV3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the OCM MIB V2 (23.0)."
MODULE
MANDATORY-GROUPS {
ocmGeneralGroup,
ocmIfGroupV3,
ocmChannelGroup }
::= { lumOcmCompl 3 }
lumOcmBasicComplV4 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the OCM MIB V2 (30.0)."
MODULE
MANDATORY-GROUPS {
ocmGeneralGroup,
ocmIfGroupV3,
ocmChannelGroupV2 }
::= { lumOcmCompl 4 }
lumOcmBasicComplV5 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Basic implementation requirements for the OCM MIB V2 (31.0)."
MODULE
MANDATORY-GROUPS {
ocmGeneralGroup,
ocmIfGroupV4,
ocmChannelGroupV2 }
::= { lumOcmCompl 5 }
-- ----------------------------------------------------
-- Minimal Compliance
-- ----------------------------------------------------
lumOcmMinimalComplV1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Minimal implementation requirements for the OCM MIB V1."
MODULE
MANDATORY-GROUPS {
ocmGeneralGroup,
ocmIfGroup }
::= { lumOcmMinimalCompl 1 }
END
|