-
Notifications
You must be signed in to change notification settings - Fork 57
/
CDMIPController.mib
2941 lines (2544 loc) · 85.8 KB
/
CDMIPController.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
--
-- CDMIPController.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 2.1 Build 199
-- Monday, February 13, 2006 at 13:33:32
--
CDMIPController DEFINITIONS ::= BEGIN
IMPORTS
comtechEFData
FROM ComtechEFData
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
IpAddress, Integer32, Counter32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC;
cdmipController MODULE-IDENTITY
LAST-UPDATED "200407121700Z"
ORGANIZATION
"Comtech EF Data"
CONTACT-INFO
"2114 West 7th Street Tempe, AZ 85281 USA"
DESCRIPTION
"CDMIP IP Controller"
REVISION "200302231100Z"
DESCRIPTION
"Added QoS Rules Table."
REVISION "200310231546Z"
DESCRIPTION
"Added V2 Conformance (Groups and Compliance)"
REVISION "200402191653Z"
DESCRIPTION
"Added more WAN statistics."
REVISION "200407121039Z"
DESCRIPTION
"Updates for 4.2 Maint. Release"
REVISION "200512061455Z"
DESCRIPTION
"Updated for 1.5.3 Maint. Release"
::= { comtechEFData 4 }
--
-- Type definitions
--
Availability ::= INTEGER
{
unavailable(0),
available(1)
}
EnableDisable ::= INTEGER
{
disable(0),
enable(1)
}
--
-- Node definitions
--
-- cdmipAdministration starts at child number "2"
cdmipAdministration OBJECT IDENTIFIER ::= { cdmipController 2 }
cdmipMibVersion OBJECT-TYPE
SYNTAX INTEGER (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"/*****************************************************************************/
/*
* CDM-IP MIB Version Information
*
* Date App Release MIB Version
* ======== =========== ===========
* 03/14/02 1.0 1
*
* 04/23/02 internal 2
*
* 07/31/02 1.1 3
*
* 10/15/02 1.2 4
*
* 11/25/02 2.1 5
*
* 02/19/04 4.0 6
*
* 07/12/04 4.2 7
*
* 12/31/05 5.3 8
*/
/*****************************************************************************/
"
::= { cdmipAdministration 1 }
-- cdmipAccessList starts at child number "4"
cdmipAccessLists OBJECT IDENTIFIER ::= { cdmipAdministration 4 }
cdmipAccessIpAddress1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Access IP Address #1:
Used to restrict modem management through Web, Telnet, or SNMP
to specific IP Addresses. "
::= { cdmipAccessLists 1 }
cdmipAccessSubnetMaskLen1 OBJECT-TYPE
SYNTAX INTEGER (0 | 8..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet Mask Length for Access IP Address #1."
::= { cdmipAccessLists 2 }
cdmipAccessIpAddress2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Access IP Address #2
Used to restrict modem management through Web, Telnet, or SNMP
to specific IP Addresses. "
::= { cdmipAccessLists 3 }
cdmipAccessSubnetMaskLen2 OBJECT-TYPE
SYNTAX INTEGER (0 | 8..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet Mask Length for Access IP Address #2."
::= { cdmipAccessLists 4 }
cdmipAccessIpAddress3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Access IP Address #3:
Used to restrict modem management through Web, Telnet, or SNMP
to specific IP Addresses."
::= { cdmipAccessLists 5 }
cdmipAccessSubnetMaskLen3 OBJECT-TYPE
SYNTAX INTEGER (0 | 8..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet Mask Length for Access IP Addres #3."
::= { cdmipAccessLists 6 }
cdmipAccessIpAddress4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Access IP Address #4:
Used to restrict modem management through Web, Telnet, or SNMP
to specific IP Addresses. "
::= { cdmipAccessLists 7 }
cdmipAccessSubnetMaskLen4 OBJECT-TYPE
SYNTAX INTEGER (0 | 8..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet Mask Length for Access IP Address #4."
::= { cdmipAccessLists 8 }
cdmipAccessListEnforcement OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enforced(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Access List Enforcement
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 SNMP agent."
::= { cdmipAccessLists 9 }
cdmipFeaturesAvailability OBJECT IDENTIFIER ::= { cdmipAdministration 5 }
cdmipQosOption OBJECT-TYPE
SYNTAX Availability
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Quality of Server (QoS) FAST Option."
::= { cdmipFeaturesAvailability 3 }
cdmipEncryptionOption OBJECT-TYPE
SYNTAX Availability
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Triple DES Encryption FAST Option."
::= { cdmipFeaturesAvailability 6 }
cdmipIgmpOption OBJECT-TYPE
SYNTAX Availability
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IGMP FAST Option."
::= { cdmipFeaturesAvailability 7 }
cdmipHeaderCompressionOption OBJECT-TYPE
SYNTAX Availability
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP Header Compression FAST Option."
::= { cdmipFeaturesAvailability 8 }
cdmipPayloadCompressionOption OBJECT-TYPE
SYNTAX Availability
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP Payload Compression FAST Option."
::= { cdmipFeaturesAvailability 9 }
cdmipFeaturesConfig OBJECT IDENTIFIER ::= { cdmipAdministration 6 }
cdmipTelnetFeature OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable Telnet access for managing the modem."
::= { cdmipFeaturesConfig 2 }
cdmipPingReplyFeature OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable ICMP Ping Reply from the modem."
::= { cdmipFeaturesConfig 3 }
cdmipDownlinkRouteMulticastFeature OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable 'downlink multicast routing' option
(Satellite to Ethernet)."
::= { cdmipFeaturesConfig 4 }
cdmipQosOpt OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable 'Quality of Service' (QoS) in the modem's router."
::= { cdmipFeaturesConfig 7 }
cdmipTransmit3xDesEncryptionOpt OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1),
perRoute(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable 'transmit 3xDES encryption' option."
::= { cdmipFeaturesConfig 10 }
cdmipIgmpOpt OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable IGMP option."
::= { cdmipFeaturesConfig 12 }
cdmipTxHeaderCompressionOpt OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1),
perRoute(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the Transmit 'IP Header Compression' option."
::= { cdmipFeaturesConfig 13 }
cdmipRxHeaderCompressionOpt OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable Receive 'IP Header Compression' option."
::= { cdmipFeaturesConfig 14 }
cdmipTxPayloadCompressionOpt OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1),
perRoute(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable 'Tx Payload Compression' option."
::= { cdmipFeaturesConfig 15 }
cdmip3xDesConfig OBJECT IDENTIFIER ::= { cdmipAdministration 7 }
-- cdmipTransmitKey1 starts at child number "3"
cdmipTransmitKey1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #1.
The key length is 192 bits (24 bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 3 }
cdmipTransmitKey2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #2.
The key length is 192 bits (24 bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 4 }
cdmipTransmitKey3 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #3.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 5 }
cdmipTransmitKey4 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #4.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 6 }
cdmipTransmitKey5 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #5.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 7 }
cdmipTransmitKey6 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #6.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 8 }
cdmipTransmitKey7 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #7.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 9 }
cdmipTransmitKey8 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Transmit Encrypt Key #8.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 10 }
cdmipReceiveKey1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #1.
The key length is 192 bits (24 bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 11 }
cdmipReceiveKey2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #2.
The key length is 192 bits (24 bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 12 }
cdmipReceiveKey3 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #3.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 13 }
cdmipReceiveKey4 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #4.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 14 }
cdmipReceiveKey5 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #5.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 15 }
cdmipReceiveKey6 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #6.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 16 }
cdmipReceiveKey7 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #7.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 17 }
cdmipReceiveKey8 OBJECT-TYPE
SYNTAX DisplayString (SIZE (48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Triple DES (3xDES) Receive Decrypt Key #8.
The key length is 192 bits (24 Bytes or 48 HEX characters)."
::= { cdmip3xDesConfig 18 }
cdmipSmtp OBJECT IDENTIFIER ::= { cdmipAdministration 8 }
cdmipSmtpServerIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the SMTP server on your local LAN."
::= { cdmipSmtp 1 }
cdmipSmtpDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SMTP Domain (i.e. comtechefdata.com)"
::= { cdmipSmtp 2 }
cdmipSmtpDestinationName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SMTP Destination Email User Name (i.e. cdmipsupport)"
::= { cdmipSmtp 3 }
cdmipSnmp OBJECT IDENTIFIER ::= { cdmipAdministration 9 }
cdmipSnmpTrapDestinationIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SNMP Trap Destination #1:
The primary IP Address to which trap will be sent."
::= { cdmipSnmp 1 }
cdmipSnmpTrapCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The trap community string to be used for SNMP trap messages."
::= { cdmipSnmp 2 }
cdmipSnmpTrapVersion OBJECT-TYPE
SYNTAX INTEGER
{
snmpV1(1),
snmpV2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP Trap Version:
Use V1 for SNMP Version 1 Traps.
Use V2 for SNMP Version 2 Notifications."
::= { cdmipSnmp 3 }
cdmipSnmpAuthenticationFailureCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"NOTE: Used ONLY in the Authentification Failure Trap (No access).
The community string which was invalid for a SET or GET SNMP message."
::= { cdmipSnmp 4 }
cdmipSnmpAuthenticationFailureAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"NOTE: Used ONLY in the Authentification Failure Trap (No access).
IP Address which sent an SNMP message with an invalid
SET or GET community string."
::= { cdmipSnmp 5 }
cdmipSnmpTrapDestinationIpAddress2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SNMP Trap Destination #2:
The secondary IP Address to which traps will be sent."
::= { cdmipSnmp 6 }
cdmipWorkingMode OBJECT-TYPE
SYNTAX INTEGER
{
routerSmallNetworkMode(1),
routerLargeNetworkMode(2),
routerPointToPointMode(3),
routerVipersatMode(4),
easyConnectMode(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the IP Card'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 - Large 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 -
The system functions as router and uses the route table to
determine how to forward packets in a point-to-point HDLC
address mode.
The HDLC packet does not use a HDLC address.
4. Router - Vipersat Mode - The system functions in Vipersat mode.
5. EasyConnect mode - The system forwards all packets it receives.
The HDLC packet does not use a HDLC address.
*** 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.
"
::= { cdmipAdministration 10 }
cdmipEasyconnectMulticastOption OBJECT-TYPE
SYNTAX EnableDisable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the Easyconnect multicast option.
Enabling this option allows the modem working in
EasyConnect operation to pass multicast traffic."
::= { cdmipAdministration 11 }
cdmipHdrcompRefreshRateUdpRtp1 OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Header compression Refresh Rate for UDP/RTP1.
Valid range is 1 - 600 packets per full
IP/UDP/RTP Header."
::= { cdmipAdministration 12 }
cdmipHdrcompRefreshRateUdp OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Header Compression Refresh Rate for UDP.
Valid range is 1 - 600 packets per full
IP/UDP Header."
::= { cdmipAdministration 13 }
cdmipHdrcompRefreshRateAllOther OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Header Compression Refresh Rate for all other protocols.
Valid range is 1 - 600 packet per full IP Header."
::= { cdmipAdministration 14 }
cdmipPayloadCompRefreshRate OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Refresh rate for Payload Compression in packets.
Valid range is 1 = 600 packets before a refresh
ofthe payload compression algorithm is done."
::= { cdmipAdministration 15 }
cdmipInterfaces OBJECT IDENTIFIER ::= { cdmipController 3 }
cdmipEthernetInterface OBJECT IDENTIFIER ::= { cdmipInterfaces 1 }
cdmipEthernetMacAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE (12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address for the Ethernet interface."
::= { cdmipEthernetInterface 1 }
cdmipEthernetSpeed OBJECT-TYPE
SYNTAX INTEGER
{
auto(1),
halfDuplex10M(2),
halfDuplex100M(3),
fullDuplex10M(4),
fullDuplex100M(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The speed and mode of the Ehternet interface:
The valid settings are:
1. Automatic.
2. 10 Mbps - Half Duplex.
3. 100 Mpbs - Half Duplex.
4. 10 Mbps - Full Duplex.
5. 100 Mbps - Full Duplex. "
::= { cdmipEthernetInterface 2 }
cdmipEthernetIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address for the Ethernet interface."
::= { cdmipEthernetInterface 3 }
cdmipEthernetSubnetPrefixLen OBJECT-TYPE
SYNTAX INTEGER (8..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subnet mask prefix length for the Ethernet interface."
::= { cdmipEthernetInterface 4 }
cdmipSatelliteInterface OBJECT IDENTIFIER ::= { cdmipInterfaces 2 }
cdmipSatelliteHdlcAddress1 OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HDLC Channel Address #1 filtered by the HSR
Valid values of HDLC address depends on the Network mode.
In Small Network Mode - Frame will have 1 Byte of HDLC addr.
valid values are 1 - 254. (0x1 - 0xFE)
In Large Network Mode - Frame will have 2 Bytes of HDLC address.
valid values are 1 - 32766 (0x1 - 0x7FFE)
In Point-to-Point Mode - HDLC addresses are NOT-USED.
An HDLC Address of '0(Zero)' is interpretted as NOT-DEFINED or NOT-USED
An HDLC address cannot have 0x00 or 0xFF in least Significant Byte.
i.e., 0x400 or 0x6ff or 0x11ff are NOT valid HDLC addresses.
User is NOT allowed to configure HDLC address while system is
operating in EASY CONNECT MODE.
To Invalidate/Delete HDLC Address, set the MIB member
'cdmipSatelliteHdlcAddressDelete' to the HDLC address number.
HDLC Address number range from 1...4
"
::= { cdmipSatelliteInterface 5 }
cdmipSatelliteHdlcAddress2 OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HDLC Channel Address #2 filtered by the HSR
Valid values of HDLC address depends on the Network mode.
In Small Network Mode - Frame will have 1 Byte of HDLC addr.
valid values are 1 - 254. (0x1 - 0xFE)
In Large Network Mode - Frame will have 2 Bytes of HDLC address.
valid values are 1 - 32766 (0x1 - 0x7FFE)
In Point-to-Point Mode - HDLC addresses are NOT-USED.
An HDLC Address of '0(Zero)' is interpretted as NOT-DEFINED or NOT-USED
An HDLC address cannot have 0x00 or 0xFF in least Significant Byte.
i.e., 0x400 or 0x6ff or 0x11ff are NOT valid HDLC addresses.
User is NOT allowed to configure HDLC address while system is
operating in EASY CONNECT MODE.
To Invalidate/Delete HDLC Address, set the MIB member
'cdmipSatelliteHdlcAddressDelete' to the HDLC address number.
HDLC Address number range from 1...4
"
::= { cdmipSatelliteInterface 6 }
cdmipSatelliteHdlcAddress3 OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HDLC Channel Address #3 filtered by the HSR
Valid values of HDLC address depends on the Network mode.
In Small Network Mode - Frame will have 1 Byte of HDLC addr.
valid values are 1 - 254. (0x1 - 0xFE)
In Large Network Mode - Frame will have 2 Bytes of HDLC address.
valid values are 1 - 32766 (0x1 - 0x7FFE)
In Point-to-Point Mode - HDLC addresses are NOT-USED.
An HDLC Address of '0(Zero)' is interpretted as NOT-DEFINED or NOT-USED
An HDLC address cannot have 0x00 or 0xFF in least Significant Byte.
i.e., 0x400 or 0x6ff or 0x11ff are NOT valid HDLC addresses.
User is NOT allowed to configure HDLC address while system is
operating in EASY CONNECT MODE.
To Invalidate/Delete HDLC Address, set the MIB member
'cdmipSatelliteHdlcAddressDelete' to the HDLC address number.
HDLC Address number range from 1...4
"
::= { cdmipSatelliteInterface 7 }
cdmipSatelliteHdlcAddress4 OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HDLC Channel Address #4 filtered by the HSR
Valid values of HDLC address depends on the Network mode.
In Small Network Mode - Frame will have 1 Byte of HDLC addr.
valid values are 1 - 254. (0x1 - 0xFE)
In Large Network Mode - Frame will have 2 Bytes of HDLC address.
valid values are 1 - 32766 (0x1 - 0x7FFE)
In Point-to-Point Mode - HDLC addresses are NOT-USED.
An HDLC Address of '0(Zero)' is interpretted as NOT-DEFINED or NOT-USED
An HDLC address cannot have 0x00 or 0xFF in least Significant Byte.
i.e., 0x400 or 0x6ff or 0x11ff are NOT valid HDLC addresses.
User is NOT allowed to configure HDLC address while system is
operating in EASY CONNECT MODE.
To Invalidate/Delete HDLC Address, set the MIB member
'cdmipSatelliteHdlcAddressDelete' to the HDLC address number.
HDLC Address number range from 1...4"
::= { cdmipSatelliteInterface 8 }
cdmipSatelliteHdlcAddressDelete OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to delete a specified HDLC Address.
Setting this entry to value 1...4 deletes/invalidates
the corresponding HDLC Address.
1. for HDLCAddress #1
2. for HDLCAddress #2
3. for HDLCAddress #3
4. for HDLCAddress #4
When a HDLC Address is deleted/invalidated, it is displayed as
'0' (NOT-DEFINED or NOT-USED) on SNMP Gets."
::= { cdmipSatelliteInterface 9 }
cdmipSatelliteHdlcAddressModeConfig OBJECT-TYPE
SYNTAX INTEGER
{
smallNetworkMode(1),
largeNetworkMode(2),
pointToPointMode(3),
vipersatMode(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of HDLC address used for frames sent over the satellite
interface can range from 0 - 2 bytes.
This range allows the system to operate in one of these modes:
1. Small Network Mode - The frame will have 1 byte of HDLC address.
Valid values are 1 - 254. (0x1 - 0xFE).
2. Large Network Mode - The frame will have 2 bytes of HDLC address.
Valid values are 1 - 32767 (0x1 - 0x7FFE).
3. Point-to-Point Mode - The frame does not use any HDLC address.
4. Vipersat Mode - The frame does not use any HDLC address."
::= { cdmipSatelliteInterface 10 }
cdmipRouteTable OBJECT IDENTIFIER ::= { cdmipController 4 }
-- cdmipIpRouteTable starts at child number "3"
cdmipIpRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdmipIpRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CDMIP IP Route Table"
::= { cdmipRouteTable 3 }
cdmipIpRouteEntry OBJECT-TYPE
SYNTAX CdmipIpRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CDMIP IP Route Entry"
INDEX { cdmipIpRouteIndex }
::= { cdmipIpRouteTable 1 }
CdmipIpRouteEntry ::=
SEQUENCE {
cdmipIpRouteIndex
INTEGER,
cdmipIpRouteName
DisplayString,
cdmipIpRouteDestAddress
IpAddress,
cdmipIpRouteDestMaskLen
INTEGER,
cdmipIpRouteNextHopAddress
IpAddress,
cdmipIpRouteMulticastOptions
INTEGER,
cdmipIpRouteState
INTEGER,
cdmipIpRouteHdlcAddress
INTEGER,
cdmipIpRouteHdrComp
EnableDisable,
cdmipIpRoutePayloadComp
EnableDisable,
cdmipIpRoute3xDes
EnableDisable,
cdmipIpRouteDesKey
INTEGER,
cdmipIpRouteRowStatus
INTEGER
}
cdmipIpRouteIndex OBJECT-TYPE
SYNTAX INTEGER (1..1024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index for the route table."
::= { cdmipIpRouteEntry 1 }
cdmipIpRouteName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name for the route.
The route name must be unique."
::= { cdmipIpRouteEntry 2 }
cdmipIpRouteDestAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination IP address for the route.
***Note***:
Do not add multicast routes for Vipersat Multicast addresses."
::= { cdmipIpRouteEntry 3 }
cdmipIpRouteDestMaskLen OBJECT-TYPE
SYNTAX INTEGER (0..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of bits in the subnet mask for the destination IP address
for the route."
::= { cdmipIpRouteEntry 4 }
cdmipIpRouteNextHopAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Next Hop IP Address is valid only for routes destined to
the Ethernet interface.
This IP address must be a locally attached router.
Set 'cdmipIpRouteState' to 'toEthernet' state before
setting 'cdmipIpRouteNextHopAddress'."
::= { cdmipIpRouteEntry 5 }
cdmipIpRouteMulticastOptions OBJECT-TYPE
SYNTAX INTEGER
{
noRouting(1),
ethToSatRouting(2),
satToEthRouting(3),
satToEthAndEthToSatRouting(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configures how router should handle multicast traffic.
Valid options are:
1. Do not forward any multicast traffic (drop all).
2. Forward multicast traffic from Ethernet to Satellite only.
3. Forward multicast traffic from Satellite to Ethernet only.
4. Forward multicast traffic in both directions."
DEFVAL { 1 }
::= { cdmipIpRouteEntry 6 }
cdmipIpRouteState OBJECT-TYPE
SYNTAX INTEGER
{
toSatellite(1),
toEthernet(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The route state specifies the route's destination.
The valid values are:
1. To Ethernet (route goes to Ethernet interface).
2. To Satellite (route goes to Satellite interface)."
::= { cdmipIpRouteEntry 7 }
cdmipIpRouteHdlcAddress OBJECT-TYPE
SYNTAX INTEGER (1..65535)