1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
|
--- ****************************************************************************
-- *
-- * Description: Implements definitions for the Ovtx-modul
-- * (External Modulated Optical Transmitters)
-- *
-- * Copyright 2003 by BKtel communications GmbH
-- *
-- * V.0.1 18.02.03 J. Anhorn first draft
-- * V.0.2 17.03.03 M. Heldmann ovtxStates group changed completely, more changes
-- * V.0.3 23.04.03 M. Heldmann ovtxDisplay group shrinked, removed J.Anhorns comments
-- * V.0.4 30.04.03 M. Heldmann ovtxControlReset, ovtxControlModuleLedBlink added
-- * V.0.5 05.05.03 M. Heldmann ovtxStatesLaserShutdown, ovtxStatesInitializing added
-- * V.0.6 23.07.03 M. Heldmann added descriptions for the states
-- * V.0.7 16.09.03 M. Heldmann adjusted description for the state ovtxStatesInputLow
-- * V.1.0 17.12.03 M. Heldmann added ovtxRfInputMin..ovtxRfInputMax
-- * ovtxStatesInputHigh, ovtxStatesRedundancySwitch
-- * ovtxConfigurationRfInputLimitLoLo..ovtxConfigurationMaskExtIO
-- * ovtxDisplayOmiNominal
-- * renamed ovtxControlLaserShutdown to ovtxControlLaserOutputMode and expanded it
-- * renamed ..ItuFrequency.. to ..LaserFrequency..
-- * adjusted some descriptions
-- * V.1.1 27.02.04 M. Heldmann changed ExtIOmask parameter name from maskUnknown(3) to maskSpecial(3)
-- * V.1.2 01.09.04 M. Heldmann ovtxConfigurationSbsSuppression expanded to SBS on/off settings
-- * V.1.3 18.04.05 M. Heldmann ovtxConfigurationSbsSuppression changed description
-- * V.1.4 04.10.06 M. Heldmann NESlotWriteValue expanded due to new 2G6 platform needs
-- * V.2.0 14.01.08 M. Heldmann renamed threshold parameters in ovtxMeasuringValuesTable
-- * renamed ovtxStatesDefective -> ovtxStatesCommLoss
-- * some threshold parameters in ovtxMeasuringValuesTable made read-write
-- * parameters needed for new transmitter hardware with extended features:
-- * - ovtxConfigurationCsoRegulationMode, ovtxConfigurationSlope
-- * ovtxConfigurationFiberLength configuration parameters
-- * - ovtxDisplayRegulationState, ovtxDisplayExtendedCapabilities
-- * parameters needed for new transmitter hardware with SAT RF input:
-- * - ovtxSatRfInputValue, ovtxSatOmiMeasuredValue,
-- * ovtxSatRfGainMeasuredValue measuring values and their thresholds
-- * - ovtxStatesSatInputLow, ovtxStatesSatInputHigh.
-- * ovtxStatesSatOmiOrRfgainLow. ovtxStatesSatOmiOrRfgainHigh alarm states
-- * - ovtxConfigurationSatModeAGC, ovtxConfigurationSatOmi, ovtxConfigurationSatRfGain
-- * ovtxConfigurationSatSlope, ovtxConfigurationRfInputMode configuration parameters
-- * - ovtxDisplaySatOmiNominal, ovtxDisplayRfInputCapabilities
-- * V.2.1 26.06.09 M. Heldmann added ovtxConfigurationSatLnbSupply and ovtxDisplaySatLnbSupplySupported
-- * V.2.1b 14.05.10 M. Heldmann renamed ovtxConfigurationModeExtIO and ovtxConfigurationMaskExtIO
-- * to ovtxConfigurationRedundancyMode and ovtxConfigurationRedundancyMask
-- * V.2.2 27.04.12 M. Heldmann added ovtxStatesSatLnbShortCircuit, ovtxStatesSbs1Level, ovtxStatesSbs2Level
-- * ovtxStatesSbs1PllNotLocked ovtxStatesSbs2PllNotLocked
-- * ovtxConfigurationSbsSuppressionMode,
-- * ovtxDisplaySbsExtensionsSupported, ovtxDisplaySbsSuppressionModeSupported
-- * V.2.2b 03.12.12 M. Heldmann added ovtxStatesInternalAlarm
-- * V.2.2c 20.03.13 M. Heldmann changed ovtxConfigurationSbsSuppressionMode to ovtxConfigurationSbsSuppressionMode
-- * added ovtxConfigurationSbsFiberType, ovtxConfigurationSbsFiberLength and
-- * ovtxDisplaySbsFiberParametersSupported
-- * V.2.3 11.07.13 M. Heldmann adjusted syntax of "CommonEntry" to remove MIB compiler warnings
-- * V.2.4 05.09.14 M. Heldmann changed CommonModuleWidth and ConfigurationNESlotWrite STATUS to optional
-- ****************************************************************************
BKTEL-HFC862-OVTX-V11-MIB DEFINITIONS ::= BEGIN
IMPORTS
experimental, enterprises, TimeTicks, IpAddress, Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215
modules, DisplayString, TruthValue, PerceivedSeverityValue, NESlotValue, ModuleWidthValue
FROM BKTEL-HFC862-BASE-MIB
;
ovtx OBJECT IDENTIFIER ::= { modules 101 }
ovtxCommon OBJECT IDENTIFIER ::= { ovtx 1 }
ovtxStates OBJECT IDENTIFIER ::= { ovtx 2 }
ovtxConfiguration OBJECT IDENTIFIER ::= { ovtx 3 }
ovtxControl OBJECT IDENTIFIER ::= { ovtx 4 }
ovtxMeasuringValues OBJECT IDENTIFIER ::= { ovtx 5 }
ovtxDisplay OBJECT IDENTIFIER ::= { ovtx 6 }
--
-- Type definitions
--
AGCmode ::= INTEGER
{
modeAgcOff(1),
modeUnmodulatedAgcOn(2),
modeModulatedAgcOn(3)
}
SatAGCmode ::= INTEGER
{
satAgcOff(1),
satAgcOn(2)
}
RedundancyMode ::= INTEGER
{
modeActiveLowOutput(1),
modeActiveHighOutput(2),
modeNominalMasterIrreversible(3),
modeNominalMasterFallback(4),
modeRedundantSlave(5)
}
RedundancyMask ::= INTEGER
{
maskAlarmsOnly(1),
maskAlarmsAndWarnings(2),
maskSpecialAdjusted(3) -- This item is NOT writable !!
}
LaserOutputMode ::= INTEGER
{
laserShutdown(1),
laserActive(2),
laserShutdownOnMaskedError(3) -- Automatic laser shutdown on RedundancyMask'ed error condition
}
CsoRegulationMode ::= INTEGER
{
csoRegModeChannelControlled(1),
csoRegModePilotControlled(2)
}
RegulationState ::= INTEGER
{
regulationStateUnknownOrNotSupported(1),
regulationStateOutputpowerBased(2),
regulationStateCsoBasedRough(3),
regulationStateCsoBasedFine(4),
regulationStatePilotBased(5)
}
RfInputCapabilities ::= INTEGER
{
rfInputCatvOnlySupported(1),
rfInputSatOnlySupported(2),
rfInputCatvAndSatSupported(3)
}
RfInputAlarmMode ::= INTEGER
{
alarmEnableAll(1),
alarmCatvEnableSatDisable(2),
alarmSatEnableCatvDisable(3)
}
LnbSupplyValue ::= INTEGER
{
lnbSupplyOff(1),
lnbSupply14V(2),
lnbSupply18V(3),
lnbSupply14V_22kHz(4),
lnbSupply18V_22kHz(5)
}
LnbSupplySupportedValue ::= INTEGER
{
notSupported(1),
lnbSupply14V18VSwitchSupported(2),
lnbSupply14V18VAnd22kHzSwitchSupported(3)
}
SbsSuppressionModeValue ::= INTEGER
{
modeStandard(1),
modeCatvOnly(2)
}
SbsFiberTypeValue ::= INTEGER
{
typeStandardFiber(1),
typeSbsOptimizedFiber(2)
}
SbsFiberLengthValue ::= INTEGER
{
length10km(1),
length25km(2),
length40km(3),
length65km(4)
}
NESlotWriteValue ::= INTEGER (-1..99)
--*****************************************************************************************
-- OVTX ( Optical Transmitter with design release V11 )
--*****************************************************************************************
-- ovtxCommon group
ovtxCommonNumberOfModules OBJECT-TYPE
SYNTAX INTEGER(0..50)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of modules in table."
::= { ovtxCommon 1 }
ovtxCommonTable OBJECT-TYPE
SYNTAX SEQUENCE OF OvtxCommonEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table contains all modules of the OVTX-type in the NE"
::= { ovtxCommon 2 }
-- table of states entry(ro/rw)
ovtxCommonEntry OBJECT-TYPE
SYNTAX OvtxCommonEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Common-Values for a module."
INDEX { ovtxNESlot }
::= { ovtxCommonTable 1 }
-- the structure of the entry
OvtxCommonEntry ::= SEQUENCE
{
ovtxNESlot NESlotValue,
ovtxCommonType DisplayString,
ovtxCommonDescr DisplayString,
ovtxCommonFirmwareId DisplayString,
ovtxCommonModuleWidth ModuleWidthValue
}
ovtxNESlot OBJECT-TYPE
SYNTAX NESlotValue
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot number of the chassis for which this
entry contains management information.
Equal to: modOVTXv11UniqueID"
::= { ovtxCommonEntry 1 }
ovtxCommonType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of physical module. modSlotEmpty indicates
an empty slot. A Value of modSlotUnknown indicates
that the type of module is unknown."
::= { ovtxCommonEntry 2 }
ovtxCommonDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A textual description of the module.
If not available, this Value should be
set to a zero length string."
::= { ovtxCommonEntry 3 }
ovtxCommonFirmwareId OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The firmware Id of the module."
::= { ovtxCommonEntry 4 }
ovtxCommonModuleWidth OBJECT-TYPE
SYNTAX ModuleWidthValue
ACCESS read-only
STATUS optional
DESCRIPTION "The width of the module in multiples of slots (1, 2, ...)"
::= { ovtxCommonEntry 5 }
--*****************************************************************************************
-- ovtxMeasuringValues group
-- table of measuring Values
ovtxMeasuringValuesTable OBJECT-TYPE
SYNTAX SEQUENCE OF OvtxMeasuringValuesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
::= { ovtxMeasuringValues 1 }
-- table of measuring Values entry
ovtxMeasuringValuesEntry OBJECT-TYPE
SYNTAX OvtxMeasuringValuesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Common-Values for a module."
INDEX { ovtxNESlot }
::= { ovtxMeasuringValuesTable 1 }
-- the structure of the entry
OvtxMeasuringValuesEntry ::= SEQUENCE
{
ovtxOmiMeasuredLoLo INTEGER,
ovtxOmiMeasuredLo INTEGER,
ovtxOmiMeasuredValue INTEGER,
ovtxOmiMeasuredHi INTEGER,
ovtxOmiMeasuredHiHi INTEGER,
ovtxRfGainMeasuredLoLo INTEGER,
ovtxRfGainMeasuredLo INTEGER,
ovtxRfGainMeasuredValue INTEGER,
ovtxRfGainMeasuredHi INTEGER,
ovtxRfGainMeasuredHiHi INTEGER,
ovtxLaserCurrentRelLoLo INTEGER,
ovtxLaserCurrentRelLo INTEGER,
ovtxLaserCurrentRelValue INTEGER,
ovtxLaserCurrentRelHi INTEGER,
ovtxLaserCurrentRelHiHi INTEGER,
ovtxTecCurrentRelLoLo INTEGER,
ovtxTecCurrentRelLo INTEGER,
ovtxTecCurrentRelValue INTEGER,
ovtxTecCurrentRelHi INTEGER,
ovtxTecCurrentRelHiHi INTEGER,
ovtxOutputPowerLoLo INTEGER,
ovtxOutputPowerLo INTEGER,
ovtxOutputPowerValue INTEGER,
ovtxOutputPowerHi INTEGER,
ovtxOutputPowerHiHi INTEGER,
ovtxPlus3p3VLoLo INTEGER,
ovtxPlus3p3VLo INTEGER,
ovtxPlus3p3VValue INTEGER,
ovtxPlus3p3VHi INTEGER,
ovtxPlus3p3VHiHi INTEGER,
ovtxPlus5VLoLo INTEGER,
ovtxPlus5VLo INTEGER,
ovtxPlus5VValue INTEGER,
ovtxPlus5VHi INTEGER,
ovtxPlus5VHiHi INTEGER,
ovtxPlus12VLoLo INTEGER,
ovtxPlus12VLo INTEGER,
ovtxPlus12VValue INTEGER,
ovtxPlus12VHi INTEGER,
ovtxPlus12VHiHi INTEGER,
ovtxPlus24VLoLo INTEGER,
ovtxPlus24VLo INTEGER,
ovtxPlus24VValue INTEGER,
ovtxPlus24VHi INTEGER,
ovtxPlus24VHiHi INTEGER,
ovtxMinus5VLoLo INTEGER,
ovtxMinus5VLo INTEGER,
ovtxMinus5VValue INTEGER,
ovtxMinus5VHi INTEGER,
ovtxMinus5VHiHi INTEGER,
ovtxMinus12VLoLo INTEGER,
ovtxMinus12VLo INTEGER,
ovtxMinus12VValue INTEGER,
ovtxMinus12VHi INTEGER,
ovtxMinus12VHiHi INTEGER,
ovtxTemperatureLoLo INTEGER,
ovtxTemperatureLo INTEGER,
ovtxTemperatureValue INTEGER,
ovtxTemperatureHi INTEGER,
ovtxTemperatureHiHi INTEGER,
ovtxRfInputLoLo INTEGER,
ovtxRfInputLo INTEGER,
ovtxRfInputValue INTEGER,
ovtxRfInputHi INTEGER,
ovtxRfInputHiHi INTEGER,
ovtxSatRfInputLoLo INTEGER,
ovtxSatRfInputLo INTEGER,
ovtxSatRfInputValue INTEGER,
ovtxSatRfInputHi INTEGER,
ovtxSatRfInputHiHi INTEGER,
ovtxSatOmiMeasuredLoLo INTEGER,
ovtxSatOmiMeasuredLo INTEGER,
ovtxSatOmiMeasuredValue INTEGER,
ovtxSatOmiMeasuredHi INTEGER,
ovtxSatOmiMeasuredHiHi INTEGER,
ovtxSatRfGainMeasuredLoLo INTEGER,
ovtxSatRfGainMeasuredLo INTEGER,
ovtxSatRfGainMeasuredValue INTEGER,
ovtxSatRfGainMeasuredHi INTEGER,
ovtxSatRfGainMeasuredHiHi INTEGER
}
-- *****
ovtxOmiMeasuredLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset low alarm threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 1 }
ovtxOmiMeasuredLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset low warning threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 2 }
ovtxOmiMeasuredValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The offset from nominal OMI in steps of 0.1dB (CATV input).
If AGC is on this parameter is equal to ovtxConfigurationOmi.
If AGC is off this paramters shows the Measured-OMI for the adjusted gain."
::= { ovtxMeasuringValuesEntry 3 }
ovtxOmiMeasuredHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset high warning threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 4 }
ovtxOmiMeasuredHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset high alarm threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 5 }
-- *****
ovtxRfGainMeasuredLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset low alarm threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 6 }
ovtxRfGainMeasuredLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset low warning threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 7 }
ovtxRfGainMeasuredValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The offset from nominal gain in steps of 0.1dB (CATV input).
If AGC is off this parameter is equal to ovtxConfigurationRfGain.
If AGC is on this paramters shows the Measured-Rf-Gain for the adjusted omi."
::= { ovtxMeasuringValuesEntry 8 }
ovtxRfGainMeasuredHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset high warning threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 9 }
ovtxRfGainMeasuredHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset high alarm threshold in steps of 0.1dB (CATV input)."
::= { ovtxMeasuringValuesEntry 10 }
-- *****
ovtxLaserCurrentRelLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relative laser current low alarm threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 11 }
ovtxLaserCurrentRelLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relative laser current low warning threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 12 }
ovtxLaserCurrentRelValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The laser current relative to the current at begin of life in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 13 }
ovtxLaserCurrentRelHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relative laser current high warning threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 14 }
ovtxLaserCurrentRelHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relative laser current high alarm threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 15 }
-- *****
ovtxTecCurrentRelLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Thermo-electric-cooler current low alarm threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 16 }
ovtxTecCurrentRelLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Thermo-electric-cooler current low warning threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 17 }
ovtxTecCurrentRelValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The thermo-electric-cooler current relative to
its absolute high alarm threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 18 }
ovtxTecCurrentRelHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Thermo-electric-cooler current high warning threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 19 }
ovtxTecCurrentRelHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Thermo-electric-cooler current high alarm threshold in steps of 0.1%."
::= { ovtxMeasuringValuesEntry 20 }
-- *****
ovtxOutputPowerLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output power low alarm threshold in steps of 0.1dBm."
::= { ovtxMeasuringValuesEntry 21 }
ovtxOutputPowerLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output power low warning threshold in steps of 0.1dBm."
::= { ovtxMeasuringValuesEntry 22 }
ovtxOutputPowerValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Output power in steps of 0.1dBm."
::= { ovtxMeasuringValuesEntry 23 }
ovtxOutputPowerHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output power high warning threshold in steps of 0.1dBm."
::= { ovtxMeasuringValuesEntry 24 }
ovtxOutputPowerHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output power high alarm threshold in steps of 0.1dBm."
::= { ovtxMeasuringValuesEntry 25 }
-- *****
ovtxPlus3p3VLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +3.3V supply voltage low alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 26 }
ovtxPlus3p3VLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +3.3V supply voltage low warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 27 }
ovtxPlus3p3VValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +3.3V supply voltage in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 28 }
ovtxPlus3p3VHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +3.3V supply voltage high warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 29 }
ovtxPlus3p3VHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +3.3V supply voltage high alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 30 }
-- *****
ovtxPlus5VLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +5V supply voltage low alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 31 }
ovtxPlus5VLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +5V supply voltage low warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 32 }
ovtxPlus5VValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +5V supply voltage in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 33 }
ovtxPlus5VHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +5V supply voltage high warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 34 }
ovtxPlus5VHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +5V supply voltage high alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 35 }
-- *****
ovtxPlus12VLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +12V supply voltage low alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 36 }
ovtxPlus12VLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +12V supply voltage low warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 37 }
ovtxPlus12VValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +12V supply voltage in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 38 }
ovtxPlus12VHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +12V supply voltage high warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 39 }
ovtxPlus12VHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +12V supply voltage high alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 40 }
-- *****
ovtxPlus24VLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +24V supply voltage low alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 41 }
ovtxPlus24VLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +24V supply voltage low warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 42 }
ovtxPlus24VValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +24V supply voltage in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 43 }
ovtxPlus24VHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +24V supply voltage high warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 44 }
ovtxPlus24VHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The +24V supply voltage high alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 45 }
-- *****
ovtxMinus5VLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -5V supply voltage low alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 46 }
ovtxMinus5VLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -5V supply voltage low warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 47 }
ovtxMinus5VValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -5V supply voltage in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 48 }
ovtxMinus5VHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -5V supply voltage high warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 49 }
ovtxMinus5VHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -5V supply voltage high alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 50 }
-- *****
ovtxMinus12VLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -12V supply voltage low alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 51 }
ovtxMinus12VLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -12V supply voltage low warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 52 }
ovtxMinus12VValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -12V supply voltage in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 53 }
ovtxMinus12VHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -12V supply voltage high warning threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 54 }
ovtxMinus12VHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The -12V supply voltage high alarm threshold in steps of 0.1V."
::= { ovtxMeasuringValuesEntry 55 }
-- *****
ovtxTemperatureLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The module temperature low alarm threshold in steps of 0.1 celsius degrees."
::= { ovtxMeasuringValuesEntry 56 }
ovtxTemperatureLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The module temperature low warning threshold in steps of 0.1 celsius degrees."
::= { ovtxMeasuringValuesEntry 57 }
ovtxTemperatureValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The module temperature in steps of 0.1 celsius degrees."
::= { ovtxMeasuringValuesEntry 58 }
ovtxTemperatureHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The module temperature high warning threshold in steps of 0.1 celsius degrees."
::= { ovtxMeasuringValuesEntry 59 }
ovtxTemperatureHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The module temperature high alarm threshold in steps of 0.1 celsius degrees."
::= { ovtxMeasuringValuesEntry 60 }
-- *****
ovtxRfInputLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) low alarm threshold in steps of 0.1 dBm (CATV input)."
::= { ovtxMeasuringValuesEntry 61 }
ovtxRfInputLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) low warning threshold in steps of 0.1 dBm (CATV input)."
::= { ovtxMeasuringValuesEntry 62 }
ovtxRfInputValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "RfInput (total rms) in steps of 0.1 dBm (CATV input)."
::= { ovtxMeasuringValuesEntry 63 }
ovtxRfInputHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) high warning threshold in steps of 0.1 dBm (CATV input)."
::= { ovtxMeasuringValuesEntry 64 }
ovtxRfInputHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) high alarm threshold in steps of 0.1 dBm (CATV input)."
::= { ovtxMeasuringValuesEntry 65 }
-- *****
ovtxSatRfInputLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) low alarm threshold in steps of 0.1 dBm (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 66 }
ovtxSatRfInputLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) low warning threshold in steps of 0.1 dBm (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 67 }
ovtxSatRfInputValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "RfInput (total rms) in steps of 0.1 dBm (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 68 }
ovtxSatRfInputHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) high warning threshold in steps of 0.1 dBm (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 69 }
ovtxSatRfInputHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "RfInput (total rms) high alarm threshold in steps of 0.1 dBm (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 70 }
-- *****
ovtxSatOmiMeasuredLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset low alarm threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 71 }
ovtxSatOmiMeasuredLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset low warning threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 72 }
ovtxSatOmiMeasuredValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The offset from nominal OMI in steps of 0.1dB (SAT input).
If SAT AGC is on this parameter is equal to ovtxConfigurationSatOmi.
If SAT AGC is off this paramters shows the measured-OMI for the adjusted gain.
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 73 }
ovtxSatOmiMeasuredHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset high warning threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 74 }
ovtxSatOmiMeasuredHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-OMI offset high alarm threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 75 }
-- *****
ovtxSatRfGainMeasuredLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset low alarm threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 76 }
ovtxSatRfGainMeasuredLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset low warning threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 77 }
ovtxSatRfGainMeasuredValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The offset from nominal gain in steps of 0.1dB (SAT input).
If AGC is off this parameter is equal to ovtxConfigurationSatRfGain.
If AGC is on this paramters shows the measured-Rf-Gain for the adjusted omi.
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 78 }
ovtxSatRfGainMeasuredHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset high warning threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 79 }
ovtxSatRfGainMeasuredHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Measured-Rf-Gain offset high alarm threshold in steps of 0.1dB (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero."
::= { ovtxMeasuringValuesEntry 80 }
--*****************************************************************************************
-- ovtxStates group
-- Note: For every control OId there must be a correspondant alarm OId!
ovtxStatesTable OBJECT-TYPE
SYNTAX SEQUENCE OF OvtxStatesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
::= { ovtxStates 1 }
-- table of states entry(ro/rw)
ovtxStatesEntry OBJECT-TYPE
SYNTAX OvtxStatesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Alarms for a module."
INDEX { ovtxNESlot }
::= { ovtxStatesTable 1 }
-- the structure of the entry
OvtxStatesEntry ::= SEQUENCE
{
ovtxStatesOutputLow PerceivedSeverityValue,
ovtxStatesOutputHigh PerceivedSeverityValue,
ovtxStatesInputLow PerceivedSeverityValue,
ovtxStatesLaserAging PerceivedSeverityValue,
ovtxStatesTecHigh PerceivedSeverityValue,
ovtxStatesLaserTempLow PerceivedSeverityValue,
ovtxStatesLaserTempHigh PerceivedSeverityValue,
ovtxStatesOmiOrRfgainLow PerceivedSeverityValue,
ovtxStatesOmiOrRfgainHigh PerceivedSeverityValue,
ovtxStatesPowerSupplyLeft PerceivedSeverityValue,
ovtxStatesPowerSupplyRight PerceivedSeverityValue,
ovtxStatesFanLeft PerceivedSeverityValue,
ovtxStatesFanRight PerceivedSeverityValue,
ovtxStatesTemperatureLow PerceivedSeverityValue,
ovtxStatesTemperatureHigh PerceivedSeverityValue,
ovtxStatesPlus3p3VLow PerceivedSeverityValue,
ovtxStatesPlus3p3VHigh PerceivedSeverityValue,
ovtxStatesPlus5VLow PerceivedSeverityValue,
ovtxStatesPlus5VHigh PerceivedSeverityValue,
ovtxStatesPlus12VLow PerceivedSeverityValue,
ovtxStatesPlus12VHigh PerceivedSeverityValue,
ovtxStatesPlus24VLow PerceivedSeverityValue,
ovtxStatesPlus24VHigh PerceivedSeverityValue,
ovtxStatesMinus5VLow PerceivedSeverityValue,
ovtxStatesMinus5VHigh PerceivedSeverityValue,
ovtxStatesMinus12VLow PerceivedSeverityValue,
ovtxStatesMinus12VHigh PerceivedSeverityValue,
ovtxStatesLaserShutdown PerceivedSeverityValue,
ovtxStatesInitializing PerceivedSeverityValue,
ovtxStatesBootloader PerceivedSeverityValue,
ovtxStatesCommLoss PerceivedSeverityValue,
ovtxStatesInputHigh PerceivedSeverityValue,
ovtxStatesRedundancySwitch PerceivedSeverityValue,
ovtxStatesSatInputLow PerceivedSeverityValue,
ovtxStatesSatInputHigh PerceivedSeverityValue,
ovtxStatesSatOmiOrRfgainLow PerceivedSeverityValue,
ovtxStatesSatOmiOrRfgainHigh PerceivedSeverityValue,
ovtxStatesSatLnbShortCircuit PerceivedSeverityValue,
ovtxStatesSbs1Level PerceivedSeverityValue,
ovtxStatesSbs2Level PerceivedSeverityValue,
ovtxStatesSbs1PllNotLocked PerceivedSeverityValue,
ovtxStatesSbs2PllNotLocked PerceivedSeverityValue,
ovtxStatesInternalAlarm PerceivedSeverityValue
}
ovtxStatesOutputLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Optical output power low"
::= { ovtxStatesEntry 1 }
ovtxStatesOutputHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Optical output power high"
::= { ovtxStatesEntry 2 }
ovtxStatesInputLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "RF input power low (CATV input)"
::= { ovtxStatesEntry 3 }
ovtxStatesLaserAging OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "The laser is aging"
::= { ovtxStatesEntry 4 }
ovtxStatesTecHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Laser cooler limit reached"
::= { ovtxStatesEntry 5 }
ovtxStatesLaserTempLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Laser temperature low"
::= { ovtxStatesEntry 6 }
ovtxStatesLaserTempHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Laser temperature high"
::= { ovtxStatesEntry 7 }
ovtxStatesOmiOrRfgainLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Omi or rf-gain (depending on mode) low (CATV input)"
::= { ovtxStatesEntry 8 }
ovtxStatesOmiOrRfgainHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Omi or rf-gain (depending on mode) high (CATV input)"
::= { ovtxStatesEntry 9 }
ovtxStatesPowerSupplyLeft OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "The left (looking from front) power supply unit fails"
::= { ovtxStatesEntry 10 }
ovtxStatesPowerSupplyRight OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "The right (looking from front) power supply unit fails"
::= { ovtxStatesEntry 11 }
ovtxStatesFanLeft OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "The left (looking from front) fan unit fails"
::= { ovtxStatesEntry 12 }
ovtxStatesFanRight OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "The right (looking from front) fan unit fails"
::= { ovtxStatesEntry 13 }
ovtxStatesTemperatureLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Device internal temperature low"
::= { ovtxStatesEntry 14 }
ovtxStatesTemperatureHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Device internal temperature high"
::= { ovtxStatesEntry 15 }
ovtxStatesPlus3p3VLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "3.3 Volt supply low"
::= { ovtxStatesEntry 16 }
ovtxStatesPlus3p3VHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "3.3 Volt supply high"
::= { ovtxStatesEntry 17 }
ovtxStatesPlus5VLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "5 Volt supply low"
::= { ovtxStatesEntry 18 }
ovtxStatesPlus5VHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "5 Volt supply high"
::= { ovtxStatesEntry 19 }
ovtxStatesPlus12VLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "12 Volt supply low"
::= { ovtxStatesEntry 20 }
ovtxStatesPlus12VHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "12 Volt supply high"
::= { ovtxStatesEntry 21 }
ovtxStatesPlus24VLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "24 Volt supply low"
::= { ovtxStatesEntry 22 }
ovtxStatesPlus24VHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "24 Volt supply high"
::= { ovtxStatesEntry 23 }
ovtxStatesMinus5VLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "-5 Volt supply low"
::= { ovtxStatesEntry 24 }
ovtxStatesMinus5VHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "-5 Volt supply high"
::= { ovtxStatesEntry 25 }
ovtxStatesMinus12VLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "-12 Volt supply low"
::= { ovtxStatesEntry 26 }
ovtxStatesMinus12VHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "-12 Volt supply high"
::= { ovtxStatesEntry 27 }
ovtxStatesLaserShutdown OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Laser is shutdown, no optical output"
::= { ovtxStatesEntry 28 }
ovtxStatesInitializing OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "The device is initializing"
::= { ovtxStatesEntry 29 }
ovtxStatesBootloader OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device is running in bootloader mode
without a legal application software."
::= { ovtxStatesEntry 30 }
ovtxStatesCommLoss OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The NEC has lost the connection to the device.
Reason may be a removed or defective device.
Note that this state is set by the NEC and not
by the device"
::= { ovtxStatesEntry 31 }
ovtxStatesInputHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "RF input power high (CATV input)"
::= { ovtxStatesEntry 32 }
ovtxStatesRedundancySwitch OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "This (redundant) device has been activated (redundancy switchover)"
::= { ovtxStatesEntry 33 }
ovtxStatesSatInputLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "RF input power low (SAT input)
Only used if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 34 }
ovtxStatesSatInputHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "RF input power high (SAT input)
Only used if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 35 }
ovtxStatesSatOmiOrRfgainLow OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Omi or rf-gain (depending on mode) low (SAT input)
Only used if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 36 }
ovtxStatesSatOmiOrRfgainHigh OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Omi or rf-gain (depending on mode) high (SAT input)
Only used if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 37 }
ovtxStatesSatLnbShortCircuit OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Short-circuit at SAT LNB
Only used if ovtxDisplaySatLnbSupplySupported != notSupported(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 38 }
ovtxStatesSbs1Level OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "SBS #1 level alarm
Only used if ovtxDisplaySbsExtensionsSupported == true(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 39 }
ovtxStatesSbs2Level OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "SBS #2 level alarm
Only used if ovtxDisplaySbsExtensionsSupported == true(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 40 }
ovtxStatesSbs1PllNotLocked OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "SBS #1 PLL not locked
Only used if ovtxDisplaySbsExtensionsSupported == true(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 41 }
ovtxStatesSbs2PllNotLocked OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "SBS #2 PLL not locked
Only used if ovtxDisplaySbsExtensionsSupported == true(1),
otherwise always reports clear(5)."
::= { ovtxStatesEntry 42 }
ovtxStatesInternalAlarm OBJECT-TYPE
SYNTAX PerceivedSeverityValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Internal hardware failure"
::= { ovtxStatesEntry 43 }
--*****************************************************************************************
-- ovtxControl group
ovtxControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF OvtxControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
::= { ovtxControl 1 }
-- table of control entry(ro/rw)
ovtxControlEntry OBJECT-TYPE
SYNTAX OvtxControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Alarms for a module."
INDEX { ovtxNESlot }
::= { ovtxControlTable 1 }
-- the structure of the entry
OvtxControlEntry ::= SEQUENCE
{
ovtxControlLaserOutputMode LaserOutputMode,
ovtxControlReset TruthValue,
ovtxControlModuleLedBlink TruthValue
}
ovtxControlLaserOutputMode OBJECT-TYPE
SYNTAX LaserOutputMode
ACCESS read-write
STATUS mandatory
DESCRIPTION "The output mode of the laser.
NOTE: The error mask used for parameter 'laserShutdownOnMaskedError(3)'
is the same mask used for external IO port, 'ovtxConfigurationRedundancyMask'"
::= { ovtxControlEntry 1 }
ovtxControlReset OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-write
STATUS mandatory
DESCRIPTION "Reset the module."
::= { ovtxControlEntry 2 }
ovtxControlModuleLedBlink OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-write
STATUS mandatory
DESCRIPTION "Writing this variable to true(1) lets the device's
modul LED blink green for 10 seconds.
Writing this variable to false(2) stops blinking at once.
This variable always returns false(2) on read requests"
::= { ovtxControlEntry 3 }
--*****************************************************************************************
-- ovtxConfiguration group
ovtxConfigurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF OvtxConfigurationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
::= { ovtxConfiguration 1 }
-- table of configuration entry(ro/rw)
ovtxConfigurationEntry OBJECT-TYPE
SYNTAX OvtxConfigurationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX { ovtxNESlot }
::= { ovtxConfigurationTable 1 }
-- the structure of the entry
OvtxConfigurationEntry ::= SEQUENCE
{
ovtxConfigurationNESlotWrite NESlotWriteValue,
ovtxConfigurationModeAGC AGCmode,
ovtxConfigurationOmi INTEGER,
ovtxConfigurationRfGain INTEGER,
ovtxConfigurationSbsSuppression INTEGER,
ovtxConfigurationChannelDistance INTEGER,
ovtxConfigurationLaserFrequency INTEGER,
ovtxConfigurationRfInputLimitLoLo INTEGER,
ovtxConfigurationRfInputLimitLo INTEGER,
ovtxConfigurationRfInputLimitHi INTEGER,
ovtxConfigurationRfInputLimitHiHi INTEGER,
ovtxConfigurationRfGainMeasuredLimitLoLo INTEGER,
ovtxConfigurationRfGainMeasuredLimitLo INTEGER,
ovtxConfigurationRfGainMeasuredLimitHi INTEGER,
ovtxConfigurationRfGainMeasuredLimitHiHi INTEGER,
ovtxConfigurationOmiMeasuredLimitLoLo INTEGER,
ovtxConfigurationOmiMeasuredLimitLo INTEGER,
ovtxConfigurationOmiMeasuredLimitHi INTEGER,
ovtxConfigurationOmiMeasuredLimitHiHi INTEGER,
ovtxConfigurationOutputPwrLimitLoLo INTEGER,
ovtxConfigurationOutputPwrLimitLo INTEGER,
ovtxConfigurationOutputPwrLimitHi INTEGER,
ovtxConfigurationOutputPwrLimitHiHi INTEGER,
ovtxConfigurationRedundancyMode RedundancyMode,
ovtxConfigurationRedundancyMask RedundancyMask,
ovtxConfigurationCsoRegulationMode CsoRegulationMode,
ovtxConfigurationSlope INTEGER,
ovtxConfigurationFiberLength INTEGER,
ovtxConfigurationSatModeAGC SatAGCmode,
ovtxConfigurationSatOmi INTEGER,
ovtxConfigurationSatRfGain INTEGER,
ovtxConfigurationSatSlope INTEGER,
ovtxConfigurationRfInputAlarmMode RfInputAlarmMode,
ovtxConfigurationSatLnbSupply LnbSupplyValue,
ovtxConfigurationSbsSuppressionMode SbsSuppressionModeValue,
ovtxConfigurationSbsFiberType SbsFiberTypeValue,
ovtxConfigurationSbsFiberLength SbsFiberLengthValue
}
ovtxConfigurationNESlotWrite OBJECT-TYPE
SYNTAX NESlotWriteValue
ACCESS read-write
STATUS optional
DESCRIPTION "By writing this variable a slot can be assigned
for devices that dont support hardware slot detection.
Reading '-1' means that the slot position is NOT writable."
::= { ovtxConfigurationEntry 1 }
ovtxConfigurationModeAGC OBJECT-TYPE
SYNTAX AGCmode
ACCESS read-write
STATUS mandatory
DESCRIPTION "The AGC mode of the optical transmitter (CATV input)."
::= { ovtxConfigurationEntry 2 }
ovtxConfigurationOmi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The desired offset from nominal OMI in 0.1dB units (CATV input).
This parameter is only used if AGC is on."
::= { ovtxConfigurationEntry 3 }
ovtxConfigurationRfGain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The desired offset from nominal gain in 0.1dB units (CATV input).
This parameter is only used if AGC is off."
::= { ovtxConfigurationEntry 4 }
ovtxConfigurationSbsSuppression OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The sbs suppression in 0.1dBm units."
::= { ovtxConfigurationEntry 5 }
ovtxConfigurationChannelDistance OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The channel raster in MHz units."
::= { ovtxConfigurationEntry 6 }
ovtxConfigurationLaserFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The laser frequency in GHz units."
::= { ovtxConfigurationEntry 7 }
-- *****
ovtxConfigurationRfInputLimitLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The rf input power low alarm limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 8 }
ovtxConfigurationRfInputLimitLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The rf input power low warning limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 9 }
ovtxConfigurationRfInputLimitHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The rf input power high warning limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 10 }
ovtxConfigurationRfInputLimitHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The rf input power high alarm limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 11 }
-- *****
ovtxConfigurationRfGainMeasuredLimitLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-Rf-Gain offset low alarm limit in 0.1 dB units (in AGC ON mode)"
::={ ovtxConfigurationEntry 12 }
ovtxConfigurationRfGainMeasuredLimitLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-Rf-Gain offset low warning limit in 0.1 dB units (in AGC ON mode)"
::={ ovtxConfigurationEntry 13 }
ovtxConfigurationRfGainMeasuredLimitHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-Rf-Gain offset high warning limit in 0.1 dB units (in AGC ON mode)"
::={ ovtxConfigurationEntry 14 }
ovtxConfigurationRfGainMeasuredLimitHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-Rf-Gain offset high alarm limit in 0.1 dB units (in AGC ON mode)"
::={ ovtxConfigurationEntry 15 }
-- *****
ovtxConfigurationOmiMeasuredLimitLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-OMI offset low alarm limit in 0.1 dB units (in AGC OFF mode)"
::={ ovtxConfigurationEntry 16 }
ovtxConfigurationOmiMeasuredLimitLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-OMI offset low warning limit in 0.1 dB units(in AGC OFF mode)"
::={ ovtxConfigurationEntry 17 }
ovtxConfigurationOmiMeasuredLimitHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-OMI offset high warning limit in 0.1 dB units(in AGC OFF mode)"
::={ ovtxConfigurationEntry 18 }
ovtxConfigurationOmiMeasuredLimitHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Measured-OMI offset high alarm limit in 0.1 dB units(in AGC OFF mode)"
::={ ovtxConfigurationEntry 19 }
-- *****
ovtxConfigurationOutputPwrLimitLoLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The output power low alarm limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 20 }
ovtxConfigurationOutputPwrLimitLo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The output power low warning limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 21 }
ovtxConfigurationOutputPwrLimitHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The output power high warning limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 22 }
ovtxConfigurationOutputPwrLimitHiHi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The output power high alarm limit in 0.1 dBm units"
::={ ovtxConfigurationEntry 23 }
-- *****
ovtxConfigurationRedundancyMode OBJECT-TYPE
SYNTAX RedundancyMode
ACCESS read-write
STATUS mandatory
DESCRIPTION "The device's redundancy mode."
::= { ovtxConfigurationEntry 24 }
ovtxConfigurationRedundancyMask OBJECT-TYPE
SYNTAX RedundancyMask
ACCESS read-write
STATUS mandatory
DESCRIPTION "The device's redundancy mask setings."
::= { ovtxConfigurationEntry 25 }
-- *****
ovtxConfigurationCsoRegulationMode OBJECT-TYPE
SYNTAX CsoRegulationMode
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired CSO regulation mode of the optical transmitter.
Only usable if ovtxDisplayExtendedCapabilities == true(1),
otherwise always reports csoRegModeChannelControlled(1)"
::= { ovtxConfigurationEntry 26 }
ovtxConfigurationSlope OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired slope in 0.1 dB units (CATV input).
Only usable if ovtxDisplayExtendedCapabilities == true(1),
otherwise always reports zero"
::= { ovtxConfigurationEntry 27 }
ovtxConfigurationFiberLength OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The optical fiber length in meter units.
Only usable if ovtxDisplayExtendedCapabilities == true(1),
otherwise always reports zero"
::= { ovtxConfigurationEntry 28 }
ovtxConfigurationSatModeAGC OBJECT-TYPE
SYNTAX SatAGCmode
ACCESS read-write
STATUS mandatory
DESCRIPTION "The AGC mode of the optical transmitter (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports satAgcOff(1)"
::= { ovtxConfigurationEntry 29 }
ovtxConfigurationSatOmi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The desired offset from nominal OMI in 0.1dB units (SAT input).
This parameter is only used if AGC is on.
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero"
::= { ovtxConfigurationEntry 30 }
ovtxConfigurationSatRfGain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The desired offset from nominal gain in 0.1dB units (SAT input).
This parameter is only used if AGC is off.
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero"
::= { ovtxConfigurationEntry 31 }
ovtxConfigurationSatSlope OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired slope in 0.1 dB units (SAT input).
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero"
::= { ovtxConfigurationEntry 32 }
ovtxConfigurationRfInputAlarmMode OBJECT-TYPE
SYNTAX RfInputAlarmMode
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The RF input alarm mode (Can be used to disable alarms of unused RF inputs)
Only usable if ovtxDisplayRfInputCapabilities == rfInputCatvAndSatSupported(3),
otherwise always reports alarmEnableAll(1)"
::= { ovtxConfigurationEntry 33 }
ovtxConfigurationSatLnbSupply OBJECT-TYPE
SYNTAX LnbSupplyValue
ACCESS read-write
STATUS mandatory
DESCRIPTION
"SAT LNB supply control.
This feature is not supported by all transmitter devices,
see ovtxDisplaySatLnbSupplySupported"
::= { ovtxConfigurationEntry 34 }
ovtxConfigurationSbsSuppressionMode OBJECT-TYPE
SYNTAX SbsSuppressionModeValue
ACCESS read-write
STATUS mandatory
DESCRIPTION
"SBS suppression mode.
This feature is not supported by all transmitter devices,
see ovtxDisplaySbsSuppressionModeSupported"
::= { ovtxConfigurationEntry 35 }
ovtxConfigurationSbsFiberType OBJECT-TYPE
SYNTAX SbsFiberTypeValue
ACCESS read-write
STATUS mandatory
DESCRIPTION
"SBS fiber type.
This feature is not supported by all transmitter devices,
see ovtxDisplaySbsFiberParametersSupported"
::= { ovtxConfigurationEntry 36 }
ovtxConfigurationSbsFiberLength OBJECT-TYPE
SYNTAX SbsFiberLengthValue
ACCESS read-write
STATUS mandatory
DESCRIPTION
"SBS suppression mode.
This feature is not supported by all transmitter devices,
see ovtxDisplaySbsFiberParametersSupported"
::= { ovtxConfigurationEntry 37 }
--*****************************************************************************************
-- Display group
ovtxDisplayTable OBJECT-TYPE
SYNTAX SEQUENCE OF OvtxDisplayEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
::= { ovtxDisplay 1 }
-- table of configuration entry(ro/rw)
ovtxDisplayEntry OBJECT-TYPE
SYNTAX OvtxDisplayEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX { ovtxNESlot }
::= { ovtxDisplayTable 1 }
-- the structure of the entry
OvtxDisplayEntry ::= SEQUENCE
{
ovtxDisplayRfInputValue INTEGER,
ovtxDisplayLaserFrequencyMin INTEGER,
ovtxDisplayLaserFrequencyMax INTEGER,
ovtxDisplayLaserFrequencyStep INTEGER,
ovtxDisplayOmiNominal INTEGER,
ovtxDisplaySatOmiNominal INTEGER,
ovtxDisplayRegulationState RegulationState,
ovtxDisplayExtendedCapabilities TruthValue,
ovtxDisplayRfInputCapabilities RfInputCapabilities,
ovtxDisplaySatLnbSupplySupported LnbSupplySupportedValue,
ovtxDisplaySbsExtensionsSupported TruthValue,
ovtxDisplaySbsSuppressionModeSupported TruthValue,
ovtxDisplaySbsFiberParametersSupported TruthValue
}
ovtxDisplayRfInputValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "RfInput (total rms) in steps of 0.1 dBm."
::= { ovtxDisplayEntry 1 }
-- *****
ovtxDisplayLaserFrequencyMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The minimum adjustable laser frequency in GHz units."
::={ ovtxDisplayEntry 2 }
ovtxDisplayLaserFrequencyMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The maximum adjustable laser frequency in GHz units."
::={ ovtxDisplayEntry 3 }
ovtxDisplayLaserFrequencyStep OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The supported laser frequency stepsize in GHz units."
::={ ovtxDisplayEntry 4 }
-- *****
ovtxDisplayOmiNominal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The nominal OMI in 0.1 percent units (CATV input)"
::={ ovtxDisplayEntry 5 }
-- *****
ovtxDisplaySatOmiNominal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The nominal OMI in 0.1 percent units (SAT input)
Only usable if ovtxDisplayRfInputCapabilities != rfInputCatvOnlySupported(1),
otherwise always reports zero"
::={ ovtxDisplayEntry 6 }
ovtxDisplayRegulationState OBJECT-TYPE
SYNTAX RegulationState
ACCESS read-only
STATUS mandatory
DESCRIPTION "The transmitters current regulation state
Only usable if ovtxDisplayExtendedCapabilities == true(1),
otherwise always reports regulationStateUnknownOrNotSupported(1)"
::={ ovtxDisplayEntry 7 }
ovtxDisplayExtendedCapabilities OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns true(1) if the transmitter supports the extended features
represented by the variables ovtxConfigurationCsoRegulationMode,
ovtxConfigurationSlope and ovtxConfigurationFiberLength"
::={ ovtxDisplayEntry 8 }
ovtxDisplayRfInputCapabilities OBJECT-TYPE
SYNTAX RfInputCapabilities
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the transmitter supported RF input capabilities"
::={ ovtxDisplayEntry 9 }
ovtxDisplaySatLnbSupplySupported OBJECT-TYPE
SYNTAX LnbSupplySupportedValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Returns the supported SAT LNB supply features"
::={ ovtxDisplayEntry 10 }
-- *****
ovtxDisplaySbsExtensionsSupported OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Returns true(1) if the transmitter supports the extended SBS alarm features"
::={ ovtxDisplayEntry 11 }
ovtxDisplaySbsSuppressionModeSupported OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Returns true(1) if the transmitter supports the SbsSuppressionMode configuration feature"
::={ ovtxDisplayEntry 12 }
ovtxDisplaySbsFiberParametersSupported OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-only
STATUS mandatory
DESCRIPTION "Returns true(1) if the transmitter supports the SbsFiber configuration feature"
::={ ovtxDisplayEntry 13 }
END
|