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
|
NBS-SIGCOND-MIB DEFINITIONS ::= BEGIN
IMPORTS
Unsigned32, OBJECT-TYPE, NOTIFICATION-TYPE,
MODULE-IDENTITY, OBJECT-IDENTITY
FROM SNMPv2-SMI
InterfaceIndex, ifAlias
FROM IF-MIB
nbs, NbsTcMilliDb, NbsTcMHz
FROM NBS-MIB;
nbsSigCondMib MODULE-IDENTITY
LAST-UPDATED "201707270000Z" -- July 27, 2017
ORGANIZATION "NBS"
CONTACT-INFO
"For technical support, please contact your service channel"
DESCRIPTION
"Signal Conditioning mib"
::= { nbs 227 }
-- *******************************************************************
-- NBS-SIGCOND-MIB local defines
-- *******************************************************************
nbsSigCondVoaPortGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Variable Optical Attenuation at the port level."
::= { nbsSigCondMib 1 }
nbsSigCondVoaChannelGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Variable Optical Attenuation at the channel level."
::= { nbsSigCondMib 2}
nbsSigCondRamanGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Raman amplifier information for the port."
::= { nbsSigCondMib 3 }
nbsSigCondEqualizeGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Management info for equalizing power levels among channels
within a WDM port"
::= { nbsSigCondMib 20 }
nbsSigCondRedundGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Management info for power level based redundancy"
::= { nbsSigCondMib 30 }
nbsSigCondPortGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Power readings from the port."
::= { nbsSigCondMib 40 }
nbsSigCondChannelGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Signal info for WDM channels within a WDM port"
::= { nbsSigCondMib 50 }
nbsSigCondVodPortGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Dispersion compensation at the port level."
::= { nbsSigCondMib 60 }
nbsSigCondTraps OBJECT-IDENTITY
STATUS current
DESCRIPTION "SNMP Traps or Notifications"
::= { nbsSigCondMib 200 }
nbsSigCondEvent OBJECT-IDENTITY
STATUS current
DESCRIPTION "SNMP Traps or Notifications"
::= { nbsSigCondTraps 0 }
-- *******************************************************************
--
-- the nbsSigCondVoaPortTable
--
-- *******************************************************************
nbsSigCondVoaPortTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports supporting variable optical attenuation
at the port level."
::= { nbsSigCondVoaPortGrp 1 }
nbsSigCondVoaPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondVoaPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of ports supporting variable optical attenuation at the
port level."
::= { nbsSigCondVoaPortGrp 2 }
NbsSigCondVoaPortEntry ::= SEQUENCE {
nbsSigCondVoaPortIfIndex InterfaceIndex,
nbsSigCondVoaPortRxAttenuAdmin INTEGER,
nbsSigCondVoaPortRxAttenuOper INTEGER,
nbsSigCondVoaPortTxAttenuAdmin INTEGER,
nbsSigCondVoaPortTxAttenuOper INTEGER
}
nbsSigCondVoaPortEntry OBJECT-TYPE
SYNTAX NbsSigCondVoaPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { nbsSigCondVoaPortIfIndex }
::= { nbsSigCondVoaPortTable 1 }
nbsSigCondVoaPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mib2 ifIndex of the attenuable port."
::= { nbsSigCondVoaPortEntry 1 }
nbsSigCondVoaPortRxAttenuAdmin OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent and immediately updated. User-requested
attenuation to be applied to received signal, expressed in
millidecibels (mdB).
Not supported value: -200000"
DEFVAL { 0 }
::= { nbsSigCondVoaPortEntry 2 }
nbsSigCondVoaPortRxAttenuOper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Attenuation actually being applied to received signal, in
millidecibels (mdB).
Not supported value: -200000"
DEFVAL { 0 }
::= { nbsSigCondVoaPortEntry 3 }
nbsSigCondVoaPortTxAttenuAdmin OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent and immediately updated. User-requested
attenuation to be applied before transmitting signal,
expressed in millidecibels (mdB).
Not supported value: -200000"
DEFVAL { 0 }
::= { nbsSigCondVoaPortEntry 4 }
nbsSigCondVoaPortTxAttenuOper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Attenuation actually being applied before transmitting
signal, in millidecibels (mdB).
Not supported value: -200000"
DEFVAL { 0 }
::= { nbsSigCondVoaPortEntry 5}
-- *******************************************************************
--
-- the nbsSigCondVoaChannelTbl
--
-- *******************************************************************
nbsSigCondVoaChannelRangeTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of mux ports supporting variable optical
attenuation at the channel level."
::= { nbsSigCondVoaChannelGrp 1 }
nbsSigCondVoaChannelRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondVoaChannelRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel attenuation values supported on this port."
::= { nbsSigCondVoaChannelGrp 2 }
NbsSigCondVoaChannelRangeEntry ::= SEQUENCE {
nbsSigCondVoaChannelRangeIfIndex InterfaceIndex,
nbsSigCondVoaChannelRangeMin NbsTcMilliDb,
nbsSigCondVoaChannelRangeMax NbsTcMilliDb,
nbsSigCondVoaChannelRangeIncr NbsTcMilliDb
}
nbsSigCondVoaChannelRangeEntry OBJECT-TYPE
SYNTAX NbsSigCondVoaChannelRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { nbsSigCondVoaChannelRangeIfIndex }
::= { nbsSigCondVoaChannelRangeTable 1 }
nbsSigCondVoaChannelRangeIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mib2 ifIndex of the mux port."
::= { nbsSigCondVoaChannelRangeEntry 1 }
nbsSigCondVoaChannelRangeMin OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest channel attenuation value supported by this mux
port, expressed in millidecibels (mdB).
This is the smallest attenuation supported."
DEFVAL { 0 }
::= { nbsSigCondVoaChannelRangeEntry 2 }
nbsSigCondVoaChannelRangeMax OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The greatest channel attenuation value supported by this mux
port, expressed in millidecibels (mdB).
This is the largest attenuation supported."
DEFVAL { 0 }
::= { nbsSigCondVoaChannelRangeEntry 3 }
nbsSigCondVoaChannelRangeIncr OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The precision of the VOA, expressed in
millidecibels (mdB).
The minimum difference between attenuation values."
DEFVAL { 0 }
::= { nbsSigCondVoaChannelRangeEntry 4 }
-- *******************************************************************
--
-- the nbsSigCondRamanTable
--
-- *******************************************************************
nbsSigCondRamanTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of raman ports in this system."
::= { nbsSigCondRamanGrp 1 }
nbsSigCondRamanTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondRamanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of Raman readings."
::= { nbsSigCondRamanGrp 2 }
NbsSigCondRamanEntry ::= SEQUENCE {
nbsSigCondRamanIfIndex InterfaceIndex,
nbsSigCondRamanPumpPwrAdmin INTEGER,
nbsSigCondRamanPumpPwrOper INTEGER
}
nbsSigCondRamanEntry OBJECT-TYPE
SYNTAX NbsSigCondRamanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Raman readings on an individual port."
INDEX { nbsSigCondRamanIfIndex }
::= { nbsSigCondRamanTable 1 }
nbsSigCondRamanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mib2 ifIndex of the Raman port"
::= { nbsSigCondRamanEntry 1 }
nbsSigCondRamanPumpPwrAdmin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Persistent and immediately updated. User-requested pump
power, in microwatts (uW).
User interfaces should show this in millWatts (mW).
Not supported value: -1"
::= { nbsSigCondRamanEntry 2 }
nbsSigCondRamanPumpPwrOper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent reported pump power, in microwatts (uW).
User interfaces should show this in millWatts (mW).
Not supported value: -1"
::= { nbsSigCondRamanEntry 3 }
-- *******************************************************************
--
-- the nbsSigCondEqualizeTable
--
-- *******************************************************************
nbsSigCondEqualizeTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in nbsSigCondEqualizeTable."
::= { nbsSigCondEqualizeGrp 1 }
nbsSigCondEqualizeTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondEqualizeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of WDM ports supporting power level equalization."
::= { nbsSigCondEqualizeGrp 2 }
NbsSigCondEqualizeEntry ::= SEQUENCE {
nbsSigCondEqualizeIfIndex InterfaceIndex,
nbsSigCondEqualizeState INTEGER,
nbsSigCondEqualizeLimitMin NbsTcMilliDb,
nbsSigCondEqualizeLimitMax NbsTcMilliDb,
nbsSigCondEqualizeDesiredMin NbsTcMilliDb,
nbsSigCondEqualizeDesiredMax NbsTcMilliDb,
nbsSigCondEqualizeDesiredVal NbsTcMilliDb
}
nbsSigCondEqualizeEntry OBJECT-TYPE
SYNTAX NbsSigCondEqualizeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Equalization parameters and settings"
INDEX { nbsSigCondEqualizeIfIndex }
::= { nbsSigCondEqualizeTable 1 }
nbsSigCondEqualizeIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Mib2 ifIndex of this channel's WDM port"
::= { nbsSigCondEqualizeEntry 1 }
nbsSigCondEqualizeState OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
disabled (2),
enabled (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to enable or disable channel equalization on this port.
The value disabled(2) disables the feature. No attempt to
equalize power levels will be made, and no equalization events
will be triggered.
The value enabled(3) enables the feature. A best-effort
attempt to keep the port signal within the
nbsSigCondEqualizeDesired range will be made. Equalization
events will be triggered if the power cannot be kept within
the nbsSigCondEqualizeDesired range.
If this port does not support equalization, this object will
report notSupported (1), and any SET requests to this object
will be rejected."
DEFVAL { disabled }
::= { nbsSigCondEqualizeEntry 10 }
nbsSigCondEqualizeLimitMin OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest channel TxPower setting the equalizer supports"
::= { nbsSigCondEqualizeEntry 11 }
nbsSigCondEqualizeLimitMax OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest channel TxPower setting the equalizer supports"
::= { nbsSigCondEqualizeEntry 12 }
nbsSigCondEqualizeDesiredMin OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user-settable minimum channel TxPower level.
Allowed values are from nbsSigCondEqualizeLimitMin to
nbsSigCondEqualizeLimitMax, inclusive.
Equalizer must attempt to maintain the channels' signal at or
above this level. The event nbsSigCondEventEqualizeTooLow
indicates that it was unable to meet the desired minimum
signal strength for a given channel."
DEFVAL { -50000 }
::= { nbsSigCondEqualizeEntry 21 }
nbsSigCondEqualizeDesiredMax OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user-settable maximum channel TxPower level.
Allowed values are from nbsSigCondEqualizeLimitMin to
nbsSigCondEqualizeLimitMax, inclusive.
Equalizer must attempt to maintain the channels' signal at or
below this level. The event nbsSigCondEventEqualizeTooHigh
indicates that it was unable to meet the desired maximum
signal strength for a given channel."
DEFVAL { 0 }
::= { nbsSigCondEqualizeEntry 22 }
nbsSigCondEqualizeDesiredVal OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Equalizer must attempt to maintain the channels' signal at
this level.
Allowed values are from nbsSigCondEqualizeLimitMin to
nbsSigCondEqualizeLimitMax, inclusive."
DEFVAL { -25000 }
::= { nbsSigCondEqualizeEntry 23 }
-- *******************************************************************
--
-- the nbsSigCondRedundTable
--
-- *******************************************************************
nbsSigCondRedundTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in nbsSigCondRedund."
::= { nbsSigCondRedundGrp 1 }
nbsSigCondRedundTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondRedundEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of ports supporting power level redundancy."
::= { nbsSigCondRedundGrp 2 }
NbsSigCondRedundEntry ::= SEQUENCE {
nbsSigCondRedundIfIndex InterfaceIndex,
nbsSigCondRedundLimitMin NbsTcMilliDb,
nbsSigCondRedundLimitMax NbsTcMilliDb,
nbsSigCondRedundDesiredMin NbsTcMilliDb,
nbsSigCondRedundDesiredMax NbsTcMilliDb
}
nbsSigCondRedundEntry OBJECT-TYPE
SYNTAX NbsSigCondRedundEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Redundancy settings"
INDEX { nbsSigCondRedundIfIndex }
::= { nbsSigCondRedundTable 1 }
nbsSigCondRedundIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Mib2 ifIndex of this channel's Redundancy port"
::= { nbsSigCondRedundEntry 1 }
nbsSigCondRedundLimitMin OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest channel Power setting"
::= { nbsSigCondRedundEntry 5 }
nbsSigCondRedundLimitMax OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest channel Power setting"
::= { nbsSigCondRedundEntry 8 }
nbsSigCondRedundDesiredMin OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lowest channel Power setting before the redundancy kicks in"
::= { nbsSigCondRedundEntry 10 }
nbsSigCondRedundDesiredMax OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The highest channel Power setting before the redundancy kicks in"
::= { nbsSigCondRedundEntry 15 }
-- *******************************************************************
--
-- the nbsSigCondPortTable
--
-- *******************************************************************
nbsSigCondPortTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in nbsSigCondPortTable."
::= { nbsSigCondPortGrp 1 }
nbsSigCondPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of VOA and VGA ports."
::= { nbsSigCondPortGrp 2 }
NbsSigCondPortEntry ::= SEQUENCE {
nbsSigCondPortIfIndex InterfaceIndex,
nbsSigCondPortRxPower INTEGER,
nbsSigCondPortTxPower INTEGER,
nbsSigCondPortReflection INTEGER,
nbsSigCondPortRxPowerMin INTEGER,
nbsSigCondPortRxPowerMax INTEGER,
nbsSigCondPortNoiseFigure INTEGER
}
nbsSigCondPortEntry OBJECT-TYPE
SYNTAX NbsSigCondPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { nbsSigCondPortIfIndex }
::= { nbsSigCondPortTable 1 }
nbsSigCondPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mib2 ifIndex of the port"
::= { nbsSigCondPortEntry 1 }
nbsSigCondPortRxPower OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured receiver power, in millidecibels (mdBm).
User interfaces should show this in decibels (dBm).
Not supported value: -100000"
::= { nbsSigCondPortEntry 2 }
nbsSigCondPortTxPower OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured transmitter power, in millidecibels (mdBm).
User interfaces should show this in decibels (dBm).
Not supported value: -100000"
::= { nbsSigCondPortEntry 3 }
nbsSigCondPortReflection OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured back reflection power, in millidecibels (mdBm).
User interfaces should show this in decibels (dBm).
Not supported value: -100000"
::= { nbsSigCondPortEntry 4}
nbsSigCondPortRxPowerMin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured minimum receiver power, in millidecibels (mdBm).
User interfaces should show this in decibels (dBm).
Not supported value: -100000"
::= { nbsSigCondPortEntry 5 }
nbsSigCondPortRxPowerMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured maximum receiver power, in millidecibels (mdBm).
User interfaces should show this in decibels (dBm).
Not supported value: -100000"
::= { nbsSigCondPortEntry 6 }
nbsSigCondPortNoiseFigure OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured Noise Figure value, in millidecibels (mdB).
User interfaces should show this in decibels (dB).
Not supported value: -100000"
::= { nbsSigCondPortEntry 7 }
-- *******************************************************************
--
-- the nbsSigCondChannelGrp
--
-- *******************************************************************
nbsSigCondChannelTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in nbsSigCondChannelTable."
::= { nbsSigCondChannelGrp 1 }
nbsSigCondChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"WDM channels within a mux port"
::= { nbsSigCondChannelGrp 2 }
nbsSigCondChannelEntry OBJECT-TYPE
SYNTAX NbsSigCondChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { nbsSigCondChannelIfIndex, nbsSigCondChannelCenterline }
::= { nbsSigCondChannelTable 1 }
NbsSigCondChannelEntry ::= SEQUENCE {
nbsSigCondChannelIfIndex InterfaceIndex,
nbsSigCondChannelCenterline NbsTcMHz,
nbsSigCondChannelRxPower NbsTcMilliDb,
nbsSigCondChannelTxPower NbsTcMilliDb,
nbsSigCondChannelTxAttenu NbsTcMilliDb,
nbsSigCondChannelRxAttenu NbsTcMilliDb
}
nbsSigCondChannelIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mib2 ifIndex of this channel's mux port"
::= { nbsSigCondChannelEntry 1 }
nbsSigCondChannelCenterline OBJECT-TYPE
SYNTAX NbsTcMHz
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The center frequency of this channel, in MHz"
::= { nbsSigCondChannelEntry 2 }
nbsSigCondChannelRxPower OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The dynamically measured or calculated receive signal strength"
::= { nbsSigCondChannelEntry 11 }
nbsSigCondChannelTxPower OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The dynamically measured or calculated transmit signal
strength"
::= { nbsSigCondChannelEntry 12 }
nbsSigCondChannelTxAttenu OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual attenuation applied to this channel, possibly
representing changes made by the equalization process if
nbsSigCondEqualizeState is enabled for this IfIndex."
::= { nbsSigCondChannelEntry 14 }
nbsSigCondChannelRxAttenu OBJECT-TYPE
SYNTAX NbsTcMilliDb
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual attenuation applied to this channel, possibly
representing changes made by the equalization process if
nbsSigCondEqualizeState is enabled for this IfIndex."
::= { nbsSigCondChannelEntry 15 }
-- *******************************************************************
--
-- the nbsSigCondVodPortTable
--
-- *******************************************************************
nbsSigCondVodPortTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports supporting variable optical dispersion
at the port level."
::= { nbsSigCondVodPortGrp 1 }
nbsSigCondVodPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbsSigCondVodPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of ports supporting variable optical attenuation at the
port level."
::= { nbsSigCondVodPortGrp 2 }
NbsSigCondVodPortEntry ::= SEQUENCE {
nbsSigCondVodPortIfIndex InterfaceIndex,
nbsSigCondVodPortDispersionMin INTEGER,
nbsSigCondVodPortDispersionMax INTEGER,
nbsSigCondVodPortDispersionAdmin INTEGER,
nbsSigCondVodPortDispersionOper INTEGER,
nbsSigCondVodPortDispersionGridOffsetCenter INTEGER,
nbsSigCondVodPortDispersionGridOffsetMin INTEGER,
nbsSigCondVodPortDispersionGridOffsetMax INTEGER,
nbsSigCondVodPortDispersionGridOffsetStep INTEGER,
nbsSigCondVodPortDispersionGridOffsetExponent INTEGER,
nbsSigCondVodPortDispersionGridOffsetAdmin INTEGER,
nbsSigCondVodPortDispersionGridOffsetOper INTEGER
}
nbsSigCondVodPortEntry OBJECT-TYPE
SYNTAX NbsSigCondVodPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { nbsSigCondVodPortIfIndex }
::= { nbsSigCondVodPortTable 1 }
nbsSigCondVodPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mib2 ifIndex of the dispersion compensation port."
::= { nbsSigCondVodPortEntry 1 }
nbsSigCondVodPortDispersionMin OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum allowed dispersion compensation in ps/nm.
Not supported value: 0x80000000"
DEFVAL { 0 }
::= { nbsSigCondVodPortEntry 2 }
nbsSigCondVodPortDispersionMax OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum allowed dispersion compensation in ps/nm.
Not supported value: 0x80000000"
DEFVAL { 0 }
::= { nbsSigCondVodPortEntry 3 }
nbsSigCondVodPortDispersionAdmin OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Desired dispersion compensation in ps/nm.
Not supported value: 0x80000000"
DEFVAL { 0 }
::= { nbsSigCondVodPortEntry 4 }
nbsSigCondVodPortDispersionOper OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual dispersion in ps/nm
Not supported value: 0x80000000"
DEFVAL { 0 }
::= { nbsSigCondVodPortEntry 5}
nbsSigCondVodPortDispersionGridOffsetCenter OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The center frequency of the offset, in GigaHertz
(GHz), unless FreqExponent != 9.
Not supported value: 0"
::= { nbsSigCondVodPortEntry 10 }
nbsSigCondVodPortDispersionGridOffsetMin OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In GigaHertz (GHz), unless FreqExponent != 9.
Not supported value: 0x80000000"
DEFVAL { -100 }
::= { nbsSigCondVodPortEntry 11 }
nbsSigCondVodPortDispersionGridOffsetMax OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In GigaHertz (GHz), unless FreqExponent != 9.
Not supported value: 0x80000000"
DEFVAL { 100 }
::= { nbsSigCondVodPortEntry 12 }
nbsSigCondVodPortDispersionGridOffsetStep OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The spacing of the allowable grid offsets that this port
supports, in GigaHertz (GHz), unless FreqExponent != 9.
Not supported value: 0"
DEFVAL { 1 }
::= { nbsSigCondVodPortEntry 13 }
nbsSigCondVodPortDispersionGridOffsetExponent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The exponent of all the GridOffset values (including
GridOffsetStep).
9 (the default) indicates all units are in GigaHertz (GHz)."
DEFVAL { 9 }
::= { nbsSigCondVodPortEntry 14 }
nbsSigCondVodPortDispersionGridOffsetAdmin OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"In GigaHertz (GHz), unless FreqExponent != 9.
Not supported value: 0x80000000"
::= { nbsSigCondVodPortEntry 15 }
nbsSigCondVodPortDispersionGridOffsetOper OBJECT-TYPE
SYNTAX INTEGER (-100000..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In GigaHertz (GHz), unless FreqExponent != 9.
Not supported value: 0x80000000"
::= { nbsSigCondVodPortEntry 16 }
-- *******************************************************************
--
-- the nbsSigCondEvent group
--
-- *******************************************************************
nbsSigCondEventEqualizeOk NOTIFICATION-TYPE
OBJECTS { nbsSigCondEqualizeIfIndex, ifAlias,
nbsSigCondChannelCenterline, nbsSigCondChannelTxPower,
nbsSigCondEqualizeDesiredMin, nbsSigCondEqualizeDesiredMax }
STATUS current
DESCRIPTION
"Sent when equalizer becomes able to maintain TxPower within the
user-specified nbsSigCondEqualizeDesired range.
This Notification is of severity ERROR, which means it should
be emitted unless disabled or nbsCmmcSysTrapTblEntLevel is set
to a severity worse than error(3)."
::= { nbsSigCondEvent 20 }
nbsSigCondEventEqualizeTooLow NOTIFICATION-TYPE
OBJECTS { nbsSigCondEqualizeIfIndex, ifAlias,
nbsSigCondChannelCenterline, nbsSigCondChannelTxPower,
nbsSigCondEqualizeDesiredMin }
STATUS current
DESCRIPTION
"Sent when equalizer becomes unable to maintain TxPower at or
above nbsSigCondEqualizeDesiredMin.
This Notification is of severity ERROR, which means it should
be emitted unless disabled or nbsCmmcSysTrapTblEntLevel is set
to a severity worse than error(3)."
::= { nbsSigCondEvent 21}
nbsSigCondEventEqualizeTooHigh NOTIFICATION-TYPE
OBJECTS { nbsSigCondEqualizeIfIndex, ifAlias,
nbsSigCondChannelCenterline, nbsSigCondChannelTxPower,
nbsSigCondEqualizeDesiredMax }
STATUS current
DESCRIPTION
"Sent when equalizer becomes unable to maintain TxPower at or
below nbsSigCondEqualizeDesiredMax.
This Notification is of severity ERROR, which means it should
be emitted unless disabled or nbsCmmcSysTrapTblEntLevel is set
to a severity worse than error(3)."
::= { nbsSigCondEvent 22 }
END
|