1CTRON-REMOTE-ACCESS-MIB DEFINITIONS ::= BEGIN
2
3--  ctron-remote-access-mib.txt  The Cabletron Remote Access MIB.
4--  Revision: 1.00.04
5--  Part Number:
6--  Date:  November 24, 1998
7--  Cabletron Systems, Inc.
8--  35 Industrial Way, P.O. Box 5005
9--  Rochester, NH 03867-0505
10--  (603) 332-9400
11--  support@ctron.com
12
13--  This module provides authoritative definitions for part
14--  of the naming tree below:
15--
16--  cabletron { enterprises 52 }
17--
18--  This module will be extended, as additional sub-sections
19--  of this naming tree are defined.
20--
21
22--  Cabletron Systems reserves the right to make changes in
23--  specification and other information contained in this document
24--  without prior notice.  The reader should consult Cabletron Systems
25--  to determine whether any such changes have been made.
26--
27--  In no event shall Cabletron Systems be liable for any incidental,
28--  indirect, special, or consequential damages whatsoever (including
29--  but not limited to lost profits) arising out of or related to this
30--  document or the information contained in it, even if Cabletron
31--  Systems has been advised of, known, or should have known, the
32--  possibility of such damages.
33--
34--  Cabletron grants vendors, end-users, and other interested parties
35--  a non-exclusive license to use this Specification in connection
36--  with the management of Cabletron products.
37
38--  Copyright August 1997 Cabletron Systems
39
40
41   IMPORTS
42        IpAddress, Counter,enterprises          FROM RFC1155-SMI
43        DisplayString                           FROM RFC1213-MIB
44        OBJECT-TYPE                             FROM RFC-1212;
45
46
47        Index ::= INTEGER
48
49        DLCI ::= INTEGER
50
51        --  DisplayString ::= OCTET STRING
52
53        cabletron               OBJECT IDENTIFIER ::= { enterprises 52 }
54--                      1.3.6.1.4.1.52
55
56        mibs                    OBJECT IDENTIFIER ::= { cabletron 4 }
57--                      1.3.6.1.4.1.52.4
58
59        ctron                   OBJECT IDENTIFIER ::= { mibs 1 }
60--                      1.3.6.1.4.1.52.4.1
61
62        ctDataLink              OBJECT IDENTIFIER ::= { ctron 2 }
63--                      1.3.6.1.4.1.52.4.1.2
64
65        ctronWan                OBJECT IDENTIFIER ::= { ctDataLink 7 }
66--                      1.3.6.1.4.1.52.4.1.2.7
67
68        ctRemoteAccess          OBJECT IDENTIFIER ::= { ctronWan 2 }
69--                      1.3.6.1.4.1.52.4.1.2.7.2
70----------------------------------------------------------
71-- Groups
72
73        ctRemoteConnection      OBJECT IDENTIFIER ::= { ctRemoteAccess 1 }
74--                      1.3.6.1.4.1.52.4.1.2.7.2.1
75
76        ctDs1Ext                OBJECT IDENTIFIER ::= { ctRemoteAccess 2 }
77--                      1.3.6.1.4.1.52.4.1.2.7.2.2
78
79        ctRs232Ext              OBJECT IDENTIFIER ::= { ctRemoteAccess 3 }
80--                      1.3.6.1.4.1.52.4.1.2.7.2.3
81
82        ctFrDcp                 OBJECT IDENTIFIER ::= { ctRemoteAccess 4 }
83--                      1.3.6.1.4.1.52.4.1.2.7.2.4
84
85        ctDDSExt                OBJECT IDENTIFIER ::= { ctRemoteAccess 5 }
86--                      1.3.6.1.4.1.52.4.1.2.7.2.5
87
88        ctPPPExt                OBJECT IDENTIFIER ::= { ctRemoteAccess 6 }
89--                      1.3.6.1.4.1.52.4.1.2.7.2.6
90
91        ctWanalyzer             OBJECT IDENTIFIER ::= { ctRemoteAccess 7 }
92--                      1.3.6.1.4.1.52.4.1.2.7.2.7
93
94    ctDs1Alarms     OBJECT IDENTIFIER ::= { ctRemoteAccess 8 }
95--                      1.3.6.1.4.1.52.4.1.2.7.2.8
96
97    ctIPPQFilters  OBJECT IDENTIFIER  ::= { ctRemoteAccess 9 }
98--                      1.3.6.1.4.1.52.4.1.2.7.2.9
99
100        ctDs3Ext                OBJECT IDENTIFIER ::= { ctRemoteAccess 10 }
101--                      1.3.6.1.4.1.52.4.1.2.7.2.10
102
103--      Cabletron Remote Access Connection Group
104--      This group is mandatory for all platforms that have one or more
105--      physical remote access connections
106
107        ctRemNumConnections OBJECT-TYPE
108        SYNTAX  INTEGER
109        ACCESS  read-only
110        STATUS  mandatory
111        DESCRIPTION
112                "This object describes the number of physical remote
113                access connections on the platform."
114        ::= { ctRemoteConnection 1 }
115--          1.3.6.1.4.1.52.4.1.2.7.2.1.1
116
117        ctRemPhysPortTable OBJECT-TYPE
118        SYNTAX  SEQUENCE OF CtRemPhysPortEntry
119        ACCESS  not-accessible
120        STATUS  mandatory
121        DESCRIPTION
122                "A list of the descriptions of the physical remote access
123                 ports of this platform."
124        ::= { ctRemoteConnection 2 }
125--          1.3.6.1.4.1.52.4.1.2.7.2.1.2
126
127        ctRemPhysPortEntry OBJECT-TYPE
128        SYNTAX  CtRemPhysPortEntry
129        ACCESS  not-accessible
130        STATUS  mandatory
131        DESCRIPTION
132                "A physical port entry. It contains objects relating to a
133                given physical remote access port"
134        INDEX   { ctRemConnectionIndex }
135        ::= { ctRemPhysPortTable 1 }
136--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1
137
138        CtRemPhysPortEntry ::=
139        SEQUENCE {
140                        ctRemConnectionIndex
141                        INTEGER,
142                        ctRemPhysPortType
143                        INTEGER,
144                        ctRemPhysPortSpecificMib
145                        OBJECT IDENTIFIER,
146                        ctRemPhysPortProtMgrType
147                        INTEGER,
148                        ctRemPhysPortProtMgrIfaceNum
149                        INTEGER,
150                        ctRemPhysPortWanIfaceNum
151                        INTEGER,
152                        ctRemPhysPortProtMgrMaxIfos
153                        INTEGER,
154                        ctRemPhysPortProtMgrIfaceList
155                        DisplayString,
156                        ctRemPhysAlarmTimeOut
157                        INTEGER,
158                        ctRemPhysWpimType
159                        INTEGER
160                        }
161
162        ctRemConnectionIndex    OBJECT-TYPE
163        SYNTAX  INTEGER
164        ACCESS  read-only
165        STATUS  mandatory
166        DESCRIPTION
167                "A value indicating the remote connection this entry
168                is located on."
169        ::= { ctRemPhysPortEntry 1 }
170--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.1
171
172        ctRemPhysPortType OBJECT-TYPE
173        SYNTAX  INTEGER {
174                        none(1),
175                        t1(2),
176                        e1(3),
177                        synchronous(4),
178                        dds(5),
179                        di(6),           -- Drop and Insert
180                        hdsl(7),
181                        isdnBRI(8),
182                        ds30(9),
183                        t1dds(10)
184                                        }
185        ACCESS  read-only
186        STATUS  mandatory
187        DESCRIPTION
188                "The type of physical port that this entry describes. None
189                indicates that the physical port has no connector."
190        DEFVAL { none }
191        ::= { ctRemPhysPortEntry 2 }
192--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.2
193
194        ctRemPhysPortSpecificMib OBJECT-TYPE
195        SYNTAX  OBJECT IDENTIFIER
196        ACCESS  read-only
197        STATUS  mandatory
198        DESCRIPTION
199                "This object identifies an instance of the
200                index object in the first group of objects in the
201                MIB specific to the physical port."
202        ::= { ctRemPhysPortEntry 3 }
203--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.3
204
205        ctRemPhysPortProtMgrType OBJECT-TYPE
206        SYNTAX  INTEGER {
207                        none(1),
208                        pppNailedUp(2),
209                        isdnPriPpp(3),
210                        isdnBriPpp(4),
211                        frameRelayPvcRtr(5),
212                        frameRelayPvcSw(6),
213                        hdlc(7)
214                                        }
215        ACCESS  read-write
216        STATUS  mandatory
217        DESCRIPTION
218                "This object identifies an instance of the type
219                of Protocol Manager residing on this physical
220                port.  Before a physical port may be used, the type
221                of manager must be designated.  For example, if the
222                physical port was going to be used as an ISDN PRI
223                interface, with dial up PPP links, then the manager
224                type would be set to (4), ISDN-PRI-PPP."
225        DEFVAL { none }
226        ::= { ctRemPhysPortEntry 4 }
227--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.4
228
229        ctRemPhysPortProtMgrIfaceNum OBJECT-TYPE
230        SYNTAX  INTEGER
231        ACCESS  read-write
232        STATUS  mandatory
233        DESCRIPTION
234                "This object identifies the interface number that
235                will be assigned to the Protocol Managers IFO"
236        ::= { ctRemPhysPortEntry 5 }
237--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.5
238
239        ctRemPhysPortWanIfaceNum OBJECT-TYPE
240        SYNTAX  INTEGER
241        ACCESS  read-only
242        STATUS  mandatory
243        DESCRIPTION
244                "This object identifies the interface number that
245                will be assigned to the Wanio's IFO"
246        ::= { ctRemPhysPortEntry 6 }
247--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.6
248
249        ctRemPhysPortProtMgrMaxIfos OBJECT-TYPE
250        SYNTAX  INTEGER
251        ACCESS  read-write
252        STATUS  mandatory
253        DESCRIPTION
254                "This object identifies the maximum number of IFO's
255                that can be created on this physical interface."
256        ::= { ctRemPhysPortEntry 7 }
257--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.7
258
259        ctRemPhysPortProtMgrIfaceList OBJECT-TYPE
260        SYNTAX  DisplayString
261        ACCESS  read-only
262        STATUS  mandatory
263        DESCRIPTION
264                "This object identifies a list of interfaces that
265                will be assigned to this Protocol Managers data IFO's"
266        ::= { ctRemPhysPortEntry 8 }
267--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.8
268
269        ctRemPhysAlarmTimeOut OBJECT-TYPE
270        SYNTAX  INTEGER
271        ACCESS  read-write
272        STATUS  mandatory
273        DESCRIPTION
274                "Whenever the physical port is configured for nailed-up
275                PPP this object specifies the time the physical port
276                must remain in a failed state as a condition to begin
277                the backup procedure. The backup procedure is begun for
278                any active interface(s) that were connected over the
279                failed physical port and which have been configured for
280                backup."
281        ::= { ctRemPhysPortEntry 9 }
282--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.9
283
284        ctRemPhysWpimType OBJECT-TYPE
285        SYNTAX  INTEGER
286        ACCESS  read-write
287        STATUS  mandatory
288        DESCRIPTION
289                "This Mib object determines the Mode of operation that
290                the T1/DDS Wpim module will function as. Setting a value
291                of 1 will set the mode to DDS, setting a value of 2 will
292                set the mode to T1."
293        DEFVAL { 2 }
294        ::= { ctRemPhysPortEntry 10 }
295--          1.3.6.1.4.1.52.4.1.2.7.2.1.2.1.10
296
297        ctRemInterfaceTable OBJECT-TYPE
298        SYNTAX  SEQUENCE OF CtRemInterfaceEntry
299        ACCESS  not-accessible
300        STATUS  mandatory
301        DESCRIPTION
302                "The interface table for Cabletron remote interfaces.
303                It is a list of items that are pertinant to the interfaces
304                that are part of remote physical ports. The number of
305                entries is dependent upon the total number of remote
306                interfaces configured."
307        ::= { ctRemoteConnection 3 }
308--          1.3.6.1.4.1.52.4.1.2.7.2.1.3
309
310        ctRemInterfaceEntry OBJECT-TYPE
311        SYNTAX  CtRemInterfaceEntry
312        ACCESS  not-accessible
313        STATUS  mandatory
314        DESCRIPTION
315                "A remote interface entry. It
316                contains objects relating to an interface that is defined
317                for remote Cabletron products."
318        INDEX   { ctRemIntEntIfIndex }
319        ::= { ctRemInterfaceTable 1 }
320--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1
321
322        CtRemInterfaceEntry  ::=
323        SEQUENCE {
324                        ctRemIntEntIfIndex
325                        INTEGER,
326                        ctRemIntEntCompression
327                        INTEGER,
328                        ctRemIntEntCompRatio
329                        DisplayString,
330                        ctRemIntEntCompStatus
331                        INTEGER,
332                        ctRemIntEntMTU
333                        INTEGER,
334                        ctRemIntEntCongestion
335                        INTEGER,
336                        ctRemIntEntMaxProfiles
337                        INTEGER,
338                        ctRemIntEntTxIdleTimeout
339                        INTEGER,
340                        ctRemIntEntRxIdleTimeout
341                        INTEGER,
342                        ctRemIntEntCircuitName
343                        DisplayString,
344                        ctRemIntEntEncryption
345                        INTEGER,
346                        ctRemIntEntEncryptStatus
347                        INTEGER
348                        }
349
350        ctRemIntEntIfIndex OBJECT-TYPE
351        SYNTAX  INTEGER
352        ACCESS  read-only
353        STATUS  mandatory
354        DESCRIPTION
355                "The ifIndex of the interface. This is the index of this
356                entry in the ifTable."
357        REFERENCE
358                "rfc-1213"
359        ::= { ctRemInterfaceEntry 1 }
360--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.1
361
362        ctRemIntEntCompression OBJECT-TYPE
363        SYNTAX  INTEGER {
364                                on(1),
365                                off(2)
366                                        }
367        ACCESS  read-write
368        STATUS  mandatory
369        DESCRIPTION
370                "This flag will indicate whether compression should take
371                place on this interface."
372        DEFVAL { off }
373        ::= { ctRemInterfaceEntry 2 }
374--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.2
375
376        ctRemIntEntCompRatio OBJECT-TYPE
377        SYNTAX  DisplayString
378        ACCESS  read-only
379        STATUS  mandatory
380        DESCRIPTION
381                "This string indicates the current compression ratio
382                on this interface."
383        ::= { ctRemInterfaceEntry 3 }
384--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.3
385
386        ctRemIntEntCompStatus OBJECT-TYPE
387        SYNTAX  INTEGER {
388                                on(1),
389                                off(2)
390                                        }
391        ACCESS  read-only
392        STATUS  mandatory
393        DESCRIPTION
394                "This flag will indicate whether compression has been
395                nogotiated on this interface."
396        ::= { ctRemInterfaceEntry 4 }
397--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.4
398
399        ctRemIntEntMTU OBJECT-TYPE
400        SYNTAX  INTEGER
401        ACCESS  read-write
402        STATUS  mandatory
403        DESCRIPTION
404                "The MTU to be negotiated for this interface. This will
405                not be updated with the actual MTU, which can be found
406                in the ifTable."
407        ::= { ctRemInterfaceEntry 5 }
408--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.5
409
410        ctRemIntEntCongestion OBJECT-TYPE
411        SYNTAX  INTEGER {
412                                enabled(1),
413                                disabled(2)
414                                        }
415        ACCESS  read-write
416        STATUS  mandatory
417        DESCRIPTION
418                "This object identifies the Leaky Bucket algorithm flag for
419                a Frame Relay circuit on this intertface. The option is
420                supported when this flag is enabled, and not supported
421                when this flag is disabled."
422        DEFVAL { disabled }
423        ::= { ctRemInterfaceEntry 6 }
424--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.6
425
426        ctRemIntEntMaxProfiles OBJECT-TYPE
427        SYNTAX  INTEGER
428        ACCESS  read-write
429        STATUS  mandatory
430        DESCRIPTION
431        "This object specifies the maximum number of neighbor profiles.
432        A neighbor profile describes a possible connection. The maximum
433        should be set to account for support of PPP multilink. That is
434        to say, if PPP multilink is being used then the number of profiles
435        must at least accomodate the maximum possible number of additional
436        more BW connections. As such, each neighbor profile would then
437        describe a possible connection to the same remote end point."
438        ::= { ctRemInterfaceEntry 7 }
439--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.7
440
441        ctRemIntEntTxIdleTimeout OBJECT-TYPE
442        SYNTAX  INTEGER
443        ACCESS  read-write
444        STATUS  mandatory
445        DESCRIPTION
446                "This object identifies the idle timeout value in which a
447                packet needs to be transmitted before the interface is
448                automatically disconnected. Allowed values are in
449                increments of five seconds including zero."
450        ::= { ctRemInterfaceEntry 8 }
451--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.8
452
453        ctRemIntEntRxIdleTimeout OBJECT-TYPE
454        SYNTAX  INTEGER
455        ACCESS  read-write
456        STATUS  mandatory
457        DESCRIPTION
458                "This object identifies the idle timeout in which a packet
459                needs to be received before the interface is automatically
460                disconnected. Allowed values are in increments of five
461                seconds including zero."
462        ::= { ctRemInterfaceEntry 9 }
463--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.9
464
465        ctRemIntEntCircuitName OBJECT-TYPE
466        SYNTAX  DisplayString
467        ACCESS  read-write
468        STATUS  mandatory
469        DESCRIPTION
470        "This object associates a circuit name with a specific interface."
471        ::= { ctRemInterfaceEntry 10 }
472--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.10
473
474        ctRemIntEntEncryption OBJECT-TYPE
475        SYNTAX  INTEGER {
476                                on(1),
477                                off(2)
478                                        }
479        ACCESS  read-write
480        STATUS  mandatory
481        DESCRIPTION
482                "This flag will indicate whether encryption should take
483                place on this interface."
484        DEFVAL { off }
485        ::= { ctRemInterfaceEntry 11 }
486--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.11
487
488        ctRemIntEntEncryptStatus OBJECT-TYPE
489        SYNTAX  INTEGER {
490                                on(1),
491                                off(2)
492                                        }
493        ACCESS  read-only
494        STATUS  mandatory
495        DESCRIPTION
496                "This flag will indicate whether Encryption has been
497                nogotiated on this interface."
498        ::= { ctRemInterfaceEntry 12 }
499--          1.3.6.1.4.1.52.4.1.2.7.2.1.3.1.12
500
501        ctRemPrimaryInterfaceTable OBJECT-TYPE
502        SYNTAX  SEQUENCE OF CtRemPrimaryInterfaceEntry
503        ACCESS  not-accessible
504        STATUS  mandatory
505        DESCRIPTION
506                "The interface table for Cabletron remote interfaces.
507                It is a list of items that are pertinant to the interfaces
508                that are part of remote physical ports. The number of
509                entries is dependent upon the total number of remote
510                interfaces configured."
511        ::= { ctRemoteConnection 4 }
512--          1.3.6.1.4.1.52.4.1.2.7.2.1.4
513
514        ctRemPrimaryInterfaceEntry OBJECT-TYPE
515        SYNTAX  CtRemPrimaryInterfaceEntry
516        ACCESS  not-accessible
517        STATUS  mandatory
518        DESCRIPTION
519                "A remote interface entry. It
520                contains objects relating to an interface that is defined
521                for remote Cabletron products."
522        INDEX   { ctRemPriIntEntIfIndex }
523        ::= { ctRemPrimaryInterfaceTable 1 }
524--          1.3.6.1.4.1.52.4.1.2.7.2.1.4.1
525
526        CtRemPrimaryInterfaceEntry  ::=
527        SEQUENCE {
528                        ctRemPriIntEntIfIndex
529                        INTEGER,
530                        ctRemPriIntEntConnectRetryInterval
531                        INTEGER
532                        }
533
534        ctRemPriIntEntIfIndex OBJECT-TYPE
535        SYNTAX  INTEGER
536        ACCESS  read-only
537        STATUS  mandatory
538        DESCRIPTION
539                "The ifIndex of the interface. This is the index of this
540                entry in the ifTable."
541        REFERENCE
542                "rfc-1213"
543        ::= { ctRemPrimaryInterfaceEntry 1 }
544--          1.3.6.1.4.1.52.4.1.2.7.2.1.4.1.1
545
546        ctRemPriIntEntConnectRetryInterval OBJECT-TYPE
547        SYNTAX  INTEGER
548        ACCESS  read-write
549        STATUS  mandatory
550        DESCRIPTION
551                "This object specifies the interval in seconds between retries
552                for restoring the primary interface."
553        DEFVAL { 30 }
554        ::= { ctRemPrimaryInterfaceEntry 2 }
555--          1.3.6.1.4.1.52.4.1.2.7.2.1.4.1.2
556
557        ctRemBackupInterfaceTable OBJECT-TYPE
558        SYNTAX  SEQUENCE OF CtRemBackupInterfaceEntry
559        ACCESS  not-accessible
560        STATUS  mandatory
561        DESCRIPTION
562                "The interface table for Cabletron remote interfaces.
563                It is a list of items that are pertinant to the interfaces
564                that are part of remote physical ports. The number of
565                entries is dependent upon the total number of remote
566                interfaces configured."
567        ::= { ctRemoteConnection 5 }
568--          1.3.6.1.4.1.52.4.1.2.7.2.1.5
569
570        ctRemBackupInterfaceEntry OBJECT-TYPE
571        SYNTAX  CtRemBackupInterfaceEntry
572        ACCESS  not-accessible
573        STATUS  mandatory
574        DESCRIPTION
575                "A remote interface entry. It
576                contains objects relating to an interface that is defined
577                for remote Cabletron products."
578        INDEX   { ctRemIntEntBackupIfIndex }
579        ::= { ctRemBackupInterfaceTable 1 }
580--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1
581
582        CtRemBackupInterfaceEntry  ::=
583        SEQUENCE {
584                        ctRemIntEntBackupIfIndex
585                        INTEGER,
586                        ctRemIntEntBackupIfNum
587                        INTEGER,
588                        ctRemIntEntBackupIfInUseCnt
589                        INTEGER,
590                        ctRemIntEntBackupIfTimeToConnect
591                        INTEGER,
592                        ctRemIntEntBackupIfTimeToDisconnect
593                        INTEGER,
594                        ctRemIntEntBackupIfOverride
595                        INTEGER,
596                        ctRemIntEntBackupConnectRetries
597                        INTEGER,
598                        ctRemIntEntBackupConnectRetryInterval
599                        INTEGER
600                        }
601
602        ctRemIntEntBackupIfIndex OBJECT-TYPE
603        SYNTAX  INTEGER
604        ACCESS  read-only
605        STATUS  mandatory
606        DESCRIPTION
607                "The ifIndex of the interface. This is the index of this
608                entry in the ifTable."
609        REFERENCE
610                "rfc-1213"
611        ::= { ctRemBackupInterfaceEntry 1 }
612--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.1
613
614        ctRemIntEntBackupIfNum OBJECT-TYPE
615        SYNTAX  INTEGER
616        ACCESS  read-write
617        STATUS  mandatory
618        DESCRIPTION
619                "This object identifies which ifIndex will backup this
620                interface in the event of a communications failure."
621        ::= { ctRemBackupInterfaceEntry 2 }
622--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.2
623
624        ctRemIntEntBackupIfInUseCnt OBJECT-TYPE
625        SYNTAX  INTEGER
626        ACCESS  read-only
627        STATUS  mandatory
628        DESCRIPTION
629                "This object identifies how many other interfaces this
630                interface will backup."
631        ::= { ctRemBackupInterfaceEntry 3 }
632--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.3
633
634        ctRemIntEntBackupIfTimeToConnect OBJECT-TYPE
635        SYNTAX  INTEGER
636        ACCESS  read-write
637        STATUS  mandatory
638        DESCRIPTION
639                "This object identifies how long to wait in seconds before
640                attempting to switchover to the backup interface. Allowed
641                values are in increments of five seconds including zero."
642        ::= { ctRemBackupInterfaceEntry 4 }
643--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.4
644
645        ctRemIntEntBackupIfTimeToDisconnect OBJECT-TYPE
646        SYNTAX  INTEGER
647        ACCESS  read-write
648        STATUS  mandatory
649        DESCRIPTION
650                "This object identifies how long to wait in seconds before
651                attempting to switchover to the primary interface. Allowed
652                values are in increments of five seconds including zero."
653        ::= { ctRemBackupInterfaceEntry 5 }
654--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.5
655
656        ctRemIntEntBackupIfOverride OBJECT-TYPE
657        SYNTAX  INTEGER {
658                                enabled(1),
659                                disabled(2)
660                                        }
661        ACCESS  read-write
662        STATUS  mandatory
663        DESCRIPTION
664                "This object identifies if the interface will switch back to
665                the primary link after it has become active again. A force
666                condition will not allow the interface to switch back."
667        DEFVAL { disabled }
668        ::= { ctRemBackupInterfaceEntry 6 }
669--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.6
670
671        ctRemIntEntBackupConnectRetries OBJECT-TYPE
672        SYNTAX  INTEGER
673        ACCESS  read-write
674        STATUS  mandatory
675        DESCRIPTION
676                "This object specifies the number of tries to bring-up the
677                backup interface before giving up."
678        ::= { ctRemBackupInterfaceEntry 7 }
679--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.7
680
681        ctRemIntEntBackupConnectRetryInterval OBJECT-TYPE
682        SYNTAX  INTEGER
683        ACCESS  read-write
684        STATUS  mandatory
685        DESCRIPTION
686                "This object specifies the interval in seconds between retries
687                for bringing up backup interface before giving up."
688        ::= { ctRemBackupInterfaceEntry 8 }
689--          1.3.6.1.4.1.52.4.1.2.7.2.1.5.1.8
690
691        ctRemExtPhysPortTable OBJECT-TYPE
692        SYNTAX  SEQUENCE OF CtRemExtPhysPortEntry
693        ACCESS  not-accessible
694        STATUS  mandatory
695        DESCRIPTION
696                "A list of the descriptions of the physical remote access
697                 ports of this platform."
698        ::= { ctRemoteConnection 6 }
699--          1.3.6.1.4.1.52.4.1.2.7.2.1.6
700
701        ctRemExtPhysPortEntry OBJECT-TYPE
702        SYNTAX  CtRemExtPhysPortEntry
703        ACCESS  not-accessible
704        STATUS  mandatory
705        DESCRIPTION
706                "A physical port entry. It contains objects relating to a
707                given physical remote access port"
708        INDEX   { ctRemExtConnectionIndex }
709        ::= { ctRemExtPhysPortTable 1 }
710--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1
711
712        CtRemExtPhysPortEntry ::=
713        SEQUENCE {
714                        ctRemExtConnectionIndex
715                        INTEGER,
716                        ctRemExtProtMgrIndex
717                        INTEGER,
718                        ctRemExtPhysPortProtMgrType
719                        INTEGER,
720                        ctRemExtPhysPortProtMgrEnable
721                        INTEGER,
722                        ctRemExtPhysPortProtMgrIfaceNum
723                        INTEGER,
724                        ctRemExtPhysPortProtMgrMaxIfos
725                        INTEGER,
726                        ctRemExtPhysPortProtMgrIfaceList
727                        DisplayString,
728                        ctRemExtPhysPortProtMgrChannelList
729                        DisplayString
730                        }
731
732        ctRemExtConnectionIndex OBJECT-TYPE
733        SYNTAX  INTEGER
734        ACCESS  read-only
735        STATUS  mandatory
736        DESCRIPTION
737                "A value indicating the remote connection this entry
738                is located on."
739        ::= { ctRemExtPhysPortEntry 1 }
740--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.1
741
742        ctRemExtProtMgrIndex    OBJECT-TYPE
743        SYNTAX  INTEGER
744        ACCESS  read-only
745        STATUS  mandatory
746        DESCRIPTION
747                "A value indicating the protMgr number for this entry."
748        ::= { ctRemExtPhysPortEntry 2 }
749--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.2
750
751        ctRemExtPhysPortProtMgrType OBJECT-TYPE
752        SYNTAX  INTEGER {
753                        none(1),
754                        pppNailedUp(2),
755                        isdnPriPpp(3),
756                        isdnBriPpp(4),
757                        frameRelayPvcRtr(5),
758                        frameRelayPvcSw(6),
759                        hdlc(7)
760                                        }
761        ACCESS  read-write
762        STATUS  mandatory
763        DESCRIPTION
764                "This object identifies an instance of the type
765                of Protocol Manager residing on this physical
766                port.  Before a physical port may be used, the type
767                of manager must be designated.  For example, if the
768                physical port was going to be used as an ISDN PRI
769                interface, with dial up PPP links, then the manager
770                type would be set to (4), ISDN-PRI-PPP."
771        DEFVAL { none }
772        ::= { ctRemExtPhysPortEntry 3 }
773--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.3
774
775        ctRemExtPhysPortProtMgrEnable OBJECT-TYPE
776        SYNTAX  INTEGER {
777                        enabled(1),
778                        disabled(2)
779                                        }
780        ACCESS  read-write
781        STATUS  mandatory
782        DESCRIPTION
783                "This object identifies an instance of the the
784                enable flag of Protocol Manager residing on this
785                physical port."
786        DEFVAL { disabled }
787        ::= { ctRemExtPhysPortEntry 4 }
788--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.4
789
790        ctRemExtPhysPortProtMgrIfaceNum OBJECT-TYPE
791        SYNTAX  INTEGER
792        ACCESS  read-write
793        STATUS  mandatory
794        DESCRIPTION
795                "This object identifies the interface number that
796                will be assigned to the Protocol Managers IFO"
797        ::= { ctRemExtPhysPortEntry 5 }
798--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.5
799
800        ctRemExtPhysPortProtMgrMaxIfos OBJECT-TYPE
801        SYNTAX  INTEGER
802        ACCESS  read-write
803        STATUS  mandatory
804        DESCRIPTION
805                "This object identifies the maximum number of IFO's
806                that can be created on this physical interface."
807        ::= { ctRemExtPhysPortEntry 6 }
808--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.6
809
810        ctRemExtPhysPortProtMgrIfaceList OBJECT-TYPE
811        SYNTAX  DisplayString
812        ACCESS  read-only
813        STATUS  mandatory
814        DESCRIPTION
815                "This object identifies a list of interfaces that
816                will be assigned to this Protocol Managers data IFO's"
817        ::= { ctRemExtPhysPortEntry 7 }
818--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.7
819
820        ctRemExtPhysPortProtMgrChannelList OBJECT-TYPE
821        SYNTAX  DisplayString
822        ACCESS  read-only
823        STATUS  mandatory
824        DESCRIPTION
825                "This object identifies a list of channles/timeslots
826                that will be assigned to this Protocol Managers data IFO's"
827        ::= { ctRemExtPhysPortEntry 8 }
828--          1.3.6.1.4.1.52.4.1.2.7.2.1.6.1.8
829
830
831-- Cabletron Ds1 Extensions Group
832-- This group is required for any platforms that have a t1 or e1 physical
833-- port.
834
835        ctDs1ExtensionsTable OBJECT-TYPE
836        SYNTAX  SEQUENCE OF CtDs1ExtensionsEntry
837        ACCESS  not-accessible
838        STATUS  mandatory
839        DESCRIPTION
840                "This table is an extension to the standard ds1 configuration
841                table. It is a list of items that are pertinant to ds1 ports
842                on a platform. There is one entry per ds1 physical port on
843                the platform."
844        ::= { ctDs1Ext 1 }
845--          1.3.6.1.4.1.52.4.1.2.7.2.2.1
846
847        ctDs1ExtensionsEntry OBJECT-TYPE
848        SYNTAX  CtDs1ExtensionsEntry
849        ACCESS  not-accessible
850        STATUS  mandatory
851        DESCRIPTION
852                "A ds1 extensions entry containing objects relating to
853                the particular ds1 physical port."
854        INDEX   { ctDs1ExtensionsEntryIndex }
855        ::= { ctDs1ExtensionsTable 1 }
856--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1
857
858        CtDs1ExtensionsEntry ::=
859        SEQUENCE {
860                        ctDs1ExtensionsEntryIndex
861                        INTEGER,
862                        ctDs1ExtensionsNumInterfaces
863                        INTEGER,
864                        ctDs1ExtensionsToggleFracTable
865                        INTEGER,
866                        ctDs1ExtensionsLineBuildOut
867                        INTEGER,
868                        ctDs1ExtensionsCFADuration
869                        INTEGER,
870                        ctDs1ExtensionsDIEnable
871                        INTEGER,
872                        ctDs1ExtensionsTotalValidIntervals
873                        Counter,
874                        wanDs1ExtensionsBertTestMode
875                        INTEGER,
876                        wanDs1ExtensionsBertRun
877                        INTEGER,
878                        wanDs1ExtensionsBertCurrentResults
879                        INTEGER,
880                        wanDs1ExtensionsBertCumulativeResults
881                        INTEGER,
882                        wanDs1ExtensionsBertPeakResults
883                        INTEGER,
884                        wanDs1ExtensionsBertAverageResult
885                        INTEGER,
886                        wanDs1ExtensionsBertTestPattern
887                        INTEGER,
888                        wanDs1ExtensionsBertSamplePeriod
889                        INTEGER,
890                        wanDs1ExtensionsBertNumPeriods
891                        Counter,
892                        wanDs1ExtensionsBertTestTraps
893                        INTEGER,
894                        wanDs1ExtensionsBertDataStatus
895                        INTEGER
896                }
897
898        ctDs1ExtensionsEntryIndex OBJECT-TYPE
899        SYNTAX  INTEGER
900        ACCESS  read-only
901        STATUS  mandatory
902        DESCRIPTION
903                "A unique value for each ds1 physical port on the platform."
904        ::= { ctDs1ExtensionsEntry 1 }
905--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.1
906
907        ctDs1ExtensionsNumInterfaces OBJECT-TYPE
908        SYNTAX  INTEGER
909        ACCESS  read-only
910        STATUS  mandatory
911        DESCRIPTION
912                "The number of interfaces on this physical port. This
913                number inidicates the number of entries this physical port
914                uses in the ifTable."
915        REFERENCE
916                "rfc-1213"
917        ::= { ctDs1ExtensionsEntry 2 }
918--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.2
919
920        ctDs1ExtensionsToggleFracTable OBJECT-TYPE
921        SYNTAX  INTEGER {
922                        update-table(1),
923                        display-new(2),
924                        display-old(3),
925                        restore-old(4)
926                                        }
927        ACCESS  read-write
928        STATUS  mandatory
929        DESCRIPTION
930                "Setting this object to 1 will cause the Ds1 Fractional
931                Table to be updated with the new values, as entered.
932
933                Setting this object to 2, will cause the Ds1 Fractional
934                Table to view as the table being entered.
935
936                Setting this object to 3, will cause the Ds1 Fractional
937                Table to be the table that is currently in use, regardless
938                of any changes being entered.
939
940                Setting this object to 4, will cause any changes that have
941                been made to the Ds1 Fractional Table since the last
942                update-table to be deleted.
943
944                For physical ports that are of type synch, or for Ds1 ports
945                that do not support the Ds1 Fractional Table, this object will
946                have no affect, and will always return a 1."
947        REFERENCE
948                "rfc-1406"
949        ::= { ctDs1ExtensionsEntry 3 }
950--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.3
951
952        ctDs1ExtensionsLineBuildOut OBJECT-TYPE
953        SYNTAX  INTEGER {
954                        unknown(1),
955                        zero(2),
956                        minus-7point5(3),
957                        minus-15(4),
958                        a133to266feet(5),
959                        a266to399feet(6),
960                        a399to533feet(7),
961                        a533to655feet(8)
962                                        }
963        ACCESS  read-write
964        STATUS  mandatory
965        DESCRIPTION
966                "The line build out setting for this ds1 physical port.
967                Unknown indicates that the setting is neither readable or
968                writable."
969        DEFVAL { zero }
970        ::= { ctDs1ExtensionsEntry 4 }
971--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.4
972
973        ctDs1ExtensionsCFADuration OBJECT-TYPE
974        SYNTAX  INTEGER (1..15)
975        ACCESS  read-write
976        STATUS  mandatory
977        DESCRIPTION
978                "The length of time (in seconds), that the ds1 port will
979                remain in the Carrier Failure Alarm state after the
980                alarm condition has cleared. For those Ds1 ports not
981                supporting Carrier Failure Alarm duration, this object
982                always returns 1, and setting the object has no effect."
983        ::= { ctDs1ExtensionsEntry 5 }
984--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.5
985
986        ctDs1ExtensionsDIEnable OBJECT-TYPE
987        SYNTAX  INTEGER {
988                        enable(1),
989                        disable(2)
990                                        }
991        ACCESS  read-write
992        STATUS  mandatory
993        DESCRIPTION
994                "Enables or disables Drop and Insert functionality on a
995                D/I WPIM.  If enabled, all zero assigned timeslots will
996                designate D/I interface channels, if disabled all zero
997                channels will designate dummy channels as on a T1 or E1."
998        DEFVAL { enable }
999        ::= { ctDs1ExtensionsEntry 6 }
1000--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.6
1001
1002        ctDs1ExtensionsTotalValidIntervals OBJECT-TYPE
1003        SYNTAX  Counter
1004        ACCESS  read-only
1005        STATUS  mandatory
1006        DESCRIPTION
1007                "The number of  previous  intervals  for  which
1008                valid data was collected for the DS1 mib, which
1009                is currently RFC1406.  This counter is similar to
1010                RFC1406 dsx1ValidIntervals except that the count
1011                represents the total number of complete 15 minute
1012                intervals since the ds1 interface has been online,
1013                and does not stop at the 24 hour period."
1014        ::= { ctDs1ExtensionsEntry 7 }
1015--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.7
1016
1017    wanDs1ExtensionsBertTestMode        OBJECT-TYPE
1018        SYNTAX  INTEGER{
1019        none(1),
1020        internal(2),
1021        manual(3)
1022        }
1023        ACCESS  read-write
1024        STATUS  mandatory
1025        DESCRIPTION
1026                "This object is used to request that a type of
1027                process be in control of the testing function.
1028                This is used to differentiate between automated test
1029                procedures and those manually controlled by a user.
1030                When read, this object reflects which type of process
1031                is actually in control of the testing function.  The
1032                implementation is free to prioritize or deny requests
1033                in a proprietary manner."
1034        ::= { ctDs1ExtensionsEntry 8 }
1035--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.8
1036
1037    wanDs1ExtensionsBertRun   OBJECT-TYPE
1038        SYNTAX  INTEGER {
1039                disabled(1),
1040                enabled(2)
1041                }
1042        ACCESS      read-write
1043        STATUS      mandatory
1044        DESCRIPTION
1045                "Controls the sending of test data over this physical
1046                port.  The data is a pattern described by
1047                wanDs1ExtensionsBertTestPattern."
1048        ::= { ctDs1ExtensionsEntry 9 }
1049--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.9
1050
1051    wanDs1ExtensionsBertCurrentResults   OBJECT-TYPE
1052        SYNTAX  INTEGER
1053        ACCESS      read-only
1054        STATUS      mandatory
1055        DESCRIPTION
1056                "Indicates the results of the testing for the
1057                last completed sampling period.  A non-negative
1058                number is the error rate in bits per million bits."
1059        ::= { ctDs1ExtensionsEntry 10 }
1060--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.10
1061
1062    wanDs1ExtensionsBertCumulativeResults   OBJECT-TYPE
1063        SYNTAX  INTEGER
1064        ACCESS      read-only
1065        STATUS      mandatory
1066        DESCRIPTION
1067                "Indicates the total number of errors since the
1068                testing was enabled.  It is not a rate."
1069        ::= { ctDs1ExtensionsEntry 11 }
1070--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.11
1071
1072    wanDs1ExtensionsBertPeakResults   OBJECT-TYPE
1073        SYNTAX  INTEGER
1074        ACCESS      read-only
1075        STATUS      mandatory
1076        DESCRIPTION
1077                "Indicates the highest value of
1078                wanDs1ExtensionsBertCurrentResults since the testing
1079                was enabled.  A non-negative number is the error rate
1080                in bits per million bits."
1081        ::= { ctDs1ExtensionsEntry 12 }
1082--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.12
1083
1084    wanDs1ExtensionsBertAverageResult   OBJECT-TYPE
1085        SYNTAX  INTEGER
1086        ACCESS      read-only
1087        STATUS      mandatory
1088        DESCRIPTION
1089                "Indicates the average value of
1090                wanDs1ExtensionsBertCurrentResults since the testing
1091                was enabled.  A non-negative number is the error rate
1092                in bits per million bits."
1093        ::= { ctDs1ExtensionsEntry 13 }
1094--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.13
1095
1096    wanDs1ExtensionsBertTestPattern     OBJECT-TYPE
1097        SYNTAX  INTEGER {
1098                patternOther(1),
1099                pattern1s(2),
1100                pattern63(3),
1101                pattern511(4),
1102                pattern2047(5),
1103                pattern3in24(6),
1104                patternQRSS(7)
1105                }
1106        ACCESS  read-write
1107        STATUS  mandatory
1108        DESCRIPTION
1109                "This object is used to specify the pattern of the
1110                test data."
1111        ::= { ctDs1ExtensionsEntry 14 }
1112--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.14
1113
1114    wanDs1ExtensionsBertSamplePeriod    OBJECT-TYPE
1115        SYNTAX  INTEGER
1116        ACCESS  read-write
1117        STATUS  mandatory
1118        DESCRIPTION
1119                "This object is the duration of time in seconds at
1120                which the current test results will be periodically
1121                written to wanDs1ExtensionsBertCurrentResults.  The
1122                range is 1 to 3600, with a default value of 10."
1123        ::= { ctDs1ExtensionsEntry 15 }
1124--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.15
1125
1126    wanDs1ExtensionsBertNumPeriods   OBJECT-TYPE
1127        SYNTAX  Counter
1128        ACCESS      read-only
1129        STATUS      mandatory
1130        DESCRIPTION
1131                " The number of sampling periods that have elapsed
1132                during the current test run."
1133        ::= { ctDs1ExtensionsEntry 16 }
1134--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.16
1135
1136    wanDs1ExtensionsBertTestTraps       OBJECT-TYPE
1137        SYNTAX  INTEGER {
1138                disabled(1),
1139                enabled(2)
1140                }
1141        ACCESS  read-write
1142        STATUS  mandatory
1143        DESCRIPTION
1144                "This object is used to enable or disable the sending
1145                of a trap at the conclusion of the measurement period.
1146                The trap will contain the information described by
1147                ctDs1BertCurrentResults.  The default value is disabled."
1148        ::= { ctDs1ExtensionsEntry 17 }
1149--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.17
1150
1151    wanDs1ExtensionsBertDataStatus   OBJECT-TYPE
1152        SYNTAX  INTEGER {
1153                idle(1),
1154                waitingForLink(2),
1155                waitingForLoopback(3),
1156                running(4)
1157                }
1158        ACCESS      read-only
1159        STATUS      mandatory
1160        DESCRIPTION
1161                "This object provides the operating status of the
1162                transmission of test data packets."
1163        ::= { ctDs1ExtensionsEntry 18 }
1164--          1.3.6.1.4.1.52.4.1.2.7.2.2.1.1.18
1165
1166        ctDs1WanDriverTable OBJECT-TYPE
1167        SYNTAX  SEQUENCE OF CtDs1WanDriverEntry
1168        ACCESS  not-accessible
1169        STATUS  mandatory
1170        DESCRIPTION
1171                "This table is an extension to the standard ds1
1172                configuration table. It is a list of items that are
1173                pertinant to the hdlc driver on a platform. There is
1174                one entry per ds1 physical port on the platform."
1175        ::= { ctDs1Ext 2 }
1176--          1.3.6.1.4.1.52.4.1.2.7.2.2.2
1177
1178        ctDs1WanDriverEntry OBJECT-TYPE
1179        SYNTAX  CtDs1WanDriverEntry
1180        ACCESS  not-accessible
1181        STATUS  mandatory
1182        DESCRIPTION
1183                "A ds1 wan driver entry containing objects relating to
1184                the particular ds1 physical port pertaining to a specific
1185                channel on the wan driver chip."
1186        INDEX   { ctDs1WanDriverEntryIndex, ctDs1WanDriverChannelIndex }
1187        ::= { ctDs1WanDriverTable 1 }
1188--          1.3.6.1.4.1.52.4.1.2.7.2.2.2.1
1189
1190        CtDs1WanDriverEntry ::=
1191        SEQUENCE        {
1192                        ctDs1WanDriverEntryIndex
1193                        INTEGER,
1194                        ctDs1WanDriverChannelIndex
1195                        INTEGER,
1196                        ctDs1WanDriverLineCode
1197                        INTEGER,
1198                        ctDs1WanDriverCRCBits
1199                        INTEGER
1200                                }
1201
1202        ctDs1WanDriverEntryIndex OBJECT-TYPE
1203        SYNTAX  INTEGER
1204        ACCESS  read-only
1205        STATUS  mandatory
1206        DESCRIPTION
1207                "A unique value for each ds1 physical port on the platform."
1208        ::= { ctDs1WanDriverEntry 1 }
1209--          1.3.6.1.4.1.52.4.1.2.7.2.2.2.1.1
1210
1211        ctDs1WanDriverChannelIndex OBJECT-TYPE
1212        SYNTAX  INTEGER
1213        ACCESS  read-only
1214        STATUS  mandatory
1215        DESCRIPTION
1216                "A unique value for each channel on a wan driver on the
1217                platform."
1218        ::= { ctDs1WanDriverEntry 2 }
1219--          1.3.6.1.4.1.52.4.1.2.7.2.2.2.1.2
1220
1221        ctDs1WanDriverLineCode OBJECT-TYPE
1222        SYNTAX  INTEGER {
1223                        none (1),
1224                        jBZS (2),
1225                        invHDLC (3)
1226                                        }
1227
1228        ACCESS  read-write
1229        STATUS  mandatory
1230        DESCRIPTION
1231                "This object controls the individual channels line coding
1232                on a wan driver device on the platform."
1233        DEFVAL { none }
1234        ::= { ctDs1WanDriverEntry 3 }
1235--          1.3.6.1.4.1.52.4.1.2.7.2.2.2.1.3
1236
1237        ctDs1WanDriverCRCBits OBJECT-TYPE
1238        SYNTAX  INTEGER {
1239                        crc16 (1),
1240                        crc32 (2)
1241                                        }
1242
1243        ACCESS  read-write
1244        STATUS  mandatory
1245        DESCRIPTION
1246                "This object controls the individual channels CRC bits
1247                generation on a wan driver device on the platform."
1248        DEFVAL { crc16 }
1249        ::= { ctDs1WanDriverEntry 4 }
1250--          1.3.6.1.4.1.52.4.1.2.7.2.2.2.1.4
1251
1252
1253-- Cabletron Rs232 Extensions Group
1254-- This group is only required if any physical port on the system can be
1255-- classified as rs232-like
1256
1257        ctRs232ExtensionsTable OBJECT-TYPE
1258        SYNTAX  SEQUENCE OF CtRs232ExtensionsEntry
1259        ACCESS  not-accessible
1260        STATUS  mandatory
1261        DESCRIPTION
1262                "This table is an extension to the standard rs232-like mib.
1263                It is a list of items that are pertinant to rs232-like ports
1264                on a platform. There is one entry per synchronous physical
1265                port on the platform."
1266        REFERENCE
1267                "rfc-1317"
1268        ::= { ctRs232Ext 1 }
1269--          1.3.6.1.4.1.52.4.1.2.7.2.3.1
1270
1271        ctRs232ExtensionsEntry OBJECT-TYPE
1272        SYNTAX  CtRs232ExtensionsEntry
1273        ACCESS  not-accessible
1274        STATUS  mandatory
1275        DESCRIPTION
1276                "A rs232-like extensions entry containing objects relating
1277                to the particular rs232-like physical port."
1278        INDEX   { ctRs232ExtensionsEntryIndex }
1279        ::= { ctRs232ExtensionsTable 1 }
1280--          1.3.6.1.4.1.52.4.1.2.7.2.3.1.1
1281
1282        CtRs232ExtensionsEntry ::=
1283        SEQUENCE        {
1284                        ctRs232ExtensionsEntryIndex
1285                        INTEGER,
1286                        ctRs232ExtensionsCTSEnable
1287                        INTEGER,
1288                        ctRs232ExtensionsDSREnable
1289                        INTEGER,
1290                        ctRs232ExtensionsRTSEnable
1291                        INTEGER,
1292                        ctRs232ExtensionsDTREnable
1293                        INTEGER
1294                                }
1295
1296        ctRs232ExtensionsEntryIndex OBJECT-TYPE
1297        SYNTAX  INTEGER
1298        ACCESS  read-only
1299        STATUS  mandatory
1300        DESCRIPTION
1301                "A unique value for each rs232-like physical port on
1302                the platform."
1303        ::= { ctRs232ExtensionsEntry 1 }
1304--          1.3.6.1.4.1.52.4.1.2.7.2.3.1.1.1
1305
1306        ctRs232ExtensionsCTSEnable OBJECT-TYPE
1307        SYNTAX  INTEGER {
1308                        enable(1),
1309                        disable(2)
1310                                        }
1311        ACCESS  read-write
1312        STATUS  mandatory
1313        DESCRIPTION
1314                "This object indicates  whether the platform should
1315                generate CTS. When disabled the platform will not
1316                generate CTS, when enabled, the platform will generate
1317                CTS.  The actual state of the CTS line is available
1318                in the rs-232 like mib."
1319        REFERENCE
1320                "rfc-1317"
1321        DEFVAL { disable }
1322        ::= { ctRs232ExtensionsEntry 2 }
1323--          1.3.6.1.4.1.52.4.1.2.7.2.3.1.1.2
1324
1325        ctRs232ExtensionsDSREnable OBJECT-TYPE
1326        SYNTAX  INTEGER {
1327                        enable(1),
1328                        disable(2)
1329                                        }
1330        ACCESS  read-write
1331        STATUS  mandatory
1332        DESCRIPTION
1333                "This object indicates whether the platform should
1334                generate DSR. When disabled the platform will not
1335                generate DSR, when enabled, the platform will generate
1336                DSR.  The actual state of the DSR line is available
1337                in the rs-232 like mib."
1338        REFERENCE
1339                "rfc-1317 "
1340        DEFVAL { disable }
1341        ::= { ctRs232ExtensionsEntry 3 }
1342--          1.3.6.1.4.1.52.4.1.2.7.2.3.1.1.3
1343
1344        ctRs232ExtensionsRTSEnable OBJECT-TYPE
1345        SYNTAX  INTEGER {
1346                        enable(1),
1347                        disable(2)
1348                                        }
1349        ACCESS  read-write
1350        STATUS  mandatory
1351        DESCRIPTION
1352                "This object indicates  whether the platform should
1353                generate RTS. When disabled the platform will not
1354                generate RTS, when enabled, the platform will generate
1355                RTS.  The actual state of the RTS line is available
1356                in the rs-232 like mib."
1357        REFERENCE
1358                "rfc-1317"
1359        DEFVAL { disable }
1360        ::= { ctRs232ExtensionsEntry 4 }
1361--          1.3.6.1.4.1.52.4.1.2.7.2.3.1.1.4
1362
1363        ctRs232ExtensionsDTREnable OBJECT-TYPE
1364        SYNTAX  INTEGER {
1365                        enable(1),
1366                        disable(2)
1367                                        }
1368        ACCESS  read-write
1369        STATUS  mandatory
1370        DESCRIPTION
1371                "This object indicates whether the platform should
1372                generate DTR. When disabled the platform will not
1373                generate DSR, when enabled, the platform will generate
1374                DTR.  The actual state of the DTR line is available
1375                in the rs-232 like mib."
1376        REFERENCE
1377                "rfc-1317 "
1378        DEFVAL { disable }
1379        ::= { ctRs232ExtensionsEntry 5 }
1380--          1.3.6.1.4.1.52.4.1.2.7.2.3.1.1.5
1381
1382--  ctFrDcp Group
1383--  This group is mandatory to support Data Compression Protocol
1384--  (DCP following FRF.9) for per virtual circuit basis
1385
1386        frDcpCircuitTable OBJECT-TYPE
1387        SYNTAX  SEQUENCE OF FrDcpCircuitEntry
1388        ACCESS  not-accessible
1389        STATUS  mandatory
1390        DESCRIPTION
1391                "A table containing data compression information about
1392                specific Data Link Connection Identifiers and
1393                corresponding virtual circuit. This information is used
1394                to support the frCircuitTable following RFC-1315."
1395        ::= { ctFrDcp 1 }
1396--          1.3.6.1.4.1.52.4.1.2.7.2.4.1
1397
1398        frDcpCircuitEntry OBJECT-TYPE
1399        SYNTAX  FrDcpCircuitEntry
1400        ACCESS  not-accessible
1401        STATUS  mandatory
1402        DESCRIPTION
1403                "The data compression information regarding a single Data
1404                Link Connection Identifier."
1405        INDEX { frDcpCircuitIfIndex, frDcpCircuitDlci }
1406        ::= { frDcpCircuitTable 1 }
1407--          1.3.6.1.4.1.52.4.1.2.7.2.4.1.1
1408
1409    FrDcpCircuitEntry ::=
1410        SEQUENCE        {
1411                        frDcpCircuitIfIndex
1412                        Index,
1413                        frDcpCircuitDlci
1414                        DLCI,
1415                        frDcpCircuitEnable
1416                        INTEGER,
1417                        frDcpCircuitStatus
1418                        INTEGER,
1419                        frDcpCircuitRatio
1420                        OCTET STRING
1421                                }
1422
1423        frDcpCircuitIfIndex OBJECT-TYPE
1424        SYNTAX  Index
1425        ACCESS  read-only
1426        STATUS  mandatory
1427        DESCRIPTION
1428                "The ifIndex value of ifEntry that this DCP virtual
1429                circuit object is layered onto."
1430        ::= { frDcpCircuitEntry 1 }
1431--          1.3.6.1.4.1.52.4.1.2.7.2.4.1.1.1
1432
1433        frDcpCircuitDlci OBJECT-TYPE
1434        SYNTAX  DLCI
1435        ACCESS  read-only
1436        STATUS  mandatory
1437        DESCRIPTION
1438                "The Data Link Connection Identifier for this DCP virtual
1439                circuit object."
1440        REFERENCE
1441                "Draft American National Standard T1.618-1991,
1442                Section 3.3.6"
1443        ::= { frDcpCircuitEntry 2 }
1444--          1.3.6.1.4.1.52.4.1.2.7.2.4.1.1.2
1445
1446        frDcpCircuitEnable OBJECT-TYPE
1447        SYNTAX  INTEGER {
1448                        on (1),
1449                        off (2)          -- default
1450                        }
1451        ACCESS  read-write
1452        STATUS  mandatory
1453        DESCRIPTION
1454                "Indicates whether data compression should take place on
1455                this particular end side virtual circuit."
1456        DEFVAL { off }
1457        ::= { frDcpCircuitEntry 3 }
1458--          1.3.6.1.4.1.52.4.1.2.7.2.4.1.1.3
1459
1460        frDcpCircuitStatus OBJECT-TYPE
1461        SYNTAX  INTEGER {
1462                        on (1),
1463                        off (2)
1464                                        }
1465        ACCESS  read-only
1466        STATUS  mandatory
1467        DESCRIPTION
1468                "On indicates that the compression has been successfully
1469                negotiated and is operating. Off indicates that the
1470                compression negotiation has failed and compression is not
1471                operating at this time, or compression has been terminated
1472                by either peer."
1473        ::= { frDcpCircuitEntry 4 }
1474--          1.3.6.1.4.1.52.4.1.2.7.2.4.1.1.4
1475
1476        frDcpCircuitRatio OBJECT-TYPE
1477        SYNTAX  OCTET STRING (SIZE (5))
1478        ACCESS  read-only
1479        STATUS  mandatory
1480        DESCRIPTION
1481                "The ratio of uncompressed to compressed transmitted data.
1482                If the data compression status is off, 1:1 will be
1483                displayed."
1484        ::= { frDcpCircuitEntry 5 }
1485--          1.3.6.1.4.1.52.4.1.2.7.2.4.1.1.5
1486
1487-- Cabletron DDS Extensions Group
1488-- This group is required for any platforms that have a dds physical port.
1489
1490        ctDDSConfigTable OBJECT-TYPE
1491        SYNTAX  SEQUENCE OF CtDDSConfigEntry
1492        ACCESS  not-accessible
1493        STATUS  mandatory
1494        DESCRIPTION
1495                "The DDS Configuration Table"
1496        ::= { ctDDSExt 1 }
1497--          1.3.6.1.4.1.52.4.1.2.7.2.5.1
1498
1499        ctDDSConfigEntry OBJECT-TYPE
1500        SYNTAX  CtDDSConfigEntry
1501        ACCESS  not-accessible
1502        STATUS  mandatory
1503        DESCRIPTION
1504                "An Entry in the DDS Configuration Table"
1505        INDEX   { ctDDSLineIndex }
1506        ::= { ctDDSConfigTable 1 }
1507--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1
1508
1509        CtDDSConfigEntry ::=
1510        SEQUENCE        {
1511                        ctDDSLineIndex
1512                        INTEGER,
1513                        ctDDSIfIndex
1514                        INTEGER,
1515                        ctDDSLineMode
1516                        INTEGER,
1517                        ctDDSLineCoding
1518                        INTEGER,
1519                        ctDDSLoopbackConfig
1520                        INTEGER,
1521                        ctDDSLineStatus
1522                        INTEGER,
1523                        ctDDSTxClockSource
1524                        INTEGER,
1525                        ctDDSPortInSpeed
1526                        INTEGER,
1527                        ctDDSPortOutSpeed
1528                        INTEGER
1529                        }
1530
1531        ctDDSLineIndex OBJECT-TYPE
1532        SYNTAX  INTEGER (1..'7fffffff'h)
1533        ACCESS  read-only
1534        STATUS  mandatory
1535        DESCRIPTION
1536                "A unique value for each ds1 physical port on the
1537                platform."
1538        ::= { ctDDSConfigEntry 1 }
1539--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.1
1540
1541        ctDDSIfIndex OBJECT-TYPE
1542        SYNTAX  INTEGER (1..'7fffffff'h)
1543        ACCESS  read-only
1544        STATUS  mandatory
1545        DESCRIPTION
1546                "Index associated with this dds physical port"
1547        ::= { ctDDSConfigEntry 2 }
1548--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.2
1549
1550        ctDDSLineMode OBJECT-TYPE
1551        SYNTAX  INTEGER {
1552                        ddsPri (1),
1553                        ddsSc (2),
1554                        ddsCc (3)
1555                                        }
1556        ACCESS  read-write
1557        STATUS  mandatory
1558        DESCRIPTION
1559                "DDS-PRI is full duplex 56k link, No framing in loop data
1560                so loop speed is also 56k. Data stream:
1561                        --d1 d2 d3 d4 d5 d6 d7--
1562                DDS-SC is also full duplex 56k link, requires framing bits
1563                to distinguish between primary and secondary channels.
1564                        --d1 d2 d3 d4 d5 d6 d7 F C/S--
1565                where F is framing bit and C/S for secondary channel as
1566                well as used for control bit.
1567                With these two extra bits the loop speed is increased to
1568                72k.  primary channel rate is 56k.
1569
1570                DDS-CC is full duplex 64k link. Does not require framing
1571                bit but uses a same format as SC, nineth bit position is
1572                lumped with primary channel and not used for control.
1573                Loop speed is 72k, Primary channel rate is 64k.
1574                        --d1 d2 d3 d4 d5 d6 d7 F d8--"
1575        ::= { ctDDSConfigEntry 3 }
1576--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.3
1577
1578        ctDDSLineCoding OBJECT-TYPE
1579        SYNTAX  INTEGER {
1580                        ddsNone (1),
1581                        ddsJBZS (2),
1582                        otherLineCode (3)
1583                                        }
1584        ACCESS  read-write
1585        STATUS  mandatory
1586        DESCRIPTION
1587                "This object describes the variety of Zero Code
1588                suppression on this interface.  JBZS refers to Jammed
1589                Bit Zero suppresion, which forces a 1 bit every 8 bit
1590                periods. None refers to a mode in which some other
1591                means is used to insure pulse density requirements."
1592        ::= { ctDDSConfigEntry 4 }
1593--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.4
1594
1595        ctDDSLoopbackConfig OBJECT-TYPE
1596        SYNTAX  INTEGER {
1597                        ddsNoLoop (1),
1598                        ddsLocalLoop (2),
1599                        ddsLineLoop (3),
1600                        ddsOtherLoop (4)
1601                                        }
1602        ACCESS  read-write
1603        STATUS  mandatory
1604        DESCRIPTION
1605                "This variable represents the loopback configuration
1606                of the DDS interface.  ddsNoLoop means the interface
1607                is not in loopback state, ddsLocalLoop means the signal
1608                is transmitted and looped back to the same interface,
1609                ddsLineLoop means the received signal at this interface
1610                does not go through the device but is looped back out,
1611                and ddsOtherLoop represents a loop not defined here."
1612        ::= { ctDDSConfigEntry 5 }
1613--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.5
1614
1615        ctDDSLineStatus OBJECT-TYPE
1616        SYNTAX  INTEGER {
1617                        ddsNoAlarm (1),
1618                        ddsLossOfSignal (2),
1619                        ddsOutOfService (3),
1620                        ddsOutOfFrame (4)
1621                                        }
1622        ACCESS  read-only
1623        STATUS  mandatory
1624        DESCRIPTION
1625                "This variable describes the current operational status of
1626                DDS line."
1627        ::= { ctDDSConfigEntry 6 }
1628--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.6
1629
1630        ctDDSTxClockSource OBJECT-TYPE
1631        SYNTAX  INTEGER {
1632                        ddsLoopTiming (1),
1633                        ddsLocalTiming (2),
1634                        ddsThroughTiming (3)
1635                                        }
1636        ACCESS  read-write
1637        STATUS  mandatory
1638        DESCRIPTION
1639                "The source of Transmit clock.
1640                'ddsLoopTiming' indicates that the recovered receive clock
1641                is used as transmit clock.
1642
1643                'ddsLocalTiming' indicates that a local clock source is
1644                used.
1645
1646                'ddsThroughTiming' indicates that recovered receive clock
1647                from another interface is used as transmit clock."
1648        ::= { ctDDSConfigEntry 7 }
1649--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.7
1650
1651        ctDDSPortInSpeed OBJECT-TYPE
1652        SYNTAX  INTEGER
1653        ACCESS  read-only
1654        STATUS  mandatory
1655        DESCRIPTION
1656                " This variable describes the current operational
1657                receive speed of DDS line.  It is a read only value
1658                based entirely on DDS type (CC or PRI)."
1659        ::= { ctDDSConfigEntry 8 }
1660--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.8
1661
1662        ctDDSPortOutSpeed OBJECT-TYPE
1663        SYNTAX  INTEGER
1664        ACCESS  read-only
1665        STATUS  mandatory
1666        DESCRIPTION
1667                "This variable describes the current operational
1668                transmit speed of DDS line.  It is a read only value
1669                based entirely on DDS type CC or PRI"
1670        ::= { ctDDSConfigEntry 9 }
1671--          1.3.6.1.4.1.52.4.1.2.7.2.5.1.1.9
1672
1673
1674--
1675-- Ctron PPP Counters Group.
1676
1677-- The following object reflect the values of the
1678-- counters used for each PPP link.
1679-- ctPppCountersIfIndex
1680-- ctPppCountersMaxTerminate
1681-- ctPppCountersMaxConfigure
1682-- ctPppCountersMaxFailure
1683-- ctPppCountersRestartTimer
1684
1685        ctPppCountersTable OBJECT-TYPE
1686        SYNTAX  SEQUENCE OF CtPppCountersEntry
1687        ACCESS  not-accessible
1688        STATUS  mandatory
1689        DESCRIPTION
1690                "Table containing the parameters for the local
1691                PPP entity related to the counters and timers."
1692        ::= { ctPPPExt 1 }
1693--          1.3.6.1.4.1.52.4.1.2.7.2.6.1
1694
1695        ctPppCountersEntry OBJECT-TYPE
1696        SYNTAX  CtPppCountersEntry
1697        ACCESS  not-accessible
1698        STATUS  mandatory
1699        DESCRIPTION
1700                "PPP counter/timer information for a particular
1701                PPP link."
1702        INDEX { ctPppCountersIfIndex }
1703        ::= { ctPppCountersTable 1 }
1704--          1.3.6.1.4.1.52.4.1.2.7.2.6.1.1
1705
1706        CtPppCountersEntry ::= SEQUENCE {
1707                        ctPppCountersIfIndex
1708                        INTEGER,
1709                        ctPppCountersMaxTerminate
1710                        INTEGER,
1711                        ctPppCountersMaxConfigure
1712                        INTEGER,
1713                        ctPppCountersMaxFailure
1714                        INTEGER,
1715                        ctPppCountersRestartTimer
1716                        INTEGER
1717                                }
1718
1719        ctPppCountersIfIndex OBJECT-TYPE
1720        SYNTAX  INTEGER(1..2147483647)
1721        ACCESS  read-write
1722        STATUS  mandatory
1723        DESCRIPTION
1724                "The ifIndex of the interface. This is the index of this
1725                entry in the ifTable."
1726        REFERENCE
1727                "rfc-1213"
1728        ::= { ctPppCountersEntry 1 }
1729--          1.3.6.1.4.1.52.4.1.2.7.2.6.1.1.1
1730
1731        ctPppCountersMaxTerminate OBJECT-TYPE
1732        SYNTAX  INTEGER(1..2147483647)
1733        ACCESS  read-write
1734        STATUS  mandatory
1735        DESCRIPTION
1736                "MaxTerminate indicates the number of Terminate-
1737                Request packets sent without receiving a Terminate-Ack
1738                before assuming that the peer in unable to respond."
1739        ::= { ctPppCountersEntry 2 }
1740--          1.3.6.1.4.1.52.4.1.2.7.2.6.1.1.2
1741
1742        ctPppCountersMaxConfigure OBJECT-TYPE
1743        SYNTAX  INTEGER(1..2147483647)
1744        ACCESS  read-write
1745        STATUS  mandatory
1746        DESCRIPTION
1747                "MaxConfigure indicates the number of Configure-
1748                Request packets sent without receiving a Configure-Ack,
1749                Configre-Nak or Configure-Reject before assuming that
1750                the peer in unable to respond."
1751        ::= { ctPppCountersEntry 3 }
1752--          1.3.6.1.4.1.52.4.1.2.7.2.6.1.1.3
1753
1754        ctPppCountersMaxFailure OBJECT-TYPE
1755        SYNTAX  INTEGER(1..2147483647)
1756        ACCESS  read-write
1757        STATUS  mandatory
1758        DESCRIPTION
1759                "MaxFailure indicates the number of Configure-Nak
1760                packets sent without sending a Configure-Ack
1761                before assuming that the configuration is not
1762                converging.  Any further Configure-Reject packets
1763                for peer requested options are converted to
1764                Configure-Reject packets, and locally desires options
1765                are no longer appended."
1766        ::= { ctPppCountersEntry 4 }
1767--          1.3.6.1.4.1.52.4.1.2.7.2.6.1.1.4
1768
1769        ctPppCountersRestartTimer OBJECT-TYPE
1770        SYNTAX  INTEGER(1..2147483647)
1771        ACCESS  read-write
1772        STATUS  mandatory
1773        DESCRIPTION
1774                "The Restart timer is used to time transmissions
1775                of Configure-Request and Terminate-Request packets.
1776                Expiration of the Restart-Timer causes a Timeout
1777                event, and retransmission of the corresponding
1778                Configure-Request or Terminate-Request packet."
1779        ::= { ctPppCountersEntry 5 }
1780--          1.3.6.1.4.1.52.4.1.2.7.2.6.1.1.5
1781
1782--
1783-- Ctron PPP LCP Extentions Group.
1784
1785-- The following object reflect the values of the
1786-- LCP parameters not included in RFCs for this PPP link.
1787--
1788--              ctPppLcpExtIfIndex
1789--              ctPppLcpExtAuthenticationProt
1790--              ctPppLcpExtQualityProt
1791--              ctPppLcpExtPFC
1792--              ctPppLcpExtACFC
1793--              ctPppLcpExtSelfDescribePadding
1794--              ctPppLcpExtCallback
1795--              ctPppLcpExtCompoundFrames
1796--              ctPppLcpExtMru
1797--              ctPppLcpExtAccm
1798--              ctPppLcpExtEchoRequest
1799--              ctPppLcpExtReplyCounter
1800--              ctPppLcpExtMpCapable
1801
1802        ctPppLcpExtTable OBJECT-TYPE
1803        SYNTAX  SEQUENCE OF CtPppLcpExtEntry
1804        ACCESS  not-accessible
1805        STATUS  mandatory
1806        DESCRIPTION
1807                "Table containing the parameters for the local
1808                PPP entity related to the counters and timers."
1809        ::= { ctPPPExt 2 }
1810--          1.3.6.1.4.1.52.4.1.2.7.2.6.2
1811
1812        ctPppLcpExtEntry OBJECT-TYPE
1813        SYNTAX  CtPppLcpExtEntry
1814        ACCESS  not-accessible
1815        STATUS  mandatory
1816        DESCRIPTION
1817                "PPP LCP configurationinformation for a particular
1818                PPP link."
1819        INDEX { ctPppLcpExtIfIndex }
1820        ::= { ctPppLcpExtTable 1 }
1821--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1
1822
1823        CtPppLcpExtEntry ::= SEQUENCE {
1824                                        ctPppLcpExtIfIndex
1825                                        INTEGER,
1826                                        ctPppLcpExtAuthenticationProt
1827                                        INTEGER,
1828                                        ctPppLcpExtQualityProt
1829                                        INTEGER,
1830                                        ctPppLcpExtPFC
1831                                        INTEGER,
1832                                        ctPppLcpExtACFC
1833                                        INTEGER,
1834                                        ctPppLcpExtSelfDescribePadding
1835                                        INTEGER,
1836                                        ctPppLcpExtCallback
1837                                        INTEGER,
1838                                        ctPppLcpExtCompoundFrames
1839                                        INTEGER,
1840                                        ctPppLcpExtMru
1841                                        INTEGER,
1842                                        ctPppLcpExtAccm
1843                                        INTEGER,
1844                                        ctPppLcpExtEchoRequest
1845                                        INTEGER,
1846                                        ctPppLcpExtReplyCounter
1847                                        INTEGER,
1848                                        ctPppLcpExtMpCapable
1849                                        INTEGER
1850                                        }
1851
1852        ctPppLcpExtIfIndex OBJECT-TYPE
1853        SYNTAX  INTEGER(1..2147483647)
1854        ACCESS  read-write
1855        STATUS  mandatory
1856        DESCRIPTION
1857                "The ifIndex of the interface. This is the index of this
1858                entry in the ifTable."
1859        REFERENCE
1860                "rfc-1213"
1861        ::= { ctPppLcpExtEntry 1 }
1862--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.1
1863
1864        ctPppLcpExtAuthenticationProt OBJECT-TYPE
1865        SYNTAX  INTEGER {
1866                                none(1),
1867                                pap(2),
1868                                chap(3)
1869                                        }
1870        ACCESS  read-only
1871        STATUS  mandatory
1872        DESCRIPTION
1873                "Enables a particular authentication protocol on this
1874                PPP link(now modified for read-only."
1875        ::= { ctPppLcpExtEntry 2 }
1876--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.2
1877
1878        ctPppLcpExtQualityProt OBJECT-TYPE
1879        SYNTAX  INTEGER {
1880                                none(1),
1881                                lqr(2)
1882                                        }
1883        ACCESS  read-write
1884        STATUS  mandatory
1885        DESCRIPTION
1886                "Enables a particular link-quality protocol on this
1887                PPP link."
1888        ::= { ctPppLcpExtEntry 3 }
1889--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.3
1890
1891        ctPppLcpExtPFC OBJECT-TYPE
1892        SYNTAX  INTEGER {
1893                                enabled(1),
1894                                disabled(2)
1895                                        }
1896        ACCESS  read-write
1897        STATUS  mandatory
1898        DESCRIPTION
1899                "Enables protocol field compression on this PPP link."
1900        ::= { ctPppLcpExtEntry 4 }
1901--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.4
1902
1903        ctPppLcpExtACFC OBJECT-TYPE
1904        SYNTAX  INTEGER {
1905                                enabled(1),
1906                                disabled(2)
1907                                        }
1908        ACCESS  read-write
1909        STATUS  mandatory
1910        DESCRIPTION
1911                "Enables address and control field compression on this PPP
1912                link."
1913        ::= { ctPppLcpExtEntry 5 }
1914--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.5
1915
1916        ctPppLcpExtSelfDescribePadding OBJECT-TYPE
1917        SYNTAX  INTEGER(1..256)
1918        ACCESS  read-write
1919        STATUS  mandatory
1920        DESCRIPTION
1921                "This Configuration Option provides a method for an
1922                implementation to indicate to the peer that it
1923                understands self-describing pads when padding is added
1924                at the end of the PPP Information field."
1925        ::= { ctPppLcpExtEntry 6 }
1926--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.6
1927
1928        ctPppLcpExtCallback OBJECT-TYPE
1929        SYNTAX  INTEGER(1..6)
1930        ACCESS  read-write
1931        STATUS  mandatory
1932        DESCRIPTION
1933                "This Configuration Option provides a method for an
1934                implementation to request a dial-up peer to call back."
1935        ::= { ctPppLcpExtEntry 7 }
1936--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.7
1937
1938        ctPppLcpExtCompoundFrames OBJECT-TYPE
1939        SYNTAX  INTEGER {
1940                                enabled(1),
1941                                disabled(2)
1942                                        }
1943        ACCESS  read-write
1944        STATUS  mandatory
1945        DESCRIPTION
1946                "This Configuration Option provides a method for an
1947                implementation to send multiple PPP encapsulated packets
1948                within the same frame."
1949        ::= { ctPppLcpExtEntry 8 }
1950--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.8
1951
1952        ctPppLcpExtMru OBJECT-TYPE
1953        SYNTAX  INTEGER {
1954                                enabled(1),
1955                                disabled(2)
1956                                        }
1957        ACCESS  read-write
1958        STATUS  mandatory
1959        DESCRIPTION
1960                "Enables and disables Mru status."
1961        ::= { ctPppLcpExtEntry 9 }
1962--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.9
1963
1964        ctPppLcpExtAccm OBJECT-TYPE
1965        SYNTAX  INTEGER {
1966                                enabled(1),
1967                                disabled(2)
1968                                        }
1969        ACCESS read-write
1970        STATUS mandatory
1971        DESCRIPTION
1972                "Enables and disables Accm status."
1973        ::= { ctPppLcpExtEntry 10 }
1974--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.10
1975
1976        ctPppLcpExtEchoRequest  OBJECT-TYPE
1977        SYNTAX      INTEGER (0..2147483647)
1978        ACCESS      read-write
1979        STATUS      mandatory
1980        DESCRIPTION
1981        "A zero indicated no Echo Request and any other value provides
1982        an interval to send Echo-Requests to the Peer.
1983        The Echo-Request provides a Data Link Layer loopback mechanism
1984        for use in exercising both directions of the link.  This
1985        is useful in debugging, link quality determination.  LCP
1986        MUST be in the OPENED state for an Echo-Request to occur."
1987
1988        ::= { ctPppLcpExtEntry 11 }
1989--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.11
1990
1991        ctPppLcpExtReplyCounter OBJECT-TYPE
1992        SYNTAX      INTEGER (0..2147483647)
1993        ACCESS      read-only
1994        STATUS      mandatory
1995        DESCRIPTION
1996        "Increments a counter if the Local Device correctly
1997        received an Echo-Reply from the Peer.  LCP MUST be
1998        in the OPENED state for an Echo-Reply to occur."
1999        ::= { ctPppLcpExtEntry 12 }
2000--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.12
2001
2002        ctPppLcpExtMpCapable OBJECT-TYPE
2003      SYNTAX      INTEGER{
2004                        enabled(1),
2005                        disabled(2) }
2006      ACCESS      read-write
2007      STATUS      mandatory
2008      DESCRIPTION
2009                "Multilink Protocol (MP) option selector. Set to a value
2010                of one when MP support is desired otherwise set to a
2011                value of two. The default value is two. When set to two
2012                the attempt is made to negotiate MP support.  MP support
2013                is symmetrical."
2014        ::= { ctPppLcpExtEntry 13 }
2015--          1.3.6.1.4.1.52.4.1.2.7.2.6.2.1.13
2016
2017--
2018-- Ctron PPP BNCP Extentions Group.
2019
2020-- The following object reflect the values of the
2021-- LCP parameters not included in RFCs for this PPP link.
2022--              pppBncpExtIfIndex
2023--              pppBncpExtCrcStatus
2024
2025        ctPppBncpExtTable OBJECT-TYPE
2026        SYNTAX  SEQUENCE OF CtPppBncpExtEntry
2027        ACCESS  not-accessible
2028        STATUS  mandatory
2029        DESCRIPTION
2030                "Table containing the parameters for the local
2031                PPP entity related to the counters and timers."
2032        ::= { ctPPPExt 3 }
2033--          1.3.6.1.4.1.52.4.1.2.7.2.6.3
2034
2035        ctPppBncpExtEntry OBJECT-TYPE
2036        SYNTAX  CtPppBncpExtEntry
2037        ACCESS  not-accessible
2038        STATUS  mandatory
2039        DESCRIPTION
2040                "PPP LCP configuration information for a particular
2041                PPP link."
2042        INDEX { ctPppBncpExtIfIndex }
2043        ::= { ctPppBncpExtTable 1 }
2044--          1.3.6.1.4.1.52.4.1.2.7.2.6.3.1
2045
2046        CtPppBncpExtEntry ::= SEQUENCE  {
2047                                        ctPppBncpExtIfIndex
2048                                        INTEGER,
2049                                        ctPppBncpExtCrcStatus
2050                                        INTEGER
2051                                        }
2052
2053        ctPppBncpExtIfIndex OBJECT-TYPE
2054        SYNTAX  INTEGER(1..2147483647)
2055        ACCESS  read-write
2056        STATUS  mandatory
2057        DESCRIPTION
2058                "The ifIndex of the interface. This is the index of this
2059                entry in the ifTable."
2060        REFERENCE
2061                "rfc-1213"
2062        ::= { ctPppBncpExtEntry 1 }
2063--          1.3.6.1.4.1.52.4.1.2.7.2.6.3.1.1
2064
2065        ctPppBncpExtCrcStatus OBJECT-TYPE
2066        SYNTAX  INTEGER {
2067                                enabled(1),
2068                                disabled(2)
2069                                        }
2070        ACCESS  read-write
2071        STATUS  mandatory
2072        DESCRIPTION
2073                "Enables and disables CRC status. First our platform must
2074                support CRC.  If the platform does, then setting to
2075                disabled will not send CRC.  The default is enabled,
2076                which sends CRC."
2077        ::= { ctPppBncpExtEntry 2 }
2078--          1.3.6.1.4.1.52.4.1.2.7.2.6.3.1.2
2079
2080-- Ctron PPP MP Extentions Group.
2081-- The following object reflect the values of the
2082-- LCP parameters not included in RFCs for this PPP link.
2083--                              ctPppMpExtIfIndex
2084--              ctPppLcpExtMpLUT
2085--              ctPppLcpExtMpHistoryTime
2086--              ctPppLcpExtMpMoreBW
2087--              ctPppLcpExtMpLessBW
2088--              ctPppLcpExtMpMaxChannels
2089--              ctPppLcpExtMpChannelsToAdd
2090--              ctPppLcpExtMpChannelsToRemove
2091
2092        ctPppMpExtTable OBJECT-TYPE
2093        SYNTAX  SEQUENCE OF CtPppMpExtEntry
2094        ACCESS  not-accessible
2095        STATUS  mandatory
2096        DESCRIPTION
2097                "Table containing the parameters for the local
2098                PPP entity related to the counters and timers."
2099        ::= { ctPPPExt 4 }
2100--          1.3.6.1.4.1.52.4.1.2.7.2.6.4
2101
2102        ctPppMpExtEntry OBJECT-TYPE
2103        SYNTAX  CtPppMpExtEntry
2104        ACCESS  not-accessible
2105        STATUS  mandatory
2106        DESCRIPTION
2107                "PPP LCP configurationinformation for a particular
2108                PPP link."
2109        INDEX { ctPppMpExtIfIndex }
2110        ::= { ctPppMpExtTable 1 }
2111--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1
2112
2113        CtPppMpExtEntry ::= SEQUENCE    {
2114                                        ctPppMpExtIfIndex
2115                                        INTEGER,
2116                                        ctPppLcpExtMpLUT
2117                                        INTEGER,
2118                                        ctPppLcpExtMpHistoryTime
2119                                        INTEGER,
2120                                        ctPppLcpExtMpMoreBW
2121                                        INTEGER,
2122                                        ctPppLcpExtMpLessBW
2123                                        INTEGER,
2124                                        ctPppLcpExtMpMaxChannels
2125                                        INTEGER,
2126                                        ctPppLcpExtMpChannelsToAdd
2127                                        INTEGER,
2128                                        ctPppLcpExtMpChannelsToRemove
2129                                        INTEGER
2130                                        }
2131
2132        ctPppMpExtIfIndex OBJECT-TYPE
2133        SYNTAX  INTEGER(1..2147483647)
2134        ACCESS  read-write
2135        STATUS  mandatory
2136        DESCRIPTION
2137                "The ifIndex of the interface. This is the index of this
2138                entry in the ifTable."
2139        REFERENCE
2140                "rfc-1213"
2141        ::= { ctPppMpExtEntry 1 }
2142--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.1
2143
2144        ctPppLcpExtMpLUT OBJECT-TYPE
2145        SYNTAX  INTEGER (1..100)
2146        ACCESS  read-write
2147        STATUS  mandatory
2148        DESCRIPTION
2149                "Used to set the Line Utilization Threshold (LUT) % value
2150                to compare against the linear weighted percentage by
2151                which to determine when more/less bandwidth is to be
2152                added/removed. Linear weighting is averaged over the
2153                period of time specified by ctPppLcpExtMpHistoryTime."
2154        ::= { ctPppMpExtEntry 2 }
2155--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.2
2156
2157        ctPppLcpExtMpHistoryTime OBJECT-TYPE
2158        SYNTAX  INTEGER (1..65535)
2159        ACCESS  read-write
2160        STATUS  mandatory
2161        DESCRIPTION
2162                "Used to set the history time value in seconds for the
2163                number of line utilization reading(s) desired to compute
2164                the average line utilization. That is to say, it
2165                specifies the window size over which to compute the
2166                average line utilization."
2167        ::= { ctPppMpExtEntry 3 }
2168--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.3
2169
2170        ctPppLcpExtMpMoreBW OBJECT-TYPE
2171        SYNTAX  INTEGER (1..255)
2172        ACCESS  read-write
2173        STATUS  mandatory
2174        DESCRIPTION
2175                "Used to set the number of consecutive line utilization
2176                average readings that must exceed ctPppLcpExtMpLUT as
2177                a condition of when to increase the bandwidth if more
2178                BW is permitted."
2179        ::= { ctPppMpExtEntry 4 }
2180--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.4
2181
2182        ctPppLcpExtMpLessBW OBJECT-TYPE
2183        SYNTAX  INTEGER (1..255)
2184        ACCESS  read-write
2185        STATUS  mandatory
2186        DESCRIPTION
2187                "Used to set the number of consecutive line utilization
2188                average readings that must fall below ctPppLcpExtMpLUT
2189                as a condition of when to remove possible previously
2190                added bandwidth."
2191        ::= { ctPppMpExtEntry 5 }
2192--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.5
2193
2194        ctPppLcpExtMpMaxChannels OBJECT-TYPE
2195        SYNTAX  INTEGER (1..255)
2196        ACCESS  read-write
2197        STATUS  mandatory
2198        DESCRIPTION
2199                "Used to set the maxium number of channels an MP capable
2200                connection is allowed."
2201        ::= { ctPppMpExtEntry 6 }
2202--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.6
2203
2204        ctPppLcpExtMpChannelsToAdd OBJECT-TYPE
2205        SYNTAX  INTEGER (1..255)
2206        ACCESS  read-write
2207        STATUS  mandatory
2208        DESCRIPTION
2209                "Used to set the number of additional channel(s) to
2210                increment by whenever the need for more bandwidth is
2211                determined."
2212        ::= { ctPppMpExtEntry 7 }
2213--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.7
2214
2215        ctPppLcpExtMpChannelsToRemove OBJECT-TYPE
2216        SYNTAX  INTEGER (1..255)
2217        ACCESS  read-write
2218        STATUS  mandatory
2219        DESCRIPTION
2220                "Used to set the number of channel(s) to decrement by
2221                whenever the need for possible previously added bandwidth
2222                is determined to no longer be needed."
2223        ::= { ctPppMpExtEntry 8 }
2224--          1.3.6.1.4.1.52.4.1.2.7.2.6.4.1.8
2225
2226-- Ctron PPP ECP Extentions Group.
2227-- The following object reflect the values of the
2228-- ECP parameters not included in RFCs for this PPP link.
2229
2230        ctPppEcpExtTable OBJECT-TYPE
2231        SYNTAX  SEQUENCE OF CtPppEcpExtEntry
2232        ACCESS  not-accessible
2233        STATUS  mandatory
2234        DESCRIPTION
2235                "Table containing the parameters for the local
2236                PPP entity related to the encrpytion control protocol."
2237        ::= { ctPPPExt 5 }
2238--          1.3.6.1.4.1.52.4.1.2.7.2.6.5
2239
2240        ctPppEcpExtEntry OBJECT-TYPE
2241        SYNTAX  CtPppEcpExtEntry
2242        ACCESS  not-accessible
2243        STATUS  mandatory
2244        DESCRIPTION
2245                "PPP ECP configuration information for a particular
2246                PPP link."
2247        INDEX { ctPppEcpExtIfIndex }
2248        ::= { ctPppEcpExtTable 1 }
2249--          1.3.6.1.4.1.52.4.1.2.7.2.6.5.1
2250
2251        CtPppEcpExtEntry ::= SEQUENCE   {
2252                                        ctPppEcpExtIfIndex
2253                                        INTEGER,
2254                                        ctPppEcpKey
2255                                        DisplayString,
2256                                        ctPppEcpIV
2257                                        DisplayString
2258                                        }
2259
2260        ctPppEcpExtIfIndex OBJECT-TYPE
2261        SYNTAX  INTEGER(1..1024)
2262        ACCESS  read-write
2263        STATUS  mandatory
2264        DESCRIPTION
2265                "The ifIndex of the interface. This is the index of this
2266                entry in the ifTable."
2267        REFERENCE
2268                "rfc-1213"
2269        ::= { ctPppEcpExtEntry 1 }
2270--          1.3.6.1.4.1.52.4.1.2.7.2.6.5.1.1
2271
2272        ctPppEcpKey OBJECT-TYPE
2273        SYNTAX  DisplayString (SIZE(14))
2274        ACCESS  read-write
2275        STATUS  mandatory
2276        DESCRIPTION
2277                "A 56-bit key (14 hex characters) used for the DES encryption."
2278        ::= { ctPppEcpExtEntry 2 }
2279--          1.3.6.1.4.1.52.4.1.2.7.2.6.5.1.2
2280
2281        ctPppEcpIV OBJECT-TYPE
2282        SYNTAX  DisplayString (SIZE(16))
2283        ACCESS  read-write
2284        STATUS  mandatory
2285        DESCRIPTION
2286                "A 64-bit initialization vector (16 hex characters) used for
2287                the DES encryption in CBC mode."
2288        ::= { ctPppEcpExtEntry 3 }
2289--          1.3.6.1.4.1.52.4.1.2.7.2.6.5.1.3
2290
2291--  ctWanalyzer Group
2292--  This group is mandatory for all platforms which implement the
2293--  WANalyzer
2294
2295--              ctWanalyzerIfIndex
2296--              ctwanalyzerEnabled
2297--              ctwanalyzerMaxEntries
2298--              ctwanalyzerClearAll
2299--              ctwanalyzerClearInterface
2300--              ctwanalyzerDisplayInterface
2301--              ctwanalyzerCurrEntries
2302
2303        ctWanalyzerTable OBJECT-TYPE
2304        SYNTAX  SEQUENCE OF CtWanalyzerEntry
2305        ACCESS  not-accessible
2306        STATUS  mandatory
2307        DESCRIPTION
2308                "Table containing the parameters for the local
2309                Wanalyzer entity related to the configured Protocol."
2310        ::= { ctWanalyzer 1         }
2311--          1.3.6.1.4.1.52.4.1.2.7.2.7.1
2312
2313        ctWanalyzerEntry OBJECT-TYPE
2314        SYNTAX  CtWanalyzerEntry
2315        ACCESS  not-accessible
2316        STATUS  mandatory
2317        DESCRIPTION
2318                "Information for a particular
2319                interface."
2320        INDEX { ctWanalyzerIfIndex }
2321        ::= { ctWanalyzerTable 1 }
2322--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1
2323
2324        CtWanalyzerEntry ::= SEQUENCE   {
2325                                        ctWanalyzerIfIndex
2326                                        INTEGER,
2327                                        ctWanalyzerEnabled
2328                                        INTEGER,
2329                                        ctWanalyzerMaxEntries
2330                                        INTEGER,
2331                                        ctWanalyzerClearAll
2332                                        INTEGER,
2333                                        ctWanalyzerClearInterface
2334                                        INTEGER,
2335                                        ctWanalyzerDisplayInterface
2336                                        INTEGER,
2337                                        ctWanalyzerCurrEntries
2338                                        INTEGER
2339                                        }
2340
2341        ctWanalyzerIfIndex OBJECT-TYPE
2342        SYNTAX  INTEGER(1..2147483647)
2343        ACCESS  read-write
2344        STATUS  mandatory
2345        DESCRIPTION
2346                "The ifIndex of the interface. This is the index of this
2347                entry in the ifTable."
2348        REFERENCE
2349                "rfc-1213"
2350        ::= { ctWanalyzerEntry 1 }
2351--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.1
2352
2353        ctWanalyzerEnabled OBJECT-TYPE
2354        SYNTAX  INTEGER {
2355                                disabled(1),
2356                                enabled(2)
2357                                        }
2358        ACCESS  read-write
2359        STATUS  mandatory
2360        DESCRIPTION
2361                "This Persistent Object is a flag which indicates whether
2362                or not the WANalyzer is enabled or disabled. Upon system
2363                initialization this flag defaults to disabled unless
2364                a value for this object is found in NVRAM."
2365        ::= { ctWanalyzerEntry 2         }
2366--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.2
2367
2368        ctWanalyzerMaxEntries OBJECT-TYPE
2369        SYNTAX  INTEGER
2370        ACCESS  read-write
2371        STATUS  mandatory
2372        DESCRIPTION
2373                "This Persistent Object is an integer greater than 1
2374                which specifies the maximum total number of entries
2375                which the table will handle. When the WANalyzer is
2376                enabled this value defaults to a value dependent on
2377                the implementation unless a value is found in NVRAM."
2378        ::= { ctWanalyzerEntry 3         }
2379--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.3
2380
2381    ctWanalyzerClearAll OBJECT-TYPE
2382        SYNTAX  INTEGER
2383        ACCESS  read-write
2384        STATUS  mandatory
2385        DESCRIPTION
2386                "When set to 2, the entire table of entries is cleared.
2387                Upon clearing of the table, this value is reset to 1.
2388                This object is not present if the WANalyzer is disabled."
2389        ::= { ctWanalyzerEntry 4 }
2390--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.4
2391
2392        ctWanalyzerClearInterface OBJECT-TYPE
2393        SYNTAX  INTEGER
2394        ACCESS  read-write
2395        STATUS  mandatory
2396        DESCRIPTION
2397                "When set to 2, all entries for this MIB-II interface
2398                index will be removed from the table. Upon complete
2399                removal of those entries, this value is reset to 1.
2400                This object is not present if the WANalyzer is disabled."
2401
2402        ::= { ctWanalyzerEntry 5 }
2403--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.5
2404
2405        ctWanalyzerDisplayInterface     OBJECT-TYPE
2406        SYNTAX  INTEGER
2407        ACCESS  read-write
2408        STATUS  mandatory
2409        DESCRIPTION
2410                "When set to a valid MIB-II interface number, the table
2411                displays only those entries in the table which were
2412                received from that MIB-II interface. This value is set
2413                to -1 upon initialization and indicates that entries
2414                from all interfaces will be displayed. This object
2415                is not present if the WANalyzer is disabled."
2416        ::= { ctWanalyzerEntry 6 }
2417--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.6
2418
2419        ctWanalyzerCurrEntries OBJECT-TYPE
2420        SYNTAX  INTEGER
2421        ACCESS  read-only
2422        STATUS  mandatory
2423        DESCRIPTION
2424                "A non-negative integer indicating the current number
2425                of entries in the table. This object is not present
2426                if the WANalyzer is disabled."
2427        ::= { ctWanalyzerEntry 7 }
2428--          1.3.6.1.4.1.52.4.1.2.7.2.7.1.1.7
2429
2430--      Ctron Wan Table Extentions Group.
2431--              wanMessageIndex
2432--              wanMessageInterfaceIndex
2433--              wanMessageDate
2434--              wanMessageTime
2435--              wanMessageCode
2436
2437        wanalyzerMessageTable OBJECT-TYPE
2438        SYNTAX  SEQUENCE OF WanalyzerEntry
2439        ACCESS  not-accessible
2440        STATUS  mandatory
2441        DESCRIPTION
2442                "A table containing all of the message entries for this
2443                device. If the WANalyzer is disabled, this table will
2444                not be present."
2445        ::= { ctWanalyzer 2 }
2446--          1.3.6.1.4.1.52.4.1.2.7.2.7.2
2447
2448        wanalyzerEntry OBJECT-TYPE
2449        SYNTAX  WanalyzerEntry
2450        ACCESS  not-accessible
2451        STATUS  mandatory
2452        DESCRIPTION
2453                "A message entry in the WANalyzer table corresponding
2454                to a particular interface in a particular instance."
2455        INDEX { wanMessageIndex }
2456        ::= { wanalyzerMessageTable 1 }
2457--          1.3.6.1.4.1.52.4.1.2.7.2.7.2.1
2458
2459        WanalyzerEntry ::= SEQUENCE     {
2460                                        wanMessageIndex
2461                                        INTEGER,
2462                                        wanMessageInterfaceIndex
2463                                        INTEGER,
2464                                        wanMessageDate
2465                                        DisplayString,
2466                                        wanMessageTime
2467                                        DisplayString,
2468                                        wanMessageCode
2469                                        INTEGER
2470                                        }
2471
2472        wanMessageIndex OBJECT-TYPE
2473        SYNTAX  INTEGER
2474        ACCESS  read-only
2475        STATUS  mandatory
2476        DESCRIPTION
2477                "An integer between 1 and wanalyzerMaxEntries which
2478                indicates the overall position this entry has in the
2479                WANalyzer table."
2480        ::= { wanalyzerEntry 1 }
2481--          1.3.6.1.4.1.52.4.1.2.7.2.7.2.1.1
2482
2483        wanMessageInterfaceIndex OBJECT-TYPE
2484        SYNTAX  INTEGER
2485        ACCESS  read-only
2486        STATUS  mandatory
2487        DESCRIPTION
2488                "The MIB-II interface index representing the interface
2489                which sent this message."
2490        ::= { wanalyzerEntry 2 }
2491--          1.3.6.1.4.1.52.4.1.2.7.2.7.2.1.2
2492
2493        wanMessageDate OBJECT-TYPE
2494        SYNTAX  DisplayString (SIZE(8))
2495        ACCESS  read-only
2496        STATUS  mandatory
2497        DESCRIPTION
2498                "The date when this message was received by the WANalyzer
2499                 in the standard MMDDYY format."
2500        ::= { wanalyzerEntry 3 }
2501--          1.3.6.1.4.1.52.4.1.2.7.2.7.2.1.3
2502
2503        wanMessageTime OBJECT-TYPE
2504        SYNTAX  DisplayString (SIZE(6))
2505        ACCESS  read-only
2506        STATUS  mandatory
2507        DESCRIPTION
2508                "The time of day when this message was received by the
2509                WANalyzer in the standard HHMMSS format."
2510        ::= { wanalyzerEntry 4 }
2511--          1.3.6.1.4.1.52.4.1.2.7.2.7.2.1.4
2512
2513        wanMessageCode OBJECT-TYPE
2514        SYNTAX  INTEGER {
2515        wanalyzerLastMessageRepeated(1),
2516        pppAuthentication(2),
2517        pppBncpThisLayerStart(3),
2518        pppBncpThisLayerFinished(4),
2519        pppBncpThisLayerUp(5),
2520        pppBncpThisLayerDown(6),
2521        pppBncpInitializeRestartCount(7),
2522        pppBncpZeroRestartCount(8),
2523        pppBncpRcvConfReqGood(9),
2524        pppBncpRcvConfReqBad(10),
2525        pppBncpReceiveConfigureAck(11),
2526        pppBncpReceiveConfigureNak(12),
2527        pppBncpReceiveConfigureReject(13),
2528        pppBncpReceiveTerminateRequest(14),
2529        pppBncpReceiveTerminateAck(15),
2530        pppBncpReceiveCodeRejectPermitted(16),
2531        pppBncpReceiveCodeRejectCatastrophic(17),
2532        pppBncpReceiveProtocolRejectPermitted(18),
2533        pppBncpReceiveEchoRequest(19),
2534        pppBncpReceiveEchoReply(20),
2535        pppBncpReceiveDiscardRequest(21),
2536        pppBncpReceiveUnknownCode(22),
2537        pppBncpIllegalAction(23),
2538        pppBncpSendConfigureRequest(24),
2539        pppBncpSendConfigureAck(25),
2540        pppBncpSendConfigureNak(26),
2541        pppBncpSendConfigureReject(27),
2542        pppBncpSendTerminateRequest(28),
2543        pppBncpSendTerminateAck(29),
2544        pppBncpSendCodeReject(30),
2545        pppBncpSendProtocolReject(31),
2546        pppBncpSendEchoReply(32),
2547        pppBncpInitialState(33),
2548        pppBncpStartingState(34),
2549        pppBncpClosedState(35),
2550        pppBncpStoppedState(36),
2551        pppBncpClosingState(37),
2552        pppBncpStoppingState(38),
2553        pppBncpReqSentState(39),
2554        pppBncpAckRcvdState(40),
2555        pppBncpAckSentState(41),
2556        pppBncpOpenedState(42),
2557        pppBncpEthernetMacType(43),
2558        pppBncpTokenRingMacType(44),
2559        pppBncpFddiMacType(45),
2560        pppBncpBridgeIdRcvReq(46),
2561        pppBncpBridgeIdRcvNak(47),
2562        pppBncpBridgeIdRcvRej(48),
2563        pppBncpBridgeIdXmitReq(49),
2564        pppBncpMacSelectRcvReq(50),
2565        pppBncpMacSelectRcvNak(51),
2566        pppBncpMacSelectRcvRej(52),
2567        pppBncpMacSelectXmitReq(53),
2568        pppBncpTinygramRcvReq(54),
2569        pppBncpTinygramRcvNak(55),
2570        pppBncpTinygramRcvRej(56),
2571        pppBncpTinygramXmitReq(57),
2572        pppBncpLanIdRcvReq(58),
2573        pppBncpLanIdRcvNak(59),
2574        pppBncpLanIdRcvRej(60),
2575        pppBncpLanIdXmitReq(61),
2576        pppCcpThisLayerStart(62),
2577        pppCcpThisLayerFinished(63),
2578        pppCcpThisLayerUp(64),
2579        pppCcpThisLayerDown(65),
2580        pppCcpInitializeRestartCount(66),
2581        pppCcpZeroRestartCount(67),
2582        pppCcpRcvConfReqGood(68),
2583        pppCcpRcvConfReqBad(69),
2584        pppCcpReceiveConfigureAck(70),
2585        pppCcpReceiveConfigureNak(71),
2586        pppCcpReceiveConfigureReject(72),
2587        pppCcpReceiveTerminateRequest(73),
2588        pppCcpReceiveTerminateAck(74),
2589        pppCcpReceiveCodeRejectPermitted(75),
2590        pppCcpReceiveCodeRejectCatastrophic(76),
2591        pppCcpReceiveProtocolRejectPermitted(77),
2592        pppCcpReceiveEchoRequest(78),
2593        pppCcpReceiveEchoReply(79),
2594        pppCcpReceiveDiscardRequest(80),
2595        pppCcpReceiveUnknownCode(81),
2596        pppCcpIllegalAction(82),
2597        pppCcpSendConfigureRequest(83),
2598        pppCcpSendConfigureAck(84),
2599        pppCcpSendConfigureNak(85),
2600        pppCcpSendConfigureReject(86),
2601        pppCcpSendTerminateRequest(87),
2602        pppCcpSendTerminateAck(88),
2603        pppCcpSendCodeReject(89),
2604        pppCcpSendProtocolReject(90),
2605        pppCcpSendEchoReply(91),
2606        pppCcpInitialState(92),
2607        pppCcpStartingState(93),
2608        pppCcpClosedState(94),
2609        pppCcpStoppedState(95),
2610        pppCcpClosingState(96),
2611        pppCcpStoppingState(97),
2612        pppCcpReqSentState(98),
2613        pppCcpAckRcvdState(99),
2614        pppCcpAckSentState(100),
2615        pppCcpOpenedState(101),
2616        pppCcpProprietaryCompRcvReq(102),
2617        pppCcpProprietaryCompRcvNak(103),
2618        pppCcpProprietaryCompRcvRej(104),
2619        pppCcpProprietaryCompXmitReq(105),
2620        pppCcpPredictorType1RcvReq(106),
2621        pppCcpPredictorType1RcvNak(107),
2622        pppCcpPredictorType1RcvRej(108),
2623        pppCcpPredictorType1XmitReq(109),
2624        pppCcpPredictorType2RcvReq(110),
2625        pppCcpPredictorType2RcvNak(111),
2626        pppCcpPredictorType2RcvRej(112),
2627        pppCcpPredictorType2XmitReq(113),
2628        pppCcpPuddleJumperRcvReq(114),
2629        pppCcpPuddleJumperRcvNak(115),
2630        pppCcpPuddleJumperRcvRej(116),
2631        pppCcpPuddleJumperXmitReq(117),
2632        pppCcpHpPpcRcvReq(118),
2633        pppCcpHpPpcRcvNak(119),
2634        pppCcpHpPpcRcvRej(120),
2635        pppCcpHpPpcXmitReq(121),
2636        pppCcpStacLzsRcvReq(122),
2637        pppCcpStacLzsRcvNak(123),
2638        pppCcpStacLzsRcvRej(124),
2639        pppCcpStacLzsXmitReq(125),
2640        pppCcpMsPpcRcvReq(126),
2641        pppCcpMsPpcRcvNak(127),
2642        pppCcpMsPpcRcvRej(128),
2643        pppCcpMsPpcXmitReq(129),
2644        pppCcpGandalfFzaRcvReq(130),
2645        pppCcpGandalfFzaRcvNak(131),
2646        pppCcpGandalfFzaRcvRej(132),
2647        pppCcpGandalfFzaXmitReq(133),
2648        pppCcpV42bisRcvReq(134),
2649        pppCcpV42bisRcvNak(135),
2650        pppCcpV42bisRcvRej(136),
2651        pppCcpV42bisXmitReq(137),
2652        pppCcpBsdLzwRcvReq(138),
2653        pppCcpBsdLzwRcvNak(139),
2654        pppCcpBsdLzwRcvRej(140),
2655        pppCcpBsdLzwXmitReq(141),
2656        pppCcpStackDcpRcvReq(142),
2657        pppCcpStackDcpRcvNak(143),
2658        pppCcpStackDcpRcvRej(144),
2659        pppCcpStackDcpXmitReq(145),
2660        pppChapChallengeReceived(146),
2661        pppChapResponseReceived(147),
2662        pppChapSuccessReceived(148),
2663        pppChapFailureReceived(149),
2664        pppChapSuccessSent(150),
2665        pppChapFailureSent(151),
2666        pppChapChallengeSent(152),
2667        pppChapResponseSent(153),
2668        pppIpcpThisLayerStart(154),
2669        pppIpcpThisLayerFinished(155),
2670        pppIpcpThisLayerUp(156),
2671        pppIpcpThisLayerDown(157),
2672        pppIpcpInitializeRestartCount(158),
2673        pppIpcpZeroRestartCount(159),
2674        pppIpcpRcvConfReqGood(160),
2675        pppIpcpRcvConfReqBad(161),
2676        pppIpcpReceiveConfigureAck(162),
2677        pppIpcpReceiveConfigureNak(163),
2678        pppIpcpReceiveConfigureReject(164),
2679        pppIpcpReceiveTerminateRequest(165),
2680        pppIpcpReceiveTerminateAck(166),
2681        pppIpcpReceiveCodeRejectPermitted(167),
2682        pppIpcpReceiveCodeRejectCatastrophic(168),
2683        pppIpcpReceiveProtocolRejectPermitted(169),
2684        pppIpcpReceiveEchoRequest(170),
2685        pppIpcpReceiveEchoReply(171),
2686        pppIpcpReceiveDiscardRequest(172),
2687        pppIpcpReceiveUnknownCode(173),
2688        pppIpcpIllegalAction(174),
2689        pppIpcpSendConfigureRequest(175),
2690        pppIpcpSendConfigureAck(176),
2691        pppIpcpSendConfigureNak(177),
2692        pppIpcpSendConfigureReject(178),
2693        pppIpcpSendTerminateRequest(179),
2694        pppIpcpSendTerminateAck(180),
2695        pppIpcpSendCodeReject(181),
2696        pppIpcpSendProtocolReject(182),
2697        pppIpcpSendEchoReply(183),
2698        pppIpcpInitialState(184),
2699        pppIpcpStartingState(185),
2700        pppIpcpClosedState(186),
2701        pppIpcpStoppedState(187),
2702        pppIpcpClosingState(188),
2703        pppIpcpStoppingState(189),
2704        pppIpcpReqSentState(190),
2705        pppIpcpAckRcvdState(191),
2706        pppIpcpAckSentState(192),
2707        pppIpcpOpenedState(193),
2708        pppIpcpIpAddressRcvReq(194),
2709        pppIpcpIpAddressRcvNak(195),
2710        pppIpcpIpAddressRcvRej(196),
2711        pppIpcpIpAddressXmitReq(197),
2712        pppIpcpCompressionTypeRcvReq(198),
2713        pppIpcpCompressionTypeRcvRej(199),
2714        pppIpcpCompressionTypeRcvNak(200),
2715        pppIpcpCompressionTypeXmitReq(201),
2716        pppIpxcpThisLayerStart(202),
2717        pppIpxcpThisLayerFinished(203),
2718        pppIpxcpThisLayerUp(204),
2719        pppIpxcpThisLayerDown(205),
2720        pppIpxcpInitializeRestartCount(206),
2721        pppIpxcpZeroRestartCount(207),
2722        pppIpxcpRcvConfReqGood(208),
2723        pppIpxcpRcvConfReqBad(209),
2724        pppIpxcpReceiveConfigureAck(210),
2725        pppIpxcpReceiveConfigureNak(211),
2726        pppIpxcpReceiveConfigureReject(212),
2727        pppIpxcpReceiveTerminateAck(214),
2728        pppIpxcpReceiveCodeRejectPermitted(215),
2729        pppIpxcpReceiveCodeRejectCatastrophic(216),
2730        pppIpxcpReceiveProtocolRejectPermitted(217),
2731        pppIpxcpReceiveEchoRequest(218),
2732        pppIpxcpReceiveEchoReply(219),
2733        pppIpxcpReceiveDiscardRequest(220),
2734        pppIpxcpReceiveUnknownCode(221),
2735        pppIpxcpIllegalAction(222),
2736        pppIpxcpSendConfigureRequest(223),
2737        pppIpxcpSendConfigureAck(224),
2738        pppIpxcpSendConfigureNak(225),
2739        pppIpxcpSendConfigureReject(226),
2740        pppIpxcpSendTerminateRequest(227),
2741        pppIpxcpSendTerminateAck(228),
2742        pppIpxcpSendCodeReject(229),
2743        pppIpxcpSendProtocolReject(230),
2744        pppIpxcpSendEchoReply(231),
2745        pppIpxcpInitialState(232),
2746        pppIpxcpStartingState(233),
2747        pppIpxcpClosedState(234),
2748        pppIpxcpStoppedState(235),
2749        pppIpxcpClosingState(236),
2750        pppIpxcpStoppingState(237),
2751        pppIpxcpReqSentState(238),
2752        pppIpxcpAckRcvdState(239),
2753        pppIpxcpAckSentState(240),
2754        pppIpxcpOpenedState(241),
2755        pppIpxcpCompressionProtocolRcvReq(242),
2756        pppIpxcpCompressionProtocolRcvNak(243),
2757        pppIpxcpCompressionProtocolRcvRej(244),
2758        pppIpxcpCompressionProtocolXmitReq(245),
2759        pppIpxcpNetworkNumberRcvReq(246),
2760        pppIpxcpNetworkNumberRcvNak(247),
2761        pppIpxcpNetworkNumberRcvRej(248),
2762        pppIpxcpNetworkNumberXmitReq(249),
2763        pppIpxcpNodeNumberRcvReq(250),
2764        pppIpxcpNodeNumberRcvNak(251),
2765        pppIpxcpNodeNumberRcvRej(252),
2766        pppIpxcpNodeNumberXmitReq(253),
2767        pppIpxcpRoutingProtocolRcvReq(254),
2768        pppIpxcpRoutingProtocolRcvNak(255),
2769        pppIpxcpRoutingProtocolRcvRej(256),
2770        pppIpxcpRoutingProtocolXmitReq(257),
2771        pppIpxcpRouterNameRcvReq(258),
2772        pppIpxcpRouterNameRcvNak(259),
2773        pppIpxcpRouterNameRcvRej(260),
2774        pppIpxcpRouterNameXmitReq(261),
2775        pppIpxcpConfigurationCompleteRcvReq(262),
2776        pppIpxcpConfigurationCompleteRcvNak(263),
2777        pppIpxcpConfigurationCompleteRcvRej(264),
2778        pppIpxcpConfigurationCompleteXmitReq(265),
2779        pppLcpThisLayerStart(266),
2780        pppLcpThisLayerFinished(267),
2781        pppLcpThisLayerUp(268),
2782        pppLcpThisLayerDown(269),
2783        pppLcpInitializeRestartCount(270),
2784        pppLcpZeroRestartCount(271),
2785        pppLcpRcvConfReqGood(272),
2786        pppLcpRcvConfReqBad(273),
2787        pppLcpReceiveConfigureAck(274),
2788        pppLcpReceiveConfigureNak(275),
2789        pppLcpReceiveConfigureReject(276),
2790        pppLcpReceiveTerminateRequest(277),
2791        pppLcpReceiveTerminateAck(278),
2792        pppLcpReceiveCodeRejectPermitted(279),
2793        pppLcpReceiveCodeRejectCatastrophic(280),
2794        pppLcpReceiveProtocolReject(281),
2795        pppLcpReceiveEchoRequest(282),
2796        pppLcpReceiveEchoReply(283),
2797        pppLcpReceiveDiscardRequest(284),
2798        pppLcpReceiveUnknownCode(285),
2799        pppLcpIllegalAction(286),
2800        pppLcpSendConfigureRequest(287),
2801        pppLcpSendConfigureAck(288),
2802        pppLcpSendConfigureNak(289),
2803        pppLcpSendConfigureReject(290),
2804        pppLcpSendTerminateRequest(291),
2805        pppLcpSendTerminateAck(292),
2806        pppLcpSendCodeReject(293),
2807        pppLcpSendProtocolReject(294),
2808        pppLcpSendEchoReply(295),
2809        pppLcpInitialState(296),
2810        pppLcpStartingState(297),
2811        pppLcpClosedState(298),
2812        pppLcpStoppedState(299),
2813        pppLcpClosingState(300),
2814        pppLcpStoppingState(301),
2815        pppLcpReqSentState(302),
2816        pppLcpAckRcvdState(303),
2817        pppLcpAckSentState(304),
2818        pppLcpOpenedState(305),
2819        pppLcpMruRcvReq(306),
2820        pppLcpMruRcvNak(307),
2821        pppLcpMruRcvRej(308),
2822        pppLcpMruXmitReq(309),
2823        pppLcpAsyncCharMapRcvReq(310),
2824        pppLcpAsyncCharMapRcvNak(311),
2825        pppLcpAsyncCharMapRcvRej(312),
2826        pppLcpAsyncCharMapXmitReq(313),
2827        pppLcpAuthenticationRcvReq(314),
2828        pppLcpAuthenticationRcvNak(315),
2829        pppLcpAuthenticationRcvRej(316),
2830        pppLcpAuthenticationXmitReq(317),
2831        pppLcpMagicNumberRcvReq(318),
2832        pppLcpMagicNumberRcvNak(319),
2833        pppLcpMagicNumberRcvRej(320),
2834        pppLcpMagicNumberXmitReq(321),
2835        pppLcpLinkQualityRcvReq(322),
2836        pppLcpLinkQualityRcvNak(323),
2837        pppLcpLinkQualityRcvRej(324),
2838        pppLcpLinkQualityXmitReq(325),
2839        pppLcpProtCompRcvReq(326),
2840        pppLcpProtCompRcvNak(327),
2841        pppLcpProtCompRcvRej(328),
2842        pppLcpProtCompXmitReq(329),
2843        pppLcpAddrCompRcvReq(330),
2844        pppLcpAddrCompRcvNak(331),
2845        pppLcpAddrCompRcvRej(332),
2846        pppLcpAddrCompXmitReq(333),
2847        pppLcpFcs32BitRcvReq(334),
2848        pppLcpFcs32BitRcvNak(335),
2849        pppLcpFcs32BitRcvRej(336),
2850        pppLcpFcs32BitXmitReq(337),
2851        pppLcpSelfDescPaddingRcvReq(338),
2852        pppLcpSelfDescPaddingRcvNak(339),
2853        pppLcpSelfDescPaddingRcvRej(340),
2854        pppLcpSelfDescPaddingXmitReq(341),
2855        pppLcpCompoundFramesRcvReq(342),
2856        pppLcpCompoundFramesRcvNak(343),
2857        pppLcpCompoundFramesRcvRej(344),
2858        pppLcpCompoundFramesXmitReq(345),
2859        pppLcpCallbackRcvReq(346),
2860        pppLcpCallbackRcvNak(347),
2861        pppLcpCallbackRcvRej(348),
2862        pppLcpCallbackXmitReq(349),
2863        pppLexThisLayerStart(350),
2864        pppLexThisLayerFinished(351),
2865        pppLexThisLayerUp(352),
2866        pppLexThisLayerDown(353),
2867        pppLexInitializeRestartCount(354),
2868        pppLexZeroRestartCount(355),
2869        pppLexRcvConfReqGood(356),
2870        pppLexRcvConfReqBad(357),
2871        pppLexReceiveConfigureAck(358),
2872        pppLexReceiveConfigureNak(359),
2873        pppLexReceiveConfigureReject(360),
2874        pppLexReceiveTerminateRequest(361),
2875        pppLexReceiveTerminateAck(362),
2876        pppLexReceiveCodeRejectPermitted(363),
2877        pppLexReceiveCodeRejectCatastrophic(364),
2878        pppLexReceiveProtocolRejectPermitted(365),
2879        pppLexReceiveEchoRequest(366),
2880        pppLexReceiveEchoReply(367),
2881        pppLexReceiveDiscardRequest(368),
2882        pppLexReceiveUnknownCode(369),
2883        pppLexIllegalAction(370),
2884        pppLexSendConfigureRequest(371),
2885        pppLexSendConfigureAck(372),
2886        pppLexSendConfigureNak(373),
2887        pppLexSendConfigureReject(374),
2888        pppLexSendTerminateRequest(375),
2889        pppLexSendTerminateAck(376),
2890        pppLexSendCodeReject(377),
2891        pppLexSendProtocolReject(378),
2892        pppLexSendEchoReply(379),
2893        pppLexInitialState(380),
2894        pppLexStartingState(381),
2895        pppLexClosedState(382),
2896        pppLexStoppedState(383),
2897        pppLexClosingState(384),
2898        pppLexStoppingState(385),
2899        pppLexReqSentState(386),
2900        pppLexAckRcvdState(387),
2901        pppLexAckSentState(388),
2902        pppLexOpenedState(389),
2903        pppLexMacTypeSelectRcvReq(390),
2904        pppLexMacTypeSelectRcvNak(391),
2905        pppLexMacTypeSelectRcvRej(392),
2906        pppLexMacTypeSelectXmitReq(393),
2907        pppLexTinygramCompressRcvReq(394),
2908        pppLexTinygramCompressRcvNak(395),
2909        pppLexTinygramCompressRcvRej(396),
2910        pppLexTinygramCompressXmitReq(397),
2911        pppLexMacAddressRcvReq(398),
2912        pppLexMacAddressRcvNak(399),
2913        pppLexMacAddressRcvRej(400),
2914        pppLexMacAddressXmitReq(401),
2915        pppLexMacRelayRcvReq(402),
2916        pppLexMacRelayRcvNak(403),
2917        pppLexMacRelayRcvRej(404),
2918        pppLexMacRelayXmitReq(405),
2919        pppLexStatisticsRequestRcvReq(406),
2920        pppLqrSent(407),
2921        pppLqrReceived(408),
2922        pppLinkDead(409),
2923        pppLinkEstablishment(410),
2924        pppLinkTermination(411),
2925        pppNetworkLayerPhase(412),
2926        pppPapAuthenticateReqReceived(413),
2927        pppPapAuthenticateAckReceived(414),
2928        pppPapAuthenticateNakReceived(415),
2929        pppPapAuthenticateReqSent(416),
2930        pppPapAuthenticateAckSent(417),
2931        pppPapAuthenticateNakSent(418),
2932        frGotLmiPacket(500),
2933        frGotBadQ922Header(501),
2934        frGotCllmPacket(502),
2935        frInactiveReceivedPacket(503),
2936        frReceivedNlpidIpPacket(504),
2937        frSentXidPacket(505),
2938        frSentXidResponse(506),
2939        frReceivedXidPacket(507),
2940        frXidTimerExpired(508),
2941        frGotBadUi(509),
2942        frGotBadSnapPacket(510),
2943        frLinkUp(511),
2944        frLinkDown(512),
2945        frLmiStarted(513),
2946        frLmiStopped(514),
2947        frLmiSentFullStatusEnquiry(515),
2948        frLmiSentKeepAliveMessage(516),
2949        frLmiStatusResponseReceived(517),
2950        frLmiGotAnsiReportType(518),
2951        frLmiGotFullStatusReport(519),
2952        frLmiGotKeepAliveMessage(520),
2953        frLmiUnsolicitedKeepAlive(521),
2954        frLmiAsynchronousStatus(522),
2955        frLmiGotQ933AReportType(523),
2956        frLmiBadPvcStatusLength(524),
2957        frLmiT391TimeoutFs(525),
2958        frLmiT391TimeoutSe(526),
2959        frLmiT391PollFailed(527),
2960        frLmiT391PollSucceeded(528),
2961        frLmiStatusEnquiryReceived(529),
2962        frDcpMode1Initializing(530),
2963        frDcpMode1Disabled(531),
2964        frDcpMode1ControlPacketReceived(532),
2965        frDcpMode1DataPacketReceived(533),
2966        frDcpMode1RequestSent(534),
2967        frDcpMode1RequestReceived(535),
2968        frDcpMode1ResponseSent(536),
2969        frDcpMode1ResponseReceived(537),
2970        frDcpMode1Operational(538),
2971        frDcpMode1TimerExpired(539),
2972        frDcpMode2ControlPacketReceived(540),
2973        frDcpResetPacketSent(541),
2974        frDcpResetTimerExpired(542),
2975        frDcpResetAckSent(543),
2976        frDcpDictionaryQuotaExceeded(544),
2977        isdnRemoteConnectionUp(1000),
2978        isdnRemoteConnectionDown(1001),
2979        isdnActivateConnection(1002),
2980        isdnDeactivateConnection(1003),
2981        multilinkMpLinkUp(1500),
2982        multilinkMpAddBW(1501),
2983        multilinkMpRemoveBW(1502),
2984        multilinkMpSentBeginningFragment(1503),
2985        multilinkMpSentMiddleFragment(1504),
2986        multilinkMpSentEndFragment(1505),
2987        multilinkMpSentCompleteMessage(1506),
2988        multilinkMpReceivedBeginningFragment(1507),
2989        multilinkMpReceivedMiddleFragment(1508),
2990        multilinkMpReceivedEndFragment(1509),
2991        multilinkMpReceivedCompleteMessage(1510)
2992                                        }
2993        ACCESS  read-only
2994        STATUS  mandatory
2995        DESCRIPTION
2996                "An enumerated value representing the nature of the debug
2997                 message sent by the interface."
2998        ::= { wanalyzerEntry 5 }
2999--          1.3.6.1.4.1.52.4.1.2.7.2.7.2.1.5
3000
3001--
3002-- Wan Alarms Group
3003-- This group is required for any platforms that support
3004-- Cabletron's WAN Alarm processing functionality
3005--
3006
3007--
3008-- DS1 Alarms Global Configuration Variables
3009--
3010--      These parameters apply globally to the DS1 Alarms
3011--      entity.  These variables allow the user to program
3012--      DS1 alarm characteristics to be the same for all DS1
3013--      lines installed in the device.  The other option
3014--      available to the user would be to configure each DS1
3015--      line individually, using the parameters in the DS1
3016--      Alarms Configuration Table.
3017--
3018
3019        ds1AlarmsGlobalConfigGroup OBJECT IDENTIFIER ::= { ctDs1Alarms 1 }
3020--                      1.3.6.1.4.1.52.4.1.2.7.2.8.1
3021
3022        ds1AlarmGlobalAdmin     OBJECT-TYPE
3023                SYNTAX  INTEGER {
3024                        disabled(1),    -- default
3025                        enabled(2)
3026                        }
3027                ACCESS  read-write
3028                STATUS  mandatory
3029                DESCRIPTION
3030                        "Used to enable and disable the DS1 Alarm
3031                        Monitoring Application for all DS1 circuits on the
3032                        device."
3033                ::= { ds1AlarmsGlobalConfigGroup 1 }
3034--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.1
3035
3036        ds1AlarmGlobalAutoRecovery      OBJECT-TYPE
3037                SYNTAX  INTEGER {
3038                        disabled(1),
3039                        enabled(2)      -- default
3040                        }
3041                ACCESS  read-write
3042                STATUS  mandatory
3043                DESCRIPTION
3044                        "Used to enable and disable the DS1 Alarm
3045                        Automatic Recovery feature for all DS1 circuits on
3046                        the device. For those devices that support ds1
3047                        alarm monitoring, but do not support the automatic
3048                        recovery feature, this object always returns disabled,
3049                        and performs no action when written."
3050                ::= { ds1AlarmsGlobalConfigGroup 2 }
3051--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.2
3052
3053        ds1AlarmGlobalTrapEnable        OBJECT-TYPE
3054                SYNTAX  INTEGER {
3055                        disabled(1),
3056                        enabled(2)      -- default
3057                        }
3058                ACCESS  read-write
3059                STATUS  mandatory
3060                DESCRIPTION
3061                        "Used to enable and disable the DS1 Alarm
3062                        SNMP Trap generation feature for all DS1 circuits on
3063                        the device.  This object operates in conjunction with
3064                        configuration of objects in the ctron-trap-mib.txt"
3065                ::= { ds1AlarmsGlobalConfigGroup 3 }
3066--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.3
3067
3068        ds1AlarmGlobalESCount   OBJECT-TYPE
3069                SYNTAX  INTEGER (1..300)        -- default is 100
3070                ACCESS  read-write
3071                STATUS  mandatory
3072                DESCRIPTION
3073                        "Used in conjuction with ctDs1AlarmESInterval to set
3074                        the threshold for alarm generation when the number of
3075                        Errored Seconds for a specified time interval,
3076                        measured in minutes, is exceeded.  The default
3077                        Errored Seconds alarm condition is 100 errored seconds
3078                        over a 6 minute time interval."
3079                ::= { ds1AlarmsGlobalConfigGroup 4 }
3080--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.4
3081
3082        ds1AlarmGlobalESInterval        OBJECT-TYPE
3083                SYNTAX  INTEGER (1..15) -- default is 6 minutes
3084                ACCESS  read-write
3085                STATUS  mandatory
3086                DESCRIPTION
3087                        "Used in conjuction with ds1AlarmGlobalESCount to
3088                        set the threshold for alarm generation when the number
3089                        of Errored Seconds for a specified time interval,
3090                        measured in minutes, is exceeded.  The default
3091                        Errored Seconds alarm condition is 100 errored seconds
3092                        over a 6 minute time interval."
3093                ::= { ds1AlarmsGlobalConfigGroup 5 }
3094--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.5
3095
3096        ds1AlarmGlobalBPVErrorRate      OBJECT-TYPE
3097                SYNTAX  INTEGER (5..9)  -- default is 6
3098                ACCESS  read-write
3099                STATUS  mandatory
3100                DESCRIPTION
3101                        "Used to specify the negative exponent of 10, used in
3102                        monitoring Bipolar Violations (Code Violations for E1)
3103                        over intervals defined by ds1AlarmGlobalBPVInterval.
3104                        For example, for a ds1AlarmGlobalBPVErrorRate value
3105                        of 6 used with a ds1AlarmGlobalBPVInterval of 15,
3106                        an alarm is generated when a 15 minute period has an
3107                        average error rate which exceeds 1 Bipolar Violation
3108                        (Code Violation for E1) per million bits.
3109                        For those devices that support ds1 alarm monitoring
3110                        but who's hardware does not support detect bipolar
3111                        violations, this object always returns the default,
3112                        and performs no action when written."
3113                ::= { ds1AlarmsGlobalConfigGroup 6 }
3114--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.6
3115
3116        ds1AlarmGlobalBPVInterval       OBJECT-TYPE
3117                SYNTAX  INTEGER (1..15) -- default is 15 minutes
3118                ACCESS  read-write
3119                STATUS  mandatory
3120                DESCRIPTION
3121                        "Used to specify the interval, used in monitoring
3122                        Bipolar Violations (Code Violations for E1)
3123                        with thresholds defined by ds1AlarmGlobalBPVErrorRate.
3124                        For example, for a ds1AlarmGlobalBPVErrorRate value
3125                        of 6 used with a ds1AlarmGlobalBPVInterval of 15, an
3126                        alarm is generated when a 15 minute period has an
3127                        average error rate which exceeds 1 Bipolar Violation
3128                        (Code Violation for E1) per million bits.
3129                        For those devices that support ds1 alarm monitoring
3130                        but who's hardware does not detect bipolar
3131                        violations, this object always returns the default,
3132                        and performs no action when written."
3133                ::= { ds1AlarmsGlobalConfigGroup 7 }
3134--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.7
3135
3136        ds1AlarmGlobalManualRecovery    OBJECT-TYPE
3137                SYNTAX  INTEGER {
3138                        recover(1)
3139                        }
3140                ACCESS  read-write
3141                STATUS  mandatory
3142                DESCRIPTION
3143                        "To cause a manual recovery to occur on all Ds1 circuits, this
3144                        object is set to a 1.  It is always read as a 1.  The recovery
3145                        will occur only when automatic recovery is disabled."
3146                ::= { ds1AlarmsGlobalConfigGroup 8 }
3147--          1.3.6.1.4.1.52.4.1.2.7.2.8.1.8
3148
3149--
3150-- DS1 Alarms Configuration Table
3151--
3152--      The DS1 alarm table structure contains the same information as the
3153--      global configuration objects, but allows seperate configuratoin of
3154--      specific DS1 circuits contained on the device
3155--
3156        ds1AlarmConfigTable OBJECT-TYPE
3157                SYNTAX      SEQUENCE OF Ds1AlarmConfigEntry
3158                ACCESS      not-accessible
3159                STATUS      mandatory
3160                DESCRIPTION
3161                        "Table containing objects used to configure DS1 alarm
3162                        functionality on a per DS1 basis."
3163                ::= { ctDs1Alarms 2 }
3164--          1.3.6.1.4.1.52.4.1.2.7.2.8.2
3165
3166        ds1AlarmConfigEntry OBJECT-TYPE
3167                SYNTAX      Ds1AlarmConfigEntry
3168                ACCESS      not-accessible
3169                STATUS      mandatory
3170                DESCRIPTION
3171                        "A description of a single entry."
3172                INDEX       { ds1PhysNum }
3173                ::= { ds1AlarmConfigTable 1 }
3174--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1
3175
3176        Ds1AlarmConfigEntry ::=
3177                SEQUENCE {
3178                        ds1PhysNum
3179                        INTEGER,
3180                        ds1AlarmAdmin
3181                        INTEGER,
3182                        ds1AlarmAutoRecovery
3183                        INTEGER,
3184                        ds1AlarmTrapEnable
3185                        INTEGER,
3186                        ds1AlarmESCount
3187                        INTEGER,
3188                        ds1AlarmESInterval
3189                        INTEGER,
3190                        ds1AlarmBPVErrorRate
3191                        INTEGER,
3192                        ds1AlarmBPVInterval
3193                        INTEGER,
3194                        ds1AlarmManualRecovery
3195                        INTEGER
3196                        }
3197
3198        ds1PhysNum    OBJECT-TYPE
3199                SYNTAX      INTEGER
3200                ACCESS      read-only
3201                STATUS      mandatory
3202                DESCRIPTION
3203                        "The value for this object is equal to the value
3204                        of a unique physical connection identifier associated
3205                        with this DS1 which is clearly labeled on the device.
3206                        For those products that do not have a DS1 identifier
3207                        labeled on the device, the value for this object is
3208                        the same as rfc1406 dsx1LineIndex."
3209                ::= { ds1AlarmConfigEntry 1 }
3210--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.1
3211
3212        ds1AlarmAdmin   OBJECT-TYPE
3213                SYNTAX  INTEGER {
3214                        disabled(1),    -- default
3215                        enabled(2)
3216                        }
3217                ACCESS  read-write
3218                STATUS  mandatory
3219                DESCRIPTION
3220                        "Used to enable and disable the DS1 Alarm
3221                        Monitoring Application for this DS1 circuit."
3222                ::= { ds1AlarmConfigEntry 2 }
3223--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.2
3224
3225        ds1AlarmAutoRecovery    OBJECT-TYPE
3226                SYNTAX  INTEGER {
3227                        disabled(1),
3228                        enabled(2)      -- default
3229                        }
3230                ACCESS  read-write
3231                STATUS  mandatory
3232                DESCRIPTION
3233                        "Used to enable and disable the DS1 Alarm
3234                        Automatic Recovery feature for this DS1 circuit.
3235                        For those devices that support ds1
3236                        alarm monitoring, but do not support the automatic
3237                        recovery feature, this object always returns disabled,
3238                        and performs no action when written."
3239                ::= { ds1AlarmConfigEntry 3 }
3240--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.3
3241
3242        ds1AlarmTrapEnable      OBJECT-TYPE
3243                SYNTAX  INTEGER {
3244                        disabled(1),
3245                        enabled(2)      -- default
3246                        }
3247                ACCESS  read-write
3248                STATUS  mandatory
3249                DESCRIPTION
3250                        "Used to enable and disable the DS1 Alarm
3251                        SNMP Trap generation feature for this DS1 circuit.
3252                        This object operates in conjunction with configuration
3253                        of objects in the ctron-trap-mib.txt"
3254                ::= { ds1AlarmConfigEntry 4 }
3255--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.4
3256
3257        ds1AlarmESCount OBJECT-TYPE
3258                SYNTAX  INTEGER (1..300)        -- default is 100
3259                ACCESS  read-write
3260                STATUS  mandatory
3261                DESCRIPTION
3262                        "Used in conjuction with ctDs1AlarmESInterval to set
3263                        the threshold for alarm generation when the number of
3264                        Errored Seconds for a specified time interval, measured
3265                        in minutes, is exceeded.  The default Errored Seconds
3266                        alarm condition is 100 errored seconds over a 6 minute
3267                        time interval."
3268                ::= { ds1AlarmConfigEntry 5 }
3269--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.5
3270
3271        ds1AlarmESInterval      OBJECT-TYPE
3272                SYNTAX  INTEGER (1..15) -- default is 6 minutes
3273                ACCESS  read-write
3274                STATUS  mandatory
3275                DESCRIPTION
3276                        "Used in conjuction with ctDs1AlarmESCount to set the
3277                        threshold for alarm generation when the number of
3278                        Errored Seconds for a specified time interval, measured
3279                        in minutes, is exceeded.  The default Errored Seconds
3280                        alarm condition is 100 errored seconds over a 6 minute
3281                        time interval."
3282                ::= { ds1AlarmConfigEntry 6 }
3283--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.6
3284
3285        ds1AlarmBPVErrorRate    OBJECT-TYPE
3286                SYNTAX  INTEGER (5..9)  -- default is 6
3287                ACCESS  read-write
3288                STATUS  mandatory
3289                DESCRIPTION
3290                        "Used to specify the negative exponent of 10, used in
3291                        monitoring Bipolar Violations (Code Violations for E1)
3292                        over intervals defined by ds1AlarmBPVInterval.  For
3293                        example, for a ds1AlarmBPVErrorRate value of 6 used
3294                        with a ds1AlarmBPVInterval of 15, an alarm is generated
3295                        when a 15 minute period has an average error rate which
3296                        exceeds 1 Bipolar Violation (Code Violation for E1) per
3297                        million bits.
3298                        For those devices that support ds1 alarm monitoring
3299                        but who's hardware does not support detect bipolar
3300                        violations, this object always returns the default,
3301                        and performs no action when written."
3302                ::= { ds1AlarmConfigEntry 7 }
3303--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.7
3304
3305        ds1AlarmBPVInterval     OBJECT-TYPE
3306                SYNTAX  INTEGER (1..15) -- default is 15 minutes
3307                ACCESS  read-write
3308                STATUS  mandatory
3309                DESCRIPTION
3310                        "Used to specify the interval, used in
3311                        monitoring Bipolar Violations (Code Violations for E1)
3312                        with thresholds defined by ds1AlarmBPVErrorRate.  For
3313                        example, for a ds1AlarmBPVErrorRate value of 6 used
3314                        with a ds1AlarmBPVInterval of 15, an alarm is generated
3315                        when a 15 minute period has an average error rate
3316                        which exceeds 1 Bipolar Violation (Code Violation for
3317                        E1) per million bits.
3318                        For those devices that support ds1 alarm monitoring
3319                        but who's hardware does not support detect bipolar
3320                        violations, this object always returns the default,
3321                        and performs no action when written."
3322                ::= { ds1AlarmConfigEntry 8 }
3323--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.8
3324
3325        ds1AlarmManualRecovery  OBJECT-TYPE
3326                SYNTAX  INTEGER {
3327                        recover(1)
3328                        }
3329                ACCESS  read-write
3330                STATUS  mandatory
3331                DESCRIPTION
3332                        "To cause a manual recovery to occur, this object is set
3333                        to a 1.  It is always read as a 1.  The recovery will
3334                        occur only when automatic recovery is disabled."
3335                ::= { ds1AlarmConfigEntry 9 }
3336--          1.3.6.1.4.1.52.4.1.2.7.2.8.2.1.9
3337
3338--
3339-- Wan Internet Protocol Priority Queue Filters Group
3340-- This group is required for any platforms that support
3341-- Cabletron's WAN IP Priority Queue processing functionality
3342--
3343
3344--
3345-- IP PQ Configuration Variables
3346--
3347--      These parameters apply to the IP Priority Queue
3348--      entity.  These variables allow the user to program
3349--      IP addresses in a filtering database.  The database
3350--      of IP addresses are used when a WAN service is over
3351--      subscribed, and the packet would normally be discarded.
3352--      If the IP PQ admin status is enabled, and the IP
3353--      address of the packet to be discarded matches one
3354--      programmed in the database, an attempt will be made
3355--      to use high priority, reserved, resources to transmit
3356--      the packet.  The addresses programmed in this table
3357--      should be reserved for those packets which MUST be
3358--      transmitted.  Some examples would be RIP, and SNMP
3359--      packets, who's loss would cause major networking
3360--      problems for the system.
3361--
3362
3363        ipPQConfigGroup OBJECT IDENTIFIER ::= { ctIPPQFilters 1 }
3364--                      1.3.6.1.4.1.52.4.1.2.7.2.9.1
3365
3366        ipPQAdmin       OBJECT-TYPE
3367                SYNTAX  INTEGER {
3368                        disabled(1),    -- default
3369                        enabled(2)
3370                        }
3371                ACCESS  read-write
3372                STATUS  mandatory
3373                DESCRIPTION
3374                        "Used to enable and disable the IP Priority Queue
3375                        Forwarding Application."
3376                ::= { ipPQConfigGroup 1 }
3377--          1.3.6.1.4.1.52.4.1.2.7.2.9.1.1
3378
3379        iPPQMaxEntries  OBJECT-TYPE
3380                SYNTAX  INTEGER
3381                ACCESS  read-only
3382                STATUS  mandatory
3383                DESCRIPTION
3384                        "Returns the maximum number of IP address entries
3385                        supported by the IP Priority Queue application on
3386                        this device."
3387                ::= { ipPQConfigGroup 2 }
3388--          1.3.6.1.4.1.52.4.1.2.7.2.9.1.2
3389
3390        iPPQNumEntries  OBJECT-TYPE
3391                SYNTAX  INTEGER
3392                ACCESS  read-only
3393                STATUS  mandatory
3394                DESCRIPTION
3395                        "Get the number of IP address entries currently
3396                        programmed in the ipPQAddressTable."
3397                ::= { ipPQConfigGroup 3 }
3398--          1.3.6.1.4.1.52.4.1.2.7.2.9.1.3
3399
3400        iPPQAddAddress OBJECT-TYPE
3401                SYNTAX      IpAddress
3402                ACCESS      read-write
3403                STATUS      mandatory
3404                DESCRIPTION
3405                        "Add an IP address to the ipPQAddressTable. Always
3406                        read as a 0.0.0.0."
3407                ::= { ipPQConfigGroup 4 }
3408--          1.3.6.1.4.1.52.4.1.2.7.2.9.1.4
3409
3410        iPPQDelAddress OBJECT-TYPE
3411                SYNTAX      IpAddress
3412                ACCESS      read-write
3413                STATUS      mandatory
3414                DESCRIPTION
3415                        "Delete an IP address from the ipPQAddressTable.
3416                        Always read as a 0.0.0.0."
3417                ::= { ipPQConfigGroup 5 }
3418--          1.3.6.1.4.1.52.4.1.2.7.2.9.1.5
3419
3420--
3421--
3422--
3423-- IP Priority Queue Address Table
3424--
3425--      The IP PQ table contains a list of IP adresses used with the
3426--      Priority Queue filtering mechanism.
3427--
3428        ipPQAddressTable OBJECT-TYPE
3429                SYNTAX      SEQUENCE OF IpPQAddressEntry
3430                ACCESS      not-accessible
3431                STATUS      mandatory
3432                DESCRIPTION
3433                        "Table containing IP addresses, used in an
3434                        IP Priority Queue Forwarding function."
3435                ::= { ctIPPQFilters 2 }
3436--          1.3.6.1.4.1.52.4.1.2.7.2.9.2
3437
3438        ipPQAddressEntry OBJECT-TYPE
3439                SYNTAX      IpPQAddressEntry
3440                ACCESS      not-accessible
3441                STATUS      mandatory
3442                DESCRIPTION
3443                        "A description of a single entry."
3444                INDEX       { ipPQAddressId }
3445                ::= { ipPQAddressTable 1 }
3446--          1.3.6.1.4.1.52.4.1.2.7.2.9.2.1
3447
3448        IpPQAddressEntry ::=
3449                SEQUENCE {
3450                        ipPQAddressId
3451                        INTEGER,
3452                        ipPQIPAddress
3453                        IpAddress
3454                        }
3455
3456        ipPQAddressId    OBJECT-TYPE
3457                SYNTAX      INTEGER (1..65535)
3458                ACCESS      read-only
3459                STATUS      mandatory
3460                DESCRIPTION
3461                        "A unique value identifying an element in a sequence
3462                        of IP PQ address entries."
3463                ::= { ipPQAddressEntry 1 }
3464--          1.3.6.1.4.1.52.4.1.2.7.2.9.2.1.1
3465
3466        ipPQIPAddress    OBJECT-TYPE
3467                SYNTAX      IpAddress
3468                ACCESS      read-only
3469                STATUS      mandatory
3470                DESCRIPTION
3471                        "Returns an IP address associated with a specific
3472                        entry in this table."
3473                ::= { ipPQAddressEntry 2 }
3474--          1.3.6.1.4.1.52.4.1.2.7.2.9.2.1.2
3475
3476-- Cabletron Ds3 Extensions Group
3477-- This group is required for any platforms that have a t3 physical
3478-- port.
3479
3480        ctDs3ExtensionsTable OBJECT-TYPE
3481        SYNTAX  SEQUENCE OF CtDs3ExtensionsEntry
3482        ACCESS  not-accessible
3483        STATUS  mandatory
3484        DESCRIPTION
3485                "This table is an extension to the standard ds3 configuration
3486                table. It is a list of items that are pertinant to ds3 ports
3487                on a platform. There is one entry per ds3 physical port on
3488                the platform."
3489        ::= { ctDs3Ext 1 }
3490--          1.3.6.1.4.1.52.4.1.2.7.2.10.1
3491
3492        ctDs3ExtensionsEntry OBJECT-TYPE
3493        SYNTAX  CtDs3ExtensionsEntry
3494        ACCESS  not-accessible
3495        STATUS  mandatory
3496        DESCRIPTION
3497                "A ds3 extensions entry containing objects relating to
3498                the particular ds3 physical port."
3499        INDEX   { ctDs3ExtensionsEntryIndex }
3500        ::= { ctDs3ExtensionsTable 1 }
3501--          1.3.6.1.4.1.52.4.1.2.7.2.10.1.1
3502
3503        CtDs3ExtensionsEntry ::=
3504        SEQUENCE {
3505                        ctDs3ExtensionsEntryIndex
3506                        INTEGER,
3507                        ctDs3ExtensionsNumInterfaces
3508                        INTEGER,
3509                        ctDs3ExtensionsLineBuildOut
3510                        INTEGER
3511                }
3512
3513        ctDs3ExtensionsEntryIndex OBJECT-TYPE
3514        SYNTAX  INTEGER
3515        ACCESS  read-only
3516        STATUS  mandatory
3517        DESCRIPTION
3518                "A unique value for each ds3 physical port on the platform."
3519        ::= { ctDs3ExtensionsEntry 1 }
3520--          1.3.6.1.4.1.52.4.1.2.7.2.10.1.1.1
3521
3522        ctDs3ExtensionsNumInterfaces OBJECT-TYPE
3523        SYNTAX  INTEGER
3524        ACCESS  read-only
3525        STATUS  mandatory
3526        DESCRIPTION
3527                "The number of interfaces on this physical port. This
3528                number inidicates the number of entries this physical port
3529                uses in the ifTable."
3530        REFERENCE
3531                "rfc-1213"
3532        ::= { ctDs3ExtensionsEntry 2 }
3533--          1.3.6.1.4.1.52.4.1.2.7.2.10.1.1.2
3534
3535        ctDs3ExtensionsLineBuildOut OBJECT-TYPE
3536        SYNTAX  INTEGER {
3537                        unknown(1),
3538                        zeroto255feet(2),
3539                        a255to450feet(3)
3540                                        }
3541        ACCESS  read-write
3542        STATUS  mandatory
3543        DESCRIPTION
3544                "The line build out setting for this ds3 physical port.
3545                Unknown indicates that the setting is neither readable or
3546                writable."
3547        DEFVAL { zeroto255feet }
3548        ::= { ctDs3ExtensionsEntry 3 }
3549--          1.3.6.1.4.1.52.4.1.2.7.2.10.1.1.3
3550
3551END
3552