1-- *********************************************************************
2-- CISCO-PROP-ATM-IF-MIB: This mib is for propAtm port interface
3--
4-- April 2002, Yizhong Shen
5--
6-- Copyright (c) 2002 by cisco Systems, Inc.
7-- All rights reserved.
8-- *********************************************************************
9
10CISCO-PROP-ATM-IF-MIB DEFINITIONS ::= BEGIN
11IMPORTS
12        MODULE-IDENTITY,
13        OBJECT-TYPE,
14        Integer32,
15        Counter32,
16        Counter64,
17        Unsigned32              FROM SNMPv2-SMI
18        MODULE-COMPLIANCE,
19        OBJECT-GROUP            FROM SNMPv2-CONF
20        ifIndex                 FROM IF-MIB
21        ciscoMgmt               FROM CISCO-SMI;
22
23ciscoPropAtmIfMIB MODULE-IDENTITY
24        LAST-UPDATED        "200212040000Z"
25        ORGANIZATION        "Cisco Systems, Inc."
26        CONTACT-INFO
27                "       Cisco Systems
28                        Customer Service
29
30                Postal: 170 W Tasman Drive
31                        San Jose, CA  95134
32                        USA
33
34                   Tel: +1 800 553-NETS
35
36                E-mail: cs-voice-gateway@cisco.com"
37
38         DESCRIPTION
39            "This MIB is designed for Propietary ATM (propAtm)
40             interfaces.
41             The propAtm interfaces are identified in the ifTable
42             entries with ifType 197 (as defined in IANAifType-MIB).
43             This interface is a switch virtual interface which does
44             not have any physical connector(jack).
45            "
46         REVISION        "200212040000Z"
47         DESCRIPTION
48            "Initial version of this MIB module."
49
50         ::= {ciscoMgmt 319 }
51
52ciscoPropAtmIfMIBNotifs   OBJECT IDENTIFIER
53                                 ::= { ciscoPropAtmIfMIB 0 }
54ciscoPropAtmIfMIBObjects  OBJECT IDENTIFIER
55                                 ::= { ciscoPropAtmIfMIB 1}
56cpAtmIfConfig             OBJECT IDENTIFIER
57                                 ::= { ciscoPropAtmIfMIBObjects 1}
58cpAtmIfVirtualPortStats           OBJECT IDENTIFIER
59                                 ::= { ciscoPropAtmIfMIBObjects 2}
60
61-- *********************************************************************
62-- cpAtmIfConfigTable
63-- *********************************************************************
64
65cpAtmIfConfigTable OBJECT-TYPE
66        SYNTAX  SEQUENCE OF CpAtmIfConfigEntry
67        MAX-ACCESS not-accessible
68        STATUS     current
69        DESCRIPTION
70          "This table is used to configure propAtm interfaces.
71           Each entry in this table has a corresponding ifTable
72           entry with ifType propAtm(197).  The ifIndex value
73           of that associated ifTable entry is used to index
74           this this table.
75           The entry of this table is added after its associated
76           ifEntry is added in the ifTable of IF-MIB.
77           It is impossible to add/delete entry to/from this table.
78          "
79        ::= { cpAtmIfConfig 1 }
80
81cpAtmIfConfigEntry OBJECT-TYPE
82        SYNTAX     CpAtmIfConfigEntry
83        MAX-ACCESS not-accessible
84        STATUS     current
85        DESCRIPTION
86            "An entry in the cpAtmIfConfigTable table for
87             each propAtm port interface.
88           ."
89        INDEX   { ifIndex }
90        ::= { cpAtmIfConfigTable 1 }
91
92CpAtmIfConfigEntry ::=
93        SEQUENCE {
94              cpAtmIfMaxBandwidth    Unsigned32
95              }
96
97cpAtmIfMaxBandwidth OBJECT-TYPE
98        SYNTAX     Unsigned32(0..4294967295)
99        UNITS      "cells-per-second"
100        MAX-ACCESS read-write
101        STATUS current
102        DESCRIPTION
103             "The propATM interface's maximum cell rate.
104             "
105        DEFVAL{ 7000000 }
106        ::= { cpAtmIfConfigEntry 1 }
107
108
109-- *********************************************************************
110-- cpAtmIfStatsEgressTable
111-- *********************************************************************
112
113cpAtmIfStatsEgressTable OBJECT-TYPE
114        SYNTAX  SEQUENCE OF CpAtmIfStatsEgressEntry
115        MAX-ACCESS not-accessible
116        STATUS     current
117        DESCRIPTION
118          "This table reflects real-time statistics associated with
119           each of propAtm interfaces on the egress side.
120
121           Ingress terminology is used for the cells that are generated
122           by the voice gateway on the TDM side and are going toward
123           the ATM switch.
124
125           Egress terminology means the cells that are coming from the
126           ATM switch into the TDM side. This table contains
127           statistics from this egress point of view.
128          "
129        ::= { cpAtmIfVirtualPortStats 1 }
130
131cpAtmIfStatsEgressEntry OBJECT-TYPE
132        SYNTAX     CpAtmIfStatsEgressEntry
133        MAX-ACCESS not-accessible
134        STATUS     current
135        DESCRIPTION
136            "An entry in the cpAtmIfStatsEgressTable table for
137             each propAtm port interface.
138
139             CLP-0 means Cell Loss Priority = 0,
140             CLP-1 means Cell Loss Priority = 1.
141            "
142        INDEX   { ifIndex }
143        ::= { cpAtmIfStatsEgressTable 1 }
144
145CpAtmIfStatsEgressEntry ::=
146        SEQUENCE {
147                  cpAtmIfEgrRcvClp0Cells      Counter32,
148                  cpAtmIfEgrRcvClp1Cells      Counter32,
149                  cpAtmIfEgrClp0DiscCells     Counter32,
150                  cpAtmIfEgrClp1DiscCells     Counter32,
151                  cpAtmIfEgrRcvOAMCells       Counter32,
152                  cpAtmIfEgrRcvEFCICells      Counter32,
153                  cpAtmIfHCEgrRcvClp0Cells    Counter64,
154                  cpAtmIfHCEgrRcvClp1Cells    Counter64,
155                  cpAtmIfHCEgrClp0DiscCells   Counter64,
156                  cpAtmIfHCEgrClp1DiscCells   Counter64,
157                  cpAtmIfHCEgrRcvOAMCells     Counter64,
158                  cpAtmIfHCEgrRcvEFCICells    Counter64
159                 }
160
161cpAtmIfEgrRcvClp0Cells  OBJECT-TYPE
162        SYNTAX     Counter32
163        MAX-ACCESS read-only
164        STATUS current
165        DESCRIPTION
166             "The number of CLP-0 cells received from switch
167              at the traffic management and policing device.
168             "
169        ::= { cpAtmIfStatsEgressEntry 1 }
170
171cpAtmIfEgrRcvClp1Cells  OBJECT-TYPE
172        SYNTAX     Counter32
173        MAX-ACCESS read-only
174        STATUS current
175        DESCRIPTION
176             "The number of CLP-1 cells received from switch
177              at the traffic management and policing device.
178             "
179        ::= { cpAtmIfStatsEgressEntry 2 }
180
181cpAtmIfEgrClp0DiscCells  OBJECT-TYPE
182        SYNTAX     Counter32
183        MAX-ACCESS read-only
184        STATUS current
185        DESCRIPTION
186             "The number of CLP-0 cells discarded due to policing.
187             "
188        ::= { cpAtmIfStatsEgressEntry 3 }
189
190cpAtmIfEgrClp1DiscCells  OBJECT-TYPE
191        SYNTAX     Counter32
192        MAX-ACCESS read-only
193        STATUS current
194        DESCRIPTION
195             "The number of CLP-1 cells discarded due to policing.
196             "
197        ::= { cpAtmIfStatsEgressEntry 4 }
198
199cpAtmIfEgrRcvOAMCells  OBJECT-TYPE
200        SYNTAX     Counter32
201        MAX-ACCESS read-only
202        STATUS current
203        DESCRIPTION
204             "The number of OAM cells received from the switch
205              at the traffic management and policing device.
206             "
207        ::= { cpAtmIfStatsEgressEntry 5 }
208
209cpAtmIfEgrRcvEFCICells  OBJECT-TYPE
210        SYNTAX     Counter32
211        MAX-ACCESS read-only
212        STATUS current
213        DESCRIPTION
214             "The number of EFCI cells received from the switch
215              at traffic management and policing device.
216             "
217        ::= { cpAtmIfStatsEgressEntry 6 }
218
219
220--
221-- High Capacity Counter objects.  These objects are all
222-- 64 bit versions of the "basic" counters.  These
223-- objects all have the same basic semantics as their 32-bit
224-- counterparts, however, their syntax has been extended
225-- to 64 bits.
226--
227
228cpAtmIfHCEgrRcvClp0Cells  OBJECT-TYPE
229        SYNTAX     Counter64
230        MAX-ACCESS read-only
231        STATUS current
232        DESCRIPTION
233             "The number of CLP-0 cells received from switch
234              at the traffic management and policing device.
235              This object is a 64-bit version of
236              cpAtmIfEgrRcvClp0Cells.
237             "
238        ::= { cpAtmIfStatsEgressEntry 7 }
239
240cpAtmIfHCEgrRcvClp1Cells  OBJECT-TYPE
241        SYNTAX     Counter64
242        MAX-ACCESS read-only
243        STATUS current
244        DESCRIPTION
245             "The number of CLP-1 cells received from switch
246              at the traffic management and policing device.
247              This object is a 64-bit version of
248              cpAtmIfEgrRcvClp1Cells.
249             "
250        ::= { cpAtmIfStatsEgressEntry 8 }
251
252cpAtmIfHCEgrClp0DiscCells  OBJECT-TYPE
253        SYNTAX     Counter64
254        MAX-ACCESS read-only
255        STATUS current
256        DESCRIPTION
257             "The number of CLP-0 cells discarded due to policing.
258              This object is a 64-bit version of
259              cpAtmIfEgrClp0DiscCells.
260             "
261        ::= { cpAtmIfStatsEgressEntry 9 }
262
263cpAtmIfHCEgrClp1DiscCells  OBJECT-TYPE
264        SYNTAX     Counter64
265        MAX-ACCESS read-only
266        STATUS current
267        DESCRIPTION
268             "The number of CLP-1 cells discarded due to policing.
269              This object is a 64-bit version of
270              cpAtmIfEgrClp1DiscCells.
271             "
272        ::= { cpAtmIfStatsEgressEntry 10 }
273
274cpAtmIfHCEgrRcvOAMCells  OBJECT-TYPE
275        SYNTAX     Counter64
276        MAX-ACCESS read-only
277        STATUS current
278        DESCRIPTION
279             "The number of OAM cells received from the switch
280              at the traffic management and policing device.
281              This object is a 64-bit version of
282              cpAtmIfEgrRcvOAMCells.
283             "
284        ::= { cpAtmIfStatsEgressEntry 11 }
285
286cpAtmIfHCEgrRcvEFCICells  OBJECT-TYPE
287        SYNTAX     Counter64
288        MAX-ACCESS read-only
289        STATUS current
290        DESCRIPTION
291             "The number of EFCI cells received from the switch
292              at traffic management and policing device.
293              This object is a 64-bit version of
294              cpAtmIfEgrRcvEFCICells.
295             "
296        ::= { cpAtmIfStatsEgressEntry 12 }
297
298
299
300-- *********************************************************************
301-- cpAtmIfEgressIntervalTable
302-- *********************************************************************
303
304cpAtmIfEgressIntervalTable OBJECT-TYPE
305        SYNTAX  SEQUENCE OF CpAtmIfEgressIntervalEntry
306        MAX-ACCESS not-accessible
307        STATUS     current
308        DESCRIPTION
309          "This table reflects interval(each 15 minute) statistics
310           associated witheach of the propAtm interfaces on egress side.
311          "
312        ::= { cpAtmIfVirtualPortStats 2 }
313
314cpAtmIfEgressIntervalEntry OBJECT-TYPE
315        SYNTAX     CpAtmIfEgressIntervalEntry
316        MAX-ACCESS not-accessible
317        STATUS     current
318        DESCRIPTION
319            "An entry in the cpAtmIfEgressIntervalTable table
320             for each propAtm port interface.
321
322             CLP-0 means Cell Loss Priority = 0,
323             CLP-1 means Cell Loss Priority = 1.
324            "
325        INDEX   { ifIndex, cpAtmIfEgressIntervalNumber}
326        ::= { cpAtmIfEgressIntervalTable 1 }
327
328CpAtmIfEgressIntervalEntry ::=
329        SEQUENCE {
330                  cpAtmIfEgressIntervalNumber    Integer32,
331                  cpAtmIfIntEgrRcvClp0Cells      Counter32,
332                  cpAtmIfIntEgrRcvClp1Cells      Counter32,
333                  cpAtmIfIntEgrClp0DiscCells     Counter32,
334                  cpAtmIfIntEgrClp1DiscCells     Counter32,
335                  cpAtmIfIntEgrRcvOAMCells       Counter32,
336                  cpAtmIfIntEgrRcvEFCICells      Counter32,
337                  cpAtmIfHCIntEgrRcvClp0Cells    Counter64,
338                  cpAtmIfHCIntEgrRcvClp1Cells    Counter64,
339                  cpAtmIfHCIntEgrClp0DiscCells   Counter64,
340                  cpAtmIfHCIntEgrClp1DiscCells   Counter64,
341                  cpAtmIfHCIntEgrRcvOAMCells     Counter64,
342                  cpAtmIfHCIntEgrRcvEFCICells    Counter64
343                 }
344
345cpAtmIfEgressIntervalNumber  OBJECT-TYPE
346        SYNTAX     Integer32(1..96)
347        MAX-ACCESS not-accessible
348        STATUS current
349        DESCRIPTION
350             "Index of the table which represents the interval number.
351              An interval number between 1 and 96, where 1 is the
352              most recently completed 15 minute interval and 96 is
353              the 15 minutes interval completed 23 hours an 45
354              minutes prior to interval 1.
355             "
356        ::= { cpAtmIfEgressIntervalEntry 1 }
357
358cpAtmIfIntEgrRcvClp0Cells  OBJECT-TYPE
359        SYNTAX     Counter32
360        MAX-ACCESS read-only
361        STATUS current
362        DESCRIPTION
363             "The number of CLP-0 cells received from switch
364              at the traffic management and policing device
365              during a 15 minute interval.
366             "
367        ::= { cpAtmIfEgressIntervalEntry 2 }
368
369cpAtmIfIntEgrRcvClp1Cells  OBJECT-TYPE
370        SYNTAX     Counter32
371        MAX-ACCESS read-only
372        STATUS current
373        DESCRIPTION
374             "The number of CLP-1 cells received from switch
375              at the traffic management and policing device
376              during a 15 minute interval.
377             "
378        ::= { cpAtmIfEgressIntervalEntry 3 }
379
380cpAtmIfIntEgrClp0DiscCells  OBJECT-TYPE
381        SYNTAX     Counter32
382        MAX-ACCESS read-only
383        STATUS current
384        DESCRIPTION
385             "The number of CLP-0 cells discarded due to policing
386              during a 15 minute interval.
387             "
388        ::= { cpAtmIfEgressIntervalEntry 4 }
389
390cpAtmIfIntEgrClp1DiscCells  OBJECT-TYPE
391        SYNTAX     Counter32
392        MAX-ACCESS read-only
393        STATUS current
394        DESCRIPTION
395             "The number of CLP-1 cells discarded due to policing
396              during a 15 minute interval.
397             "
398        ::= { cpAtmIfEgressIntervalEntry 5 }
399
400cpAtmIfIntEgrRcvOAMCells  OBJECT-TYPE
401        SYNTAX     Counter32
402        MAX-ACCESS read-only
403        STATUS current
404        DESCRIPTION
405             "The number of OAM cells received from the switch
406              at the traffic management and policing device
407              during a 15 minute interval.
408             "
409        ::= { cpAtmIfEgressIntervalEntry 6 }
410
411cpAtmIfIntEgrRcvEFCICells  OBJECT-TYPE
412        SYNTAX     Counter32
413        MAX-ACCESS read-only
414        STATUS current
415        DESCRIPTION
416             "The number of EFCI cells received from the switch
417              at traffic management and policing device during a 15
418              minute interval.
419             "
420        ::= { cpAtmIfEgressIntervalEntry 7 }
421
422
423--
424-- High Capacity Counter objects.  These objects are all
425-- 64 bit versions of the "basic" counters.  These
426-- objects all have the same basic semantics as their 32-bit
427-- counterparts, however, their syntax has been extended
428-- to 64 bits.
429--
430
431cpAtmIfHCIntEgrRcvClp0Cells  OBJECT-TYPE
432        SYNTAX     Counter64
433        MAX-ACCESS read-only
434        STATUS current
435        DESCRIPTION
436             "The number of CLP-0 cells received from switch
437              at the traffic management and policing device
438              during a 15 minute interval.
439              This object is a 64-bit version of
440              cpAtmIfIntEgrRcvClp0Cells.
441             "
442        ::= { cpAtmIfEgressIntervalEntry 8 }
443
444cpAtmIfHCIntEgrRcvClp1Cells  OBJECT-TYPE
445        SYNTAX     Counter64
446        MAX-ACCESS read-only
447        STATUS current
448        DESCRIPTION
449             "The number of CLP-1 cells received from switch
450              at the traffic management and policing device
451              during a 15 minute interval.
452              This object is a 64-bit version of
453              cpAtmIfIntEgrRcvClp1Cells.
454             "
455        ::= { cpAtmIfEgressIntervalEntry 9 }
456
457cpAtmIfHCIntEgrClp0DiscCells  OBJECT-TYPE
458        SYNTAX     Counter64
459        MAX-ACCESS read-only
460        STATUS current
461        DESCRIPTION
462             "The number of CLP-0 cells discarded due to policing
463              during a 15 minute interval.
464              This object is a 64-bit version of
465              cpAtmIfIntEgrClp0DiscCells.
466             "
467        ::= { cpAtmIfEgressIntervalEntry 10 }
468
469cpAtmIfHCIntEgrClp1DiscCells  OBJECT-TYPE
470        SYNTAX     Counter64
471        MAX-ACCESS read-only
472        STATUS current
473        DESCRIPTION
474             "The number of CLP-1 cells discarded due to policing
475              during a 15 minute interval.
476              This object is a 64-bit version of
477              cpAtmIfIntEgrClp1DiscCells.
478             "
479        ::= { cpAtmIfEgressIntervalEntry 11 }
480
481cpAtmIfHCIntEgrRcvOAMCells  OBJECT-TYPE
482        SYNTAX     Counter64
483        MAX-ACCESS read-only
484        STATUS current
485        DESCRIPTION
486             "The number of OAM cells received from the switch
487              at the traffic management and policing device
488              during a 15 minute interval.
489              This object is a 64-bit version of
490              cpAtmIfIntEgrRcvOAMCells.
491             "
492        ::= { cpAtmIfEgressIntervalEntry 12 }
493
494cpAtmIfHCIntEgrRcvEFCICells  OBJECT-TYPE
495        SYNTAX     Counter64
496        MAX-ACCESS read-only
497        STATUS current
498        DESCRIPTION
499             "The number of EFCI cells received from the switch
500              at traffic management and policing device during a 15
501              minute interval.
502              This object is a 64-bit version of
503              cpAtmIfIntEgrRcvEFCICells.
504             "
505        ::= { cpAtmIfEgressIntervalEntry 13 }
506
507
508-- *********************************************************************
509-- cpAtmIfStatsIngressTable
510-- *********************************************************************
511cpAtmIfStatsIngressTable OBJECT-TYPE
512        SYNTAX  SEQUENCE OF CpAtmIfStatsIngressEntry
513        MAX-ACCESS not-accessible
514        STATUS     current
515        DESCRIPTION
516          "This table reflects real time statistics associated with
517           each of the the propAtm interfaces on the ingress side.
518
519           Ingress terminology is used for the cells that are generated
520           by the voice gateway on the TDM side and are going toward
521           the ATM switch.
522
523           Egress terminology means the cells that are coming from the
524           ATM switch into TDM side. This table contains statistics
525           from this ingress point of view.
526          "
527        ::= { cpAtmIfVirtualPortStats 3 }
528
529cpAtmIfStatsIngressEntry OBJECT-TYPE
530        SYNTAX     CpAtmIfStatsIngressEntry
531        MAX-ACCESS not-accessible
532        STATUS     current
533        DESCRIPTION
534            "An entry in the cpAtmIfStatsIngressTable table for
535             each propAtm port interface.
536
537             CLP-0 means Cell Loss Priority = 0,
538             CLP-1 means Cell Loss Priority = 1.
539            "
540        INDEX   { ifIndex }
541        ::= { cpAtmIfStatsIngressTable 1 }
542
543CpAtmIfStatsIngressEntry ::=
544        SEQUENCE {
545                  cpAtmIfIngXmtClp0Cells    Counter32,
546                  cpAtmIfIngXmtClp1Cells    Counter32,
547                  cpAtmIfIngXmtEFCICells    Counter32,
548                  cpAtmIfIngXmtOAMCells     Counter32,
549                  cpAtmIfHCIngXmtClp0Cells  Counter64,
550                  cpAtmIfHCIngXmtClp1Cells  Counter64,
551                  cpAtmIfHCIngXmtEFCICells  Counter64,
552                  cpAtmIfHCIngXmtOAMCells   Counter64
553                 }
554
555cpAtmIfIngXmtClp0Cells OBJECT-TYPE
556        SYNTAX     Counter32
557        MAX-ACCESS read-only
558        STATUS     current
559        DESCRIPTION
560           "The number of CLP-0 cells transmitted to the switch
561            after traffic management and policing in
562            ingress direction."
563        ::= {cpAtmIfStatsIngressEntry 1 }
564
565cpAtmIfIngXmtClp1Cells OBJECT-TYPE
566        SYNTAX     Counter32
567        MAX-ACCESS read-only
568        STATUS     current
569        DESCRIPTION
570           "The number of CLP-1 cells transmitted to the switch
571            after traffic management and policing in
572            ingress direction."
573        ::= {cpAtmIfStatsIngressEntry 2 }
574
575cpAtmIfIngXmtEFCICells OBJECT-TYPE
576        SYNTAX     Counter32
577        MAX-ACCESS read-only
578        STATUS     current
579        DESCRIPTION
580           "The number of EFCI cells transmitted to the switch
581            after traffic management and policing in
582            ingress direction."
583        ::= {cpAtmIfStatsIngressEntry 3 }
584
585cpAtmIfIngXmtOAMCells OBJECT-TYPE
586        SYNTAX     Counter32
587        MAX-ACCESS read-only
588        STATUS     current
589        DESCRIPTION
590           "The number of OAM loopback cells transmitted to switch
591            after traffic management and policing in
592            ingress direction."
593        ::= {cpAtmIfStatsIngressEntry 4 }
594
595--
596-- High Capacity Counter objects.  These objects are all
597-- 64 bit versions of the "basic" counters.  These
598-- objects all have the same basic semantics as their 32-bit
599-- counterparts, however, their syntax has been extended
600-- to 64 bits.
601--
602
603cpAtmIfHCIngXmtClp0Cells OBJECT-TYPE
604        SYNTAX     Counter64
605        MAX-ACCESS read-only
606        STATUS     current
607        DESCRIPTION
608           "The number of CLP-0 cells transmitted to the switch
609            after traffic management and policing in
610            ingress direction.
611            This object is a 64-bit version of
612            cpAtmIfIngXmtClp0Cells.
613           "
614        ::= {cpAtmIfStatsIngressEntry 5 }
615
616cpAtmIfHCIngXmtClp1Cells OBJECT-TYPE
617        SYNTAX     Counter64
618        MAX-ACCESS read-only
619        STATUS     current
620        DESCRIPTION
621           "The number of CLP-1 cells transmitted to the switch
622            after traffic management and policing in
623            ingress direction.
624            This object is a 64-bit version of
625            cpAtmIfIngXmtClp1Cells.
626           "
627        ::= {cpAtmIfStatsIngressEntry 6 }
628
629cpAtmIfHCIngXmtEFCICells OBJECT-TYPE
630        SYNTAX     Counter64
631        MAX-ACCESS read-only
632        STATUS     current
633        DESCRIPTION
634           "The number of EFCI cells transmitted to the switch
635            after traffic management and policing in
636            ingress direction.
637            This object is a 64-bit version of
638            cpAtmIfIngXmtEFCICells.
639           "
640        ::= {cpAtmIfStatsIngressEntry 7 }
641
642cpAtmIfHCIngXmtOAMCells OBJECT-TYPE
643        SYNTAX     Counter64
644        MAX-ACCESS read-only
645        STATUS     current
646        DESCRIPTION
647           "The number of OAM loopback cells transmitted to switch
648            after traffic management and policing in
649            ingress direction.
650            This object is a 64-bit version of
651            cpAtmIfIngXmtOAMCells."
652        ::= {cpAtmIfStatsIngressEntry 8 }
653
654
655-- *********************************************************************
656-- conformance information
657-- *********************************************************************
658
659cpAtmIfMIBConformance
660     OBJECT IDENTIFIER ::= { ciscoPropAtmIfMIB 2 }
661
662cpAtmIfMIBCompliances
663     OBJECT IDENTIFIER ::= { cpAtmIfMIBConformance 1 }
664
665cpAtmIfMIBGroups
666     OBJECT IDENTIFIER ::= { cpAtmIfMIBConformance 2 }
667
668
669--
670--Conformance and compliance statements
671--
672
673cpAtmIfMIBCompliance  MODULE-COMPLIANCE
674    STATUS  current
675    DESCRIPTION
676        "The compliance statement for the SNMP entities which implement
677         ciscoPropAtmIfMIB."
678    MODULE  -- this module
679    MANDATORY-GROUPS {
680                      cpAtmIfConfigGroup
681                     }
682
683    GROUP cpAtmIfEgressStatMIBGroup
684    DESCRIPTION
685        "This group is for the counters with a 32-bit version."
686
687    GROUP cpAtmIfEgressIntervalMIBGroup
688    DESCRIPTION
689        "This group is for the counters with a 32-bit version."
690
691    GROUP cpAtmIfIngressStatMIBGroup
692    DESCRIPTION
693        "This group is for the counters with a 32-bit version."
694
695    GROUP cpAtmIfHCEgressStatMIBGroup
696    DESCRIPTION
697        "This group is for the counters with a 64-bit version."
698
699    GROUP cpAtmIfHCEgressIntervalMIBGroup
700    DESCRIPTION
701        "This group is for the counters with a 64-bit version."
702
703    GROUP cpAtmIfHCIngressStatMIBGroup
704    DESCRIPTION
705        "This group is for the counters with a 64-bit version."
706    ::= { cpAtmIfMIBCompliances 1 }
707
708--
709--units of conformance
710--
711--MIB Groups
712--
713cpAtmIfConfigGroup  OBJECT-GROUP
714    OBJECTS {
715             cpAtmIfMaxBandwidth
716            }
717    STATUS    current
718    DESCRIPTION
719      "These are objects related to configuration of propAtm
720       Interface.
721      "
722    ::= { cpAtmIfMIBGroups 1 }
723
724cpAtmIfEgressStatMIBGroup  OBJECT-GROUP
725    OBJECTS {
726             cpAtmIfEgrRcvClp0Cells,
727             cpAtmIfEgrRcvClp1Cells,
728             cpAtmIfEgrClp0DiscCells,
729             cpAtmIfEgrClp1DiscCells,
730             cpAtmIfEgrRcvOAMCells,
731             cpAtmIfEgrRcvEFCICells
732            }
733    STATUS    current
734    DESCRIPTION
735        "These are objects related to Egress Statistics of propAtm
736         interfaces.
737        "
738    ::= { cpAtmIfMIBGroups 2 }
739
740cpAtmIfEgressIntervalMIBGroup  OBJECT-GROUP
741    OBJECTS {
742             cpAtmIfIntEgrRcvClp0Cells,
743             cpAtmIfIntEgrRcvClp1Cells,
744             cpAtmIfIntEgrClp0DiscCells,
745             cpAtmIfIntEgrClp1DiscCells,
746             cpAtmIfIntEgrRcvOAMCells,
747             cpAtmIfIntEgrRcvEFCICells
748            }
749    STATUS    current
750    DESCRIPTION
751        "These are objects related to Egress Interval Statistics of
752         propAtm Interfaces.
753        "
754    ::= { cpAtmIfMIBGroups 3 }
755
756cpAtmIfIngressStatMIBGroup  OBJECT-GROUP
757    OBJECTS {
758             cpAtmIfIngXmtClp0Cells,
759             cpAtmIfIngXmtClp1Cells,
760             cpAtmIfIngXmtEFCICells,
761             cpAtmIfIngXmtOAMCells
762            }
763    STATUS    current
764    DESCRIPTION
765        "These are objects related to Ingress Statistics of propAtm
766         interfaces.
767        "
768    ::= { cpAtmIfMIBGroups 4 }
769
770cpAtmIfHCEgressStatMIBGroup  OBJECT-GROUP
771    OBJECTS {
772             cpAtmIfHCEgrRcvClp0Cells,
773             cpAtmIfHCEgrRcvClp1Cells,
774             cpAtmIfHCEgrClp0DiscCells,
775             cpAtmIfHCEgrClp1DiscCells,
776             cpAtmIfHCEgrRcvOAMCells,
777             cpAtmIfHCEgrRcvEFCICells
778            }
779    STATUS    current
780    DESCRIPTION
781        "These are objects related to Egress Statistics of propAtm
782         interfaces.
783         This group is a 64-bit version of cpAtmIfEgressStatMIBGroup.
784        "
785    ::= { cpAtmIfMIBGroups 5 }
786
787cpAtmIfHCEgressIntervalMIBGroup  OBJECT-GROUP
788    OBJECTS {
789             cpAtmIfHCIntEgrRcvClp0Cells,
790             cpAtmIfHCIntEgrRcvClp1Cells,
791             cpAtmIfHCIntEgrClp0DiscCells,
792             cpAtmIfHCIntEgrClp1DiscCells,
793             cpAtmIfHCIntEgrRcvOAMCells,
794             cpAtmIfHCIntEgrRcvEFCICells
795            }
796    STATUS    current
797    DESCRIPTION
798        "These are objects related to Egress Interval Statistics of
799         propAtm Interfaces.
800         This group is a 64-bit version of
801         cpAtmIfEgressIntervalMIBGroup.
802        "
803    ::= { cpAtmIfMIBGroups 6 }
804
805cpAtmIfHCIngressStatMIBGroup  OBJECT-GROUP
806    OBJECTS {
807             cpAtmIfHCIngXmtClp0Cells,
808             cpAtmIfHCIngXmtClp1Cells,
809             cpAtmIfHCIngXmtEFCICells,
810             cpAtmIfHCIngXmtOAMCells
811            }
812    STATUS    current
813    DESCRIPTION
814        "These are objects related to Ingress Statistics of propAtm
815         interfaces.
816         This group is a 64-bit version of cpAtmIfIngressStatMIBGroup.
817        "
818    ::= { cpAtmIfMIBGroups 7 }
819
820 END
821
822
823
824