summaryrefslogtreecommitdiff
path: root/MIBS/arris/DSR4410MD-MIB
blob: 731e137c23e0e565ac0c143472e1f76c2dd20d67 (plain)
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
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
--
-- ***************************************************************************
--
--
-- Document Title:    SPECIFICATION,MIB,DCII COMML IRD,DSR4410MD,V1.1.2.13
-- Version:           1.1.2.13
-- Date:              23 Apr, 2014
--
--
--
--
-- Copyright (c) 2004-2014 ARRIS Group, Inc.  All rights reserved.
--
--
-- ************************ PROPRIETARY INFORMATION *************************
--
-- This document is the property of ARRIS Group, Inc.  This document may only be distributed to:
-- (i) an ARRIS employee having a legitimate business need for the information contained herein,
-- or (ii) a non-ARRIS party having a legitimate business need for the information contained herein.
-- No license, expressed or implied, under any patent, copyright or trade secret right is granted or
-- implied by the conveyance of this document. No part of this document may be reproduced, transmitted,
-- transcribed, stored in a retrieval system, translated into any language or computer language,
-- in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual, or
-- otherwise without the prior written permission of ARRIS Group, Inc.
-- (See Document Security Standard, 320190-000 for details.)
--
-- The ARRIS Logo and all other trademarks indicated as such herein are trademarks of ARRIS Group, Inc.
-- All other product or service names are the property of their respective owners.
--
--
-- *************************** REVISION HISTORY ****************************
--
-- $Header: /fweng/cird/neptune/CVSDB/src/app/SNMPAgent/Attic/DSR4410MD.mib,v 1.1.2.13 2014/04/24 18:24:31 a17763 Exp $
--
--
-- $Log: DSR4410MD.mib,v $
-- Revision 1.1.2.13  2014/04/24 18:24:31  a17763
-- Updated the Max DVB-S2 Symbol Rate to 33MSPS on FrontPanel/SNMP and Web.
--
-- CC ID: 2129
--
-- Revision 1.1.2.12  2011/08/11 22:30:30  mgi8231
-- DSR4410MD BRANCH_19A
-- Code Collaborator #576
-- Added byte27 & pkt27 options to ASI format rate
--
-- Revision 1.1.2.11  2011/02/09 06:45:11  jtwc43
-- port testmib to 4410MD
--
-- Revision 1.1.2.10  2011/02/08 09:39:48  a21357
-- DSR4410MD : Fix to SCRs 267,268,269,271 : Updated desciptions for contrast,audio1LeftGain,audio2LeftGain audio1RightGain,audio2RightGain,tvPasscard and signalPower leaves.
--
-- Revision 1.1.2.9  2011/01/10 04:58:14  a21357
-- Fix to SCR 247: Corrected the descriptions for acpAuthState and acpEncryptMode.
--
-- Revision 1.1.2.8  2010/12/15 11:41:15  a21357
-- Added two new options TS-DSMCC and DSMCC to GigE outputmode.Necessary changes are made to FP,SNMP and HTTP.
--
-- Revision 1.1.2.7  2010/12/09 04:22:40  a21357
-- Updated the signalpower range from (-80 - 0) to (-800 - 0).
--
-- Revision 1.1.2.6  2010/12/07 04:58:09  a21357
-- Modified the description of ACP mib elements.
-- Changed string length of portSatellite from 2-4 to 2-3.
--
-- Revision 1.1.2.5  2010/07/06 17:57:16  a21357
-- 1] Added Module-identity block
-- 2] Removed following mib elements that are not supported
--     a] pidAliasing
--     b] asiFormat
--     c] frontPanelLockoutStatus
--     d] bypassMode
--     e] relayTest
-- 3] Corrected the description of some mib elements.
--
-- Revision 1.1.2.4  2008/06/06 17:31:45  dwalson
-- Checkins that support new FP choice for gigE output mode: gigE (over TS), DSM-CC, or Disabled.  Therefore, you can run with either gigE or DSM-CC, but not both.  Affected FP, osd, web browser, MIB, and supporting software.
--
-- Revision 1.1.2.3  2008/04/23 00:14:33  dwalson
-- Audio 1 Right Language should match the read-write capability of Audio 2 Right Language.  Both the 4530 and 6050 mibs agree.
--
-- Revision 1.1.2.2  2008/04/22 23:07:18  dwalson
-- Independent = 0 and joint = 1 for audio 1 & 2 Gain Control.
--
-- Revision 1.1.2.1  2007/10/15 23:17:34  dwalson
-- Developed new mib file which removed extraneous ports, subcarrier descriptions and the DVT test MIB area.  This solved problem of "GetNext", "GetBulk" or walking, crashing the SNMP task.
--
-- Revision 1.8.4.5  2007/08/29 21:55:31  dwalson
-- Fixed compiler errors.
--
-- Revision 1.8.4.4  2007/08/24 12:30:49  a21357
-- 1]  Updated the MIB to fix SNMP SCRs.
-- 2]  Added  "manual8pskDvbS2 option to Modulation.
-- 3]  Added following "PSK8symbolRate" , "PSK8codeRate", "DVBS2symbolRate" and  "DVBS2codeRate"  to ManualTune.
-- 4] Added "subtitleDisplay" leaf to textSetup.
--
-- Revision 1.8.4.3  2007/07/10 20:08:43  dwalson
-- Variable rate ASI and mib support
--
-- Revision 1.8.4.2  2007/06/22 23:41:48  dwalson
-- Added reset IRD options under the unitControl package, which mimics the front panel functions.  Get always returns 0 (no), while set allows for no(0), powercycle(1) and factorydefaults(2)
--
-- Revision 1.8.4.1  2007/04/24 11:59:25  a21357
-- Modified access control for GigE parameters  from Read-Only to Read-Write.
--
-- Revision 1.8  2007/02/05 19:09:12  eqa001
-- Fix for DSR4530 SCR#164. Changed the auido1RightLanguage field to read-only.
--
-- Revision 1.7  2007/02/05 18:34:59  eqa001
-- Removed 5/11,3/5 and 4/5 code rate definitions for DVB-MAN in order to bring MIB inline with the front panel
--
-- Revision 1.6  2007/02/02 19:34:11  eqa001
-- Fix for DSR4530 SCR#96. Changed "codeRate" to "DVBCodeRate"
--
-- Revision 1.5  2007/02/02 19:09:58  eqa001
-- Fix for DSR4530 SCR#95. Changed "symbolRateSelect" to DVBsymbolRate
--
-- Revision 1.4  2007/02/01 22:07:32  eqa001
-- Removed 5/11 symbolCodeBit option except for 19.51 and 29.27 symbol rate to bring it inline with the front panel as per specification INF14.3.
--
-- Revision 1.3  2007/01/31 21:56:58  eqa001
-- Fix for SCR#330. Replaced "digicipher" with "signal"  in order to make the names on the leaves in MIB consistent with the Front panel.
--
-- Revision 1.2  2007/01/16 12:11:43  a21357
-- Added TestMib which contains test features for DVT team.
--
-- Revision 1.1  2006/11/28 19:49:58  dwalson
-- Initial checkins to support 4410-MD and SNMP/MIB
--
-- Revision 1.19  2006/10/25 23:43:47  dwalson
-- Conform FEC rates to SEM-2003-001A.doc
--
-- Revision 1.18  2006/10/18 22:09:41  dwalson
-- Make SNMP/MIB conform to 8psk choices.
--
-- Revision 1.17  2006/09/06 14:19:45  gparamasivam
-- Chages for backward compatibility with 4410 mib
--
-- Revision 1.16  2006/06/02 09:37:12  a22333
-- Modified to correctly display the authorization state for the current service. This is done to ensure that SNMP, FP and OSD are all in sync. Fixes SCR 127.
--
-- Revision 1.15  2006/05/17 00:42:32  mgi610
-- Updates to the headers to reflect the correct version of MIB.
--
-- Revision 1.14  2006/05/02 05:05:35  a22333
-- 1. Added Lock-off value to asiEnable Mib attribute.     2. Added lock-on value to pidAliasing mib attribute. Fixes SCR 181 & 182
--
-- Revision 1.13  2006/04/24 10:48:19  a22333
-- Relabled providerID mib attribute to emmID to match  FrontPanel labeling. Fixes SCR 101.
--
-- Revision 1.12  2006/04/21 09:37:32  a22333
-- Added support for Relay2Test and Relay3Test in the MIB
--
-- Revision 1.11  2006/04/21 05:11:34  a22333
-- Removed relay3Test and relay3Purpose mib attributes
--
-- Revision 1.10  2006/04/20 12:45:39  a22333
-- Relabled vits waveform ire100ModRamp to ire100Ramp as FrontPanel calls it. Fixes SCR 121
--
-- Revision 1.9  2006/04/20 11:36:52  a22333
-- Changed testToneA & testToneB labels to testToneA-1000 and testToneB-4040-3960 to match FrontPanel labeling. Fixes SCR 122
--
-- Revision 1.8  2006/04/20 10:16:38  a22333
-- 1. Changed the range of subCarrierL/RFreq to vary between 5.00 and 6.80. This fixes SCR 160.       2. Changed the range of subCarrierGain to range between 0 and -15dB. fixes SCR 159
--
-- Revision 1.7  2006/04/17 03:35:50  gparamasivam
-- Changes the activePort enum's from port0-port7 to port1-port8 to match FrontPanel
--
-- Revision 1.6  2006/04/17 03:04:22  gparamasivam
-- Change the name of port0-port7 to port1-port8
--
-- Revision 1.5  2006/04/16 13:26:23  gparamasivam
-- Added individual port setup mode for all 8 ports
--
-- Revision 1.4  2006/04/15 07:01:17  gparamasivam
-- Changed the enum for output aspect-retio to match the 4530 Front Panel
--
-- Revision 1.3  2006/04/15 06:44:36  gparamasivam
-- Changed the name of LED MIB attributes to match the 4530 Front Panel
--
-- Revision 1.2  2006/04/15 05:42:48  gparamasivam
-- Change the product id from DSR4410 to DSR4530. Also MIB name changed to DSR4530
--
-- Revision 1.1  2006/04/15 03:29:01  gparamasivam
-- Changing DSR4410.mib to DSR4530.mib
--
-- Revision 1.37  2006/04/14 18:28:26  dwalson
-- Tip checkins for retune monitoring.
--
-- Revision 1.36  2006/04/11 12:00:46  a22333
-- Modified to support(query/set) the new Fast Facts 5 diagnostics Screen. This fixes SCR 119.
--
-- Revision 1.35  2006/04/11 09:58:29  a22333
-- Changed the range of audio1LeftGain & audio2LeftGain to vary from 0 to -20.
--
-- Revision 1.34  2006/04/04 10:29:52  a22577
-- Added support for 5/11 code rate for 14.63, 11.71, 9.76, 7.32, 4.88, and 3.25.
-- symbol rates
--
-- Revision 1.33  2006/04/03 10:16:13  a22333
-- Checking back revision 1.31
--
-- Revision 1.31  2006/01/30 08:07:09  a22333
-- Added relay3Test and relay3Purpose mib attributes
--
-- Revision 1.30  2006/01/23 07:00:20  a22333
-- Renamed dataSetup branch to textSetup. This fixes SCR 972.
--
-- Revision 1.29  2006/01/23 05:54:56  a22333
-- Renamed frequencyPlan mib attribute to mode(as FrontPanel calls it)
--
-- Revision 1.28  2006/01/23 04:35:36  a22333
-- Removed graphicDisplay Attribute
--
-- Revision 1.27  2005/12/29 06:13:12  a22333
-- MIB changes for 4530 Phase 1
--
-- Revision 1.26  2005/09/11 11:45:09  gparamasivam
-- added new mib attributes symbolRateSelect codeRate bitstreamMultiplex
--
-- Revision 1.25  2005/09/05 12:12:34  gparamasivam
-- Added the language status mib attributes for audio and sub-title. These new attributes will return the language currently being presented by the IRD
--
-- Revision 1.24  2005/09/03 11:05:34  gparamasivam
-- Changed the name of audio1Language and audio2Language to audio1LeftLanguage and audio2LeftLanguage respectively.This fixes SCR's 247 and 248
--
-- Revision 1.23  2005/09/02 12:37:50  gparamasivam
-- Added relayTest MIB attribute. Fixes SCR 862
--
-- Revision 1.22  2005/08/29 12:03:44  gparamasivam
-- Added the upgradeFirmwareVersion MIB attribute. Takes care of SCR 845
--
-- Revision 1.21  2005/08/29 07:17:11  gparamasivam
-- Added LNB-Power (on/off) MIB attribute. Fixes SCR 832
--
-- Revision 1.20  2005/08/26 13:08:16  gparamasivam
-- Added the asiEnable MIB attribute. Fixes SCR839
--
-- Revision 1.19  2005/08/26 11:35:58  gparamasivam
-- Removes the option off from asiFormat. Will be added as a seperate MIB attribute asiEnabled. This fixes SCR 840
--
-- Revision 1.18  2005/08/26 11:10:00  gparamasivam
-- Remove Factory Reset option from MIB. Fixes SCR 830
--
-- Revision 1.17  2005/08/25 15:30:36  gparamasivam
-- Removed 16x9 from aspectRatioOut. This is to fix SCR 844
--
-- Revision 1.16  2005/08/25 15:04:21  gparamasivam
-- Added diag screen E option to the MIB. This fixes SCR 741
--
-- Revision 1.15  2005/08/25 12:17:34  gparamasivam
-- Changes the frequencyPlan enum values to match with the front panel options of xpndr and lfreq.This fixes SCR 837
--
-- Revision 1.14  2005/05/26 11:46:03  gparamasivam
-- Added 4x3 Zoomed, panned and letter-box options for output aspect ratio
--
-- Revision 1.13  2005/04/20 06:57:22  gparamasivam
-- Changed the Video Test Pattern to match the Front Panel values
--
-- Revision 1.12  2005/04/19 07:25:42  gparamasivam
-- Added MIB attribute for port setup mode manual/auto
--
-- Revision 1.11  2005/04/15 12:43:45  gparamasivam
-- Added support for MPEG service selection, ASI Input port selection, DVB Modulation mode selection, new VITS enumeration in the MIB
--
-- Revision 1.9  2004/08/05 18:53:20  dwalson
-- Limit mib choices on diag screens to Fast Facts 1,2,A,B,C,D.  Other screens are not implemented yet
--
-- Revision 1.8  2004/08/03 23:21:05  dwalson
-- display status-firmware-version numbers in hex
--
--
-- *************************************************************************
--
DSR4410MD-MIB      DEFINITIONS ::= BEGIN

    IMPORTS
        MODULE-IDENTITY,OBJECT-TYPE, IpAddress    FROM SNMPv2-SMI
        DisplayString                             FROM SNMPv2-TC
        ;

    dsr            MODULE-IDENTITY 
    LAST-UPDATED   "201404231000Z"     -- 23 Apr,2014 at 10:00 GMT
    ORGANIZATION   "ARRIS Group INC"
    CONTACT-INFO   "ARRIS Technical Response Center
                    Inside USA     1-888-944-HELP (1-888-044-4357)
                    Outside USA    1-215-323-0044
                    TRC Hours:
                    Monday through Friday 8am - 7pm Eastern Standard Time
                    Saturdays            10am - 5pm Eastern Standard Time" 
    DESCRIPTION    "The managed objects for the dsr mib."

    REVISION	"201404231000Z"     -- 23 Apr, 2014 at 10:00 GMT
    DESCRIPTION	"DSR mib version 1.1.2.13: Max DVB-S2 SymbolRate 
                 updated to 33MSPS.  "

    REVISION	"201108101000Z"     -- 10 Aug, 2011 at 10:00 GMT
    DESCRIPTION	"DSR mib version 1.1.2.12: Added byte27 and packet27
                 options to (ASI)format rate.  "

    REVISION	"201102041000Z"     -- 04 Feb, 2011 at 10:00 GMT
    DESCRIPTION	"DSR mib version 1.1.2.11: Add testMib"

    REVISION	"201102021000Z"     -- 02 Feb, 2011 at 10:00 GMT
    DESCRIPTION	"DSR mib version 1.1.2.10: Updated desciptions for contrast,audio1LeftGain,audio2LeftGain 
                 audio1RightGain,audio2RightGain,tvPasscard and signalPower leaves."

    REVISION	"201101071000Z"     -- 07 Jan, 2011 at 10:00 GMT
 	  DESCRIPTION	"DSR mib version 1.1.2.9: Updated acpAuthState and acpEncryptMode descriptions"

    REVISION	"201012091000Z"     -- 09 Dec, 2010 at 10:00 GMT
 	  DESCRIPTION	"DSR mib version 1.1.2.8: Added ts-dsmcc option to GigEMode"

    REVISION	"201012081000Z"     -- 08 Dec, 2010 at 10:00 GMT
 	  DESCRIPTION	"DSR mib version 1.1.2.7: Fix to SCR 232"

    REVISION	"201011291000Z"     -- 29 Nov, 2010 at 10:00 GMT
   	DESCRIPTION	"DSR mib version 1.1.2.6: Fix to SCR 228,229 and 213"

    REVISION	"201006221000Z"     -- 22 June, 2010 at 10:00 GMT
	   DESCRIPTION	"DSR mib version 1.1.2.5: Added GigE TS port in Manual Tune"
	
	    ::=  {  giproducts  621  } 

     

    org           OBJECT IDENTIFIER
        ::=  {  iso  3  }

    dod           OBJECT IDENTIFIER
        ::=  {  org  6  }

    internet      OBJECT IDENTIFIER
        ::=  {  dod  1  }

    private       OBJECT IDENTIFIER
        ::=  {  internet  4  }

    enterprises   OBJECT IDENTIFIER
        ::=  {  private  1  }

    giMIB         OBJECT IDENTIFIER
        ::=  {  enterprises  1166  }

    giproducts    OBJECT IDENTIFIER
        ::=  {  giMIB  1  }

   

-- The Control Group.
-- This group of objects provides for control of the unit to be
-- managed by SNMPv2 controllers.

    videoMib      OBJECT IDENTIFIER
    --      Allows an SNMP manager to select the format of the output
    --      video."
        ::=  {  dsr  1  }

    videoOutput525Lines   OBJECT-TYPE
        SYNTAX        INTEGER  { ntsc ( 0 ) , palm ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The format of the output video that the unit renders when
            the unit is tuned to a 525 line video broadcast signal."
        ::=  {  videoMib  1  }

    videoOutput625Lines   OBJECT-TYPE
        SYNTAX        INTEGER  { pal-d-g-b ( 0 ) , pali ( 1 ) , paln ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The format of the output video that the unit renders
            when the unit is tuned to a 625 line video broadcast signal."
        ::=  {  videoMib  2  }

    aspectRatioInput     OBJECT-TYPE
        SYNTAX        INTEGER  { ar4x3 ( 0 ) , ar16x9 ( 1 ), unknown ( 2 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The aspect ratio of the video that is carried in the
            broadcast signal."
        ::=  {  videoMib  3  }

    aspectRatioOutput     OBJECT-TYPE
        SYNTAX        INTEGER  { ar4x3-Zoom ( 0 ), ar4x3-PanScan ( 1 ) , ar4x3-LetterBox ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The aspect ratio of the output video signal."
        ::=  {  videoMib  4  }


    rfPortsMib        OBJECT IDENTIFIER
    --      Allows an SNMP manager to configure the RF inputs so the unit
    --      can lock to a signal and begin downloading network data
    --      required for operation.
        ::=  {  dsr   2  }

    rfPortsSetup     OBJECT IDENTIFIER
    --      Configuration settings for the 2 RF input ports
        ::=  { rfPortsMib  1 }

    port1     OBJECT IDENTIFIER
    --      Configuration settings for Port 0
        ::=  { rfPortsSetup  1 }


    port1SetupMode     OBJECT-TYPE
        SYNTAX        INTEGER { manual ( 0 ) , auto ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "When the setup mode is set to manual the satellite name and polarity has
            to befined by the user. When the port mode is set to auto the Satellite
            name and polarity will be automatically set during the first channel change."
        ::=  {  port1 1  }

    port1Satellite     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 2 .. 3  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "A 2 to 3 character abbreviation of the name of the
            satellite to which the RF port is associated."
        ::=  {  port1 2  }


    port1Polarity      OBJECT-TYPE
        SYNTAX        INTEGER  { horizontal ( 0 ) , vertical ( 1 ) , notDefined( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The polarity of the RF input applied to the RF port.  The
            undefined value is not writeable; instead, undefined can only
            be set by the uplink."
        ::=  {  port1 3  }

    port2     OBJECT IDENTIFIER
    --      Configuration settings for Port 1
        ::=  { rfPortsSetup  2 }

    port2SetupMode     OBJECT-TYPE
        SYNTAX        INTEGER { manual ( 0 ) , auto ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "When the setup mode is set to manual the satellite name and polarity has
            to befined by the user. When the port mode is set to auto the Satellite
            name and polarity will be automatically set during the first channel change."
        ::=  {  port2 1  }

    port2Satellite     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 2 .. 3  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "A 2 to 3 character abbreviation of the name of the
            satellite to which the RF port is associated."
        ::=  {  port2 2  }


    port2Polarity      OBJECT-TYPE
        SYNTAX        INTEGER  { horizontal ( 0 ) , vertical ( 1 ), notDefined( 2 )}
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The polarity of the RF input applied to the RF port.  The
            undefined value is not writeable; instead, undefined can only
            be set by the uplink."
        ::=  {  port2 3  }




    manualTune    OBJECT IDENTIFIER
    --      "Allows an SNMP manager to initially acquire a DigiCipher II
    --      signal and download virtual channel tables by selecting a
    --      transponder frequency, symbol rate, coding rate, and
    --      bitstream for an L-band input at one of the eight ports."
        ::=  {  rfPortsMib  2  }

    activePort    OBJECT-TYPE
        SYNTAX        INTEGER  {  port1    ( 0 )
                                , port2    ( 1 )
                                , asiInput ( 8 )
                                }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The RF port that is active during a manual tune."
        ::=  {  manualTune  1  }

    mode     OBJECT-TYPE
        SYNTAX        INTEGER  { xpndr(0) , lfreq(1) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The frequency plan of the satellite to which the unit tunes during
            installation. The unit accepts a C-Band satellite transponder number
            when the selection is xpndr. The unit accepts a discrete frequency value
            when the selection is lfreq"
        ::=  {  manualTune  2  }

    transponderNumber    OBJECT-TYPE
        SYNTAX        INTEGER ( 1 .. 24 )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The transponder number to which the unit tunes during installation
            This in turn specifies the L-Band frequency to which the unit tunes
            during installation. This value is valid only when the FrequencyPlan
            selection is xpndr. Value -1 indicates its Not applicable."
        ::=    { manualTune 3 }

    frequency     OBJECT-TYPE
        SYNTAX        INTEGER  ( 950 .. 2150  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The L-band frequency, in MHz, during a manual tune.  A new
            manual tune is initiated when this object is set.This value is
            valid only of the Frequency Plan selection is lfreq.
             Value -1 indicates its Not applicable."
        ::=  {  manualTune  4  }

    dvbSymbolRate     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 99999999  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The symbol-rate to be tuned to in units of sps. A new
             manual tune is initiated when this object is set.
             Value -1 indicates its Not applicable."
        ::=  {  manualTune  5  }

    dvbCodeRate     OBJECT-TYPE
        SYNTAX        INTEGER  {  cr1-2 ( 0 ),  cr2-3 ( 1 ),
                                  cr3-4 ( 2 ),  cr5-6 ( 3 ),
                                  cr7-8 ( 4 )
                               }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The code rate of the channel being tuned to. A new
             manual tune is initiated when this object is set.
             Value -1 indicates its Not applicable."
        ::=  {  manualTune  6  }

    
    symbolCodeBit     OBJECT-TYPE
        SYNTAX        INTEGER  {
                    sr29Cm5-11Combined ( 0 ) ,  sr29Cm1-2Combined ( 1 ) ,
                    sr29Cm3-5Combined ( 2 ) ,   sr29Cm2-3Combined ( 3 ) ,
                    sr29Cm3-4Combined ( 4 ) ,   sr29Cm4-5Combined ( 5 ) ,
                    sr29Cm5-6Combined ( 6 ) ,   sr29Cm7-8Combined ( 7 ) ,

                    sr29Cm5-11Split ( 8 ) ,     sr29Cm1-2Split ( 9 ) ,
                    sr29Cm3-5Split ( 10 ) ,     sr29Cm2-3Split ( 11 ) ,
                    sr29Cm3-4Split ( 12 ) ,     sr29Cm4-5Split ( 13 ) ,
                    sr29Cm5-6Split ( 14 ) ,     sr29Cm7-8Split ( 15 ) ,

                    sr19Cm5-11Combined ( 16 ) , sr19Cm1-2Combined ( 17 ) ,
                    sr19Cm3-5Combined ( 18 ) ,  sr19Cm2-3Combined ( 19 ) ,
                    sr19Cm3-4Combined ( 20 ) ,  sr19Cm4-5Combined ( 21 ) ,
                    sr19Cm5-6Combined ( 22 ) ,  sr19Cm7-8Combined ( 23 ) ,

                    sr19Cm5-11Split ( 24 ) ,    sr19Cm1-2Split ( 25 ) ,
                    sr19Cm3-5Split ( 26 ) ,     sr19Cm2-3Split ( 27 ) ,
                    sr19Cm3-4Split ( 28 ) ,     sr19Cm4-5Split ( 29 ) ,
                    sr19Cm5-6Split ( 30 ) ,     sr19Cm7-8Split ( 31 ) ,


                    sr14Cm1-2Combined ( 32 ) ,  sr14Cm3-5Combined ( 33 ) ,
                    sr14Cm2-3Combined ( 34 ) ,  sr14Cm3-4Combined ( 35 ) ,
                    sr14Cm4-5Combined ( 36 ) ,  sr14Cm5-6Combined ( 37 ) ,
                    sr14Cm7-8Combined ( 38 ) ,


                    sr11Cm1-2Combined ( 39 ) ,  sr11Cm3-5Combined ( 40 ) ,
                    sr11Cm2-3Combined ( 41 ) ,  sr11Cm3-4Combined ( 42 ) ,
                    sr11Cm4-5Combined ( 43 ) ,  sr11Cm5-6Combined ( 44 ) ,
                    sr11Cm7-8Combined ( 45 ) ,


                    sr9Cm1-2Combined ( 46 ) ,   sr9Cm3-5Combined ( 47 ) ,
                    sr9Cm2-3Combined ( 48 ) ,   sr9Cm3-4Combined ( 49 ) ,
                    sr9Cm4-5Combined ( 50 ) ,   sr9Cm5-6Combined ( 51 ) ,
                    sr9Cm7-8Combined ( 52 ) ,


                    sr7Cm1-2Combined ( 53 ) ,   sr7Cm3-5Combined ( 54 ) ,
                    sr7Cm2-3Combined ( 55 ) ,   sr7Cm3-4Combined ( 56 ) ,
                    sr7Cm4-5Combined ( 57 ) ,   sr7Cm5-6Combined ( 58 ) ,
                    sr7Cm7-8Combined ( 59 ) ,


                    sr4Cm1-2Combined ( 60 ) ,   sr4Cm3-5Combined ( 61 ) ,
                    sr4Cm2-3Combined ( 62 ) ,   sr4Cm3-4Combined ( 63 ) ,
                    sr4Cm4-5Combined ( 64 ) ,   sr4Cm5-6Combined ( 65 ) ,
                    sr4Cm7-8Combined ( 66 ) ,


                    sr3Cm1-2Combined ( 67 ) ,   sr3Cm3-5Combined ( 68 ) ,
                    sr3Cm2-3Combined ( 69 ) ,   sr3Cm3-4Combined ( 70 ) ,
                    sr3Cm4-5Combined ( 71 ) ,   sr3Cm5-6Combined ( 72 ) ,
                    sr3Cm7-8Combined ( 73 ) }

        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The symbol, code rate, and bitstream select combination
            during a manual tune.  A new manual tune is initiated when
            this object is set.
            The symbol rate takes eight possible values: 29.3, 19.5, 14.6,
            11.7, 9.76, 7.32, 4.88, and 3.25 Msps.
            The code rate also takes eight possible values: 7/8, 5/6, 4/5,
            3/4, 2/3, 3/5, 1/2, and 5/11.
            The bitstream select takes two possible    values: combined and
            split.
            Value -1 indicates its Not applicable."
        ::=  {  manualTune  8  }


      modulationMode     OBJECT-TYPE
        SYNTAX        INTEGER  { dciiManual ( 0 ) , dvbManual  ( 1 ) ,
                                 dciiAuto ( 2 )   , manual8pskTC ( 3 ) ,
                                 manual8pskDvbS2 ( 4 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            " The modulation mode to be used for the manual tune.  A new
              manual tune is initiated when this object is set."
        ::=  {  manualTune  9  }

      psk8SymbolRate     OBJECT-TYPE
        SYNTAX        INTEGER  ( 1000000 .. 30000000  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The symbol-rate to be tuned to in units of sps. A new
             manual tune is initiated when this object is set.
             Value -1 indicates its Not applicable."
        ::=  {  manualTune  10  }

     psk8CodeRate     OBJECT-TYPE
        SYNTAX        INTEGER  {  cr2-3-192  ( 0 ), cr3-4-205 ( 1 ),
                                  cr3-4-211  ( 2 ), cr3-4-219 ( 3 ),
                                  cr5-6-230  ( 4 ), cr8-9-240 ( 5 )
                               }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The code rate of the channel being tuned to. A new
             manual tune is initiated when this object is set.
             Value -1 indicates its Not applicable."
        ::=  {  manualTune  11  }


     dvbS2symbolRate     OBJECT-TYPE
        SYNTAX        INTEGER  ( 1000000 .. 33000000  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The symbol-rate to be tuned to in units of sps. A new
             manual tune is initiated when this object is set.
             Value -1 indicates its Not applicable."
        ::=  {  manualTune  12  }

     dvbS2codeRate     OBJECT-TYPE
        SYNTAX        INTEGER  {  cr3-5 ( 0 ),  cr2-3  ( 1 ),
                                  cr3-4 ( 2 ),  cr5-6  ( 3 ),
                                  cr8-9 ( 4 ),  cr9-10 ( 5 )
                               }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The code rate of the channel being tuned to. A new
             manual tune is initiated when this object is set.
             Value -1 indicates its Not applicable. "
        ::=  {  manualTune  13  }


    channelMib    OBJECT IDENTIFIER
    --      Allows an SNMP manager to select the virtual channel to which
    --      the unit is tuned and to read information about the channel.
        ::=  {  dsr  3  }

    channelSelect     OBJECT IDENTIFIER
        ::=  {  channelMib  1  }

    vctID    OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The virtual channel table number."
        ::=  {  channelSelect  1  }

    channelNumber     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 4095  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The virtual channel."
        ::=  {  channelSelect  2  }

    
    channelStatus     OBJECT IDENTIFIER
        ::=  {  channelMib  2  }

    transponder   OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 0 .. 31  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The current transponder name (alpha/numeric) as received
            from the uplink.A Blank string is returned if the name is not available ."
        ::=  {  channelStatus  1  }

    source    OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 0 .. 255  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The name of the current source signal as received from the
            uplink.A Blank string is returned if the name is not available ."
        ::=  {  channelStatus  2  }

    satelliteStatus   OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 0 .. 15  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The name of the current satellite as received from the uplink.
            A Blank string is returned if the name is not available ."
        ::=  {  channelStatus  3  }

    serviceSelectionMib    OBJECT IDENTIFIER
    --      "Allows an SNMP manager to select the MPEG service number which
    --      has to be played by the IRD"
        ::=  {  dsr  4  }

    mpegServiceNumber      OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The MPEG service number which the IRD has to play. "
        ::=  {  serviceSelectionMib  1  }


    unitControlMib    OBJECT IDENTIFIER
    --      Allows an SNMP manager to change the front panel LCD contrast,
    --      set the acquisition recovery mode, reset the unit to the
    --      factory programmed values, change the PID aliasing setting,
    --      and read the lockout status.
        ::=  {  dsr  5  }

    unitControl       OBJECT IDENTIFIER
        ::=  {  unitControlMib  1  }

    contrast      OBJECT-TYPE
        SYNTAX        INTEGER  (0 .. 30)
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The LCD contrast, with 0 representing the least contrast and
            30 representing the most."
        ::=  {  unitControl  1  }

   
    asiEnable  OBJECT-TYPE
        SYNTAX        INTEGER  { on ( 0 ) , off ( 1 ) , lock-off ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Option to enable or disbale the ASI output.
             Note that lock-off is a read only value used by the uplink to
             lock asiEnable. It cannot be set via SNMP.
             Also, when this value is lock-off, this entire field is read
            only."
        ::=  {  unitControl  3  }

    
    lnbPower  OBJECT-TYPE
        SYNTAX        INTEGER  { on ( 0 ) , off ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Option to enable or disable LNB Power."
        ::=  {  unitControl  6  }

    resetIRD  OBJECT-TYPE
        SYNTAX        INTEGER  { no ( 0 ) , powercycle ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Option to reboot the box."
        ::=  {  unitControl  7  }

    formatRate  OBJECT-TYPE
        SYNTAX        INTEGER  { byte54    ( 0 ) , 
                                 packet54  ( 1 ) , 
                                 packet81  ( 2 ) , 
                                 packet160 ( 3 ) ,
                                 byte27    ( 4 ) ,
                                 packet27  ( 5 )
                                 }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Format and rate of the ASI output"
        ::=  {  unitControl  8  }

    audioMib     OBJECT IDENTIFIER
    --      Allows an SNMP manager to customize the audio output
        ::=  {  dsr  6  }

    audioConfig  OBJECT IDENTIFIER
    --       Configuration settings for both audio outputs.
        ::=  { audioMib  1 }

    audio1Config OBJECT IDENTIFIER
    --    Configuration Settings for the first audio output
        ::=  { audioConfig 1 }

    audio1GainControl   OBJECT-TYPE
        SYNTAX        INTEGER  {  joint ( 1 )   }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "In audio gain control joint, only the left audio channel is edited. The
             right audio channel gain will be set to the left. "
        ::=  {  audio1Config  1  }

    audio1LeftGain     OBJECT-TYPE
        SYNTAX        INTEGER  ( -20 .. 0  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The left audio signal output level from -20 dB to 0 dB,
            in 1 dB increments."
        ::=  {  audio1Config  2  }

    audio1RightGain    OBJECT-TYPE
        SYNTAX        INTEGER  ( -20 .. 0  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The right audio signal output level from -20 dB to 0 dB,
            in 1 dB increments."
        ::=  {  audio1Config 3  }

    audio1DiagNorm    OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "This varaiables enables and diables the audio dialog normalization"
        ::=  {  audio1Config 4  }

    audio1DownMix    OBJECT-TYPE
        SYNTAX        INTEGER  { mono ( 0 ) , dualMono ( 1 ) , stereo ( 2 ) , surround ( 3 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The mode of the audio output.  The unit downmixes the input audio
            to the selected channel mode."
        ::=  {  audio1Config 5  }

    audio1Compression   OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , moderate ( 1 ) , heavy ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The degree of audio level compression."
        ::=  {  audio1Config 6  }

    audio2Config OBJECT IDENTIFIER
    --    Configuration Settings for the second audio output
        ::=  { audioConfig 2 }

    audio2GainControl   OBJECT-TYPE
        SYNTAX        INTEGER  { joint ( 1 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "In audio gain control joint, only the left audio channel is edited. The
             right audio channel gain will be set to the left. "
        ::=  {  audio2Config 1  }

    audio2LeftGain     OBJECT-TYPE
        SYNTAX        INTEGER  ( -20 .. 0  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The left audio signal output level from -20 dB to 0 dB,
            in 1 dB increments."
        ::=  {  audio2Config  2  }

    audio2RightGain    OBJECT-TYPE
        SYNTAX        INTEGER  ( -20 .. 0  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The right audio signal output level from -20 dB to 0 dB,
            in 1 dB increments."
        ::=  {  audio2Config 3  }

    audio2DiagNorm    OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "This varaiables enables and diables the audio dialog normalization"
        ::=  {  audio2Config 4  }

    audio2DownMix    OBJECT-TYPE
        SYNTAX        INTEGER  { mono ( 0 ) , dualMono ( 1 ) , stereo ( 2 ) , surround ( 3 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The mode of the audio output. The unit downmixes the input audio to
            the selected channel mode ."
        ::=  {  audio2Config 5  }

    audio2Compression   OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , moderate ( 1 ) , heavy ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The degree of audio level compression."
        ::=  {  audio2Config 6  }

    audioOutput      OBJECT IDENTIFIER
        --    Output settings for both audio outputs.
        ::=  { audioMib  2 }

    audio1Output  OBJECT IDENTIFIER
        --  Output settings for audio1 ( primary output )
        ::=  { audioOutput 1 }

    audio1LeftLanguage      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The language for the audio1 . This 5-character language
            string is formatted as three letters followed by two numbers. The
            2-digit number represents the order of the 3-letter language in the
            service, e.g., eng01 denotes the second English component that is
            carried in the active service. The unit processes the default language
            when the preferred language setting is def (In this case the string is only 
            3 character wide). Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio1Output 1  }

    audio1RightLanguage    OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The language for the right audio channel when the AudioDownMix selection
            is dualMono. When the AudioDownMix is not dualMono the value
            mirrors the audio1LeftLanguage and any changes to this value does not have any
            effect. This is a 3(def) or 5(e.g., eng01) character string similar to the left 
            language string. Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio1Output 2  }

    audio1LeftLanguageStatus      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The language of the left audio channel being presented by the IRD. This is a 3(def)
            or 5(e.g., eng01) character string of the similar format as of the audio1LeftLanguage."
        ::=  {  audio1Output 3  }

    audio1RightLanguageStatus      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
           "The language of the right audio channel being presented by the IRD. This is a 3(def)
            or 5(e.g., eng01) character string of the similar format as of the audio1LeftLanguage.
            Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio1Output 4  }

    audio2Output  OBJECT IDENTIFIER
        --  Output settings for audio 2 ( secondary output )
        ::=  { audioOutput 2 }

    audio2LeftLanguage      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The language for the audio1 . This 5-character language
            string is formatted as three letters followed by two numbers. The
            2-digit number represents the order of the 3-letter language in the
            service, e.g., eng01 denotes the second English component that is
            carried in the active service. The unit processes the default language
            when the preferred language setting is def(in this case. string is 3 
            letters wide). Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio2Output 1  }

    audio2RightLanguage    OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The language for the right audio channel when the AudioDownMix selection
            is dualMono. When the AudioDownMix is not dualMono the value
            mirrors the audio2LeftLanguage and any changes to this value does not have any
            effect. This is a 3(def) or 5(e.g., eng01) character string of the similar format as of the 
            audio2LeftLanguage. Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio2Output 2  }

    audio2LeftLanguageStatus      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The language of the left audio channel being presented by the IRD. This is a 3(def)
            or 5(e.g., eng01) character string of the similar format as of the audio2LeftLanguage.
            Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio2Output 3  }

    audio2RightLanguageStatus      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 3 | 5  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The language of the right audio channel being presented by the IRD. This is a 3(def)
            or 5(e.g., eng01) character string of the similar format as of the audio2LeftLanguage.
            Note that the language string is converted to lower case 
            automatically when this configuration is to be applied"
        ::=  {  audio2Output 4  }

    dataMib       OBJECT IDENTIFIER
    --      Allows an SNMP manager to configure and read the status of the
    --      data channels.
        ::=  {  dsr  7  }

    dataStatus    OBJECT IDENTIFIER
        ::=  {  dataMib  1  }

    ethernetIP    OBJECT-TYPE
        SYNTAX        INTEGER  { defined ( 0 ) , notDefined ( 1 ) , unknown ( 2 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "Retrieves whether the select channel contains IP data,
            as defined in the downloaded network data from the
            uplink."
        ::=  {  dataStatus  1  }

    textSetup     OBJECT IDENTIFIER
        ::=  {  dataMib  2  }

    subtitleLanguage      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 1 .. 5  ) )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The selected subtitle track.  Applicable when the selected
            channel carries multiple subtitle tracks.  The 5-character
            string has the following representation:
                sssdd  where

                sss = 3-char ISO 639 code for the subtitle language
                dd  = 2-digits indicating the occurrence of the
                      specified language
            'ENG02' would select, for example, the subtitle track for
            the second occurrence of English subtitles.

            To turn the subtitle off, enter 'Off01' or 'Off00' at the
            browser.  The user must enter the ordinal."
        ::=  {  textSetup  1  }

    subtitleLanguageStatus      OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 1 .. 5  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The subtitle language currently being presented by the IRD"
        ::=  {  textSetup  2  }

    subtitleDisplay      OBJECT-TYPE
        SYNTAX        INTEGER  { all    ( 0 ) ,  avail ( 1 ),
                                 status ( 2 ) ,  off   ( 3 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The subtitle language currently being presented by the IRD"
        ::=  {  textSetup  3  }


    ethernet10-100  OBJECT IDENTIFIER
        ::=  {  dataMib  3  }

    ipAddress     OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The IP address of the snmp port 1, in the common
            dotted-decimal format."
        ::=  {  ethernet10-100  1  }

    subnetMask    OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The subnet mask of the snmp port 1, in the dotted-decimal
            format."
        ::=  {  ethernet10-100  2  }

    defaultGateway    OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The IP address of the gateway that is used by the snmp
            port 1, in the dotted-decimal format."
        ::=  {  ethernet10-100  3  }

    macAddr     OBJECT-TYPE
        SYNTAX        OCTET STRING ( SIZE ( 17 ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The ethernet 1 MAC address in hh:hh:hh:hh:hh:hh
            format."
        ::=  {  ethernet10-100  4  }


    ethernetGigE  OBJECT IDENTIFIER
        ::=  {  dataMib  4  }

    gigEipAddress     OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The IP address of the gigE port, in the common
            dotted-decimal format."
        ::=  {  ethernetGigE  1  }

    gigEsubnetMask    OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The subnet mask of the gigE port, in the dotted-decimal
            format."
        ::=  {  ethernetGigE  2  }

    gigEgateway    OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The IP address of the gateway that is used by the gigE
            port, in the dotted-decimal format."
        ::=  {  ethernetGigE  3  }

    gigEmacAddr     OBJECT-TYPE
        SYNTAX        OCTET STRING ( SIZE ( 17 ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The gigEthernet MAC address in hh:hh:hh:hh:hh:hh
            format."
        ::=  {  ethernetGigE  4  }

    gigEmode     OBJECT-TYPE
        SYNTAX        INTEGER { mpts ( 0 ) ,disabled ( 1 ) , tsdsmcc ( 2 ) , dsmcc ( 3 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The gigEthernet mode is one of the following values 
              MPTS,disabled,TS-DSMCC or  DSM-CC."
        ::=  {  ethernetGigE  5  }

    mptsIpAddr    OBJECT-TYPE
        SYNTAX        IpAddress
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The MPTS IP address of the gigE port in the dotted-decimal
             format."
        ::=  {  ethernetGigE  6  }

    mptsPort    OBJECT-TYPE
        SYNTAX        INTEGER ( 0 .. 65535 )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The port associated with the MPTS IP address."
        ::=  {  ethernetGigE  7  }


    extHardwareMib    OBJECT IDENTIFIER
    --      Allows an SNMP manager to configure the contact closures
    --      (relays), alarms, and the bypass.
        ::=  {  dsr  8  }

    alarms    OBJECT IDENTIFIER
        ::=  {  extHardwareMib  1  }

    
    alarmTrigger      OBJECT-TYPE
        SYNTAX        INTEGER  { noSignal ( 0 ) ,
                    noVideoPresent ( 1 ) ,
                                noAuthorization ( 2 ) ,
                                auto ( 3 ),
                                disabled ( 4 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The trigger condition for which the alarm is activated. When the
            alarm is activated the Alarm LED illuminates and the alrm relay indicates
            an alarm condition. The alarm is activated for any of the following conditions
            1. The tuner loses lock when the input is RF
            2. The unit is not authorized to access the selected service
            3. The unit loses video
            When Auto is selected the alarm activates for any of these conditions and when
            Disabled is selected the alarm does not activate for any condition."
        ::=  {  alarms  2  }

    alarmTest    OBJECT-TYPE
        SYNTAX        INTEGER  { on ( 0 ) , off ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "A manual test of the alarm indicators.  Setting ON places the unit in the alarm condition."
        ::=  {  alarms  3  }


    statusMib     OBJECT IDENTIFIER
    --      Allows an SNMP manager to read the current status of the unit.
        ::=  {  dsr  9  }


    accessControl     OBJECT IDENTIFIER
        ::=  {  statusMib  1  }

    unitAddress   OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 19  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The unit's electronic address in the following format:
                ddd-ddddd-ddddd-ddd  where d = decimal digit."
        ::=  {  accessControl  1  }

    tvPasscard    OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 26  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The electronic address of the TV Pass Card, if present, in
            the unit address format.  When no TV Pass Card is present
            the value returned is 'Not inserted'."
        ::=  {  accessControl  2  }

    firmware      OBJECT IDENTIFIER
        ::=  {  statusMib  2  }

    bootVersion     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 6  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The version of the boot code."
        ::=  {  firmware  1  }

    fpgaVersion     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 6  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The version of the fpga."
        ::=  {  firmware  2  }

    firmwareVersion     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 6  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The version of firmware code."
        ::=  {  firmware  3  }

    upgradeFirmwareVersion     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 6  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The upgrade version of firmware code."
        ::=  {  firmware  4  }

    diagnosticMib     OBJECT IDENTIFIER
    --      Allows an SNMP manager to perform several diagnostic tests and
    --      read diagnostic information.
        ::=  {  dsr  10  }

    screenDisplay     OBJECT IDENTIFIER
        ::=  {  diagnosticMib  1  }

    diagnosticScreen      OBJECT-TYPE
        SYNTAX        INTEGER  {     off(0)
                                  , fastFacts1(1)
                                  , fastFacts2(2)
                                  , fastFacts3(3)
                                  , fastFacts4(4)
                                  , fastFacts5(5)
                                  , diagA(6)
                                  , diagB(7)
                                  , diagBMD(8)
                                  , diagC(9)
                                  , diagD(10)
                                  , diagE(11)
--                              diagF ( 10 ),          diagG ( 11 ),
--                              downloadDiag ( 12 ),   fastFacts5(13)
                   }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The diagnostic screen that is to be presented by the unit
            on the video output."
        ::=  {  screenDisplay  1  }

    clearCounters     OBJECT-TYPE
        SYNTAX        INTEGER  { yes ( 0 ) , no ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Clears the counters in the on-screen diagnostics to zero."
        ::=  {  screenDisplay  2  }

    testSignals  OBJECT IDENTIFIER
        ::=  {  diagnosticMib  2  }

    videoTestPattern   OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) ,
                     colorBar525 ( 1 ) ,      ire100Ramp( 2 ) ,
                                 ntsc7Combination ( 3 ) , redField( 4 ) ,
                                 ntsc7Composite ( 5 ) ,   fiveStepStair ( 6 ) ,
                                 unModulatedYRamp ( 7 )
                               }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The full-field video test pattern that is presented by the
            unit on the video output."

        ::=  {  testSignals  1  }

    audio1TestPattern     OBJECT-TYPE
        SYNTAX        INTEGER  { testToneA-1000 ( 0 ) , testToneB-4040-3960 ( 1 ) ,
                                off ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The audio test signal that is outputted by the unit for
            audio 1.  The following options are available:
                o 1000 Hz @ +16 dBm (for mono)
                o 4040, 3960 Hz @ + 4dBm each (for left and right)
                o OFF"
        ::=  {  testSignals  2  }

    audio2TestPattern     OBJECT-TYPE
        SYNTAX        INTEGER  { testToneA-1000 ( 0 ) , testToneB-4040-3960 ( 1 ) ,
                                off ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "See the DESCRIPTION for the audio1TestPattern object."
        ::=  {  testSignals  3  }

    cueToneSignal     OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The cue tone test signal.The unit generates 
             a cue test tone sequence consisting of 
             0, 1, 2, 3, 4, 5, 6, 7, 8, 9, *, #, A, B, C, D.
             The unit repeats the cue test tone sequence when enabled.
             The unit generates a cue tone test tone sequence with a 50 
             msec tone and inter-tone duration, a 2 second interval between 
             sequences, and immediate activation.
             When the users set it to On via SNMP.
             Cuetones are played continuously."
        ::=  {  testSignals  4  }

    
    vits          OBJECT IDENTIFIER
        ::=  {  diagnosticMib  3  }

    waveform      OBJECT-TYPE
        SYNTAX        INTEGER  { transmitted ( 0 ) , disabled ( 1 ) ,
                                 colorBar525 ( 2 ) , ire100Ramp( 3 ) ,
                                 ntsc7Combination ( 4 ) , redField( 5 ) ,
                                 ntsc7Composite ( 6 ) , fiveStepStair ( 7 ) ,
                                 unModulatedYRamp ( 8 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The VITS test pattern that is presented by the unit on the
            the video output."

        ::=  {  vits  1  }

    field     OBJECT-TYPE
        SYNTAX        INTEGER  { field1 ( 0 ) , field2 ( 1 ) , na ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The field on which the VITS test pattern is presented
            by the unit on the video output. 'n/a' is a read-only
            value that the unit returns when the waveform object
            is set to 'transmitted' or 'disabled'."
        ::=  {  vits  2  }

    line      OBJECT-TYPE
        SYNTAX        INTEGER  { line17 ( 0 ) , line18 ( 1 ) , na ( 2 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The line into which the VITS test pattern is presented
            by the unit on the video output. 'n/a' is a read-only
            value that the unit returns when the waveform object
            is set to 'transmitted' or 'disabled'."
        ::=  {  vits  3  }

    signalStatus  OBJECT IDENTIFIER
    --      Allows an SNMP manager to read the attributes and status
    --      of the current DigiCipher II signal.
        ::=  {  dsr  11 }

    acquisitionState      OBJECT-TYPE
        SYNTAX        INTEGER  { locked ( 0 ) , unLocked ( 1 )  }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The acquisition state for the active signal"
        ::=  {  signalStatus  1  }

    authorizationState    OBJECT-TYPE
            SYNTAX        INTEGER  { missingMap ( 0 ) ,
                                     undefinedChannel ( 1 ) ,
                                     undefinedService ( 2 ) ,
                                     notInSync ( 3 ) ,
                                     noProgramRekey ( 4 ) ,
                                     noWorkingKey ( 5 ) ,
                                     noEventBlackOut ( 6 ) ,
                                     noCategoryKey ( 7 ) ,
                                     oldCategorySequence ( 8 ) ,
                                     programBought ( 9 ),
                                     programBoughtWithoutTaping ( 10 ),
                                     subscribedWithTaping ( 11 ),
                                     subscribedWithoutTaping ( 12 ),
                                     subscribedWithTapingPurchasable ( 13 ),
                                     ippvWithTaping ( 14 ) ,
                                     ippvWithoutTaping ( 15 ),
                                     badSeedChecksum ( 16 ),
                                     badDebitChecksum ( 17 ),
                                     ippvNotEnabled ( 18 ),
                                     insufficientCreditToPurchase ( 19 ),
                                     showCountLimitExceeded ( 20 ),
                                     debitRegisterWillOverflow ( 21 ),
                                     noAnytimeFreePreviewRecordsAvailable ( 22 ),
                                     maximumPackageCostExceeded ( 23 ),
                                     noIPPVOverlayInMessage ( 24 ),
                                     notSubscribed ( 25 ),
                                     regionalBlackout ( 26 ),
                                     eventBlackout ( 27 ),
                                     circulatBlackout ( 28 ) ,
                                     authorized ( 29 ) ,
                                     unencrypted ( 30 ),
                                     unknown ( 31 )

                                   }


        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The authorization state for viewing the current signal.
            This object mirrors the 'Auth State' field in the
            Fast Facts 1 OSD."
        ::=  {  signalStatus  2  }

    encryptionMode    OBJECT-TYPE
        SYNTAX        INTEGER  { encrypted ( 0 ), fixedWorkingKey ( 1 ),
                     fixedProgramKey ( 2 ), unencrypted ( 3 ), na ( 4 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The encryption mode of the current signal.    This
            object mirrors the 'Encryption' field in the Fast
            Facts 1 OSD."
        ::=  {  signalStatus  3  }

    unitAddr  OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 19  ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The unit's electronic address in the following format:
                ddd-ddddd-ddddd-ddd  where d = decimal digit.
            This object mirrors the 'Unit' field in the Fast Facts 1
            OSD."
        ::=  {  signalStatus  4  }

    vctIDFast     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The current virtual channel table number. This object
            mirrors the 'VCT ID' field in the Fast Facts 1 OSD."
        ::=  {  signalStatus  5  }

    channelNum    OBJECT-TYPE
        SYNTAX        INTEGER  ( 1 .. 4095  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The virtual channel number of the current signal. This
            object mirrors the 'VC #' field in the Fast Facts 1 OSD."
        ::=  {  signalStatus  6  }

    serviceNumber     OBJECT-TYPE
        SYNTAX        INTEGER  ( 1 .. 65535  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The MPEG-2 service number, as indicated in the virtual
            channel map, for the current signal. This object mirrors
            the 'Service #' field in the Fast Facts 1 OSD."
        ::=  {  signalStatus  7  }

    signalQuality     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 100  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The RF quality level of the current signal.
            This object mirrors the 'Signal Quality' field in
            the Fast Facts 1 OSD."
        ::=  {  signalStatus  8  }

    signalPower   OBJECT-TYPE
        SYNTAX        INTEGER  ( -800 .. 0  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The RF power level of the current signal, and measured in
            units of 0.1 dBm.  For example, '-650' represents -65.0 dBm."
        ::=  {  signalStatus  9  }

    ebNo          OBJECT-TYPE
        SYNTAX        INTEGER  ( -30 .. 150  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The signal to noise ration, Eb/No, of the current signal,
            and measured in units of 0.1 dB.  For example,
                '-20' represents -2.0 dB
                '150' represents +15.0 dB
            This object mirrors the 'Eb/No' field in the Fast Facts 1
            OSD."
        ::=  {  signalStatus  10  }

    symbolRate    OBJECT-TYPE
        SYNTAX        INTEGER  { sr29Msps ( 0 ) , sr19Msps ( 1 ) ,
                                 sr14Msps ( 2 ) , sr11Msps ( 3 ) ,
                                  sr9Msps ( 4 ) ,  sr7Msps ( 5 ) ,
                                  sr4Msps ( 6 ) ,  sr3Msps ( 7 ) ,
                                  unknown ( 8 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The symbol rate of the current signal.  This object
            mirrors the 'Symbol Rate' field in the Fast Facts 1
            OSD."
        ::=  {  signalStatus  11  }

    fecRate       OBJECT-TYPE
        SYNTAX        INTEGER  { cr5-11 ( 0 ) ,
                                  cr1-2 ( 1 ) , cr1-92-8PSK ( 2 ) ,
                                  cr3-5 ( 3 ) , cr2-05-8PSK ( 4 ) ,
                                  cr2-3 ( 5 ) , cr2-11-8PSK ( 6 ) ,
                                  cr3-4 ( 7 ) , cr4-5 ( 8 ) ,
                                  cr5-6 ( 9 ) , cr2-19-8PSK ( 10 ) ,
                                  cr7-8 ( 11 ) , cr2-30-8PSK ( 12 ) ,
                                  cr2-40-8PSK ( 13 ) , unknown ( 14 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The FEC rate of the current signal.  This object
            mirrors the 'FEC Rate' field in the Fast Facts 1
            OSD."
        ::=  {  signalStatus  12  }

    freq          OBJECT-TYPE
        SYNTAX        INTEGER  ( 950000 .. 2150000  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The frequency of the L-band signal, in kHz, that is
            applied to the antenna connector on the unit's back panel.
            This object mirrors the 'Frequency' field in the Fast
            Facts 1 OSD."
        ::=  {  signalStatus  13  }

    satelliteName     OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE ( 1 .. 4 ) )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "A 2 to 4 character satellite reference name, as indicated
            in the virtual channel map, for the current signal. This
            object mirrors the 'Sat' field in the Fast Facts 1 OSD."
        ::=  {  signalStatus  14  }

    xpndrNumber   OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 63  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The transponder number of the satellite, as indicated
            in the virtual channel map, for the current signal. A
            value of zero indicates the first transponder, and so
            on. This object mirrors the '/Xpndr' field in the Fast
            Facts 1 OSD."
        ::=  {  signalStatus  15  }

    polarization  OBJECT-TYPE
        SYNTAX        INTEGER  { h ( 0 ) , v ( 1 ) , unknown ( 2 ) }
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The polarization, as indicated in the virtual channel
            map, for the current signal. This object mirrors the
            'Polarization' field in the Fast Facts 1 OSD."
        ::=  {  signalStatus  16  }

    muxStatus  OBJECT-TYPE
        SYNTAX        INTEGER  { combined ( 0 ) , split ( 1 ) ,unknown ( 2 )}
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The multiplex format of the active L-Band signal"
        ::=  {  signalStatus  17  }


    ledStatus     OBJECT IDENTIFIER
    --      Allows an SNMP manager to read the current
    --      LED status of the unit.
        ::=  {  dsr  12 }

    signalLED     OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) , blink ( 2 )}
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The Signal LED is on (illuminated) when the unit
            recognizes the signal as a DigiCipher II signal. This object
            mirrors the LED on the front panel"
        ::=  {  ledStatus  1  }

    authorizedLED     OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) , blink ( 2 )}
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The Authorized LED is on (illuminated) when the Signal
            LED is on and either (1) the programmer has transmitted the
            access messages to allow the unit to decrypt the signal or
            (2) the signal has been transmitted in an unencrypted of
            fixed encrypted mode. This object mirrors the LED on the
            front panel"
        ::=  {  ledStatus  2  }

    alarmConditionLED     OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) , blink ( 2 )}
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The Alarm condition LED is on (illuminated) when the IRD is in alarm state"
        ::=  {  ledStatus  3  }

    
    downloadLED     OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) , blink ( 2 )}
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The Download LED is on ( illuminated ) when an active download is in
            progress"
        ::=  {  ledStatus  8  }

    retuneMonitorMIB      OBJECT IDENTIFIER
    --      Allows an SNMP manager to monitor and control retune message
    --      statistics.
        ::=  {  dsr  13  }

    retuneMonitorEnable  OBJECT-TYPE
        SYNTAX        INTEGER  { off ( 0 ) , on ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Enables retune monitoring by the IRD. When read, this leaf
            provides the actual enable/disable status of the retune monitoring
            function in the IRD, and not just the last value that was written
            to this leaf.  The IRD resets retuneMsgStatistic and all entries in
            the retuneMsgTable each time it receives an enable message;
            toggling enable/disable/enable is not required for this reset."
        ::=  {  retuneMonitorMIB  1  }

    retuneMsgStatistic  OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The total number of new retune messages.  This counter is
            incremented whenever the IRD detects a new retune message, but
            is not incremented by each instance (duplicate) of a retune
            message.  This counter provides a useful troubleshooting tool for
            determining whether the IRD is detecting any retune messages.
            Range = 0x0000 - 0xFFFF.  Note: This counter is not incremented for
            every possible retune message.  This counter is only incremented
            when a retune becomes active.  The IRD ignores retune messages in
            which the activation time is still in the future.  The IRD also
            ignores any retune message if the activation time is further in the
            past than the current retune for the same virtual network."
        ::=  {  retuneMonitorMIB  2  }

     retuneMsgVirtNetworkIDindex  OBJECT-TYPE
        SYNTAX        INTEGER  (  0  ..  255  )
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "A table of retune messages is indexed by this target virtual network
            ID.  This table does not have entries for each instance
            (duplicate) of a retune message that the IRD receives because the
            uplink repeatedly broadcasts instances of each retune message for
            the duration of the virtual network program.  Instead, this table
            presents select metrics describing the retune message, as described
            below.
            Each table entry pertains to the most recent active retune message.
            A retune message is considered active when the activation time is
            in the past.  The IRD replaces the current retuneMsgEntry when a
            new retune message is received having an activation time that is in
            the past but nearer to the present time than is the activation time
            of the current retuneMsgEntry.  The IRD ignores retune messages in
            which the activation time is in the future.
            The virtual network ID indicates which retune message is targeted.
            This leaf serves as the index for the table.  Make sure this index
            is set prior to accessing the following retune message parameters.
            Range = 1 - 256."
        ::=  {  retuneMonitorMIB  3  }

     retuneMsgVCTid  OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The target virtual channel map ID of the most recent active retune
            message.  Range = 0 - 0xFFFF."
        ::=  {  retuneMonitorMIB  4  }

     retuneMsgVirtChannel  OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 4095  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The target virtual channel of the most recent active retune
            message.  Range = 0 - 4095."
        ::=  {  retuneMonitorMIB  5  }

     retuneMsgActivationTime  OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE  (  1 .. 4  )  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The activation time of the most recent active retune message.
            The activation time is a 32-bit count of GPS seconds since
            January 6, 1980, representing the time at which the retune is
            scheduled to occur.  Past activation times are interpreted as
            immediate activation."
        ::=  {  retuneMonitorMIB  6  }

     retuneMsgCRC  OBJECT-TYPE
        SYNTAX        OCTET STRING  ( SIZE  (  1 .. 4  )  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The 4-byte CRC value of the most recent active retune message."
        ::=  {  retuneMonitorMIB  7  }

     retuneMsgCnt  OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The total number of instances that the IRD has received for the
            most recent active retune message.  Range = 0 - 0xFFFF.  Note:
            this counter is incremented when a retune message is received for
            which the CRC of that retune message matches the CRC of the current
            retune message (i.e., the value of retuneMsgCRC)."
        ::=  {  retuneMonitorMIB  8  }

    identificationGroup      OBJECT IDENTIFIER
    -- This group of objects contains the identification of the software
    -- and hardware for a specific unit.
        ::=  {  dsr  14  }

    identMIBVersion   OBJECT-TYPE
        SYNTAX        DisplayString
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The version number of this MIB."
        REFERENCE        " -- "
        ::=  {  identificationGroup  1  }

    identUnitModel    OBJECT-TYPE
        SYNTAX        DisplayString
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The unit model of this IRD."
        REFERENCE        " -- "
        ::=  {  identificationGroup  2  }


    acpMib      OBJECT IDENTIFIER
    -- This group of objects contains the setup for the ACPs
        ::=  {  dsr  15  }

    acpMode OBJECT-TYPE
       SYNTAX   INTEGER { auto ( 0 ), manual ( 1 ) }
       MAX-ACCESS    read-write
       STATUS    current
       DESCRIPTION
          "Setup mode for the authorization control processor."
          ::= { acpMib 1 }

    acpIndex OBJECT-TYPE
        SYNTAX  INTEGER ( 0 .. 63 )
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
              "Number uniquely identifying the ACP and keystream pair."
        ::= { acpMib 2 }

    acpProgram OBJECT-TYPE
        SYNTAX INTEGER ( 0 .. 65535 )
    MAX-ACCESS read-write
    STATUS  current
    DESCRIPTION
            "The MPEG service number of the program."
        ::= { acpMib 3 }

    acpUnitAddress OBJECT-TYPE
        SYNTAX OCTET STRING ( SIZE ( 15 ) )
        MAX-ACCESS read-only
    STATUS  current
    DESCRIPTION
            "The electronic address of the selected ACP in the following format:
                ddd-ddddd-ddddd where d = decimal digit."
        ::= { acpMib 4 }

    acpKeyStream OBJECT-TYPE
        SYNTAX  INTEGER ( 0 .. 3 )
        MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
              "The selected keystream."
        ::= { acpMib 5 }

    acpAuthState           OBJECT-TYPE
        SYNTAX          OCTET STRING ( SIZE ( 2 )  )
        MAX-ACCESS      read-only
    STATUS     current
    DESCRIPTION
              " This field displays the authorization status of the ACP 
                for the current Service association.
                AU -- Authorization
                NA -- Not Authorized
                The unit presents dashes when no information is available "
        ::= { acpMib 6 }

    acpEncryptMode OBJECT-TYPE
        SYNTAX  OCTET STRING ( SIZE ( 1 .. 2 )  )
        MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
              "This field displays the Encryption Mode of 
               the service being decrypted by the selected ACP.
               The different values are
               FP - Fixed Program Key
               FW - Fixed Working Key
               S  - Scrambled
               ZK - Unencrypted
               The unit presents dashes when no information is available "
        ::= { acpMib 7 }

   testMib      OBJECT IDENTIFIER
    -- This group of objects contains test features for DVT team
        ::=  {  dsr  16  }
    audio  OBJECT IDENTIFIER
    -- This group of objects contains audio pid & checks for audio lock
        ::=  {  testMib  1  }
    primaryAudioLock  OBJECT-TYPE
    SYNTAX        INTEGER { unLocked ( 0 ) , locked ( 1 ) }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Primary Audio is locked or not"
         ::=  {  audio  1  }
    secondaryAudioLock  OBJECT-TYPE
    SYNTAX        INTEGER { unLocked ( 0 ) , locked ( 1 ) }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Secondary Audio is locked or not"
         ::=  {  audio  2  }
   
   
    primaryAudioPID  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 8191 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Primary Audio PID "
         ::=  {  audio  4  }
    secondaryAudioPID  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 8191 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Secondary Audio PID "
         ::=  {  audio  5 }
  
    
    video  OBJECT IDENTIFIER
    -- This group of objects contains video pid & checks for video lock
        ::=  {  testMib  2  }

    videoLock  OBJECT-TYPE
    SYNTAX        INTEGER { unLocked ( 0 ) , locked ( 1 ) }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Video is locked or not"
         ::=  {  video  1  }
    videoPID  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 8191 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives video PID "
         ::=  {  video  2  }

    codeDownload  OBJECT IDENTIFIER
    -- This object contains code down status
        ::=  {  testMib  3  }
    codeDownloadBit  OBJECT-TYPE
    SYNTAX        INTEGER { off ( 0 ) , on ( 1 ) }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Monitor the Code Download process
           0 - off
           1 - on
        "
         ::=  {  codeDownload  1  }

   irdStatus  OBJECT IDENTIFIER
    -- This object contains ird (ledStatus) status
        ::=  {  testMib  4  }

    falseLock  OBJECT IDENTIFIER
    -- This object contains false lock status
        ::=  {  irdStatus  1  }
    falseLockStatus  OBJECT-TYPE
    SYNTAX        INTEGER { unLocked ( 0 ) , locked ( 1 ) }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Checks for false lock"
         ::=  {  falseLock  1  }

   alarmLedStatus  OBJECT IDENTIFIER
    -- This object contains alarmConditionLED status
        ::=  {  irdStatus  2 }
    alarmLEDBlinkStatus  OBJECT-TYPE
    SYNTAX        INTEGER  { notBlinking ( 0 ) , blinking ( 1 ) }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "0 - LED is not blinking(OFF/ON)
         1 - LED is blinking   "
         ::=  {  alarmLedStatus  1  }
    messages  OBJECT IDENTIFIER
    -- This object contains message counts for Subtitle Messages and Finger print messages
        ::=  {  testMib  5  }

    patMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives PAT Message Count "
         ::=  {  messages  1  }

    caMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives CA Message Count "
         ::=  {  messages  2  }
    pmtMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives PMT message Count "
         ::=  {  messages  3  }
    niMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Network Information Message Count "
         ::=  {  messages  4  }

    networkTextMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Network text Message Count "
         ::=  {  messages  5  }
    virtualChannelMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Virtual channel message Count "
         ::=  {  messages  6  }
    subtitleMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Subtitle Message Count "
         ::=  {  messages  7  }

    coMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Channel Override Message Count "
         ::=  {  messages  8  }
    dwnldPreMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Download preamble message Count "
         ::=  {  messages  9  }
    dwnldMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Download Message Count "
         ::=  {  messages  10  }

    emmMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives EMM Message Count "
         ::=  {  messages  11  }
    fingerPrintMessageCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Finger Print message Count "
         ::=  {  messages  12  }
    hcmMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives hardware control Message Count "
         ::=  {  messages  13  }

    uimMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Unit information message Count "
         ::=  {  messages  14  }
    evenBlkoutMsgCount  OBJECT-TYPE
    SYNTAX        INTEGER ( 0 .. 65535 )
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        " Gives Event Blckout Message message Count "
         ::=  {  messages  15  }
    rf  OBJECT IDENTIFIER
    -- This object contains RF diagnostic data
        ::=  {  testMib  6  }
    frequencyOffset     OBJECT-TYPE
        SYNTAX        INTEGER  ( -100 .. 100  )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The acquired offset of the L-band frequency in MHz. " 
        ::=  {  rf 1  }
    
    ber     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535 )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "This displays Bit Errors. " 
        ::=  {  rf 2  }
    ebno     OBJECT-TYPE
        SYNTAX        INTEGER  ( -10 .. 50 )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "This displays the Eb/No measured in the IRD. " 
        ::=  {  rf 3  }
    rserror     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535 )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "This displays the Reed Solomon Errors. " 
        ::=  {  rf 4  }
    lostlockcount     OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535 )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "This displays the number of times tuner lost lock. " 
        ::=  {  rf 5  }
    clearrserror      OBJECT-TYPE
        SYNTAX        INTEGER  { yes ( 0 ) , no ( 1 ) }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Clears the rserror counter to zero. " 
        ::=  {  rf 6  }
    clearlostlockcount      OBJECT-TYPE
        SYNTAX				INTEGER  { yes ( 0 ) , no ( 1 ) }
        MAX-ACCESS			read-write
        STATUS				current
        DESCRIPTION
            "Clears the lostlockcount counter to zero. " 
        ::=  {  rf 7  }
    snr	    	      OBJECT-TYPE
        SYNTAX        INTEGER  ( 0 .. 65535 )
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "This displays the SNR value. " 
        ::=  {  rf 8  }

END