1-- Subset of SONET and DS3/E3 and DS1/E1 MIBs for Rhino project
2--
3-- December 1995, C. Yadavalli
4--
5-- Copyright (c) 1996-1997 by cisco Systems, Inc.
6-- All rights reserved.
7-- --------------------------------------------------------------------
8--
9CISCO-ATM-IF-PHYS-MIB DEFINITIONS ::= BEGIN
10
11IMPORTS
12    MODULE-IDENTITY,
13    Counter32,
14    OBJECT-TYPE                      FROM SNMPv2-SMI
15    ifIndex                          FROM RFC1213-MIB
16    ciscoMgmt                        FROM CISCO-SMI
17    MODULE-COMPLIANCE, OBJECT-GROUP  FROM SNMPv2-CONF;
18
19
20ciscoAtmIfPhysMIB MODULE-IDENTITY
21    LAST-UPDATED    "9609190000Z"
22    ORGANIZATION    "Cisco Systems, Inc."
23    CONTACT-INFO
24            "       Cisco Systems
25                    Customer Service
26
27            Postal: 170 W Tasman Drive
28                    San Jose, CA  95134
29                    USA
30
31               Tel: +1 800 553-NETS
32
33            E-mail: cs-atm@cisco.com"
34    DESCRIPTION
35            "A minimal set of managed objects for tracking
36            the status of DS3/E3/DS1/E1 and SONET interfaces."
37    REVISION        "9609190000Z"
38    DESCRIPTION
39            "Added DS1/E1 stuff."
40    REVISION        "9608080000Z"
41    DESCRIPTION
42            "Added network clock source configuration and
43             other physical layer configuration."
44    REVISION        "9512020000Z"
45    DESCRIPTION
46            "Initial version of this MIB module."
47    ::= { ciscoMgmt 45 }
48
49ciscoAtmIfPhysMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmIfPhysMIB 1 }
50
51ciscoAtmIfPhysTable OBJECT-TYPE
52    SYNTAX     SEQUENCE OF CiscoAtmIfPhysEntry
53    MAX-ACCESS not-accessible
54    STATUS     current
55    DESCRIPTION
56            "A table containing basic status and statistics for
57            the physical layer of ATM interfaces."
58    ::= { ciscoAtmIfPhysMIBObjects 1 }
59
60ciscoAtmIfPhysEntry OBJECT-TYPE
61    SYNTAX     CiscoAtmIfPhysEntry
62    MAX-ACCESS not-accessible
63    STATUS     current
64    DESCRIPTION
65            "Basic status and statistics for the physical layer of
66            an ATM interface."
67    INDEX { ifIndex }
68    ::= { ciscoAtmIfPhysTable 1 }
69
70CiscoAtmIfPhysEntry ::=
71    SEQUENCE {
72            ciscoAtmIfPhysStatus               INTEGER,
73            ciscoAtmIfPhysSectionParityErrors  Counter32,
74            ciscoAtmIfPhysLineParityErrors     Counter32,
75            ciscoAtmIfPhysPathParityErrors     Counter32,
76            ciscoAtmIfPhysLcvErrors            Counter32,
77            ciscoAtmIfPhysCBitParityErrors     Counter32,
78            ciscoAtmIfPhysPBitParityErrors     Counter32,
79            ciscoAtmIfPhysPlcpBipViolations    Counter32,
80            ciscoAtmIfPhysLineFebeErrors       Counter32,
81            ciscoAtmIfPhysPathFebeErrors       Counter32,
82            ciscoAtmIfPhysCellPayloadScrambling INTEGER,
83            ciscoAtmIfPhysStsStreamScrambling  INTEGER,
84            ciscoAtmIfPhysFramingMode          INTEGER,
85            ciscoAtmIfPhysLoopbackConfig       INTEGER,
86            ciscoAtmIfPhysLineBuildOut         INTEGER,
87            ciscoAtmIfPhysTransmitClockSource  INTEGER,
88            ciscoAtmIfPhysClockSourcePriority  INTEGER,
89            ciscoAtmIfPhysClockSourceStatus    INTEGER,
90            ciscoAtmIfPhysDS1BitErrors         Counter32,
91            ciscoAtmIfPhysE1CrcErrors          Counter32,
92            ciscoAtmIfPhysLineCode             INTEGER
93    }
94
95ciscoAtmIfPhysStatus OBJECT-TYPE
96    SYNTAX        INTEGER {
97                      normal(1),
98                      los(2),
99                      lof(3),
100                      loc(4),
101                      ais(5),
102                      yellowLine(6),
103                      yellowPath(7),
104                      lop(8),
105                      idle(9),
106                      yellowAlarm(10),
107                      plcpLOF(11),
108                      plcpYellow(12),
109                      maFERF(13),
110                      pathAis(14),
111                      ocd(15)
112                  }
113    MAX-ACCESS    read-only
114    STATUS        current
115    DESCRIPTION
116              "The status of the physical interface.  The value of this
117              object is only valid when the interface's ifAdminStatus
118              has the value 'up'.  Note that some of the enumerated
119              values are specific to a particular physical layer."
120    ::= { ciscoAtmIfPhysEntry 1 }
121
122ciscoAtmIfPhysSectionParityErrors OBJECT-TYPE
123    SYNTAX        Counter32
124    MAX-ACCESS    read-only
125    STATUS        current
126    DESCRIPTION
127              "The number of B1 (BIP) errors on the physical interface.
128              This object is only present for SONET interfaces."
129    ::= { ciscoAtmIfPhysEntry 2 }
130
131ciscoAtmIfPhysLineParityErrors OBJECT-TYPE
132    SYNTAX        Counter32
133    MAX-ACCESS    read-only
134    STATUS        current
135    DESCRIPTION
136              "The number of B2 (BIP) errors on the physical interface.
137              This object is only present for SONET interfaces."
138    ::= { ciscoAtmIfPhysEntry 3 }
139
140ciscoAtmIfPhysPathParityErrors OBJECT-TYPE
141    SYNTAX        Counter32
142    MAX-ACCESS    read-only
143    STATUS        current
144    DESCRIPTION
145              "The number of B3 (BIP) errors on the physical interface.
146              This object is only present for SONET interfaces."
147    ::= { ciscoAtmIfPhysEntry 4 }
148
149ciscoAtmIfPhysLcvErrors OBJECT-TYPE
150    SYNTAX        Counter32
151    MAX-ACCESS    read-only
152    STATUS        current
153    DESCRIPTION
154              "The number of Line Code Violation errors on the physical
155              interface. This object is only present for DS3/E3/DS1/E1
156              interfaces."
157    ::= { ciscoAtmIfPhysEntry 5 }
158
159ciscoAtmIfPhysCBitParityErrors OBJECT-TYPE
160    SYNTAX        Counter32
161    MAX-ACCESS    read-only
162    STATUS        current
163    DESCRIPTION
164              "The number of C-bit parity violations on the physical
165              interface.  This object is only present for DS3
166              interfaces."
167    ::= { ciscoAtmIfPhysEntry 6 }
168
169ciscoAtmIfPhysPBitParityErrors OBJECT-TYPE
170    SYNTAX        Counter32
171    MAX-ACCESS    read-only
172    STATUS        current
173    DESCRIPTION
174              "The number of P-bit parity violations or E3 G.832 BIP-8
175               errors on the physical
176              interface.  This object is present only for DS3/E3
177              interfaces."
178    ::= { ciscoAtmIfPhysEntry 7 }
179
180ciscoAtmIfPhysPlcpBipViolations OBJECT-TYPE
181    SYNTAX        Counter32
182    MAX-ACCESS    read-only
183    STATUS        current
184    DESCRIPTION
185              "The number of PLCP BIP violations on the physical
186              interface.  This object is only present for DS3/E3/DS1/E1
187              interfaces."
188    ::= { ciscoAtmIfPhysEntry 8 }
189
190ciscoAtmIfPhysLineFebeErrors OBJECT-TYPE
191    SYNTAX        Counter32
192    MAX-ACCESS    read-only
193    STATUS        current
194    DESCRIPTION
195              "The number of Z2 (Line FEBE) errors on the physical interface.
196              This object is only present for SONET interfaces."
197    ::= { ciscoAtmIfPhysEntry 9 }
198
199ciscoAtmIfPhysPathFebeErrors OBJECT-TYPE
200    SYNTAX        Counter32
201    MAX-ACCESS    read-only
202    STATUS        current
203    DESCRIPTION
204              "The number of G1 (Path FEBE) errors on the physical interface.
205              This object is only present for SONET interfaces."
206    ::= { ciscoAtmIfPhysEntry 10 }
207
208ciscoAtmIfPhysCellPayloadScrambling OBJECT-TYPE
209    SYNTAX        INTEGER { off(1),
210                            on(2) }
211    MAX-ACCESS    read-write
212    STATUS        current
213    DESCRIPTION
214              "The status of whether cell payload scrambling is
215              enabled or disabled on the physical interface."
216    ::= { ciscoAtmIfPhysEntry 11 }
217
218ciscoAtmIfPhysStsStreamScrambling OBJECT-TYPE
219    SYNTAX        INTEGER { off(1),
220                            on(2) }
221    MAX-ACCESS    read-write
222    STATUS        current
223    DESCRIPTION
224              "The status of whether STS-stream scrambling is
225              enabled or disabled on the physical interface."
226    ::= { ciscoAtmIfPhysEntry 12 }
227
228ciscoAtmIfPhysFramingMode OBJECT-TYPE
229    SYNTAX        INTEGER { sonet(1),
230                            sdh(2),
231                            ds3m23adm(3),
232                            ds3m23plcp(4),
233                            ds3cbitadm(5),
234                            ds3cbitplcp(6),
235                            e3g832adm(7),
236                            e3g751adm(8),
237                            e3g751plcp(9),
238                            ds1sfadm(10),
239                            ds1esfadm(11),
240                            ds1sfplcp(12),
241                            ds1esfplcp(13),
242                            e1adm(14),
243                            e1plcp(15),
244                            e1crcadm(16),
245                            e1crcplcp(17)}
246    MAX-ACCESS    read-write
247    STATUS        current
248    DESCRIPTION
249              "The framing format present on the physical interface.
250
251               'sonet' indicates sts-3c or sts-12c format and applies only
252              to OC-3 and OC-12 type interfaces, respectively.
253
254               'sdh' indicates stm1 or stm4 format and applies only to
255              OC-3 and OC-12 type interfaces, respectively.
256
257               'ds3m23adm' indicates M23 ADM mode and applies only to DS3
258              type interfaces.
259
260               'ds3m23plcp' indicates M23 PLCP mode and applies only to DS3
261              type interfaces.
262
263               'ds3cbitadm' indicates C-BIT ADM mode and applies only to DS3
264              type interfaces.
265
266               'ds3cbitplcp' indicates C-BIT PLCP mode and applies only to DS3
267              type interfaces.
268
269               'e3g832adm' indicates G.832 ADM mode and applies only to E3
270              type interfaces.
271
272               'e3g751adm' indicates G.751 ADM mode and applies only to E3
273              type interfaces.
274
275               'e3g751plcp' indicates G.751 PLCP mode and applies only to E3
276              type interfaces.
277
278               'ds1sfadm' indicates DS1 SF ADM mode and applies only to DS1
279              type interfaces.
280
281               'ds1esfadm' indicates DS1 ESF ADM mode and applies only to DS1
282              type interfaces.
283
284               'ds1sfplcp' indicates DS1 SF PLCP mode and applies only to DS1
285              type interfaces.
286
287               'ds1esfplcp' indicates DS1 ESF PLCP mode and applies only to DS1
288              type interfaces.
289
290               'e1adm' indicates E1 ADM mode and applies only to E1
291              type interfaces.
292
293               'e1plcp' indicates E1 PLCP mode and applies only to E1
294              type interfaces.
295
296               'e1crcadm' indicates E1 CRC-4 ADM mode and applies only to E1
297              type interfaces.
298
299               'e1crcplcp' indicates E1 CRC-4 PLCP mode and applies only to E1
300              type interfaces."
301    ::= { ciscoAtmIfPhysEntry 13 }
302
303ciscoAtmIfPhysLoopbackConfig OBJECT-TYPE
304    SYNTAX        INTEGER { noLoop(1),
305                            diagnosticLoop(2),
306                            lineLoop(3),
307                            otherLoop(4) }
308    MAX-ACCESS    read-write
309    STATUS        current
310    DESCRIPTION
311              "The loopback configured on the physical interface:
312
313               'noLoop' indicates no loopback is present.
314
315               'diagnosticLoop' indicates transmit data stream is
316              looped to the receive direction.
317
318               'lineLoop' indicates receive data stream is
319              looped to the transmit direction.
320
321               'otherLoop' indicates loopbacks that are not defined here.  "
322    ::= { ciscoAtmIfPhysEntry 14 }
323
324ciscoAtmIfPhysLineBuildOut OBJECT-TYPE
325    SYNTAX        INTEGER { e3AllCables(1),
326                            ds3CablesUnder225(2),
327                            ds3CablesOver225(3),
328                            ds1Cables0To110(4),
329                            ds1Cables110To220(5),
330                            ds1Cables220To330(6),
331                            ds1Cables330To440(7),
332                            ds1Cables440To550(8),
333                            ds1Cables550To660(9),
334                            ds1CablesOver600(10),
335                            e1AllCables(11) }
336    MAX-ACCESS    read-write
337    STATUS        current
338    DESCRIPTION
339              "The line buildout configured on the transmit signal:
340
341               'e3AllCables' applies to all cables of E3 physical
342              interfaces.
343
344               'ds3CablesUnder225' applies to cables under 225 feet of
345              DS3 physical interfaces.
346
347               'ds3CablesOver225' applies to cables over 225 feet of
348              DS3 physical interfaces.
349
350               'ds1Cables0To110' applies to cables 0 to 110 feet of
351              DS1 physical interfaces.
352
353               'ds1Cables110To220' applies to cables 110 to 220 feet of
354              DS1 physical interfaces.
355
356               'ds1Cables220To330' applies to cables 220 to 330 feet of
357              DS1 physical interfaces.
358
359               'ds1Cables330To440' applies to cables 330 to 440 feet of
360              DS1 physical interfaces.
361
362               'ds1Cables440To550' applies to cables 440 to 550 feet of
363              DS1 physical interfaces.
364
365               'ds1Cables550To660' applies to cables 550 to 660 feet of
366              DS1 physical interfaces.
367
368               'ds1CablesOver600' applies to cables over 600 feet of
369              DS1 physical interfaces.
370
371               'e1AllCables' applies to all cables of
372              E1 physical interfaces.  "
373    ::= { ciscoAtmIfPhysEntry 15 }
374
375ciscoAtmIfPhysTransmitClockSource OBJECT-TYPE
376    SYNTAX        INTEGER { loopTiming(1),
377                            freeRunning(2),
378                            networkDerived(3) }
379    MAX-ACCESS    read-write
380    STATUS        current
381    DESCRIPTION
382              "The source of the tranmit clock:
383
384               'loopTiming' indicates that the recovered receive
385              clock is used as the transmit clock.
386
387               'freeRunning' indicates that a local clock source is
388              used.
389
390               'networkDerived' indicates that recovered receive
391              clock from another interface is used as the transmit
392              clock source.  "
393    ::= { ciscoAtmIfPhysEntry 16 }
394
395ciscoAtmIfPhysClockSourcePriority OBJECT-TYPE
396    SYNTAX        INTEGER { notConfigured(1),
397                            priority1(2),
398                            priority2(3),
399                            priority3(4),
400                            priority4(5) }
401    MAX-ACCESS    read-write
402    STATUS        current
403    DESCRIPTION
404              "The priority of this interface if configured as
405              a network clock source.
406
407               'notConfigured' indicates this is not configured as
408              a network clock source.  "
409    ::= { ciscoAtmIfPhysEntry 17 }
410
411ciscoAtmIfPhysClockSourceStatus OBJECT-TYPE
412    SYNTAX        INTEGER { notSelected(1),
413                            selected(2) }
414    MAX-ACCESS    read-only
415    STATUS        current
416    DESCRIPTION
417              "The network clock source status of this interface:
418
419               'notSelected' indicates this is not selected as the
420              network clock source.
421
422               'selected' indicates this is selected as the
423              network clock source.  "
424    ::= { ciscoAtmIfPhysEntry 18 }
425
426ciscoAtmIfPhysDS1BitErrors OBJECT-TYPE
427    SYNTAX        Counter32
428    MAX-ACCESS    read-only
429    STATUS        current
430    DESCRIPTION
431              "The number of bit errors (CRC-6 error in ESF mode and
432               framing bit error in SF mode) on the physical
433              interface.  This object is only present for DS1
434              interfaces."
435    ::= { ciscoAtmIfPhysEntry 19 }
436
437ciscoAtmIfPhysE1CrcErrors OBJECT-TYPE
438    SYNTAX        Counter32
439    MAX-ACCESS    read-only
440    STATUS        current
441    DESCRIPTION
442              "The number of CRC errors (in CRC-4 mode) on the physical
443              interface.  This object is only present for E1
444              interfaces."
445    ::= { ciscoAtmIfPhysEntry 20 }
446
447ciscoAtmIfPhysLineCode OBJECT-TYPE
448    SYNTAX        INTEGER { ami(1),
449                            b8zs(2),
450                            hdb3(3) }
451    MAX-ACCESS    read-write
452    STATUS        current
453    DESCRIPTION
454              "The line coding present on the physical interface  This object
455              is only present for DS1/E1 interfaces.
456
457               'ami' indicates alternate mark inversion (AMI) line code
458              on the DS1/E1 interface.
459
460               'b8zs' indicates B8ZS line code on the physical interface and
461              applies only to DS1 interfaces.
462
463               'hdb3' indicates HDB3 line code on the physical interface and
464              applies only to E1 interfaces. "
465
466    ::= { ciscoAtmIfPhysEntry 21 }
467
468-- conformance information
469
470ciscoAtmIfPhysMIBConformance
471               OBJECT IDENTIFIER ::= { ciscoAtmIfPhysMIB 3 }
472ciscoAtmIfPhysMIBCompliances
473               OBJECT IDENTIFIER ::= { ciscoAtmIfPhysMIBConformance 1 }
474ciscoAtmIfPhysMIBGroups
475               OBJECT IDENTIFIER ::= { ciscoAtmIfPhysMIBConformance 2 }
476
477
478-- compliance statements
479
480ciscoAtmIfPhysMIBCompliance MODULE-COMPLIANCE
481    STATUS  obsolete -- susperseded by ciscoAtmIfPhysMIBCompliance2
482    DESCRIPTION
483            "The compliance statement for entities which implement
484            the Cisco ATM Interface Physical MIB."
485    MODULE  -- this module
486            MANDATORY-GROUPS { ciscoAtmIfPhysMIBCommonGroup }
487    ::= { ciscoAtmIfPhysMIBCompliances 1 }
488
489
490ciscoAtmIfPhysMIBCompliance2 MODULE-COMPLIANCE
491    STATUS  obsolete -- susperseded by ciscoAtmIfPhysMIBCompliance3
492    DESCRIPTION
493            "The compliance statement for entities which implement
494            the Cisco ATM Interface Physical MIB."
495    MODULE  -- this module
496            MANDATORY-GROUPS { ciscoAtmIfPhysMIBCommonGroup,
497                               ciscoAtmIfPhysMIBCommonGroup2
498                             }
499
500           GROUP       ciscoAtmIfPhysMIBSonetGroup
501           DESCRIPTION
502               "This group is required for all SONET interfaces."
503
504           GROUP       ciscoAtmIfPhysMIBSonetGroup2
505           DESCRIPTION
506               "This group is required for all SONET interfaces."
507
508           GROUP       ciscoAtmIfPhysMIBDs3E3Group
509           DESCRIPTION
510               "This group is required for all DS3/E3 interfaces."
511
512           GROUP       ciscoAtmIfPhysMIBDs3Group
513           DESCRIPTION
514               "This group is required for all DS3 interfaces."
515
516    ::= { ciscoAtmIfPhysMIBCompliances 2 }
517
518ciscoAtmIfPhysMIBCompliance3 MODULE-COMPLIANCE
519    STATUS  current
520    DESCRIPTION
521            "The compliance statement for entities which implement
522            the Cisco ATM Interface Physical MIB."
523    MODULE  -- this module
524            MANDATORY-GROUPS { ciscoAtmIfPhysMIBCommonGroup,
525                               ciscoAtmIfPhysMIBCommonGroup2
526                             }
527
528           GROUP       ciscoAtmIfPhysMIBSonetGroup
529           DESCRIPTION
530               "This group is required for all SONET interfaces."
531
532           GROUP       ciscoAtmIfPhysMIBSonetGroup2
533           DESCRIPTION
534               "This group is required for all SONET interfaces."
535
536           GROUP       ciscoAtmIfPhysMIBDs3E3Group
537           DESCRIPTION
538               "This group is required for all DS3/E3 interfaces."
539
540           GROUP       ciscoAtmIfPhysMIBDs3Group
541           DESCRIPTION
542               "This group is required for all DS3 interfaces."
543
544           GROUP       ciscoAtmIfPhysMIBDs1E1Group
545           DESCRIPTION
546               "This group is required for all DS1/E1 interfaces."
547
548           GROUP       ciscoAtmIfPhysMIBDs1Group
549           DESCRIPTION
550               "This group is required for all DS1 interfaces."
551
552           GROUP       ciscoAtmIfPhysMIBE1Group
553           DESCRIPTION
554               "This group is required for all E1 interfaces."
555
556    ::= { ciscoAtmIfPhysMIBCompliances 3 }
557
558-- units of conformance
559
560ciscoAtmIfPhysMIBCommonGroup OBJECT-GROUP
561    OBJECTS { ciscoAtmIfPhysStatus }
562    STATUS  current
563    DESCRIPTION
564            "A collection of objects common to all ATM physical
565            layer interfaces."
566    ::= { ciscoAtmIfPhysMIBGroups 1 }
567
568ciscoAtmIfPhysMIBSonetGroup OBJECT-GROUP
569    OBJECTS { ciscoAtmIfPhysSectionParityErrors,
570              ciscoAtmIfPhysLineParityErrors,
571              ciscoAtmIfPhysPathParityErrors }
572    STATUS  current
573    DESCRIPTION
574            "A collection of objects for ATM SONET interfaces."
575    ::= { ciscoAtmIfPhysMIBGroups 2 }
576
577ciscoAtmIfPhysMIBDs3E3Group OBJECT-GROUP
578    OBJECTS { ciscoAtmIfPhysLcvErrors,
579              ciscoAtmIfPhysCBitParityErrors,
580              ciscoAtmIfPhysPBitParityErrors,
581              ciscoAtmIfPhysPlcpBipViolations }
582    STATUS  current
583    DESCRIPTION
584            "A collection of objects for ATM DS3/E3 interfaces."
585    ::= { ciscoAtmIfPhysMIBGroups 3 }
586
587ciscoAtmIfPhysMIBCommonGroup2 OBJECT-GROUP
588    OBJECTS { ciscoAtmIfPhysCellPayloadScrambling,
589              ciscoAtmIfPhysFramingMode,
590              ciscoAtmIfPhysLoopbackConfig,
591              ciscoAtmIfPhysTransmitClockSource,
592              ciscoAtmIfPhysClockSourcePriority,
593              ciscoAtmIfPhysClockSourceStatus }
594    STATUS  current
595    DESCRIPTION
596            "Additional collection of objects common to all ATM physical
597            layer interfaces."
598    ::= { ciscoAtmIfPhysMIBGroups 4 }
599
600ciscoAtmIfPhysMIBSonetGroup2 OBJECT-GROUP
601    OBJECTS { ciscoAtmIfPhysLineFebeErrors,
602              ciscoAtmIfPhysPathFebeErrors,
603              ciscoAtmIfPhysStsStreamScrambling }
604    STATUS  current
605    DESCRIPTION
606            "Additional collection of objects for ATM SONET interfaces."
607    ::= { ciscoAtmIfPhysMIBGroups 5 }
608
609ciscoAtmIfPhysMIBDs3Group OBJECT-GROUP
610    OBJECTS { ciscoAtmIfPhysLineBuildOut }
611    STATUS  current
612    DESCRIPTION
613            "Collection of objects for ATM DS3 interfaces."
614    ::= { ciscoAtmIfPhysMIBGroups 6 }
615
616ciscoAtmIfPhysMIBDs1E1Group OBJECT-GROUP
617    OBJECTS { ciscoAtmIfPhysLcvErrors,
618              ciscoAtmIfPhysPlcpBipViolations,
619              ciscoAtmIfPhysLineCode }
620    STATUS  current
621    DESCRIPTION
622            "A collection of objects for ATM DS1/E1 interfaces."
623    ::= { ciscoAtmIfPhysMIBGroups 7 }
624
625ciscoAtmIfPhysMIBDs1Group OBJECT-GROUP
626    OBJECTS { ciscoAtmIfPhysDS1BitErrors }
627    STATUS  current
628    DESCRIPTION
629            "A collection of objects for ATM DS1 interfaces."
630    ::= { ciscoAtmIfPhysMIBGroups 8 }
631
632ciscoAtmIfPhysMIBE1Group OBJECT-GROUP
633    OBJECTS { ciscoAtmIfPhysE1CrcErrors }
634    STATUS  current
635    DESCRIPTION
636            "A collection of objects for ATM E1 interfaces."
637    ::= { ciscoAtmIfPhysMIBGroups 9 }
638
639END
640
641