forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDD-564.mib
2950 lines (2594 loc) · 77.5 KB
/
CDD-564.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
--
-- CDD-564.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 2.1 Build 199
-- Tuesday, January 17, 2006 at 13:37:32
--
CDD-564 DEFINITIONS ::= BEGIN
IMPORTS
comtechEFData
FROM ComtechEFData
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Counter32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC;
cdd564 MODULE-IDENTITY
LAST-UPDATED "200409231700Z"
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 for CDD-564 Satellite Demod"
REVISION "200512061018Z"
DESCRIPTION
"1.5.3 Maintenance Release."
::= { comtechEFData 25 }
--
-- Node definitions
--
cdd564Objects OBJECT IDENTIFIER ::= { cdd564 1 }
cdd564Administration OBJECT IDENTIFIER ::= { cdd564Objects 1 }
cdd564AccessLists OBJECT IDENTIFIER ::= { cdd564Administration 1 }
cdd564AccessListTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdd564AccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table for the access list."
::= { cdd564AccessLists 1 }
cdd564AccessListEntry OBJECT-TYPE
SYNTAX Cdd564AccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry for the access list table."
INDEX { cdd564AccessListIndex }
::= { cdd564AccessListTable 1 }
Cdd564AccessListEntry ::=
SEQUENCE {
cdd564AccessListIndex
INTEGER,
cdd564AccessIPAddress
IpAddress,
cdd564AccessSubnetMaskLength
INTEGER
}
cdd564AccessListIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the access list from 1..4."
::= { cdd564AccessListEntry 1 }
cdd564AccessIPAddress 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."
::= { cdd564AccessListEntry 2 }
cdd564AccessSubnetMaskLength 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."
::= { cdd564AccessListEntry 3 }
cdd564AccessListEnforcement 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."
::= { cdd564AccessLists 2 }
cdd564Features OBJECT IDENTIFIER ::= { cdd564Administration 2 }
cdd564PingReply OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable ping reply from unit."
::= { cdd564Features 1 }
cdd564Telnet OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable telnet access to unit."
::= { cdd564Features 2 }
cdd564IGMP OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the Internet Group Management
Protocol (IGMP)."
::= { cdd564Features 3 }
cdd564ForwardMulticasts OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable forwarding all multicasts
received from the Satellite interface
to the Ethernet interface."
::= { cdd564Features 4 }
cdd564FeaturesTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdd564FeaturesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table (per demodulator) of FAST Features."
::= { cdd564Features 5 }
cdd564FeaturesEntry OBJECT-TYPE
SYNTAX Cdd564FeaturesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry for the FAST Feature (per demod) table."
INDEX { cdd564FeatureIndex }
::= { cdd564FeaturesTable 1 }
Cdd564FeaturesEntry ::=
SEQUENCE {
cdd564FeatureIndex
INTEGER,
cdd564HeaderCompression
INTEGER
}
cdd564FeatureIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the FAST Feature (per demod) table."
::= { cdd564FeaturesEntry 1 }
cdd564HeaderCompression OBJECT-TYPE
SYNTAX INTEGER
{
unavailable(0),
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Availability of header compression is based on
FAST features
Note: To use header compression, it must be
FAST available and enabled on both the
transmit and receive sides."
::= { cdd564FeaturesEntry 2 }
cdd564WorkingMode OBJECT-TYPE
SYNTAX INTEGER
{
routerSmallNetworkMode(1),
routerLargeNetworkMode(2),
routerPointToPointMode(3),
routerVipersatMode(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the system's working mode.
The CDM-IP can operate in any of these modes.
1. Router - Small Network Mode - The system functions as router and
uses the route table to determine how to forward packets in a
small network HDLC address mode. The HDLC packet uses a 1 byte
HDLC address. The valid values are from 1 to 254 (0x1 - 0xFE).
2. Router - Small Network Mode - The system functions as router and
uses the route table to determine how to forward packets in a
large network HDLC address mode. The HDLC packet uses a 2- byte
HDLC address. The valid values are from 1 to 32766 (0x1 - 0x7FFE).
3. Router - Point To Point Mode - The system functions as router but
does not use HDLC addresses.
4. Router - Vipersat Mode - The system functions as router and is
configured to work in a Vipersat network.
*** IMPORTANT NOTE ***
Changing Working mode requires the system to reboot.
System configuration is saved before rebooting.
Please make sure you are setting the correct value.
"
::= { cdd564Features 6 }
cdd5643xDESEncryption OBJECT IDENTIFIER ::= { cdd564Administration 3 }
cdd5643xDESRxKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdd5643xDESRxKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table (one row per demod) for triple DES
(3xDES) receive decrypt keys."
::= { cdd5643xDESEncryption 1 }
cdd5643xDESRxKeyEntry OBJECT-TYPE
SYNTAX Cdd5643xDESRxKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry (per demod) of the 3xDES receive
decrypt key table."
INDEX { cdd5643xDESRxKeyIndex }
::= { cdd5643xDESRxKeyTable 1 }
Cdd5643xDESRxKeyEntry ::=
SEQUENCE {
cdd5643xDESRxKeyIndex
INTEGER,
cdd5643xDESRxKey1
DisplayString,
cdd5643xDESRxKey2
DisplayString,
cdd5643xDESRxKey3
DisplayString,
cdd5643xDESRxKey4
DisplayString,
cdd5643xDESRxKey5
DisplayString,
cdd5643xDESRxKey6
DisplayString,
cdd5643xDESRxKey7
DisplayString,
cdd5643xDESRxKey8
DisplayString
}
cdd5643xDESRxKeyIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index (per demod) of the 3xDES receive
decrypt key table."
::= { cdd5643xDESRxKeyEntry 1 }
cdd5643xDESRxKey1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 2 }
cdd5643xDESRxKey2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 3 }
cdd5643xDESRxKey3 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 4 }
cdd5643xDESRxKey4 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 5 }
cdd5643xDESRxKey5 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 6 }
cdd5643xDESRxKey6 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 7 }
cdd5643xDESRxKey7 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 8 }
cdd5643xDESRxKey8 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 3xDES receive decrypt key.
The key length is 192 bits
(24 bytes or 48 characters)."
::= { cdd5643xDESRxKeyEntry 9 }
cdd564SMTP OBJECT IDENTIFIER ::= { cdd564Administration 4 }
cdd564SMTPServerIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the SMTP server for sending
problem reports. This IP adderess should
correspond to a local Mail server."
::= { cdd564SMTP 1 }
cdd564SMTPDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SMTP Domain for sending problem reports.
This value should be comtechefdata.com."
::= { cdd564SMTP 2 }
cdd564SMTPUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user name for sending problem reports.
This value should be cdmipsupport."
::= { cdd564SMTP 3 }
cdd564SNMP OBJECT IDENTIFIER ::= { cdd564Administration 5 }
cdd564SNMPTrapDestinationIPAddress 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."
::= { cdd564SNMP 1 }
cdd564SNMPTrapCommunity 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."
::= { cdd564SNMP 2 }
cdd564SNMPTrapVersion 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."
::= { cdd564SNMP 3 }
cdd564SNMPAuthenticationFailureCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The community that did not match valid SNMP
Read or Write community.
Note: This is ONLY used in the Authentication
Failure trap."
::= { cdd564SNMP 4 }
cdd564SNMPAuthenticationFailureIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP address that did not send a valid SNMP
Read or Write community.
Note: This is ONLY used in the Authentication
Failure trap."
::= { cdd564SNMP 5 }
cdd564SNMPTrapDestinationIPAddress2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The secondary IP address were SNMP notifications (traps)
are to be sent. This IP address should correspond
to a secondary SNMP manager or browser."
::= { cdd564SNMP 6 }
cdd564Interfaces OBJECT IDENTIFIER ::= { cdd564Objects 2 }
cdd564EthernetInterface OBJECT IDENTIFIER ::= { cdd564Interfaces 1 }
cdd564MACAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address assigned to the Ethernet
interface."
::= { cdd564EthernetInterface 1 }
cdd564EthernetSpeed OBJECT-TYPE
SYNTAX INTEGER
{
auto(1),
halfDuplex10M(2),
halfDuplex100M(3),
fullDuplex10M(4),
fullDuplex100M(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The speed of the Ethernet interface."
::= { cdd564EthernetInterface 2 }
cdd564IPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address assigned to the Ethernet
interface."
::= { cdd564EthernetInterface 3 }
cdd564SubnetMaskLen OBJECT-TYPE
SYNTAX INTEGER (8..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subnet mask length of the IP address."
::= { cdd564EthernetInterface 4 }
cdd564DemodulatorInterfaces OBJECT IDENTIFIER ::= { cdd564Interfaces 2 }
cdd564HDLCAddressMode OBJECT-TYPE
SYNTAX INTEGER
{
smallNetworkMode(1),
largeNetworkMode(2),
pointToPointMode(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of HDLC address used for sending
packets over satellite interface can range
from 0 - 2 bytes.
The satellite interface will operate in one of
the following modes:
1.Small Network mode - The packet uses a
1 byte HDLC address. The valid
values are from 1 to 254 (0x1 - 0xFE).
2.Large Network mode - The packet uses a 2
byte HDLC address. The valid values are
from 1 to 32766 (0x1 - 0x7FFE).
3. Point To Point mode - The packet does not use
a HDLC address.
An HDLC address cannot have 0x00 or 0xFF in
least Significant Byte. i.e., 0x400 or 0x6ff
or 0x11ff are NOT valid HDLC addresses.
"
::= { cdd564DemodulatorInterfaces 2 }
cdd564HDLCAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdd564HDLCAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table for the Demodulator HDLC Addresses."
::= { cdd564DemodulatorInterfaces 3 }
cdd564HDLCAddressEntry OBJECT-TYPE
SYNTAX Cdd564HDLCAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of the HDLC Address table."
INDEX { cdd564HDLCAddressIndex }
::= { cdd564HDLCAddressTable 1 }
Cdd564HDLCAddressEntry ::=
SEQUENCE {
cdd564HDLCAddressIndex
INTEGER,
cdd564HDLCAddress1
INTEGER,
cdd564HDLCAddress2
INTEGER,
cdd564HDLCAddress3
INTEGER,
cdd564HDLCAddress4
INTEGER
}
cdd564HDLCAddressIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Demod number corresponding to 1 of 4
demodulators."
::= { cdd564HDLCAddressEntry 1 }
cdd564HDLCAddress1 OBJECT-TYPE
SYNTAX INTEGER (0 | 1..32766)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The HDLC address #1 for the satellite
interface.
The valid values are:
1. Small network, 1 to 254 (0x1 - 0xFE).
2. Large network, 1 to 32766 (0x1 - 0x0x7FFE).
3. Point to point, not used.
4. EasyConnect, not used.
HDLC address can not have 0x00 or 0xFF
in least significant byte, i.e., 0x400 or
0x6ff or 0x11ff are NOT valid HDLC addresses.
Deletion:
To delete the HDLC address, set it to zero.
"
::= { cdd564HDLCAddressEntry 3 }
cdd564HDLCAddress2 OBJECT-TYPE
SYNTAX INTEGER (0 | 1..32766)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The HDLC address #2 for the satellite
interface.
The valid values are:
1. Small network, 1 to 254 (0x1 - 0xFE).
2. Large network, 1 to 32766 (0x1 - 0x0x7FFE).
3. Point to point, not used.
4. EasyConnect, not used.
HDLC address can not have 0x00 or 0xFF
in least significant byte, i.e., 0x400 or
0x6ff or 0x11ff are NOT valid HDLC addresses.
Deletion:
To delete the HDLC address, set it to zero."
::= { cdd564HDLCAddressEntry 4 }
cdd564HDLCAddress3 OBJECT-TYPE
SYNTAX INTEGER (0 | 1..32766)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The HDLC address #3 for the satellite
interface.
The valid values are:
1. Small network, 1 to 254 (0x1 - 0xFE).
2. Large network, 1 to 32766 (0x1 - 0x0x7FFE).
3. Point to point, not used.
4. EasyConnect, not used.
HDLC address can not have 0x00 or 0xFF
in least significant byte, i.e., 0x400 or
0x6ff or 0x11ff are NOT valid HDLC addresses.
Deletion:
To delete the HDLC address, set it to zero."
::= { cdd564HDLCAddressEntry 5 }
cdd564HDLCAddress4 OBJECT-TYPE
SYNTAX INTEGER (0 | 1..32766)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The HDLC address #4 for the satellite
interface.
The valid values are:
1. Small network, 1 to 254 (0x1 - 0xFE).
2. Large network, 1 to 32766 (0x1 - 0x0x7FFE).
3. Point to point, not used.
4. EasyConnect, not used.
HDLC address can not have 0x00 or 0xFF
in least significant byte, i.e., 0x400 or
0x6ff or 0x11ff are NOT valid HDLC addresses.
Deletion:
To delete the HDLC address, set it to zero."
::= { cdd564HDLCAddressEntry 6 }
cdd564Routes OBJECT IDENTIFIER ::= { cdd564Objects 3 }
cdd564RouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdd564RouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The route table used in Router mode."
::= { cdd564Routes 1 }
cdd564RouteEntry OBJECT-TYPE
SYNTAX Cdd564RouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry for the the route table."
INDEX { cdd564RouteIndex }
::= { cdd564RouteTable 1 }
Cdd564RouteEntry ::=
SEQUENCE {
cdd564RouteIndex
INTEGER,
cdd564RouteName
DisplayString,
cdd564RouteDestAddress
IpAddress,
cdd564RouteDestMaskLen
INTEGER,
cdd564RouteNextHopAddress
IpAddress,
cdd564RouteMulticast
INTEGER,
cdd564RouteInterface
INTEGER,
cdd564RouteRowStatus
INTEGER
}
cdd564RouteIndex OBJECT-TYPE
SYNTAX INTEGER (1..1024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index for the route table."
::= { cdd564RouteEntry 1 }
cdd564RouteName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the route. All routes must be
named."
::= { cdd564RouteEntry 2 }
cdd564RouteDestAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination IP address for the route."
::= { cdd564RouteEntry 3 }
cdd564RouteDestMaskLen OBJECT-TYPE
SYNTAX INTEGER (0..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subnet mask lenght for the destination IP
address."
::= { cdd564RouteEntry 4 }
cdd564RouteNextHopAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The next hop IP address for the route."
::= { cdd564RouteEntry 5 }
cdd564RouteMulticast OBJECT-TYPE
SYNTAX INTEGER
{
notApplicable(0),
forward(1),
filtered(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the route is a multicast, packets can be:
1. forwarded
2. filtered
If the route is unicast, the field is not applicable."
::= { cdd564RouteEntry 6 }
cdd564RouteInterface OBJECT-TYPE
SYNTAX INTEGER { toEthernet(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Routes are destined to the Ethernet interface."
::= { cdd564RouteEntry 7 }
cdd564RouteRowStatus OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
notInService(2),
notReady(3),
createAndGo(4),
createAndWait(5),
destroy(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value is used for status of route:
active(1) - The route is active.
These values are used to create or delete route:
createAndGo(4) - The route is to be created.
destroy(6) - The route to be deleted."
::= { cdd564RouteEntry 8 }
cdd564Protocols OBJECT IDENTIFIER ::= { cdd564Objects 4 }
cdd564IGMPConfig OBJECT IDENTIFIER ::= { cdd564Protocols 1 }
cdd564IGMPServer OBJECT IDENTIFIER ::= { cdd564IGMPConfig 1 }
cdd564IGMPQueryPeriod OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IGMP query period, in seconds."
::= { cdd564IGMPServer 1 }
cdd564IGMPMaxResponseTime OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IGMP maximum response time, in seconds."
::= { cdd564IGMPServer 2 }
cdd564IGMPMaxMissBeforeLeavingGroup OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of missed responses before
leaving the IGMP group."
::= { cdd564IGMPServer 3 }
cdd564IGMPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cdd564IGMPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table for IGMP groups."
::= { cdd564IGMPConfig 3 }
cdd564IGMPEntry OBJECT-TYPE
SYNTAX Cdd564IGMPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry for the IGMP group table."
INDEX { cdd564IGMPIndex }
::= { cdd564IGMPTable 1 }
Cdd564IGMPEntry ::=
SEQUENCE {
cdd564IGMPIndex
INTEGER,
cdd564IGMPTTL
INTEGER,
cdd564IGMPClientState
INTEGER,
cdd564IGMPSrc
INTEGER,
cdd564IGMPGroupIPAddress
IpAddress
}
cdd564IGMPIndex OBJECT-TYPE
SYNTAX INTEGER (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the IGMP group table."
::= { cdd564IGMPEntry 1 }
cdd564IGMPTTL OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TTL for the multicast group."
::= { cdd564IGMPEntry 2 }
cdd564IGMPClientState OBJECT-TYPE
SYNTAX INTEGER
{
idle(1),
active(2),
closing(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state for the multicast group."
::= { cdd564IGMPEntry 3 }
cdd564IGMPSrc OBJECT-TYPE
SYNTAX INTEGER
{
ethernet(1),
satellite(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface from which the multicast group
was received."
::= { cdd564IGMPEntry 4 }
cdd564IGMPGroupIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The multicast group address."
::= { cdd564IGMPEntry 5 }
cdd564Maint OBJECT IDENTIFIER ::= { cdd564Objects 5 }
cdd564UnitInformation OBJECT IDENTIFIER ::= { cdd564Maint 1 }
cdd564BootInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version and revision information for the
boot application."
::= { cdd564UnitInformation 1 }
cdd564Bulk1Info OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version and revision information for the
bulk application in image 1."
::= { cdd564UnitInformation 2 }
cdd564Bulk2Info OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version and revision information for the
bulk application in image 2."
::= { cdd564UnitInformation 3 }
cdd564FPGARx1Info OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version and revision information for the
Rx FPGA in image 1."
::= { cdd564UnitInformation 4 }
cdd564FPGARx2Info OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version and revision information for the
Rx FPGA in image 2."
::= { cdd564UnitInformation 5 }
cdd564BulkDatabase OBJECT IDENTIFIER ::= { cdd564Maint 2 }
cdd564BootImage OBJECT-TYPE
SYNTAX INTEGER