forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDM-570.mib
1856 lines (1666 loc) · 47.5 KB
/
CDM-570.mib
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
--
-- CDM-570.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 2.1 Build 199
-- Wednesday, June 28, 2006 at 15:05:10
--
CDM-570 DEFINITIONS ::= BEGIN
IMPORTS
comtechEFData
FROM ComtechEFData
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, MacAddress
FROM SNMPv2-TC;
cdm570 MODULE-IDENTITY
LAST-UPDATED "200602220000Z"
ORGANIZATION
"Comtech EF Data Corp."
CONTACT-INFO
"Comtech EF Data Crop.
2114 W. 7th Street
Tempe, AZ 85281 USA
Tel: 480-333-2200
Fax: 480-333-2540
Web: http://www.comtechefdata.com
"
DESCRIPTION
"Module Identity for both CDM-570 L-Band and
IF-Band Satellite Modems."
REVISION "200602220000Z"
DESCRIPTION
"Updated for 1.5.3 Maint. Release"
::= { comtechEFData 24 }
--
-- Node definitions
--
cdm570Objects OBJECT IDENTIFIER ::= { cdm570 1 }
cdm570System OBJECT IDENTIFIER ::= { cdm570Objects 1 }
cdm570SystemInfo OBJECT IDENTIFIER ::= { cdm570System 1 }
cdm570SerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (9))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used to query the unit 9-digit serial number.
Unit returns its S/N in the form xxxxxxxxx."
::= { cdm570SystemInfo 1 }
cdm570Temperature OBJECT-TYPE
SYNTAX INTEGER (-99..99)
UNITS "degrees Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unit returns the value of the internal
temperature, in degrees Celsius."
::= { cdm570SystemInfo 2 }
cdm570SystemEquipmentID OBJECT IDENTIFIER ::= { cdm570System 2 }
cdm570TurboOption OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
turbo(1),
tpcLdpc(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Turbo option, where:
0 = None
1 = Turbo
2 = TPC/LDPC"
::= { cdm570SystemEquipmentID 1 }
cdm570ModelNumber OBJECT-TYPE
SYNTAX INTEGER (0..999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modem model number."
::= { cdm570SystemEquipmentID 2 }
cdm570DataRateOption OBJECT-TYPE
SYNTAX INTEGER
{
base512kbps(0),
upto2048kbps(1),
upto5000kbps(2),
upto9980kbps(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data rate option, where:
0 = Base (512 kbps)
1 = Up to 2048 kbps
2 = Up to 5000 kbps
3 = Up to 9980 kbps"
::= { cdm570SystemEquipmentID 3 }
cdm570HigherOrderModulation OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
modulation8PSK8QAM(1),
modulation16QAM(2),
modulation8PSK8QAM16QAM(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Higer order modulation, where:
0 = None
1 = 8-PSK/8-QAM
2 = 16-QAM
3 = 8-PSK/8-QAM and 16-QAM"
::= { cdm570SystemEquipmentID 4 }
cdm570IPOption OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
installed(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP Controller card, where:
0 = None
1 = Installed"
::= { cdm570SystemEquipmentID 5 }
cdm570RSCodecOption OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
installed(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RS Codec Option, where:
0 = None
1 = Installed"
::= { cdm570SystemEquipmentID 6 }
cdm570SystemFirmware OBJECT IDENTIFIER ::= { cdm570System 3 }
cdm570FirmwareRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (34..37))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unit returns the value of the internal
software revision installed in the unit,
in the form of:
Boot: XXXXXX Bulk1: YYYYYY Bulk2: ZZZZZZ, where:
XXXXXX = software version of boot
YYYYYY = software version of bulk1
ZZZZZZ = software version of bulk2"
::= { cdm570SystemFirmware 1 }
cdm570Config OBJECT IDENTIFIER ::= { cdm570Objects 2 }
cdm570EthernetRemoteControl OBJECT IDENTIFIER ::= { cdm570Config 1 }
cdm570IpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address for the 10/100 BaseTx Ethernet
management port."
::= { cdm570EthernetRemoteControl 1 }
cdm570IpSubnetMask OBJECT-TYPE
SYNTAX INTEGER (0..31)
UNITS "network prefix"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The network prefix length for the 10/100 BaseTx
Ethernet management port."
::= { cdm570EthernetRemoteControl 2 }
cdm570DefaultGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the default gateway."
::= { cdm570EthernetRemoteControl 3 }
cdm570MacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the Ethernet interface."
::= { cdm570EthernetRemoteControl 4 }
cdm570AccessLists OBJECT IDENTIFIER ::= { cdm570EthernetRemoteControl 5 }
cdm570AccessListEnforcement OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable enforcement of the the access
list.
Note: Be sure that you have added the SNMP
browser's/manager's IP Address to the access
list before enabling access list filtering.
Otherwise, the SNMP browser/manager will no
longer be able to gain access to the unit."
::= { cdm570AccessLists 1 }
cdm570AccessListTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdm570AccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table that holds the access list."
::= { cdm570AccessLists 2 }
cdm570AccessListEntry OBJECT-TYPE
SYNTAX Cdm570AccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry for the access list table."
INDEX { cdm570AccessListIndex }
::= { cdm570AccessListTable 1 }
Cdm570AccessListEntry ::=
SEQUENCE {
cdm570AccessListIndex
INTEGER,
cdm570AccessIPAddress
IpAddress,
cdm570AccessSubnetMaskLength
INTEGER
}
cdm570AccessListIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the access list from 1..4."
::= { cdm570AccessListEntry 1 }
cdm570AccessIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP addresses that can access the unit.
The value of 0.0.0.0 means not defined."
::= { cdm570AccessListEntry 2 }
cdm570AccessSubnetMaskLength OBJECT-TYPE
SYNTAX INTEGER (0 | 8..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subnet mask length of the IP address
for the access list. Subnet mask can be
from 8..32. The value of 0 means not defined."
::= { cdm570AccessListEntry 3 }
cdm570SNMP OBJECT IDENTIFIER ::= { cdm570EthernetRemoteControl 6 }
cdm570SNMPTrapDestinationIpAddress1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address were SNMP notifications (traps)
are to be sent. This IP address should
correspond to a SNMP manager or browser."
::= { cdm570SNMP 1 }
cdm570SNMPTrapDestinationIpAddress2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address were SNMP notifications (traps)
are to be sent. This IP address should
correspond to a SNMP manager or browser."
::= { cdm570SNMP 2 }
cdm570SNMPTrapCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The community that will be included in SNMP
notifications (traps) that are sent from unit."
::= { cdm570SNMP 3 }
cdm570SNMPTrapVersion OBJECT-TYPE
SYNTAX INTEGER
{
snmpV1(1),
snmpV2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP version that will be used when sending
traps from the unit. SNMPv1 will send V1 traps.
SNMPv2 will send V2 notifications."
::= { cdm570SNMP 4 }
cdm570Tx OBJECT IDENTIFIER ::= { cdm570Config 2 }
cdm570TxFrequency OBJECT-TYPE
SYNTAX INTEGER (50000000..90000000 | 100000000..180000000 | 950000000..1950000000)
UNITS "Hz"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit frequency for both CDM-570L (L-Band) modem and
CDM-570 (IF-band) modems.
L-Band is 950 MHz to 1950 MHz.
IF-Band is 50 MHz to 90 MHz and 100 MHz to 180 MHz.
Units = Hz.
Resolution = 100 Hz."
::= { cdm570Tx 1 }
cdm570TxDataRate OBJECT-TYPE
SYNTAX INTEGER (2400..9980000)
UNITS "bps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tx data rate in bps (Varies based on chart below.)
Units = bps
Resolution = 1 bps
FEC Type Modulation Code Rate Data Rate High Rate
-------- ----------- ---------- --------------------- ---------
None BPSK Uncoded 4.8 kbps to 3.0 Mbps
None QPSK/OQPSK Uncoded 9.6 kbps to 5.0 Mbps
Viterbi BPSK Rate 1/2 2.4 kbps to 1.5 Mbps
Viterbi QPSK/OQPSK Rate 1/2 4.8 kbps to 3.0 Mbps
Viterbi QPSK/OQPSK Rate 3/4 7.2 kbps to 4.5 Mbps
Viterbi QPSK/OQPSK Rate 7/8 8.4 kbps to 5.0 Mbps
Vit + RS BPSK Rate 1/2 2.4 kbps to 1.363 Mbps
Vit + RS QPSK/OQPSK Rate 1/2 4.3 kbps to 2.727 Mbps
Vit + RS QPSK/OQPSK Rate 3/4 6.5 kbps to 4.091 Mbps
Vit + RS QPSK/OQPSK Rate 7/8 7.5 kbps to 4.666 Mbps
Vit + RS 16-QAM Rate 3/4 13.0 kbps to 4.0 Mbps
Vit + RS 16-QAM Rate 7/8 16.8 kbps to 4.666 Mbps
TCM + RS 8-PSK Rate 2/3 8.7 kbps to 4.4 Mbps
Turbo BPSK Rate 5/16 2.4 kbps to 0.937 Mbps
Turbo BPSK Rate 21/44 2.4 kbps to 1.430 Mbps
Turbo QPSK/OQPSK Rate 21/44 4.8 kbps to 2.860 Mbps
Turbo QPSK/OQPSK Rate 3/4 7.2 kbps to 4.5 Mbps N/A
Turbo QPSK/OQPSK Rate 7/8 8.4 kbps to 5.0 Mbps 5.25 Mbps
Turbo QPSK/OQPSK Rate 0.95 9.1 kbps to 5.0 Mbps 5.667 Mbps
Turbo 8-PSK/8-QAM Rate 3/4 10.8 kbps to 5.0 Mbps 6.75 Mbps
Turbo 8-PSK/Q-QAM Rate 7/8 13.6 kbps to 5.0 Mbps 7.875 Mbps
Turbo 8-PSK/Q-QAM Rate 0.95 15.3 kbps to 5.0 Mbps 8.5 Mbps
Turbo 16-QAM Rate 3/4 14.4 kbps to 5.0 Mbps 9.0 Mbps
Turbo 16-QAM Rate 7/8 16.8 kbps to 5.0 Mbps 9.98 Mbps"
::= { cdm570Tx 2 }
cdm570TxFECCodeRate OBJECT-TYPE
SYNTAX INTEGER
{
rate516(0),
rate2144(1),
rate12(2),
rate23(3),
rate34(4),
rate78(5),
rate095(6),
uncoded(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit code rate, where
0 = Rate 5/16 (Turbo only)
1 = Rate 22/44 (Turbo only)
2 = Rate 1/2
3 = Rate 2/3 (8-PSK TCM or 16-QAM only)
4 = Rate 3/4
5 = Rate 7/8
6 = Rate 0.95 (Turbo only)
7 = Rate 1/1 (Uncoded or No FEC)"
::= { cdm570Tx 3 }
cdm570TxModType OBJECT-TYPE
SYNTAX INTEGER
{
modBPSK(0),
modQPSK(1),
modOQPSK(2),
mod8PSK(3),
mod16QAM(4),
mod8QAM(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit modulation type, where:
0 = BPSK
1 = QPSK
2 = OQPSK
3 = 8-PSK
4 = 16-QAM (Turbo or Viterbi + RS only)
5 = 8-QAM
Depending on FEC type, not all of these
selections will be valid."
::= { cdm570Tx 4 }
cdm570TxFECType OBJECT-TYPE
SYNTAX INTEGER
{
uncoded(0),
viterbi(1),
viterbiReedSolomon(2),
tcmReedSolomon(5),
turbo(6),
tpcLdpc(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit FEC type where:
0 = Uncoded
1 = Viterbi
2 = Viterbit + Reed-Solomon
5 = TCM + Reed-Solomon (Code Rate = 2/3)
6 = Turbo
7 = TPC/LDPC
Depending on hardware, not all of these
selections will be valid."
::= { cdm570Tx 5 }
cdm570TxSpectrumInvert OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
inverted(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit spectrum invert selection, where:
0 = Normal
1 = Transmit spectrum inverted"
::= { cdm570Tx 6 }
cdm570TxDataInvert OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
inverted(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Invert transmit data, where:
0 = Normal
1 = Inverted"
::= { cdm570Tx 7 }
cdm570TxClockSource OBJECT-TYPE
SYNTAX INTEGER
{
internal(0),
txTerrestrial(1),
loopTimed(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit clock source, where:
0 = Internal
1 = Tx Terrestrial
2 = Loop-Timed"
::= { cdm570Tx 8 }
cdm570TxScrambler OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
onDefaul(1),
onIESS315(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit scrambler state, where:
0 = Off
1 = On (Default scrambler type)
2 = On = IESS-315 (Turbo only)"
::= { cdm570Tx 9 }
cdm570TxPowerLevel OBJECT-TYPE
SYNTAX INTEGER (-400..0)
UNITS "0.1 dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit output power level for both CDM-570L (L-Band) modem and
CDM-570 (IF-band) modem.
CDM-570L power level is between -40 and 0 dBm.
CDM-570 power level is between -25 and 0 dBm.
Units = 0.1 dBm"
::= { cdm570Tx 10 }
cdm570TxCarrierState OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
on(1),
rxTxInhibit(2),
externalControlReadOnly(3),
bucWarmUpDelayReadOnly(4),
stdmaBurstReadOnly(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transmit carrier state, where:
0 = Off
1 = On
2 = RTI (Receive/Transmit Inhibit)
The following values are query only:
3 = External Control (read only)
4 = BUC warm-up delay (read only)
5 = STDMA Burst (ready only)"
::= { cdm570Tx 11 }
cdm570TxSymbolRate OBJECT-TYPE
SYNTAX INTEGER (4800..3000000)
UNITS "sps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tx symbol rate in symbols per second (sps)
Units = symbols per second (sps)
Resolution = 1 sps"
::= { cdm570Tx 12 }
cdm570Rx OBJECT IDENTIFIER ::= { cdm570Config 3 }
cdm570RxFrequency OBJECT-TYPE
SYNTAX INTEGER (50000000..90000000 | 100000000..180000000 | 950000000..1950000000)
UNITS "Hz"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Receive frequency for both CDM-570L (L-Band) modem and
CDM-570 (IF-band) modems.
L-Band is 950 MHz to 1950 MHz.
IF-Band is 50 MHz to 90 MHz and 100 MHz to 180 MHz.
Units = Hz.
Resolution = 100 Hz."
::= { cdm570Rx 1 }
cdm570RxDataRate OBJECT-TYPE
SYNTAX INTEGER (2400..9980000)
UNITS "bps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx data rate in bps (Varies based on chart below.)
Units = bps
Resolution = 1 bps
FEC Type Modulation Code Rate Data Rate High Rate
-------- ----------- ---------- --------------------- ---------
None BPSK Uncoded 4.8 kbps to 3.0 Mbps
None QPSK/OQPSK Uncoded 9.6 kbps to 5.0 Mbps
Viterbi BPSK Rate 1/2 2.4 kbps to 1.5 Mbps
Viterbi QPSK/OQPSK Rate 1/2 4.8 kbps to 3.0 Mbps
Viterbi QPSK/OQPSK Rate 3/4 7.2 kbps to 4.5 Mbps
Viterbi QPSK/OQPSK Rate 7/8 8.4 kbps to 5.0 Mbps
Vit + RS BPSK Rate 1/2 2.4 kbps to 1.363 Mbps
Vit + RS QPSK/OQPSK Rate 1/2 4.3 kbps to 2.727 Mbps
Vit + RS QPSK/OQPSK Rate 3/4 6.5 kbps to 4.091 Mbps
Vit + RS QPSK/OQPSK Rate 7/8 7.5 kbps to 4.666 Mbps
Vit + RS 16-QAM Rate 3/4 13.0 kbps to 4.0 Mbps
Vit + RS 16-QAM Rate 7/8 16.8 kbps to 4.666 Mbps
TCM + RS 8-PSK Rate 2/3 8.7 kbps to 4.4 Mbps
Turbo BPSK Rate 5/16 2.4 kbps to 0.937 Mbps
Turbo BPSK Rate 21/44 2.4 kbps to 1.430 Mbps
Turbo QPSK/OQPSK Rate 21/44 4.8 kbps to 2.860 Mbps
Turbo QPSK/OQPSK Rate 3/4 7.2 kbps to 4.5 Mbps N/A
Turbo QPSK/OQPSK Rate 7/8 8.4 kbps to 5.0 Mbps 5.25 Mbps
Turbo QPSK/OQPSK Rate 0.95 9.1 kbps to 5.0 Mbps 5.667 Mbps
Turbo 8-PSK/8-QAM Rate 3/4 10.8 kbps to 5.0 Mbps 6.75 Mbps
Turbo 8-PSK/Q-QAM Rate 7/8 13.6 kbps to 5.0 Mbps 7.875 Mbps
Turbo 8-PSK/Q-QAM Rate 0.95 15.3 kbps to 5.0 Mbps 8.5 Mbps
Turbo 16-QAM Rate 3/4 14.4 kbps to 5.0 Mbps 9.0 Mbps
Turbo 16-QAM Rate 7/8 16.8 kbps to 5.0 Mbps 9.98 Mbps"
::= { cdm570Rx 2 }
cdm570RxFECCodeRate OBJECT-TYPE
SYNTAX INTEGER
{
rate516(0),
rate2144(1),
rate12(2),
rate23(3),
rate34(4),
rate78(5),
rate095(6),
uncoded(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx code rate, where
0 = Rate 5/16 (Turbo only)
1 = Rate 22/44 (Turbo only)
2 = Rate 1/2
3 = Rate 2/3 (8-PSK TCM or 16-QAM only)
4 = Rate 3/4
5 = Rate 7/8
6 = Rate 0.95 (Turbo only)
7 = Rate 1/1 (Uncoded or No FEC)"
::= { cdm570Rx 3 }
cdm570RxDemodType OBJECT-TYPE
SYNTAX INTEGER
{
demodBPSK(0),
demodQPSK(1),
demodOQPSK(2),
demod8PSK(3),
demod16QAM(4),
demod8QAM(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx demodulation type, where:
0 = BPSK
1 = QPSK
2 = OQPSK
3 = 8-PSK
4 = 16-QAM (Turbo or Viterbi + RS only)
5 = 8-QAM
Depending on FEC type, not all of these
selections will be valid."
::= { cdm570Rx 4 }
cdm570RxFECType OBJECT-TYPE
SYNTAX INTEGER
{
uncoded(0),
viterbi(1),
viterbiReedSolomon(2),
tcmReedSolomon(5),
turbo(6),
tpcLdpc(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx FEC type where:
0 = Uncoded
1 = Viterbi
2 = Viterbit + Reed-Solomon
5 = TCM + Reed-Solomon (Code Rate = 2/3)
6 = Turbo
7 = TPC/LDPC
Depending on hardware, not all of these
selections will be valid."
::= { cdm570Rx 5 }
cdm570RxEbNoAlarmPoint OBJECT-TYPE
SYNTAX INTEGER (1..160)
UNITS "0.1 dB"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx Eb/No alarm point in 0.1 dB, with a
range between 0.1 dB and 16 dB.
Units = 0.1 dB.
Resolution = 0.1 dB."
::= { cdm570Rx 6 }
cdm570RxSpectrumInvert OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
inverted(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx spectrum inversion, where:
0 = Normal
1 = Rx spectrum inverted"
::= { cdm570Rx 7 }
cdm570RxDataInvert OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
inverted(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Invert receive data, where:
0 = Normal
1 = Inverted"
::= { cdm570Rx 8 }
cdm570RxBufferSize OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
size1024bits(1),
size2048bits(2),
size4096bits(3),
size8192bits(4),
size16384bits(5),
size32786bits(6),
size128bits(7),
size256bits(8),
size512bits(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx buffer size, where:
0 = Buffer disabled (Clock mode = Rx satellite)
1 = +/- 1024 bits
2 = +/- 2048 bits
3 = +/- 4096 bits
4 = +/- 8192 bits
5 = +/- 16384 bits
6 = +/- 32786 bits
7 = +/- 128 bits
8 = +/- 256 bits
9 = +/- 512 bits"
::= { cdm570Rx 9 }
cdm570RxDescrambler OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
onDefault(1),
onIESS315(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx descrambler state, where:
0 = Off
1 = On (default descrambler type)
2 = On - IESS-315 (Turbo only)"
::= { cdm570Rx 10 }
cdm570RxDemodAcqSweepWidth OBJECT-TYPE
SYNTAX INTEGER (1..200)
UNITS "KHz"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rx +/- acquisition sweep range of demodulator,
in KHz, ranging from:
+/- 1 to +/- 32 KHz (rates < 625 ksym/second)
or +/- 1 to 200 KHz (rates >= 625 ksym/second)."
::= { cdm570Rx 11 }
cdm570RxSymbolRate OBJECT-TYPE
SYNTAX INTEGER (4800..3000000)
UNITS "sps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rx symbol rate in symbols per second (sps)
Units = symbols per second (sps)
Resolution = 1 sps"
::= { cdm570Rx 12 }
cdm570Frame OBJECT IDENTIFIER ::= { cdm570Config 4 }
cdm570FramingMode OBJECT-TYPE
SYNTAX INTEGER
{
unframed(0),
framingEDMAC(1),
framingEDMAC2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Unit operating mode, where:
0 = Unframed
1 = EDMAC Framing
2 = EDMAC-2 Framing"
::= { cdm570Frame 1 }
cdm570EDMAC OBJECT IDENTIFIER ::= { cdm570Frame 2 }
cdm570EDMACMode OBJECT-TYPE
SYNTAX INTEGER
{
idle(0),
master(1),
slave(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EDMAC mode, where:
0 = EDMAC Idle
1 = EDMAC Master
2 = EDMAC Slave"
::= { cdm570EDMAC 1 }
cdm570EDMACAddress OBJECT-TYPE
SYNTAX INTEGER (10..9990)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For a Master, the EDMA Address is the range of
addresses of distant-end units (modems or
transceivers) which this unit, as the Master,
will forward messages for. Only values which
are integer multiples of ten are permitted.
(10, 20, 30, 40, etc....)
For a Slave, the EDMAC address is the address
of the slave and is query only."
::= { cdm570EDMAC 2 }
cdm570AUPC OBJECT IDENTIFIER ::= { cdm570Frame 3 }
cdm570AUPCEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"AUPC mode enable/disable, where:
0 = Disable
1 = Enable
Note: To enable AUPC, framing must
FIRST be enabled."
::= { cdm570AUPC 1 }
cdm570AUPCRemoteDemodTargetEbNo OBJECT-TYPE
SYNTAX INTEGER (0..149)
UNITS "0.1 dB"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Target Eb/No value for remote demod,
from 0.0 to 14.9 dB.
Units = 0.1 dB."
::= { cdm570AUPC 2 }
cdm570AUPCTxPowerMaxIncrease OBJECT-TYPE
SYNTAX INTEGER (0..9)
UNITS "dB"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Max increase in Tx Power permitted,
from 0 to 9 dB.
Units = dB."
::= { cdm570AUPC 3 }
cdm570AUPCActionOnMaxPower OBJECT-TYPE
SYNTAX INTEGER
{
noAction(0),
generateTxAlarm(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines action on max. power condition, where:
0 = No action
1 = Generate Tx alarm"
::= { cdm570AUPC 4 }
cdm570AUPCActionOnRemoteDemodUnlock OBJECT-TYPE
SYNTAX INTEGER
{
goToNominalPower(0),
goToMaxPower(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines action on remote demod unlock, where:
0 = Go to nominal power
1 = Go to max power"
::= { cdm570AUPC 5 }
cdm570Interface OBJECT IDENTIFIER ::= { cdm570Config 5 }
cdm570DataInterface OBJECT-TYPE
SYNTAX INTEGER
{
interfaceEIA422(0),
interfaceV35(1),
interfaceEIA232(2),
interfaceG703T1AMI(3),
interfaceG703T1B8ZS(4),
interfaceG703E1UnbalAMI(5),
interfaceG703E1UnbalHDB3(6),
interfaceG703E1BalAMI(7),
interfaceG703E1BalHDB3(8),
interfaceIP(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Terrestrial interface type, where:
0 = EIA-422/EIA-530 DCE
1 = V.35 DCE
2 = EIA-232 (sync)
3 = G.703 T1 AMI
(forces Rx and Tx data rates to 1544 kbps)
4 = G.703 T1 B8ZS
(forces Rx and Tx data rates to 1544 kbps)
5 = G.703 E1 Unbal AMI
(forces Rx and Tx data rates to 2048 kbps)
6 = G.703 E1 Unbal HDB3
(forces Rx and Tx data rates to 2048 kbps)
7 = G.703 E1 Bal AMI
(forces Rx and Tx data rates to 2048 kbps)
8 = G.703 E1 Bal HDB3
(forces Rx and Tx data rates to 2048 kbps)
9 = IP (Ethernet)"
::= { cdm570Interface 1 }
cdm570RTSCTSOper OBJECT IDENTIFIER ::= { cdm570Interface 2 }
cdm570RTS OBJECT-TYPE
SYNTAX INTEGER
{
loopRTSCTSNoAction(0),
loopRTSControlsTx(1),
ignoreRTSAssertCTS(2),
ignoreRTSCTS(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines how RTS/CTS will operate at the main data
interface, where:
0 = RTS/CTS Loop, No Action
(RTS and CTS are looped, so that CTS echoes
the state of RTS, but RTS does not control
the ON/OFF state of the carrier)
1 = Loop, RTS controls Tx Ouput
(RTS and CTS are looped, so that CTS
echoes the state of RTS and RTS
controls the ON/OFF state of the
carrier - the modem will not bring
up its TX carrier until RTS is asserted.)
2 = Ignore RTS, Assert CTS
Query Only:
3 = 1:N system in use, RTS/CTS ignored