-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-REMOTE-ACCESS-MIB
3551 lines (3275 loc) · 135 KB
/
CTRON-REMOTE-ACCESS-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
CTRON-REMOTE-ACCESS-MIB DEFINITIONS ::= BEGIN
-- ctron-remote-access-mib.txt The Cabletron Remote Access MIB.
-- Revision: 1.00.04
-- Part Number:
-- Date: November 24, 1998
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- This module provides authoritative definitions for part
-- of the naming tree below:
--
-- cabletron { enterprises 52 }
--
-- This module will be extended, as additional sub-sections
-- of this naming tree are defined.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright August 1997 Cabletron Systems
IMPORTS
IpAddress, Counter,enterprises FROM RFC1155-SMI
DisplayString FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212;
Index ::= INTEGER
DLCI ::= INTEGER
-- DisplayString ::= OCTET STRING
cabletron OBJECT IDENTIFIER ::= { enterprises 52 }
-- 1.3.6.1.4.1.52
mibs OBJECT IDENTIFIER ::= { cabletron 4 }
-- 1.3.6.1.4.1.52.4
ctron OBJECT IDENTIFIER ::= { mibs 1 }
-- 1.3.6.1.4.1.52.4.1
ctDataLink OBJECT IDENTIFIER ::= { ctron 2 }
-- 1.3.6.1.4.1.52.4.1.2
ctronWan OBJECT IDENTIFIER ::= { ctDataLink 7 }
-- 1.3.6.1.4.1.52.4.1.2.7
ctRemoteAccess OBJECT IDENTIFIER ::= { ctronWan 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2
----------------------------------------------------------
-- Groups
ctRemoteConnection OBJECT IDENTIFIER ::= { ctRemoteAccess 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1
ctDs1Ext OBJECT IDENTIFIER ::= { ctRemoteAccess 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2
ctRs232Ext OBJECT IDENTIFIER ::= { ctRemoteAccess 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.3
ctFrDcp OBJECT IDENTIFIER ::= { ctRemoteAccess 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.4
ctDDSExt OBJECT IDENTIFIER ::= { ctRemoteAccess 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.5
ctPPPExt OBJECT IDENTIFIER ::= { ctRemoteAccess 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.6
ctWanalyzer OBJECT IDENTIFIER ::= { ctRemoteAccess 7 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.7
ctDs1Alarms OBJECT IDENTIFIER ::= { ctRemoteAccess 8 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.8
ctIPPQFilters OBJECT IDENTIFIER ::= { ctRemoteAccess 9 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.9
ctDs3Ext OBJECT IDENTIFIER ::= { ctRemoteAccess 10 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.10
-- Cabletron Remote Access Connection Group
-- This group is mandatory for all platforms that have one or more
-- physical remote access connections
ctRemNumConnections OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object describes the number of physical remote
access connections on the platform."
::= { ctRemoteConnection 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.1
ctRemPhysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtRemPhysPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of the descriptions of the physical remote access
ports of this platform."
::= { ctRemoteConnection 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2
ctRemPhysPortEntry OBJECT-TYPE
SYNTAX CtRemPhysPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A physical port entry. It contains objects relating to a
given physical remote access port"
INDEX { ctRemConnectionIndex }
::= { ctRemPhysPortTable 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1
CtRemPhysPortEntry ::=
SEQUENCE {
ctRemConnectionIndex
INTEGER,
ctRemPhysPortType
INTEGER,
ctRemPhysPortSpecificMib
OBJECT IDENTIFIER,
ctRemPhysPortProtMgrType
INTEGER,
ctRemPhysPortProtMgrIfaceNum
INTEGER,
ctRemPhysPortWanIfaceNum
INTEGER,
ctRemPhysPortProtMgrMaxIfos
INTEGER,
ctRemPhysPortProtMgrIfaceList
DisplayString,
ctRemPhysAlarmTimeOut
INTEGER,
ctRemPhysWpimType
INTEGER
}
ctRemConnectionIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value indicating the remote connection this entry
is located on."
::= { ctRemPhysPortEntry 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.1
ctRemPhysPortType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
t1(2),
e1(3),
synchronous(4),
dds(5),
di(6), -- Drop and Insert
hdsl(7),
isdnBRI(8),
ds30(9),
t1dds(10)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of physical port that this entry describes. None
indicates that the physical port has no connector."
DEFVAL { none }
::= { ctRemPhysPortEntry 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.2
ctRemPhysPortSpecificMib OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies an instance of the
index object in the first group of objects in the
MIB specific to the physical port."
::= { ctRemPhysPortEntry 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.3
ctRemPhysPortProtMgrType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
pppNailedUp(2),
isdnPriPpp(3),
isdnBriPpp(4),
frameRelayPvcRtr(5),
frameRelayPvcSw(6),
hdlc(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies an instance of the type
of Protocol Manager residing on this physical
port. Before a physical port may be used, the type
of manager must be designated. For example, if the
physical port was going to be used as an ISDN PRI
interface, with dial up PPP links, then the manager
type would be set to (4), ISDN-PRI-PPP."
DEFVAL { none }
::= { ctRemPhysPortEntry 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.4
ctRemPhysPortProtMgrIfaceNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the interface number that
will be assigned to the Protocol Managers IFO"
::= { ctRemPhysPortEntry 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.5
ctRemPhysPortWanIfaceNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies the interface number that
will be assigned to the Wanio's IFO"
::= { ctRemPhysPortEntry 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.6
ctRemPhysPortProtMgrMaxIfos OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the maximum number of IFO's
that can be created on this physical interface."
::= { ctRemPhysPortEntry 7 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.7
ctRemPhysPortProtMgrIfaceList OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies a list of interfaces that
will be assigned to this Protocol Managers data IFO's"
::= { ctRemPhysPortEntry 8 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.8
ctRemPhysAlarmTimeOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Whenever the physical port is configured for nailed-up
PPP this object specifies the time the physical port
must remain in a failed state as a condition to begin
the backup procedure. The backup procedure is begun for
any active interface(s) that were connected over the
failed physical port and which have been configured for
backup."
::= { ctRemPhysPortEntry 9 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.9
ctRemPhysWpimType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This Mib object determines the Mode of operation that
the T1/DDS Wpim module will function as. Setting a value
of 1 will set the mode to DDS, setting a value of 2 will
set the mode to T1."
DEFVAL { 2 }
::= { ctRemPhysPortEntry 10 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.10
ctRemInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtRemInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The interface table for Cabletron remote interfaces.
It is a list of items that are pertinant to the interfaces
that are part of remote physical ports. The number of
entries is dependent upon the total number of remote
interfaces configured."
::= { ctRemoteConnection 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3
ctRemInterfaceEntry OBJECT-TYPE
SYNTAX CtRemInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A remote interface entry. It
contains objects relating to an interface that is defined
for remote Cabletron products."
INDEX { ctRemIntEntIfIndex }
::= { ctRemInterfaceTable 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1
CtRemInterfaceEntry ::=
SEQUENCE {
ctRemIntEntIfIndex
INTEGER,
ctRemIntEntCompression
INTEGER,
ctRemIntEntCompRatio
DisplayString,
ctRemIntEntCompStatus
INTEGER,
ctRemIntEntMTU
INTEGER,
ctRemIntEntCongestion
INTEGER,
ctRemIntEntMaxProfiles
INTEGER,
ctRemIntEntTxIdleTimeout
INTEGER,
ctRemIntEntRxIdleTimeout
INTEGER,
ctRemIntEntCircuitName
DisplayString,
ctRemIntEntEncryption
INTEGER,
ctRemIntEntEncryptStatus
INTEGER
}
ctRemIntEntIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ifIndex of the interface. This is the index of this
entry in the ifTable."
REFERENCE
"rfc-1213"
::= { ctRemInterfaceEntry 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.1
ctRemIntEntCompression OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This flag will indicate whether compression should take
place on this interface."
DEFVAL { off }
::= { ctRemInterfaceEntry 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.2
ctRemIntEntCompRatio OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This string indicates the current compression ratio
on this interface."
::= { ctRemInterfaceEntry 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.3
ctRemIntEntCompStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This flag will indicate whether compression has been
nogotiated on this interface."
::= { ctRemInterfaceEntry 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.4
ctRemIntEntMTU OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The MTU to be negotiated for this interface. This will
not be updated with the actual MTU, which can be found
in the ifTable."
::= { ctRemInterfaceEntry 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.5
ctRemIntEntCongestion OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the Leaky Bucket algorithm flag for
a Frame Relay circuit on this intertface. The option is
supported when this flag is enabled, and not supported
when this flag is disabled."
DEFVAL { disabled }
::= { ctRemInterfaceEntry 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.6
ctRemIntEntMaxProfiles OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the maximum number of neighbor profiles.
A neighbor profile describes a possible connection. The maximum
should be set to account for support of PPP multilink. That is
to say, if PPP multilink is being used then the number of profiles
must at least accomodate the maximum possible number of additional
more BW connections. As such, each neighbor profile would then
describe a possible connection to the same remote end point."
::= { ctRemInterfaceEntry 7 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.7
ctRemIntEntTxIdleTimeout OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the idle timeout value in which a
packet needs to be transmitted before the interface is
automatically disconnected. Allowed values are in
increments of five seconds including zero."
::= { ctRemInterfaceEntry 8 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.8
ctRemIntEntRxIdleTimeout OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the idle timeout in which a packet
needs to be received before the interface is automatically
disconnected. Allowed values are in increments of five
seconds including zero."
::= { ctRemInterfaceEntry 9 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.9
ctRemIntEntCircuitName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object associates a circuit name with a specific interface."
::= { ctRemInterfaceEntry 10 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.10
ctRemIntEntEncryption OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This flag will indicate whether encryption should take
place on this interface."
DEFVAL { off }
::= { ctRemInterfaceEntry 11 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.11
ctRemIntEntEncryptStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This flag will indicate whether Encryption has been
nogotiated on this interface."
::= { ctRemInterfaceEntry 12 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.12
ctRemPrimaryInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtRemPrimaryInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The interface table for Cabletron remote interfaces.
It is a list of items that are pertinant to the interfaces
that are part of remote physical ports. The number of
entries is dependent upon the total number of remote
interfaces configured."
::= { ctRemoteConnection 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.4
ctRemPrimaryInterfaceEntry OBJECT-TYPE
SYNTAX CtRemPrimaryInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A remote interface entry. It
contains objects relating to an interface that is defined
for remote Cabletron products."
INDEX { ctRemPriIntEntIfIndex }
::= { ctRemPrimaryInterfaceTable 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.4.1
CtRemPrimaryInterfaceEntry ::=
SEQUENCE {
ctRemPriIntEntIfIndex
INTEGER,
ctRemPriIntEntConnectRetryInterval
INTEGER
}
ctRemPriIntEntIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ifIndex of the interface. This is the index of this
entry in the ifTable."
REFERENCE
"rfc-1213"
::= { ctRemPrimaryInterfaceEntry 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.4.1.1
ctRemPriIntEntConnectRetryInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the interval in seconds between retries
for restoring the primary interface."
DEFVAL { 30 }
::= { ctRemPrimaryInterfaceEntry 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.4.1.2
ctRemBackupInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtRemBackupInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The interface table for Cabletron remote interfaces.
It is a list of items that are pertinant to the interfaces
that are part of remote physical ports. The number of
entries is dependent upon the total number of remote
interfaces configured."
::= { ctRemoteConnection 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5
ctRemBackupInterfaceEntry OBJECT-TYPE
SYNTAX CtRemBackupInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A remote interface entry. It
contains objects relating to an interface that is defined
for remote Cabletron products."
INDEX { ctRemIntEntBackupIfIndex }
::= { ctRemBackupInterfaceTable 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1
CtRemBackupInterfaceEntry ::=
SEQUENCE {
ctRemIntEntBackupIfIndex
INTEGER,
ctRemIntEntBackupIfNum
INTEGER,
ctRemIntEntBackupIfInUseCnt
INTEGER,
ctRemIntEntBackupIfTimeToConnect
INTEGER,
ctRemIntEntBackupIfTimeToDisconnect
INTEGER,
ctRemIntEntBackupIfOverride
INTEGER,
ctRemIntEntBackupConnectRetries
INTEGER,
ctRemIntEntBackupConnectRetryInterval
INTEGER
}
ctRemIntEntBackupIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ifIndex of the interface. This is the index of this
entry in the ifTable."
REFERENCE
"rfc-1213"
::= { ctRemBackupInterfaceEntry 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.1
ctRemIntEntBackupIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies which ifIndex will backup this
interface in the event of a communications failure."
::= { ctRemBackupInterfaceEntry 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.2
ctRemIntEntBackupIfInUseCnt OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies how many other interfaces this
interface will backup."
::= { ctRemBackupInterfaceEntry 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.3
ctRemIntEntBackupIfTimeToConnect OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies how long to wait in seconds before
attempting to switchover to the backup interface. Allowed
values are in increments of five seconds including zero."
::= { ctRemBackupInterfaceEntry 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.4
ctRemIntEntBackupIfTimeToDisconnect OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies how long to wait in seconds before
attempting to switchover to the primary interface. Allowed
values are in increments of five seconds including zero."
::= { ctRemBackupInterfaceEntry 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.5
ctRemIntEntBackupIfOverride OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies if the interface will switch back to
the primary link after it has become active again. A force
condition will not allow the interface to switch back."
DEFVAL { disabled }
::= { ctRemBackupInterfaceEntry 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.6
ctRemIntEntBackupConnectRetries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the number of tries to bring-up the
backup interface before giving up."
::= { ctRemBackupInterfaceEntry 7 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.7
ctRemIntEntBackupConnectRetryInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the interval in seconds between retries
for bringing up backup interface before giving up."
::= { ctRemBackupInterfaceEntry 8 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.8
ctRemExtPhysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtRemExtPhysPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of the descriptions of the physical remote access
ports of this platform."
::= { ctRemoteConnection 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6
ctRemExtPhysPortEntry OBJECT-TYPE
SYNTAX CtRemExtPhysPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A physical port entry. It contains objects relating to a
given physical remote access port"
INDEX { ctRemExtConnectionIndex }
::= { ctRemExtPhysPortTable 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1
CtRemExtPhysPortEntry ::=
SEQUENCE {
ctRemExtConnectionIndex
INTEGER,
ctRemExtProtMgrIndex
INTEGER,
ctRemExtPhysPortProtMgrType
INTEGER,
ctRemExtPhysPortProtMgrEnable
INTEGER,
ctRemExtPhysPortProtMgrIfaceNum
INTEGER,
ctRemExtPhysPortProtMgrMaxIfos
INTEGER,
ctRemExtPhysPortProtMgrIfaceList
DisplayString,
ctRemExtPhysPortProtMgrChannelList
DisplayString
}
ctRemExtConnectionIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value indicating the remote connection this entry
is located on."
::= { ctRemExtPhysPortEntry 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.1
ctRemExtProtMgrIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value indicating the protMgr number for this entry."
::= { ctRemExtPhysPortEntry 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.2
ctRemExtPhysPortProtMgrType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
pppNailedUp(2),
isdnPriPpp(3),
isdnBriPpp(4),
frameRelayPvcRtr(5),
frameRelayPvcSw(6),
hdlc(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies an instance of the type
of Protocol Manager residing on this physical
port. Before a physical port may be used, the type
of manager must be designated. For example, if the
physical port was going to be used as an ISDN PRI
interface, with dial up PPP links, then the manager
type would be set to (4), ISDN-PRI-PPP."
DEFVAL { none }
::= { ctRemExtPhysPortEntry 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.3
ctRemExtPhysPortProtMgrEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies an instance of the the
enable flag of Protocol Manager residing on this
physical port."
DEFVAL { disabled }
::= { ctRemExtPhysPortEntry 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.4
ctRemExtPhysPortProtMgrIfaceNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the interface number that
will be assigned to the Protocol Managers IFO"
::= { ctRemExtPhysPortEntry 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.5
ctRemExtPhysPortProtMgrMaxIfos OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object identifies the maximum number of IFO's
that can be created on this physical interface."
::= { ctRemExtPhysPortEntry 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.6
ctRemExtPhysPortProtMgrIfaceList OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies a list of interfaces that
will be assigned to this Protocol Managers data IFO's"
::= { ctRemExtPhysPortEntry 7 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.7
ctRemExtPhysPortProtMgrChannelList OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object identifies a list of channles/timeslots
that will be assigned to this Protocol Managers data IFO's"
::= { ctRemExtPhysPortEntry 8 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.8
-- Cabletron Ds1 Extensions Group
-- This group is required for any platforms that have a t1 or e1 physical
-- port.
ctDs1ExtensionsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtDs1ExtensionsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is an extension to the standard ds1 configuration
table. It is a list of items that are pertinant to ds1 ports
on a platform. There is one entry per ds1 physical port on
the platform."
::= { ctDs1Ext 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1
ctDs1ExtensionsEntry OBJECT-TYPE
SYNTAX CtDs1ExtensionsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A ds1 extensions entry containing objects relating to
the particular ds1 physical port."
INDEX { ctDs1ExtensionsEntryIndex }
::= { ctDs1ExtensionsTable 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1
CtDs1ExtensionsEntry ::=
SEQUENCE {
ctDs1ExtensionsEntryIndex
INTEGER,
ctDs1ExtensionsNumInterfaces
INTEGER,
ctDs1ExtensionsToggleFracTable
INTEGER,
ctDs1ExtensionsLineBuildOut
INTEGER,
ctDs1ExtensionsCFADuration
INTEGER,
ctDs1ExtensionsDIEnable
INTEGER,
ctDs1ExtensionsTotalValidIntervals
Counter,
wanDs1ExtensionsBertTestMode
INTEGER,
wanDs1ExtensionsBertRun
INTEGER,
wanDs1ExtensionsBertCurrentResults
INTEGER,
wanDs1ExtensionsBertCumulativeResults
INTEGER,
wanDs1ExtensionsBertPeakResults
INTEGER,
wanDs1ExtensionsBertAverageResult
INTEGER,
wanDs1ExtensionsBertTestPattern
INTEGER,
wanDs1ExtensionsBertSamplePeriod
INTEGER,
wanDs1ExtensionsBertNumPeriods
Counter,
wanDs1ExtensionsBertTestTraps
INTEGER,
wanDs1ExtensionsBertDataStatus
INTEGER
}
ctDs1ExtensionsEntryIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each ds1 physical port on the platform."
::= { ctDs1ExtensionsEntry 1 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.1
ctDs1ExtensionsNumInterfaces OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of interfaces on this physical port. This
number inidicates the number of entries this physical port
uses in the ifTable."
REFERENCE
"rfc-1213"
::= { ctDs1ExtensionsEntry 2 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.2
ctDs1ExtensionsToggleFracTable OBJECT-TYPE
SYNTAX INTEGER {
update-table(1),
display-new(2),
display-old(3),
restore-old(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to 1 will cause the Ds1 Fractional
Table to be updated with the new values, as entered.
Setting this object to 2, will cause the Ds1 Fractional
Table to view as the table being entered.
Setting this object to 3, will cause the Ds1 Fractional
Table to be the table that is currently in use, regardless
of any changes being entered.
Setting this object to 4, will cause any changes that have
been made to the Ds1 Fractional Table since the last
update-table to be deleted.
For physical ports that are of type synch, or for Ds1 ports
that do not support the Ds1 Fractional Table, this object will
have no affect, and will always return a 1."
REFERENCE
"rfc-1406"
::= { ctDs1ExtensionsEntry 3 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.3
ctDs1ExtensionsLineBuildOut OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
zero(2),
minus-7point5(3),
minus-15(4),
a133to266feet(5),
a266to399feet(6),
a399to533feet(7),
a533to655feet(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The line build out setting for this ds1 physical port.
Unknown indicates that the setting is neither readable or
writable."
DEFVAL { zero }
::= { ctDs1ExtensionsEntry 4 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.4
ctDs1ExtensionsCFADuration OBJECT-TYPE
SYNTAX INTEGER (1..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The length of time (in seconds), that the ds1 port will
remain in the Carrier Failure Alarm state after the
alarm condition has cleared. For those Ds1 ports not
supporting Carrier Failure Alarm duration, this object
always returns 1, and setting the object has no effect."
::= { ctDs1ExtensionsEntry 5 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.5
ctDs1ExtensionsDIEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enables or disables Drop and Insert functionality on a
D/I WPIM. If enabled, all zero assigned timeslots will
designate D/I interface channels, if disabled all zero
channels will designate dummy channels as on a T1 or E1."
DEFVAL { enable }
::= { ctDs1ExtensionsEntry 6 }
-- 1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.6