1-- *****************************************************************
2-- ciscoAtmVirtualIf MIB
3--
4-- Oct. 2002, Prasanna Mucharikar
5--
6-- Copyright (c) 1999, 2002 by cisco Systems, Inc.
7-- All rights reserved.
8-- *****************************************************************
9
10CISCO-ATM-VIRTUAL-IF-MIB DEFINITIONS ::= BEGIN
11IMPORTS
12        MODULE-IDENTITY,
13        OBJECT-TYPE,
14        Integer32,
15        Counter64,
16        Counter32,
17        Unsigned32              FROM SNMPv2-SMI
18        RowStatus               FROM SNMPv2-TC
19        AtmVpIdentifier         FROM ATM-TC-MIB
20        MODULE-COMPLIANCE,
21        OBJECT-GROUP            FROM SNMPv2-CONF
22        InterfaceIndex,
23        ifIndex                 FROM IF-MIB
24        ciscoMgmt               FROM CISCO-SMI;
25
26ciscoAtmVirtualIfMIB MODULE-IDENTITY
27        LAST-UPDATED        "200210110000Z"
28        ORGANIZATION        "Cisco Systems, Inc."
29        CONTACT-INFO
30                "       Cisco Systems
31                        Customer Service
32
33                Postal: 170 W Tasman Drive
34                        San Jose, CA  95134
35                        USA
36
37                   Tel: +1 800 553-NETS
38
39                E-mail: cs-wanatm@cisco.com"
40
41         DESCRIPTION
42            "The MIB module to manage ATM Virtual interface objects.
43             ATM virtual interfaces are configured on a physical line."
44
45	 REVISION        "200210110000Z"
46         DESCRIPTION
47            "1. Added caviIngressIntervalTable. "
48
49         REVISION        "200205070000Z"
50         DESCRIPTION
51            "1. Added following objects to caviStatEgressTable, as
52                upper 32-bits for 64-bit wide counters:
53                caviHighEgrRcvClp0Cells, caviHighEgrRcvClp1Cells,
54                caviHighEgrClp0DiscCells, caviHighEgrClp1DiscCells,
55                caviHighEgrXmtClp0Cells, caviHighEgrXmtClp1Cells.
56             2. Added following 64-bit objects to
57                caviStatEgressTable for 64-bit counter support:
58                caviHEgrRcvClp0Cells, caviHEgrClp0DiscCells,
59                caviHEgrClp0DiscCells, caviHEgrClp1DiscCells.
60             3. Added following objects to caviEgressIntervalTable,
61                as upper 32-bits for 64-bit wide counters:
62                caviHighIntEgrRcvClp0Cells,
63                caviHighIntEgrRcvClp1Cells,
64                caviHighIntEgrClp0DiscCells,
65                caviHighIntEgrClp1DiscCells,
66                caviHighIntEgrXmtClp0Cells,
67                caviHighIntEgrXmtClp1Cells.
68             4. Added following 64-bit objects to
69                caviEgressIntervalTable:
70                caviHIntEgrRcvClp0Cells, caviHIntEgrRcvClp1Cells,
71                caviHIntEgrClp0DiscCells, caviHIntEgrClp1DiscCells,
72                caviHIntEgrXmtClp0Cells, caviHIntEgrXmtClp1Cells.
73             5. Added following objects to caviStatIngressTable, as
74                upper 32-bits for 64-bit wide counters:
75                caviHighIngRcvClp0Cells, caviHighIngRcvClp1Cells,
76                caviHighIngClp0DiscCells, caviHighIngClp1DiscCells,
77                caviHighIngXmtClp0Cells, caviHighIngXmtClp1Cells.
78             6. Added following 64-bit objects to
79                caviStatIngressTable:
80                caviHIngClp0DiscCells, caviHIngClp1DiscCells,
81                caviHIngXmtClp0Cells, caviHIngXmtClp1Cells.
82             7. Changed IMPORT for Unsigned32 to SNMPv2-SMI, instead
83                of CISCO-TC."
84
85         REVISION        "200109030000Z"
86         DESCRIPTION
87            "Added caviMinVpiNum and caviMaxVpiNum. Modified description
88             for caviEntry and caviIfType."
89
90         REVISION        "200008110000Z"
91         DESCRIPTION
92            "Changed description of objects caviMinRate and caviMaxRate.
93             Modified range for caviMinRate, caviMaxRate and
94             caviFileId."
95
96         REVISION        "200001140000Z"
97         DESCRIPTION
98            "Initial version of this MIB module."
99
100         ::= {ciscoMgmt 129 }
101
102ciscoAtmVirtualIfMIBObjects
103                        OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIB 1}
104caviConfig              OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIBObjects 1}
105caviStatistics          OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIBObjects 2}
106
107-- ---------------------------------------------------------------------
108-- cisco ATM Virtual Interface Config Group
109-- ---------------------------------------------------------------------
110
111caviTable OBJECT-TYPE
112        SYNTAX  SEQUENCE OF CaviEntry
113        MAX-ACCESS not-accessible
114        STATUS     current
115        DESCRIPTION
116          "This table is used for creating ATM virtual Interfaces.
117           The ATM virtual interfaces are created on physical interfaces.
118           For each entry created in this table, there will be an entry
119           created in the ifTable with ifType atmVirtual(149).
120           For each entry deleted from this table, the corresponding entry
121           from ifTable will be deleted. The ifIndex value for ifType
122           atmVirtual(149) is used for indexing to atmInterfaceConfTable
123           for getting information on a ATM virtual interface."
124        ::= { caviConfig 1 }
125
126caviEntry OBJECT-TYPE
127        SYNTAX     CaviEntry
128        MAX-ACCESS not-accessible
129        STATUS     current
130        DESCRIPTION
131            "An entry in the caviTable table for each ATM virtual interface.
132             An entry in this table can only be created if values for all
133             objects in a row are provided.
134
135             The caviVpiNum object is applicable only to interfaces of
136             caviIfType vnni (3) or vuni (4).
137
138             The caviMinVpiNum and caviMaxVpiNum are applicable only to
139             interfaces of caviIfType evuni(5) or evnni(6)."
140        INDEX   { caviIndex }
141        ::= { caviTable 1 }
142
143CaviEntry ::=
144        SEQUENCE {
145              caviIndex              Integer32,
146              caviPhyIfIndex         InterfaceIndex ,
147              caviViIfIndex          InterfaceIndex,
148              caviMinRate            Unsigned32,
149              caviMaxRate            Unsigned32,
150              caviFileId             Unsigned32,
151              caviIfType             INTEGER,
152              caviVpiNum             AtmVpIdentifier,
153              caviRowStatus          RowStatus,
154              caviMinVpiNum          AtmVpIdentifier,
155              caviMaxVpiNum          AtmVpIdentifier
156              }
157
158caviIndex OBJECT-TYPE
159        SYNTAX Integer32  (1..2147483647)
160        MAX-ACCESS not-accessible
161        STATUS  current
162        DESCRIPTION
163           "A unique value for the ATM virtual interface."
164        ::= { caviEntry 1 }
165
166caviPhyIfIndex OBJECT-TYPE
167        SYNTAX InterfaceIndex
168        MAX-ACCESS  read-create
169        STATUS  current
170        DESCRIPTION
171           "This object identifies the interface number ( 'ifIndex' ) assigned
172            to  sonet(39),ds3(30),ds1(18),atmIma(107)."
173        ::= { caviEntry 2 }
174
175caviViIfIndex OBJECT-TYPE
176        SYNTAX InterfaceIndex
177        MAX-ACCESS  read-only
178        STATUS  current
179        DESCRIPTION
180            "This object identifies the ATM virtual interface number
181              ('ifIndex') assigned to this entry, and is used
182              to identify corresponding rows in the IF-MIB.
183              Note that re-inititalization of the management agent may
184              cause a client's 'caviViIfIndex' to change."
185        ::= { caviEntry 3 }
186
187caviMinRate OBJECT-TYPE
188        SYNTAX     Unsigned32
189        UNITS      "cells-per-second"
190        MAX-ACCESS read-create
191        STATUS current
192        DESCRIPTION
193             "ATM virtual interface's guaranteed cell rate.
194              This is the guaranteed bandwidth allocated for
195              the interface. The sum of caviMinRate of all ATM
196              virtual interfaces configured on a single physical line,
197              must not exceed the bandwidth of the physical line. Creation
198              of a row is rejected when the sum of caviMinRate of all existing
199              ATM virtual interfaces exceeds the physical line bandwidth.
200              The value of this object can't exceed the 'ifSpeed' or
201              'ifHighSpeed' value in ifTable for the associated
202              'caviPhyIfIndex'.
203              ATM cell bandwidths for various physical lines are:
204
205              OC192 line : 22605280 cells/sec
206              OC48  line : 5651320 cells/sec
207              OC12  line : 1412830 cells/sec
208              OC3   line :  353207 cells/sec
209              T3    line :   96000 cells/sec
210              E3    line :   80000 cells/sec."
211        ::= { caviEntry 4 }
212
213caviMaxRate OBJECT-TYPE
214        SYNTAX     Unsigned32
215        UNITS     "cells-per-second"
216        MAX-ACCESS read-create
217        STATUS     current
218        DESCRIPTION
219            "ATM virtual interface's maximum cell rate.
220             If bandwidth is available, the interface will
221             be allocated bandwidth upto this value.
222             The total bandwidth of connections configured over this
223             interface cannot exceed this value.
224             The value of this object can't exceed the 'ifSpeed' or
225             'ifHighSpeed' value in ifTable for the associated
226             'caviPhyIfIndex'.
227             ATM cell bandwidths for various physical lines are:
228
229             OC192 line : 22605280 cells/sec
230             OC48  line : 5651320 cells/sec
231             OC12  line : 1412830 cells/sec
232             OC3   line :  353207 cells/sec
233             T3    line :   96000 cells/sec
234             E3    line :   80000 cells/sec."
235        ::= {caviEntry 5 }
236
237caviFileId OBJECT-TYPE
238        SYNTAX     Unsigned32
239        MAX-ACCESS read-create
240        STATUS     current
241        DESCRIPTION
242           "The ID of the  file that holds module specific configuration
243            parameters for this ATM virtual interface."
244        DEFVAL { 0 }
245        ::= { caviEntry 6 }
246
247caviIfType OBJECT-TYPE
248    SYNTAX  INTEGER  {
249               uni(1),
250               nni(2),
251               vnni(3),
252               vuni(4),
253               evuni(5),
254               evnni(6)
255               }
256    MAX-ACCESS read-create
257    STATUS     current
258    DESCRIPTION
259       "This object reflects the type of ATM virtual interface that can be
260        configured within a physical interface. The supported types of virtual
261        interfaces and their description is shown below:
262
263        uni : Only one virtual interface of uni type can be configured within
264              a physical interface. The ATM cells used in this interface would
265              use a 8 bit VPI and a 4 bit GFC.
266        nni : Only one virtual interface of nni type can be configured within
267              a physical interface.The ATM cells used in this interface would
268              use a 12 bit VPI.
269        vnni: Multiple virtual interfaces of vnni type can be configured
270              within a physical interface. However, all cells sent on this
271              interface belong to a single VPI (defined by caviVpiNum) and
272              the cells use a 12 bit VPI.
273        vuni: Multiple virtual interfaces of vuni type can be configured
274              within a physical interface. However, all cells sent on this
275              interface belong to a single VPI (defined by caviVpiNum) and
276              the cells use a 8 bit VPI and a 4 bit GFC.
277        evuni: Multiple virtual interfaces of evuni type can be configured
278              within a physical interface. However, all cells sent on this
279              interface belong to a range of VPI (defined by caviMinVpiNum
280              & caviMaxVpiNum) and the cells use a 8 bit VPI and a 4 bit GFC.
281        evnni: Multiple virtual interfaces of evuni type can be configured
282              within a physical interface. However, all cells sent on this
283              interface belong to a range of VPI (defined by caviMinVpiNum
284              & caviMaxVpiNum) and the cells use a 12 bit VPI."
285    DEFVAL { uni }
286    ::= { caviEntry 7 }
287
288
289caviVpiNum OBJECT-TYPE
290        SYNTAX  AtmVpIdentifier
291        MAX-ACCESS read-create
292        STATUS     current
293        DESCRIPTION
294           "This object is used when configuring ATM virtual interfaces of
295            caviIftype vuni(4) or vnni (3). A non-zero value is required
296            for vuni / vnni operation.
297
298            The value set in this object for other type of caviIfTypes
299            would be ignored by the agent. The GET operation on this object
300            would return 0 for caviIfTypes other than vuni/vnni."
301        DEFVAL { 0 }
302        ::= { caviEntry 8 }
303
304caviRowStatus OBJECT-TYPE
305    SYNTAX     RowStatus
306    MAX-ACCESS read-create
307    STATUS     current
308    DESCRIPTION
309       "This object allows create and delete operations on caviTable
310        entries.
311        An entry is created in the table by setting this object to
312        createAndGo(4).
313        An entry is deleted from the table by setting this object to
314        destroy(6).
315        An entry in this table may be modified after creation."
316    ::= {caviEntry 9 }
317
318caviMinVpiNum OBJECT-TYPE
319        SYNTAX  AtmVpIdentifier
320        MAX-ACCESS read-create
321        STATUS     current
322        DESCRIPTION
323           "This object is mandatory while configuring this ATM virtual
324            interface as caviIfType evuni(5) or evnni(6). The range of
325            VPI accepted by the agent depends on caviIfType.
326
327            The evuni accepts a range from 0 to 255, while the evnni accepts
328            a range from 0 to 4095.
329
330            The object specifies the minimum VPI for a evuni/evnni interface.
331
332            The agent ignores a SET on this object for any interface other
333            than a evuni/evnni. A GET operation for interfaces other than a
334            evuni/evnni would always yield 0"
335        DEFVAL { 0 }
336        ::= { caviEntry 10 }
337
338caviMaxVpiNum OBJECT-TYPE
339        SYNTAX  AtmVpIdentifier
340        MAX-ACCESS read-create
341        STATUS     current
342        DESCRIPTION
343           "This object is mandatory while configuring this ATM virtual
344            interface as caviIfType evuni(5) or evnni(6). The range of
345            VPI accepted by the agent depends on caviIfType.
346
347            The evuni accepts a range from 0 to 255, while the evnni accepts
348            a range from 0 to 4095.
349
350            The agent rejects a SET on this object for any interface other
351            than a evuni/evnni. A GET operation for interfaces other than a
352            evuni/evnni would always yield 0"
353        ::= { caviEntry 11 }
354
355-- ---------------------------------------------------------------------
356-- ATM Virtual Interface Egress Statistics Table
357-- ---------------------------------------------------------------------
358
359caviStatEgressTable OBJECT-TYPE
360        SYNTAX  SEQUENCE OF CaviStatEgressEntry
361        MAX-ACCESS not-accessible
362        STATUS     current
363        DESCRIPTION
364           "This table reflects real time statistics associated with
365            each of the ATM virtual interfaces on the egress side.
366
367            Ingress direction means coming from network into switch,
368            Egress direction means going from switch into the network."
369        ::= { caviStatistics 1 }
370
371caviStatEgressEntry OBJECT-TYPE
372        SYNTAX     CaviStatEgressEntry
373        MAX-ACCESS not-accessible
374        STATUS     current
375        DESCRIPTION
376          "An entry for egress ATM virtual interface statistics. In all the following
377           descriptions,
378           CLP-0 means Cell Loss Priority = 0,
379           CLP-1 means Cell Loss Priority = 1.
380
381           Statistics are being collected before and after the traffic
382           management and policing device."
383        INDEX   { ifIndex }
384        ::= { caviStatEgressTable 1 }
385
386CaviStatEgressEntry ::=
387        SEQUENCE {
388            caviEgrRcvClp0Cells      	Counter32,
389            caviEgrRcvClp1Cells      	Counter32,
390            caviEgrClp0DiscCells     	Counter32,
391            caviEgrClp1DiscCells     	Counter32,
392            caviEgrXmtClp0Cells      	Counter32,
393            caviEgrXmtClp1Cells      	Counter32,
394            caviEgrRcvOAMCells       	Counter32,
395            caviEgrRMCells           	Counter32,
396            caviEgrXmtEFCICells      	Counter32,
397            caviEgrRcvEFCICells      	Counter32,
398            caviEgrXmtOAMCells       	Counter32,
399            caviHEgrXmtClp0Cells     	Counter64,
400            caviHEgrXmtClp1Cells     	Counter64,
401	    caviHighEgrRcvClp0Cells  	Counter32,
402            caviHighEgrRcvClp1Cells  	Counter32,
403            caviHighEgrClp0DiscCells 	Counter32,
404            caviHighEgrClp1DiscCells 	Counter32,
405            caviHighEgrXmtClp0Cells  	Counter32,
406            caviHighEgrXmtClp1Cells  	Counter32,
407	    caviHEgrRcvClp0Cells    	Counter64,
408            caviHEgrRcvClp1Cells    	Counter64,
409            caviHEgrClp0DiscCells   	Counter64,
410            caviHEgrClp1DiscCells   	Counter64
411            }
412
413caviEgrRcvClp0Cells OBJECT-TYPE
414        SYNTAX     Counter32
415        MAX-ACCESS read-only
416        STATUS     current
417        DESCRIPTION
418           "The number of CLP-0 cells received from switch
419            at the traffic management and policing device."
420        ::= {caviStatEgressEntry 1 }
421
422caviEgrRcvClp1Cells OBJECT-TYPE
423        SYNTAX      Counter32
424        MAX-ACCESS  read-only
425        STATUS      current
426        DESCRIPTION
427           "The number of CLP-1 cells received from switch
428            at the traffic management and policing device."
429        ::= {caviStatEgressEntry 2 }
430
431caviEgrClp0DiscCells OBJECT-TYPE
432        SYNTAX      Counter32
433        MAX-ACCESS  read-only
434        STATUS      current
435        DESCRIPTION
436            "The number of CLP-0 cells discarded due to policing."
437        ::= {caviStatEgressEntry 3 }
438
439caviEgrClp1DiscCells OBJECT-TYPE
440        SYNTAX     Counter32
441        MAX-ACCESS read-only
442        STATUS     current
443        DESCRIPTION
444           "The number of CLP-1 cells discarded due to policing."
445        ::= {caviStatEgressEntry 4 }
446
447caviEgrXmtClp0Cells OBJECT-TYPE
448        SYNTAX     Counter32
449        MAX-ACCESS read-only
450        STATUS     current
451        DESCRIPTION
452           "The number of CLP-0 cells transmitted to the network
453            after traffic management and policing."
454        ::= {caviStatEgressEntry 5 }
455
456caviEgrXmtClp1Cells OBJECT-TYPE
457        SYNTAX     Counter32
458        MAX-ACCESS read-only
459        STATUS     current
460        DESCRIPTION
461           "The number of CLP-1 cells transmitted to the network
462            after traffic management and policing."
463        ::= {caviStatEgressEntry 6 }
464
465caviEgrRcvOAMCells OBJECT-TYPE
466    SYNTAX     Counter32
467    MAX-ACCESS read-only
468    STATUS     current
469    DESCRIPTION
470       "The number of OAM cells received from the switch
471        at the traffic management and policing device."
472    ::= {caviStatEgressEntry 7 }
473
474caviEgrRMCells OBJECT-TYPE
475    SYNTAX     Counter32
476    MAX-ACCESS read-only
477    STATUS     current
478    DESCRIPTION
479       "The number of RM cells transmitted to the network from the switch."
480    ::= {caviStatEgressEntry 8 }
481
482caviEgrXmtEFCICells OBJECT-TYPE
483    SYNTAX     Counter32
484    MAX-ACCESS read-only
485    STATUS     current
486    DESCRIPTION
487       "The number of EFCI cells transmitted to the network
488        after traffic management and policing."
489    ::= {caviStatEgressEntry 9 }
490
491caviEgrRcvEFCICells OBJECT-TYPE
492    SYNTAX     Counter32
493    MAX-ACCESS read-only
494    STATUS     current
495    DESCRIPTION
496       "The number of EFCI cells received from the switch
497        at traffic management and policing device."
498    ::= {caviStatEgressEntry 10 }
499
500caviEgrXmtOAMCells OBJECT-TYPE
501        SYNTAX     Counter32
502        MAX-ACCESS read-only
503        STATUS     current
504        DESCRIPTION
505           "The number of OAM loopback cells transmitted to network
506            after traffic management and policing."
507        ::= {caviStatEgressEntry 11 }
508
509caviHEgrXmtClp0Cells OBJECT-TYPE
510        SYNTAX     Counter64
511        MAX-ACCESS read-only
512        STATUS     current
513        DESCRIPTION
514           "The 64-bit version of caviEgrXmtClp0Cells."
515        ::= {caviStatEgressEntry 12 }
516
517caviHEgrXmtClp1Cells OBJECT-TYPE
518        SYNTAX     Counter64
519        MAX-ACCESS read-only
520        STATUS     current
521        DESCRIPTION
522           "The 64-bit version of caviEgrXmtClp1Cells."
523        ::= {caviStatEgressEntry 13 }
524
525
526caviHighEgrRcvClp0Cells OBJECT-TYPE
527        SYNTAX     Counter32
528        MAX-ACCESS read-only
529        STATUS     current
530        DESCRIPTION
531           "The Upper 32 bit of the number of CLP-0 cells received
532            from switch at the traffic management and policing
533            device."
534        ::= {caviStatEgressEntry 14 }
535
536caviHighEgrRcvClp1Cells OBJECT-TYPE
537        SYNTAX      Counter32
538        MAX-ACCESS  read-only
539        STATUS      current
540        DESCRIPTION
541           "The Upper 32 bit of the number of CLP-1 cells received
542            from switch at the traffic management and policing
543            device."
544        ::= {caviStatEgressEntry 15 }
545
546caviHighEgrClp0DiscCells OBJECT-TYPE
547        SYNTAX      Counter32
548        MAX-ACCESS  read-only
549        STATUS      current
550        DESCRIPTION
551            "The Upper 32 bit of the number of CLP-0 cells discarded
552             due to policing."
553        ::= {caviStatEgressEntry 16 }
554
555caviHighEgrClp1DiscCells OBJECT-TYPE
556        SYNTAX     Counter32
557        MAX-ACCESS read-only
558        STATUS     current
559        DESCRIPTION
560           "The Upper 32 bit of the number of CLP-1 cells discarded
561            due to policing."
562        ::= {caviStatEgressEntry 17 }
563
564caviHighEgrXmtClp0Cells OBJECT-TYPE
565        SYNTAX     Counter32
566        MAX-ACCESS read-only
567        STATUS     current
568        DESCRIPTION
569           "The Upper 32 bit of the number of CLP-0 cells
570            transmitted to the network after traffic management and
571            policing."
572        ::= {caviStatEgressEntry 18 }
573
574caviHighEgrXmtClp1Cells OBJECT-TYPE
575        SYNTAX     Counter32
576        MAX-ACCESS read-only
577        STATUS     current
578        DESCRIPTION
579           "The Upper 32 bit of the number of CLP-1 cells
580            transmitted to the network after traffic management and
581            policing."
582        ::= {caviStatEgressEntry 19 }
583
584caviHEgrRcvClp0Cells OBJECT-TYPE
585        SYNTAX     Counter64
586        MAX-ACCESS read-only
587        STATUS     current
588        DESCRIPTION
589           "The 64 bit version of the number of CLP-0 cells received
590            from switch at the traffic management and policing
591            device."
592        ::= {caviStatEgressEntry 20 }
593
594caviHEgrRcvClp1Cells OBJECT-TYPE
595        SYNTAX      Counter64
596        MAX-ACCESS  read-only
597        STATUS      current
598        DESCRIPTION
599           "The 64 bit version of the number of CLP-1 cells received
600            from switch at the traffic management and policing
601            device."
602        ::= {caviStatEgressEntry 21 }
603
604caviHEgrClp0DiscCells OBJECT-TYPE
605        SYNTAX      Counter64
606        MAX-ACCESS  read-only
607        STATUS      current
608        DESCRIPTION
609            "The 64 bit version of the number of CLP-0 cells
610             discarded due to policing."
611        ::= {caviStatEgressEntry 22 }
612
613caviHEgrClp1DiscCells OBJECT-TYPE
614        SYNTAX     Counter64
615        MAX-ACCESS read-only
616        STATUS     current
617        DESCRIPTION
618           "The 64 bit version of the number of CLP-1 cells
619            discarded due to policing."
620        ::= {caviStatEgressEntry 23 }
621
622-- ---------------------------------------------------------------------
623-- ATM Virtual Interface Egress Interval Statistics Table
624-- ---------------------------------------------------------------------
625
626caviEgressIntervalTable OBJECT-TYPE
627        SYNTAX  SEQUENCE OF CaviEgressIntervalEntry
628        MAX-ACCESS not-accessible
629        STATUS     current
630        DESCRIPTION
631           "This table reflects interval statistics associated with
632            each of the ATM virtual interfaces in egress direction."
633        ::= { caviStatistics 2 }
634
635caviEgressIntervalEntry OBJECT-TYPE
636        SYNTAX     CaviEgressIntervalEntry
637        MAX-ACCESS not-accessible
638        STATUS     current
639        DESCRIPTION
640          "An entry for egress ATM virtual interface interval statistics.
641           In addition to the current 15-minute interval bucket, the previous
642           24 hours worth of 15-minute interval buckets are collected for each
643           ATM virtual interface.
644
645           Statistics are being collected before and after the traffic
646           management and policing device, in egress direction."
647        INDEX   { ifIndex, caviEgressIntervalNumber }
648        ::= { caviEgressIntervalTable 1 }
649
650CaviEgressIntervalEntry ::=
651        SEQUENCE {
652            caviEgressIntervalNumber    Unsigned32,
653            caviIntEgrRcvClp0Cells      Counter32,
654            caviIntEgrRcvClp1Cells      Counter32,
655            caviIntEgrClp0DiscCells     Counter32,
656            caviIntEgrClp1DiscCells     Counter32,
657            caviIntEgrXmtClp0Cells      Counter32,
658            caviIntEgrXmtClp1Cells      Counter32,
659            caviIntEgrRcvOAMCells       Counter32,
660            caviIntEgrRMCells           Counter32,
661            caviIntEgrXmtEFCICells      Counter32,
662            caviIntEgrRcvEFCICells      Counter32,
663            caviIntEgrXmtOAMCells       Counter32,
664            caviHighIntEgrRcvClp0Cells  Counter32,
665            caviHighIntEgrRcvClp1Cells  Counter32,
666            caviHighIntEgrClp0DiscCells Counter32,
667            caviHighIntEgrClp1DiscCells Counter32,
668            caviHighIntEgrXmtClp0Cells  Counter32,
669            caviHighIntEgrXmtClp1Cells  Counter32,
670            caviHIntEgrRcvClp0Cells	Counter64,
671            caviHIntEgrRcvClp1Cells    	Counter64,
672            caviHIntEgrClp0DiscCells   	Counter64,
673            caviHIntEgrClp1DiscCells   	Counter64,
674            caviHIntEgrXmtClp0Cells    	Counter64,
675            caviHIntEgrXmtClp1Cells    	Counter64
676            }
677
678caviEgressIntervalNumber OBJECT-TYPE
679        SYNTAX  Unsigned32(0..96)
680        MAX-ACCESS  read-only
681        STATUS  current
682        DESCRIPTION
683          "A number used to uniquely identify a ATM virtual interface's
684           interval statistics. 0 is used to identify the current
685           15-minute interval. 1-96 identify the previous 24 hours
686           of 15-minute interval buckets."
687        ::= { caviEgressIntervalEntry 1 }
688
689caviIntEgrRcvClp0Cells OBJECT-TYPE
690        SYNTAX     Counter32
691        MAX-ACCESS read-only
692        STATUS     current
693        DESCRIPTION
694           "The number of CLP-0 cells received from switch
695            at the traffic management and policing device
696            during a 15 minute interval."
697        ::= { caviEgressIntervalEntry 2 }
698
699caviIntEgrRcvClp1Cells OBJECT-TYPE
700        SYNTAX      Counter32
701        MAX-ACCESS  read-only
702        STATUS      current
703        DESCRIPTION
704           "The number of CLP-1 cells received from switch
705            at the traffic management and policing device
706            during a 15 minute interval."
707        ::= { caviEgressIntervalEntry 3 }
708
709caviIntEgrClp0DiscCells OBJECT-TYPE
710        SYNTAX      Counter32
711        MAX-ACCESS  read-only
712        STATUS      current
713        DESCRIPTION
714            "The number of CLP-0 cells discarded due to policing
715             during a 15 minute interval."
716        ::= { caviEgressIntervalEntry 4 }
717
718caviIntEgrClp1DiscCells OBJECT-TYPE
719        SYNTAX     Counter32
720        MAX-ACCESS read-only
721        STATUS     current
722        DESCRIPTION
723           "The number of CLP-1 cells discarded due to policing
724            during a 15 minute interval."
725        ::= { caviEgressIntervalEntry 5 }
726
727caviIntEgrXmtClp0Cells OBJECT-TYPE
728        SYNTAX     Counter32
729        MAX-ACCESS read-only
730        STATUS     current
731        DESCRIPTION
732           "The number of CLP-0 cells transmitted to the network
733            after traffic management and policing
734            during a 15 minute interval."
735        ::= { caviEgressIntervalEntry 6 }
736
737caviIntEgrXmtClp1Cells OBJECT-TYPE
738        SYNTAX     Counter32
739        MAX-ACCESS read-only
740        STATUS     current
741        DESCRIPTION
742           "The number of CLP-1 cells transmitted to the network
743            after traffic management and policing during a 15 minute
744            interval."
745        ::= { caviEgressIntervalEntry 7 }
746
747caviIntEgrRcvOAMCells OBJECT-TYPE
748    SYNTAX     Counter32
749    MAX-ACCESS read-only
750    STATUS     current
751    DESCRIPTION
752       "The number of OAM cells received from the switch
753        at the traffic management and policing device
754        during a 15 minute interval."
755    ::= { caviEgressIntervalEntry 8 }
756
757caviIntEgrRMCells OBJECT-TYPE
758    SYNTAX     Counter32
759    MAX-ACCESS read-only
760    STATUS     current
761    DESCRIPTION
762       "The number of RM cells transmitted to the network from the switch
763        during a 15 minute interval."
764    ::= { caviEgressIntervalEntry 9 }
765
766caviIntEgrXmtEFCICells OBJECT-TYPE
767    SYNTAX     Counter32
768    MAX-ACCESS read-only
769    STATUS     current
770    DESCRIPTION
771       "The number of EFCI cells transmitted to the network
772        after traffic management and policing during a 15 minute
773        interval."
774    ::= { caviEgressIntervalEntry 10 }
775
776caviIntEgrRcvEFCICells OBJECT-TYPE
777    SYNTAX     Counter32
778    MAX-ACCESS read-only
779    STATUS     current
780    DESCRIPTION
781       "The number of EFCI cells received from the switch
782        at traffic management and policing device during a 15
783        minute interval."
784    ::= { caviEgressIntervalEntry 11 }
785
786caviIntEgrXmtOAMCells OBJECT-TYPE
787        SYNTAX     Counter32
788        MAX-ACCESS read-only
789        STATUS     current
790        DESCRIPTION
791           "The number of OAM loopback cells transmitted to network
792            after traffic management and policing during a 15 minute
793            interval."
794        ::= { caviEgressIntervalEntry 12 }
795
796caviHighIntEgrRcvClp0Cells OBJECT-TYPE
797        SYNTAX     Counter32
798        MAX-ACCESS read-only
799        STATUS     current
800        DESCRIPTION
801           "The upper 32 bits of the number of CLP-0 cells received
802            from switch at the traffic management and policing
803            device during a 15 minute interval."
804        ::= { caviEgressIntervalEntry 13 }
805
806caviHighIntEgrRcvClp1Cells OBJECT-TYPE
807        SYNTAX      Counter32
808        MAX-ACCESS  read-only
809        STATUS      current
810        DESCRIPTION
811           "The upper 32 bits of the number of CLP-1 cells received
812            from switch at the traffic management and policing
813            device during a 15 minute interval."
814        ::= { caviEgressIntervalEntry 14 }
815
816caviHighIntEgrClp0DiscCells OBJECT-TYPE
817        SYNTAX      Counter32
818        MAX-ACCESS  read-only
819        STATUS      current
820        DESCRIPTION
821            "The upper 32 bits of the number of CLP-0 cells discarded
822             due to policing during a 15 minute interval."
823        ::= { caviEgressIntervalEntry 15 }
824
825caviHighIntEgrClp1DiscCells OBJECT-TYPE
826        SYNTAX     Counter32
827        MAX-ACCESS read-only
828        STATUS     current
829        DESCRIPTION
830           "The upper 32 bits of the number of CLP-1 cells discarded
831            due to policing during a 15 minute interval."
832        ::= { caviEgressIntervalEntry 16 }
833
834caviHighIntEgrXmtClp0Cells OBJECT-TYPE
835        SYNTAX     Counter32
836        MAX-ACCESS read-only
837        STATUS     current
838        DESCRIPTION
839           "The upper 32 bits of the number of CLP-0 cells
840            transmitted to the network after traffic management and
841            policing during a 15 minute interval."
842        ::= { caviEgressIntervalEntry 17 }
843
844caviHighIntEgrXmtClp1Cells OBJECT-TYPE
845        SYNTAX     Counter32
846        MAX-ACCESS read-only
847        STATUS     current
848        DESCRIPTION
849           "The upper 32 bits of the number of CLP-1 cells
850            transmitted to the network after traffic management and
851            policing during a 15 minute interval."
852        ::= { caviEgressIntervalEntry 18 }
853
854caviHIntEgrRcvClp0Cells OBJECT-TYPE
855        SYNTAX     Counter64
856        MAX-ACCESS read-only
857        STATUS     current
858        DESCRIPTION
859           "The 64 bit version of the number of CLP-0 cells received
860            from switch at the traffic management and policing
861            device during a 15 minute interval."
862        ::= { caviEgressIntervalEntry 19 }
863
864caviHIntEgrRcvClp1Cells OBJECT-TYPE
865        SYNTAX      Counter64
866        MAX-ACCESS  read-only
867        STATUS      current
868        DESCRIPTION
869           "The 64 bit version of the number of CLP-1 cells received
870            from switch at the traffic management and policing
871            device during a 15 minute interval."
872        ::= { caviEgressIntervalEntry 20 }
873
874caviHIntEgrClp0DiscCells OBJECT-TYPE
875        SYNTAX      Counter64
876        MAX-ACCESS  read-only
877        STATUS      current
878        DESCRIPTION
879            "The 64 bit version of the number of CLP-0 cells
880             discarded due to policing during a 15 minute
881             interval."
882        ::= { caviEgressIntervalEntry 21 }
883
884caviHIntEgrClp1DiscCells OBJECT-TYPE
885        SYNTAX     Counter64
886        MAX-ACCESS read-only
887        STATUS     current
888        DESCRIPTION
889           "The 64 bit version of the number of CLP-1 cells
890            discarded due to policing during a 15 minute
891            interval."
892        ::= { caviEgressIntervalEntry 22 }
893
894caviHIntEgrXmtClp0Cells OBJECT-TYPE
895        SYNTAX     Counter64
896        MAX-ACCESS read-only
897        STATUS     current
898        DESCRIPTION
899           "The 64 bit version of the number of CLP-0 cells
900            transmitted to the network after traffic management and
901            policing during a 15 minute interval."
902        ::= { caviEgressIntervalEntry 23 }
903
904caviHIntEgrXmtClp1Cells OBJECT-TYPE
905        SYNTAX     Counter64
906        MAX-ACCESS read-only
907        STATUS     current
908        DESCRIPTION
909           "The 64 bit version of the number of CLP-1 cells
910            transmitted to the network after traffic management and
911            policing during a 15 minute interval."
912        ::= { caviEgressIntervalEntry 24 }
913
914-- ---------------------------------------------------------------------
915-- ATM Virtual Interface Ingress Statistics Table
916-- ---------------------------------------------------------------------
917
918caviStatIngressTable OBJECT-TYPE
919        SYNTAX  SEQUENCE OF CaviStatIngressEntry
920        MAX-ACCESS not-accessible
921        STATUS     current
922        DESCRIPTION
923           "This table reflects real time statistics associated with
924            each of the ATM virtual interfaces on the ingress side."
925        ::= { caviStatistics 3 }
926
927caviStatIngressEntry OBJECT-TYPE
928        SYNTAX     CaviStatIngressEntry
929        MAX-ACCESS not-accessible
930        STATUS     current
931        DESCRIPTION
932          "An entry for egress ATM virtual  interface statistics. In all the following
933           descriptions,
934           CLP-0 means Cell Loss Priority = 0,
935           CLP-1 means Cell Loss Priority = 1.
936
937           Statistics are being collected before and after the traffic
938           management and policing device."
939        INDEX   { ifIndex }
940        ::= { caviStatIngressTable 1 }
941
942CaviStatIngressEntry ::=
943        SEQUENCE {
944            caviIngRcvClp0Cells      	Counter32,
945            caviIngRcvClp1Cells      	Counter32,
946            caviIngClp0DiscCells     	Counter32,
947            caviIngClp1DiscCells     	Counter32,
948            caviIngXmtClp0Cells      	Counter32,
949            caviIngXmtClp1Cells      	Counter32,
950            caviIngRcvOAMCells       	Counter32,
951            caviIngRMCells           	Counter32,
952            caviIngXmtEFCICells      	Counter32,
953            caviIngRcvEFCICells      	Counter32,
954            caviIngXmtOAMCells       	Counter32,
955            caviHIngRcvClp0Cells     	Counter64,
956            caviHIngRcvClp1Cells     	Counter64,
957            caviHighIngRcvClp0Cells  	Counter32,
958            caviHighIngRcvClp1Cells  	Counter32,
959            caviHighIngClp0DiscCells 	Counter32,
960            caviHighIngClp1DiscCells 	Counter32,
961            caviHighIngXmtClp0Cells  	Counter32,
962            caviHighIngXmtClp1Cells  	Counter32,
963            caviHIngClp0DiscCells	Counter64,
964            caviHIngClp1DiscCells   	Counter64,
965            caviHIngXmtClp0Cells    	Counter64,
966            caviHIngXmtClp1Cells    	Counter64
967            }
968
969caviIngRcvClp0Cells OBJECT-TYPE
970        SYNTAX     Counter32
971        MAX-ACCESS read-only
972        STATUS     current
973        DESCRIPTION
974           "The number of CLP-0 cells received from network
975            at the traffic management and policing device in
976            ingress direction."
977        ::= {caviStatIngressEntry 1 }
978
979caviIngRcvClp1Cells OBJECT-TYPE
980        SYNTAX      Counter32
981        MAX-ACCESS  read-only
982        STATUS      current
983        DESCRIPTION
984           "The number of CLP-1 cells received from network
985            at the traffic management and policing device in
986            ingress direction."
987        ::= {caviStatIngressEntry 2 }
988
989caviIngClp0DiscCells OBJECT-TYPE
990        SYNTAX      Counter32
991        MAX-ACCESS  read-only
992        STATUS      current
993        DESCRIPTION
994            "The number of CLP-0 cells discarded due to policing in
995            ingress direction."
996        ::= {caviStatIngressEntry 3 }
997
998caviIngClp1DiscCells OBJECT-TYPE
999        SYNTAX     Counter32
1000        MAX-ACCESS read-only
1001        STATUS     current
1002        DESCRIPTION
1003           "The number of CLP-1 cells discarded due to policing in
1004            ingress direction."
1005        ::= {caviStatIngressEntry 4 }
1006
1007caviIngXmtClp0Cells OBJECT-TYPE
1008        SYNTAX     Counter32
1009        MAX-ACCESS read-only
1010        STATUS     current
1011        DESCRIPTION
1012           "The number of CLP-0 cells transmitted to the switch
1013            after traffic management and policing in
1014            ingress direction."
1015        ::= {caviStatIngressEntry 5 }
1016
1017caviIngXmtClp1Cells OBJECT-TYPE
1018        SYNTAX     Counter32
1019        MAX-ACCESS read-only
1020        STATUS     current
1021        DESCRIPTION
1022           "The number of CLP-1 cells transmitted to the switch
1023            after traffic management and policing in
1024            ingress direction."
1025        ::= {caviStatIngressEntry 6 }
1026
1027caviIngRcvOAMCells OBJECT-TYPE
1028    SYNTAX     Counter32
1029    MAX-ACCESS read-only
1030    STATUS     current
1031    DESCRIPTION
1032       "The number of OAM cells received from the network
1033        at the traffic management and policing device in
1034        ingress direction."
1035    ::= {caviStatIngressEntry 7 }
1036
1037caviIngRMCells OBJECT-TYPE
1038    SYNTAX     Counter32
1039    MAX-ACCESS read-only
1040    STATUS     current
1041    DESCRIPTION
1042       "The number of RM cells transmitted to the switch from the network in
1043        ingress direction."
1044    ::= {caviStatIngressEntry 8 }
1045
1046caviIngXmtEFCICells OBJECT-TYPE
1047    SYNTAX     Counter32
1048    MAX-ACCESS read-only
1049    STATUS     current
1050    DESCRIPTION
1051       "The number of EFCI cells transmitted to the switch
1052        after traffic management and policing in
1053        ingress direction."
1054    ::= {caviStatIngressEntry 9 }
1055
1056caviIngRcvEFCICells OBJECT-TYPE
1057    SYNTAX     Counter32
1058    MAX-ACCESS read-only
1059    STATUS     current
1060    DESCRIPTION
1061       "The number of EFCI cells received from the network
1062        at traffic management and policing device in
1063        ingress direction."
1064    ::= {caviStatIngressEntry 10 }
1065
1066caviIngXmtOAMCells OBJECT-TYPE
1067        SYNTAX     Counter32
1068        MAX-ACCESS read-only
1069        STATUS     current
1070        DESCRIPTION
1071           "The number of OAM loopback cells transmitted to switch
1072            after traffic management and policing in
1073            ingress direction."
1074        ::= {caviStatIngressEntry 11 }
1075
1076caviHIngRcvClp0Cells OBJECT-TYPE
1077        SYNTAX     Counter64
1078        MAX-ACCESS read-only
1079        STATUS     current
1080        DESCRIPTION
1081           "The 64-bit version of caviIngRcvClp0Cells in
1082            ingress direction."
1083        ::= {caviStatIngressEntry 12 }
1084
1085caviHIngRcvClp1Cells OBJECT-TYPE
1086        SYNTAX     Counter64
1087        MAX-ACCESS read-only
1088        STATUS     current
1089        DESCRIPTION
1090           "The 64-bit version of caviIngRcvClp1Cells in
1091            ingress direction."
1092        ::= {caviStatIngressEntry 13 }
1093
1094
1095caviHighIngRcvClp0Cells OBJECT-TYPE
1096        SYNTAX     Counter32
1097        MAX-ACCESS read-only
1098        STATUS     current
1099        DESCRIPTION
1100           "The upper 32 bits of the number of CLP-0 cells received
1101            from network at the traffic management and policing device
1102            in ingress direction."
1103        ::= {caviStatIngressEntry 14 }
1104
1105caviHighIngRcvClp1Cells OBJECT-TYPE
1106        SYNTAX      Counter32
1107        MAX-ACCESS  read-only
1108        STATUS      current
1109        DESCRIPTION
1110           "The upper 32 bits of the number of CLP-1 cells received
1111            from network at the traffic management and policing device
1112            in ingress direction."
1113        ::= {caviStatIngressEntry 15 }
1114
1115caviHighIngClp0DiscCells OBJECT-TYPE
1116        SYNTAX      Counter32
1117        MAX-ACCESS  read-only
1118        STATUS      current
1119        DESCRIPTION
1120            "The upper 32 bits of the number of CLP-0 cells discarded
1121             due to policing in ingress direction."
1122        ::= {caviStatIngressEntry 16 }
1123
1124caviHighIngClp1DiscCells OBJECT-TYPE
1125        SYNTAX     Counter32
1126        MAX-ACCESS read-only
1127        STATUS     current
1128        DESCRIPTION
1129           "The upper 32 bits of the number of CLP-1 cells discarded
1130            due to policing in ingress direction."
1131        ::= {caviStatIngressEntry 17 }
1132
1133caviHighIngXmtClp0Cells OBJECT-TYPE
1134        SYNTAX     Counter32
1135        MAX-ACCESS read-only
1136        STATUS     current
1137        DESCRIPTION
1138           "The upper 32 bits of the number of CLP-0 cells transmitted
1139            to the switch after traffic management and policing in
1140            ingress direction."
1141        ::= {caviStatIngressEntry 18 }
1142
1143caviHighIngXmtClp1Cells OBJECT-TYPE
1144        SYNTAX     Counter32
1145        MAX-ACCESS read-only
1146        STATUS     current
1147        DESCRIPTION
1148           "The upper 32 bits of the number of CLP-1 cells transmitted
1149            to the switch after traffic management and policing in
1150            ingress direction."
1151        ::= {caviStatIngressEntry 19 }
1152
1153caviHIngClp0DiscCells OBJECT-TYPE
1154        SYNTAX      Counter64
1155        MAX-ACCESS  read-only
1156        STATUS      current
1157        DESCRIPTION
1158            "The 64 bit version of the number of CLP-0 cells discarded
1159             due to policing in ingress direction."
1160        ::= {caviStatIngressEntry 20 }
1161
1162caviHIngClp1DiscCells OBJECT-TYPE
1163        SYNTAX     Counter64
1164        MAX-ACCESS read-only
1165        STATUS     current
1166        DESCRIPTION
1167           "The 64 bit version of the number of CLP-1 cells discarded
1168            due to policing in ingress direction."
1169        ::= {caviStatIngressEntry 21 }
1170
1171caviHIngXmtClp0Cells OBJECT-TYPE
1172        SYNTAX     Counter64
1173        MAX-ACCESS read-only
1174        STATUS     current
1175        DESCRIPTION
1176           "The 64 bit version of the number of CLP-0 cells transmitted
1177            to the switch after traffic management and policing in
1178            ingress direction."
1179        ::= {caviStatIngressEntry 22 }
1180
1181caviHIngXmtClp1Cells OBJECT-TYPE
1182        SYNTAX     Counter64
1183        MAX-ACCESS read-only
1184        STATUS     current
1185        DESCRIPTION
1186           "The 64 bit version of the number of CLP-1 cells transmitted
1187            to the switch after traffic management and policing in
1188            ingress direction."
1189        ::= {caviStatIngressEntry 23 }
1190
1191-- ---------------------------------------------------------------------
1192-- ATM Virtual Interface Ingress  Interval Statistics Table
1193-- ---------------------------------------------------------------------
1194
1195caviIngressIntervalTable OBJECT-TYPE
1196        SYNTAX  SEQUENCE OF CaviIngressIntervalEntry
1197        MAX-ACCESS not-accessible
1198        STATUS     current
1199        DESCRIPTION
1200           "This table reflects interval statistics associated with
1201            each of the ATM virtual interfaces on the ingress side."
1202        ::= { caviStatistics 4 }
1203
1204caviIngressIntervalEntry OBJECT-TYPE
1205        SYNTAX     CaviIngressIntervalEntry
1206        MAX-ACCESS not-accessible
1207        STATUS     current
1208        DESCRIPTION
1209          "An entry for ingress ATM virtual interface interval
1210           statistics.
1211           In addition to the current 15-minute interval bucket,
1212           the previous 24 hours worth of 15-minute interval buckets
1213           are collected for each ATM virtual interface.
1214
1215           Statistics are being collected before and after the traffic
1216           management and policing device, in ingress direction."
1217        INDEX   { ifIndex, caviIngressIntervalNumber }
1218        ::= { caviIngressIntervalTable 1 }
1219
1220CaviIngressIntervalEntry ::=
1221        SEQUENCE {
1222            caviIngressIntervalNumber   Unsigned32,
1223            caviIntIngRcvClp0Cells      Counter32,
1224            caviIntIngRcvClp1Cells      Counter32,
1225            caviIntIngClp0DiscCells     Counter32,
1226            caviIntIngClp1DiscCells     Counter32,
1227            caviIntIngXmtClp0Cells      Counter32,
1228            caviIntIngXmtClp1Cells      Counter32,
1229            caviIntIngRcvOAMCells       Counter32,
1230            caviIntIngRMCells           Counter32,
1231            caviIntIngXmtEFCICells      Counter32,
1232            caviIntIngRcvEFCICells      Counter32,
1233            caviIntIngXmtOAMCells       Counter32,
1234            caviHighIntIngRcvClp0Cells  Counter32,
1235            caviHighIntIngRcvClp1Cells  Counter32,
1236            caviHighIntIngClp0DiscCells Counter32,
1237            caviHighIntIngClp1DiscCells Counter32,
1238            caviHighIntIngXmtClp0Cells  Counter32,
1239            caviHighIntIngXmtClp1Cells  Counter32,
1240            caviHIntIngRcvClp0Cells     Counter64,
1241            caviHIntIngRcvClp1Cells     Counter64,
1242            caviHIntIngClp0DiscCells	Counter64,
1243            caviHIntIngClp1DiscCells   	Counter64,
1244            caviHIntIngXmtClp0Cells    	Counter64,
1245            caviHIntIngXmtClp1Cells    	Counter64
1246            }
1247
1248caviIngressIntervalNumber OBJECT-TYPE
1249        SYNTAX  Unsigned32(0..96)
1250        MAX-ACCESS  not-accessible
1251        STATUS  current
1252        DESCRIPTION
1253          "A number used to uniquely identify a ATM virtual interface's
1254           interval statistics. 0 is used to identify the current
1255           15-minute interval, which is  currently being updated.
1256           1-96 identify the previous 24 hours of 15-minute interval
1257           buckets, where interval 1 representing the most recent
1258           15-minute interval and interval  96 representing the least
1259           recent 15-minute interval"
1260        ::= { caviIngressIntervalEntry 1 }
1261
1262caviIntIngRcvClp0Cells OBJECT-TYPE
1263        SYNTAX     Counter32
1264        MAX-ACCESS read-only
1265        STATUS     current
1266        DESCRIPTION
1267           "The number of CLP-0 cells received from network
1268            at the traffic management and policing device in
1269            ingress direction, during a 15-minute interval."
1270        ::= {caviIngressIntervalEntry 2 }
1271
1272caviIntIngRcvClp1Cells OBJECT-TYPE
1273        SYNTAX      Counter32
1274        MAX-ACCESS  read-only
1275        STATUS      current
1276        DESCRIPTION
1277           "The number of CLP-1 cells received from network
1278            at the traffic management and policing device in
1279            ingress direction, during a 15-minute interval."
1280        ::= {caviIngressIntervalEntry 3 }
1281
1282caviIntIngClp0DiscCells OBJECT-TYPE
1283        SYNTAX      Counter32
1284        MAX-ACCESS  read-only
1285        STATUS      current
1286        DESCRIPTION
1287            "The number of CLP-0 cells discarded due to policing in
1288            ingress direction, during a 15-minute interval."
1289        ::= {caviIngressIntervalEntry 4 }
1290
1291caviIntIngClp1DiscCells OBJECT-TYPE
1292        SYNTAX     Counter32
1293        MAX-ACCESS read-only
1294        STATUS     current
1295        DESCRIPTION
1296           "The number of CLP-1 cells discarded due to policing in
1297            ingress direction, during a 15-minute interval ."
1298        ::= {caviIngressIntervalEntry 5 }
1299
1300caviIntIngXmtClp0Cells OBJECT-TYPE
1301        SYNTAX     Counter32
1302        MAX-ACCESS read-only
1303        STATUS     current
1304        DESCRIPTION
1305           "The number of CLP-0 cells transmitted to the switch
1306            after traffic management and policing in
1307            ingress direction, during a 15-minute interval."
1308        ::= {caviIngressIntervalEntry 6 }
1309
1310caviIntIngXmtClp1Cells OBJECT-TYPE
1311        SYNTAX     Counter32
1312        MAX-ACCESS read-only
1313        STATUS     current
1314        DESCRIPTION
1315           "The number of CLP-1 cells transmitted to the switch
1316            after traffic management and policing in
1317            ingress direction, during a 15-minute interval."
1318        ::= {caviIngressIntervalEntry 7 }
1319
1320caviIntIngRcvOAMCells OBJECT-TYPE
1321    SYNTAX     Counter32
1322    MAX-ACCESS read-only
1323    STATUS     current
1324    DESCRIPTION
1325       "The number of OAM cells received from the network
1326        at the traffic management and policing device in
1327        ingress direction, during a 15-minute interval."
1328    ::= {caviIngressIntervalEntry 8 }
1329
1330caviIntIngRMCells OBJECT-TYPE
1331    SYNTAX     Counter32
1332    MAX-ACCESS read-only
1333    STATUS     current
1334    DESCRIPTION
1335       "The number of RM cells transmitted to the switch from the
1336        network in ingress direction, during a 15-minute interval."
1337    ::= {caviIngressIntervalEntry 9 }
1338
1339caviIntIngXmtEFCICells OBJECT-TYPE
1340    SYNTAX     Counter32
1341    MAX-ACCESS read-only
1342    STATUS     current
1343    DESCRIPTION
1344       "The number of EFCI cells transmitted to the switch
1345        after traffic management and policing in
1346        ingress direction, during a 15-minute interval."
1347    ::= {caviIngressIntervalEntry 10 }
1348
1349caviIntIngRcvEFCICells OBJECT-TYPE
1350    SYNTAX     Counter32
1351    MAX-ACCESS read-only
1352    STATUS     current
1353    DESCRIPTION
1354       "The number of EFCI cells received from the network
1355        at traffic management and policing device in
1356        ingress direction, during a 15-minute interval."
1357    ::= {caviIngressIntervalEntry 11 }
1358
1359caviIntIngXmtOAMCells OBJECT-TYPE
1360        SYNTAX     Counter32
1361        MAX-ACCESS read-only
1362        STATUS     current
1363        DESCRIPTION
1364           "The number of OAM loopback cells transmitted to switch
1365            after traffic management and policing in
1366            ingress direction, during a 15-minute interval."
1367        ::= {caviIngressIntervalEntry 12 }
1368
1369caviHighIntIngRcvClp0Cells OBJECT-TYPE
1370        SYNTAX     Counter32
1371        MAX-ACCESS read-only
1372        STATUS     current
1373        DESCRIPTION
1374           "The upper 32 bits of the number of CLP-0 cells received
1375            from network at the traffic management and policing device
1376            in ingress direction, during a 15-minute interval."
1377        ::= {caviIngressIntervalEntry 13 }
1378
1379caviHighIntIngRcvClp1Cells OBJECT-TYPE
1380        SYNTAX      Counter32
1381        MAX-ACCESS  read-only
1382        STATUS      current
1383        DESCRIPTION
1384           "The upper 32 bits of the number of CLP-1 cells received
1385            from network at the traffic management and policing device
1386            in ingress direction, during a 15-minute interval."
1387        ::= {caviIngressIntervalEntry 14 }
1388
1389caviHighIntIngClp0DiscCells OBJECT-TYPE
1390        SYNTAX      Counter32
1391        MAX-ACCESS  read-only
1392        STATUS      current
1393        DESCRIPTION
1394            "The upper 32 bits of the number of CLP-0 cells discarded
1395             due to policing in ingress direction, during a 15-minute
1396             interval."
1397        ::= {caviIngressIntervalEntry 15 }
1398
1399caviHighIntIngClp1DiscCells OBJECT-TYPE
1400        SYNTAX     Counter32
1401        MAX-ACCESS read-only
1402        STATUS     current
1403        DESCRIPTION
1404           "The upper 32 bits of the number of CLP-1 cells discarded
1405            due to policing in ingress direction, during a 15-minute
1406            interval."
1407        ::= {caviIngressIntervalEntry 16 }
1408
1409caviHighIntIngXmtClp0Cells OBJECT-TYPE
1410        SYNTAX     Counter32
1411        MAX-ACCESS read-only
1412        STATUS     current
1413        DESCRIPTION
1414           "The upper 32 bits of the number of CLP-0 cells transmitted
1415            to the switch after traffic management and policing in
1416            ingress direction, during a 15-minute interval."
1417        ::= {caviIngressIntervalEntry 17 }
1418
1419caviHighIntIngXmtClp1Cells OBJECT-TYPE
1420        SYNTAX     Counter32
1421        MAX-ACCESS read-only
1422        STATUS     current
1423        DESCRIPTION
1424           "The upper 32 bits of the number of CLP-1 cells transmitted
1425            to the switch after traffic management and policing in
1426            ingress direction, during a 15-minute interval."
1427        ::= {caviIngressIntervalEntry 18 }
1428
1429caviHIntIngRcvClp0Cells OBJECT-TYPE
1430        SYNTAX     Counter64
1431        MAX-ACCESS read-only
1432        STATUS     current
1433        DESCRIPTION
1434           "The 64-bit version of the number of CLP-0 cells received
1435            from network at the traffic management and policing device
1436            in ingress direction, during a 15-minute interval."
1437        ::= {caviIngressIntervalEntry 19 }
1438
1439caviHIntIngRcvClp1Cells OBJECT-TYPE
1440        SYNTAX     Counter64
1441        MAX-ACCESS read-only
1442        STATUS     current
1443        DESCRIPTION
1444           "The 64-bit version of the number of CLP-1 cells received
1445            from network at the traffic management and policing device
1446            in ingress direction, during a 15-minute interval."
1447        ::= {caviIngressIntervalEntry 20 }
1448
1449caviHIntIngClp0DiscCells OBJECT-TYPE
1450        SYNTAX      Counter64
1451        MAX-ACCESS  read-only
1452        STATUS      current
1453        DESCRIPTION
1454            "The 64 bit version of the number of CLP-0 cells discarded
1455             due to policing in ingress direction, during a 15-minute
1456             interval."
1457        ::= {caviIngressIntervalEntry 21 }
1458
1459caviHIntIngClp1DiscCells OBJECT-TYPE
1460        SYNTAX     Counter64
1461        MAX-ACCESS read-only
1462        STATUS     current
1463        DESCRIPTION
1464           "The 64 bit version of the number of CLP-1 cells discarded
1465            due to policing in ingress direction, during a 15-minute
1466            interval."
1467        ::= {caviIngressIntervalEntry 22 }
1468
1469caviHIntIngXmtClp0Cells OBJECT-TYPE
1470        SYNTAX     Counter64
1471        MAX-ACCESS read-only
1472        STATUS     current
1473        DESCRIPTION
1474           "The 64 bit version of the number of CLP-0 cells transmitted
1475            to the switch after traffic management and policing in
1476            ingress direction, during a 15-minute interval."
1477        ::= {caviIngressIntervalEntry 23 }
1478
1479caviHIntIngXmtClp1Cells OBJECT-TYPE
1480        SYNTAX     Counter64
1481        MAX-ACCESS read-only
1482        STATUS     current
1483        DESCRIPTION
1484           "The 64 bit version of the number of CLP-1 cells transmitted
1485            to the switch after traffic management and policing in
1486            ingress direction, during a 15-minute interval."
1487        ::= {caviIngressIntervalEntry 24 }
1488
1489-- conformance information
1490
1491caviMIBConformance OBJECT IDENTIFIER ::= {ciscoAtmVirtualIfMIB 3}
1492
1493caviMIBCompliances OBJECT IDENTIFIER ::= {caviMIBConformance 1}
1494caviMIBGroups      OBJECT IDENTIFIER ::= {caviMIBConformance 2}
1495
1496caviMIBCompliance MODULE-COMPLIANCE
1497        STATUS    deprecated   -- replaced by caviMIBComplianceRev1
1498        DESCRIPTION
1499           "The Compliance statement for cisco AtmVirtualIf management group."
1500        MODULE -- this module
1501        MANDATORY-GROUPS { caviMIBGroup, caviEgressStatMIBGroup }
1502        GROUP caviEgressHighSpeedStatMIBGroup
1503        DESCRIPTION
1504            "This group is mandatory for the system that has interface speeds of OC12 or
1505             higher."
1506        GROUP caviEgressIntervalMIBGroup
1507        DESCRIPTION
1508            "This group is mandatory for the system that supports ATM virtual interface
1509             interval statistics."
1510        GROUP caviIngressStatMIBGroup
1511        DESCRIPTION
1512            "This group is mandatory for the system that supports ATM  virtual interface
1513             Ingress statistics."
1514        GROUP caviIngressHighSpeedStatMIBGroup
1515        DESCRIPTION
1516            "This group is mandatory for the system that supports ATM  virtual interface
1517             Ingress statistics for interface speeds of OC12 or higher."
1518        ::= {caviMIBCompliances 1}
1519
1520caviMIBComplianceRev1 MODULE-COMPLIANCE
1521        STATUS        deprecated -- replaced by caviMIBComplianceRev2
1522        DESCRIPTION
1523           "Compliance statement for cisco AtmVirtualIf management group
1524            with support for virtual user and network ports"
1525        MODULE        -- this module
1526        MANDATORY-GROUPS { caviMIBGroupRev1, caviEgressStatMIBGroup }
1527        GROUP caviEgressHighSpeedStatMIBGroup
1528        DESCRIPTION
1529            "This group is mandatory for the system that has interface speeds
1530             of OC12 or higher."
1531        GROUP caviEgressIntervalMIBGroup
1532        DESCRIPTION
1533            "This group is mandatory for the system that supports ATM virtual
1534             interface interval statistics."
1535        GROUP caviIngressStatMIBGroup
1536        DESCRIPTION
1537            "This group is mandatory for the system that supports ATM  virtual
1538             interface Ingress statistics."
1539        GROUP caviIngressHighSpeedStatMIBGroup
1540        DESCRIPTION
1541            "This group is mandatory for the system that supports ATM  virtual
1542             interface Ingress statistics for interface speeds of OC12 or
1543             higher."
1544        ::= {caviMIBCompliances 2}
1545
1546caviMIBComplianceRev2 MODULE-COMPLIANCE
1547        STATUS        deprecated -- replaced by caviMIBComplianceRev3
1548        DESCRIPTION
1549           "Compliance statement for cisco AtmVirtualIf management
1550            group with support for virtual user and network ports"
1551        MODULE        -- this module
1552        MANDATORY-GROUPS { caviMIBGroupRev1, caviEgressStatMIBGroup1 }
1553        GROUP caviEgressHighSpeedStatMIBGroup1
1554        DESCRIPTION
1555            "This group is mandatory for the system that has
1556             interface speeds of OC12 or higher."
1557        GROUP caviEgressIntervalMIBGroup1
1558        DESCRIPTION
1559            "This group is mandatory for the system that supports
1560             ATM virtual interface interval statistics."
1561        GROUP caviIngressStatMIBGroup1
1562        DESCRIPTION
1563            "This group is mandatory for the system that supports
1564             ATM  virtual interface Ingress statistics."
1565        GROUP caviIngHighSpeedStatMIBGroup1
1566        DESCRIPTION
1567            "This group is mandatory for the system that supports
1568             ATM  virtual interface Ingress statistics for interface
1569             speeds of OC12 or higher."
1570        ::= {caviMIBCompliances 3}
1571
1572caviMIBComplianceRev3 MODULE-COMPLIANCE
1573        STATUS        current
1574        DESCRIPTION
1575           "Compliance statement for cisco AtmVirtualIf management
1576            group with support for virtual user and network ports"
1577        MODULE        -- this module
1578        MANDATORY-GROUPS { caviMIBGroupRev1, caviEgressStatMIBGroup1 }
1579        GROUP caviEgressHighSpeedStatMIBGroup1
1580        DESCRIPTION
1581            "This group is mandatory for the system that has
1582             interface speeds of OC12 or higher."
1583        GROUP caviEgressIntervalMIBGroup1
1584        DESCRIPTION
1585            "This group is mandatory for the system that supports
1586             ATM virtual interface interval statistics."
1587        GROUP caviIngressStatMIBGroup1
1588        DESCRIPTION
1589            "This group is mandatory for the system that supports
1590             ATM  virtual interface Ingress statistics."
1591        GROUP caviIngHighSpeedStatMIBGroup2
1592        DESCRIPTION
1593            "This group is mandatory for the system that supports
1594             ATM  virtual interface Ingress statistics for interface
1595             speeds of OC12 or higher."
1596	GROUP caviIngressIntervalStatMIBGroup
1597	DESCRIPTION
1598            "This group is mandatory for the system that supports
1599             ATM  virtual interface Ingress statistics."
1600        ::= {caviMIBCompliances 4}
1601
1602-- units of conformance
1603caviMIBGroup OBJECT-GROUP
1604       OBJECTS {
1605        caviPhyIfIndex,
1606        caviViIfIndex,
1607        caviMinRate,
1608        caviMaxRate,
1609        caviFileId,
1610        caviIfType,
1611        caviVpiNum,
1612        caviRowStatus
1613       }
1614       STATUS    deprecated   -- replaced by caviMIBGroupRev1
1615       DESCRIPTION
1616          "These are objects related to ciscoAtmVirtualIf configuration group."
1617       ::= { caviMIBGroups 1}
1618
1619caviEgressStatMIBGroup OBJECT-GROUP
1620        OBJECTS {
1621        caviEgrRcvClp0Cells,
1622        caviEgrRcvClp1Cells,
1623        caviEgrClp0DiscCells,
1624        caviEgrClp1DiscCells,
1625        caviEgrXmtClp0Cells,
1626        caviEgrXmtClp1Cells,
1627        caviEgrRcvOAMCells,
1628        caviEgrRMCells,
1629        caviEgrXmtEFCICells,
1630        caviEgrRcvEFCICells,
1631        caviEgrXmtOAMCells
1632        }
1633       STATUS deprecated -- replaced by caviEgressStatMIBGroup1
1634       DESCRIPTION
1635          "These are objects related to the ATM virtual interface statistics
1636           group caviStatistics."
1637       ::= { caviMIBGroups 2}
1638
1639caviEgressHighSpeedStatMIBGroup OBJECT-GROUP
1640        OBJECTS {
1641        caviHEgrXmtClp0Cells,
1642        caviHEgrXmtClp1Cells
1643        }
1644       STATUS deprecated -- replaced by
1645                         -- caviEgressHighSpeedStatMIBGroup1
1646       DESCRIPTION
1647          "These statistics apply to ingress ATM virtual interfaces with speed of
1648           OC12 or higher."
1649       ::= { caviMIBGroups 3}
1650
1651caviEgressIntervalMIBGroup OBJECT-GROUP
1652        OBJECTS {
1653        caviEgressIntervalNumber,
1654        caviIntEgrRcvClp0Cells,
1655        caviIntEgrRcvClp1Cells,
1656        caviIntEgrClp0DiscCells,
1657        caviIntEgrClp1DiscCells,
1658        caviIntEgrXmtClp0Cells,
1659        caviIntEgrXmtClp1Cells,
1660        caviIntEgrRcvOAMCells,
1661        caviIntEgrRMCells,
1662        caviIntEgrXmtEFCICells,
1663        caviIntEgrRcvEFCICells,
1664        caviIntEgrXmtOAMCells
1665        }
1666        STATUS deprecated -- relaced by caviEgressIntervalMIBGroup1
1667        DESCRIPTION
1668           "These are objects related to the ATM virtual interface
1669            interval statistics group."
1670        ::= { caviMIBGroups 4}
1671
1672caviIngressStatMIBGroup OBJECT-GROUP
1673        OBJECTS {
1674        caviIngRcvClp0Cells,
1675        caviIngRcvClp1Cells,
1676        caviIngClp0DiscCells,
1677        caviIngClp1DiscCells,
1678        caviIngXmtClp0Cells,
1679        caviIngXmtClp1Cells,
1680        caviIngRcvOAMCells,
1681        caviIngRMCells,
1682        caviIngXmtEFCICells,
1683        caviIngRcvEFCICells,
1684        caviIngXmtOAMCells
1685        }
1686       STATUS deprecated  -- replaced by caviIngressStatMIBGroup1
1687       DESCRIPTION
1688          "These are objects related to the ingress ATM virtual
1689           interface statistics."
1690       ::= { caviMIBGroups 5}
1691
1692caviIngressHighSpeedStatMIBGroup OBJECT-GROUP
1693        OBJECTS {
1694        caviHIngRcvClp0Cells,
1695        caviHIngRcvClp1Cells
1696        }
1697       STATUS deprecated  -- replaced by caviIngHighSpeedStatMIBGroup1
1698       DESCRIPTION
1699          "These statistics apply to ingress ATM virtual interfaces with speed of
1700           OC12 or higher."
1701       ::= { caviMIBGroups 6}
1702
1703caviMIBGroupRev1 OBJECT-GROUP
1704       OBJECTS {
1705        caviPhyIfIndex,
1706        caviViIfIndex,
1707        caviMinRate,
1708        caviMaxRate,
1709        caviFileId,
1710        caviIfType,
1711        caviVpiNum,
1712        caviRowStatus,
1713        caviMinVpiNum,
1714        caviMaxVpiNum
1715       }
1716       STATUS current
1717       DESCRIPTION
1718          "Definition of additional objects caviMinVpiNum and caviMaxVpiNum,
1719           which are required to support the evuni and evnni functionality."
1720       ::= { caviMIBGroups 7}
1721
1722caviEgressStatMIBGroup1 OBJECT-GROUP
1723        OBJECTS {
1724        caviEgrRcvClp0Cells,
1725        caviEgrRcvClp1Cells,
1726        caviEgrClp0DiscCells,
1727        caviEgrClp1DiscCells,
1728        caviEgrXmtClp0Cells,
1729        caviEgrXmtClp1Cells,
1730        caviEgrRcvOAMCells,
1731        caviEgrRMCells,
1732        caviEgrXmtEFCICells,
1733        caviEgrRcvEFCICells,
1734        caviEgrXmtOAMCells,
1735        caviHighEgrRcvClp0Cells,
1736        caviHighEgrRcvClp1Cells,
1737        caviHighEgrClp0DiscCells,
1738        caviHighEgrClp1DiscCells,
1739        caviHighEgrXmtClp0Cells,
1740        caviHighEgrXmtClp1Cells
1741        }
1742       STATUS current
1743       DESCRIPTION
1744          "These are objects related to the ATM virtual interface
1745           statistics group caviStatistics."
1746       ::= { caviMIBGroups 8}
1747
1748caviEgressHighSpeedStatMIBGroup1 OBJECT-GROUP
1749        OBJECTS {
1750        caviHEgrXmtClp0Cells,
1751        caviHEgrXmtClp1Cells,
1752	caviHEgrRcvClp0Cells,
1753        caviHEgrRcvClp1Cells,
1754	caviHEgrClp0DiscCells,
1755        caviHEgrClp1DiscCells,
1756	caviHIntEgrRcvClp0Cells,
1757        caviHIntEgrRcvClp1Cells,
1758        caviHIntEgrClp0DiscCells,
1759        caviHIntEgrClp1DiscCells,
1760        caviHIntEgrXmtClp0Cells,
1761        caviHIntEgrXmtClp1Cells
1762        }
1763       STATUS current
1764       DESCRIPTION
1765          "These statistics apply to ingress ATM virtual interfaces
1766           with speed of OC12 or higher."
1767       ::= { caviMIBGroups 9}
1768
1769caviEgressIntervalMIBGroup1 OBJECT-GROUP
1770        OBJECTS {
1771        caviEgressIntervalNumber,
1772        caviIntEgrRcvClp0Cells,
1773        caviIntEgrRcvClp1Cells,
1774        caviIntEgrClp0DiscCells,
1775        caviIntEgrClp1DiscCells,
1776        caviIntEgrXmtClp0Cells,
1777        caviIntEgrXmtClp1Cells,
1778        caviIntEgrRcvOAMCells,
1779        caviIntEgrRMCells,
1780        caviIntEgrXmtEFCICells,
1781        caviIntEgrRcvEFCICells,
1782        caviIntEgrXmtOAMCells,
1783        caviHighIntEgrRcvClp0Cells,
1784        caviHighIntEgrRcvClp1Cells,
1785        caviHighIntEgrClp0DiscCells,
1786        caviHighIntEgrClp1DiscCells,
1787        caviHighIntEgrXmtClp0Cells,
1788        caviHighIntEgrXmtClp1Cells
1789        }
1790        STATUS current
1791        DESCRIPTION
1792           "These are objects related to the ATM virtual interface
1793            interval statistics group."
1794        ::= { caviMIBGroups 10}
1795
1796
1797caviIngressStatMIBGroup1 OBJECT-GROUP
1798        OBJECTS {
1799        caviIngRcvClp0Cells,
1800        caviIngRcvClp1Cells,
1801        caviIngClp0DiscCells,
1802        caviIngClp1DiscCells,
1803        caviIngXmtClp0Cells,
1804        caviIngXmtClp1Cells,
1805        caviIngRcvOAMCells,
1806        caviIngRMCells,
1807        caviIngXmtEFCICells,
1808        caviIngRcvEFCICells,
1809        caviIngXmtOAMCells,
1810        caviHighIngRcvClp0Cells,
1811        caviHighIngRcvClp1Cells,
1812        caviHighIngClp0DiscCells,
1813        caviHighIngClp1DiscCells,
1814        caviHighIngXmtClp0Cells,
1815        caviHighIngXmtClp1Cells
1816        }
1817       STATUS current
1818       DESCRIPTION
1819          "These are objects related to the ingress ATM virtual
1820           interface statistics."
1821       ::= { caviMIBGroups 11}
1822
1823caviIngHighSpeedStatMIBGroup1 OBJECT-GROUP
1824        OBJECTS {
1825        caviHIngRcvClp0Cells,
1826        caviHIngRcvClp1Cells,
1827        caviHIngClp0DiscCells,
1828        caviHIngClp1DiscCells,
1829        caviHIngXmtClp0Cells,
1830        caviHIngXmtClp1Cells
1831        }
1832       STATUS deprecated -- replaced by caviIngHighSpeedStatMIBGroup2
1833       DESCRIPTION
1834          "These statistics apply to ingress ATM virtual interfaces
1835           with speed of OC12 or higher."
1836       ::= { caviMIBGroups 12}
1837
1838caviIngressIntervalStatMIBGroup OBJECT-GROUP
1839        OBJECTS {
1840        caviIntIngRcvClp0Cells,
1841        caviIntIngRcvClp1Cells,
1842        caviIntIngClp0DiscCells,
1843        caviIntIngClp1DiscCells,
1844        caviIntIngXmtClp0Cells,
1845        caviIntIngXmtClp1Cells,
1846        caviIntIngRcvOAMCells,
1847        caviIntIngRMCells,
1848        caviIntIngXmtEFCICells,
1849        caviIntIngRcvEFCICells,
1850        caviIntIngXmtOAMCells
1851        }
1852       STATUS current
1853       DESCRIPTION
1854          "These are objects related to the ingress ATM virtual
1855           interface statistics."
1856       ::= { caviMIBGroups 13}
1857
1858caviIngHighSpeedStatMIBGroup2 OBJECT-GROUP
1859        OBJECTS {
1860        caviHighIntIngRcvClp0Cells,
1861        caviHighIntIngRcvClp1Cells,
1862        caviHighIntIngClp0DiscCells,
1863        caviHighIntIngClp1DiscCells,
1864        caviHighIntIngXmtClp0Cells,
1865        caviHighIntIngXmtClp1Cells,
1866        caviHIngRcvClp0Cells,
1867        caviHIngRcvClp1Cells,
1868        caviHIngClp0DiscCells,
1869        caviHIngClp1DiscCells,
1870        caviHIngXmtClp0Cells,
1871        caviHIngXmtClp1Cells,
1872	caviHIntIngRcvClp0Cells,
1873        caviHIntIngRcvClp1Cells,
1874        caviHIntIngClp0DiscCells,
1875        caviHIntIngClp1DiscCells,
1876        caviHIntIngXmtClp0Cells,
1877        caviHIntIngXmtClp1Cells
1878        }
1879       STATUS current
1880       DESCRIPTION
1881          "These statistics apply to ingress ATM virtual interfaces
1882           with speed of OC12 or higher."
1883       ::= { caviMIBGroups 14}
1884END
1885
1886
1887
1888
1889
1890