forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-ATM-VIRTUAL-IF-MIB.mib
1889 lines (1705 loc) · 67.1 KB
/
CISCO-ATM-VIRTUAL-IF-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- ciscoAtmVirtualIf MIB
--
-- Oct. 2002, Prasanna Mucharikar
--
-- Copyright (c) 1999, 2002 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-ATM-VIRTUAL-IF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
Counter64,
Counter32,
Unsigned32 FROM SNMPv2-SMI
RowStatus FROM SNMPv2-TC
AtmVpIdentifier FROM ATM-TC-MIB
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
InterfaceIndex,
ifIndex FROM IF-MIB
ciscoMgmt FROM CISCO-SMI;
ciscoAtmVirtualIfMIB MODULE-IDENTITY
LAST-UPDATED "200210110000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-wanatm@cisco.com"
DESCRIPTION
"The MIB module to manage ATM Virtual interface objects.
ATM virtual interfaces are configured on a physical line."
REVISION "200210110000Z"
DESCRIPTION
"1. Added caviIngressIntervalTable. "
REVISION "200205070000Z"
DESCRIPTION
"1. Added following objects to caviStatEgressTable, as
upper 32-bits for 64-bit wide counters:
caviHighEgrRcvClp0Cells, caviHighEgrRcvClp1Cells,
caviHighEgrClp0DiscCells, caviHighEgrClp1DiscCells,
caviHighEgrXmtClp0Cells, caviHighEgrXmtClp1Cells.
2. Added following 64-bit objects to
caviStatEgressTable for 64-bit counter support:
caviHEgrRcvClp0Cells, caviHEgrClp0DiscCells,
caviHEgrClp0DiscCells, caviHEgrClp1DiscCells.
3. Added following objects to caviEgressIntervalTable,
as upper 32-bits for 64-bit wide counters:
caviHighIntEgrRcvClp0Cells,
caviHighIntEgrRcvClp1Cells,
caviHighIntEgrClp0DiscCells,
caviHighIntEgrClp1DiscCells,
caviHighIntEgrXmtClp0Cells,
caviHighIntEgrXmtClp1Cells.
4. Added following 64-bit objects to
caviEgressIntervalTable:
caviHIntEgrRcvClp0Cells, caviHIntEgrRcvClp1Cells,
caviHIntEgrClp0DiscCells, caviHIntEgrClp1DiscCells,
caviHIntEgrXmtClp0Cells, caviHIntEgrXmtClp1Cells.
5. Added following objects to caviStatIngressTable, as
upper 32-bits for 64-bit wide counters:
caviHighIngRcvClp0Cells, caviHighIngRcvClp1Cells,
caviHighIngClp0DiscCells, caviHighIngClp1DiscCells,
caviHighIngXmtClp0Cells, caviHighIngXmtClp1Cells.
6. Added following 64-bit objects to
caviStatIngressTable:
caviHIngClp0DiscCells, caviHIngClp1DiscCells,
caviHIngXmtClp0Cells, caviHIngXmtClp1Cells.
7. Changed IMPORT for Unsigned32 to SNMPv2-SMI, instead
of CISCO-TC."
REVISION "200109030000Z"
DESCRIPTION
"Added caviMinVpiNum and caviMaxVpiNum. Modified description
for caviEntry and caviIfType."
REVISION "200008110000Z"
DESCRIPTION
"Changed description of objects caviMinRate and caviMaxRate.
Modified range for caviMinRate, caviMaxRate and
caviFileId."
REVISION "200001140000Z"
DESCRIPTION
"Initial version of this MIB module."
::= {ciscoMgmt 129 }
ciscoAtmVirtualIfMIBObjects
OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIB 1}
caviConfig OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIBObjects 1}
caviStatistics OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIBObjects 2}
-- ---------------------------------------------------------------------
-- cisco ATM Virtual Interface Config Group
-- ---------------------------------------------------------------------
caviTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used for creating ATM virtual Interfaces.
The ATM virtual interfaces are created on physical interfaces.
For each entry created in this table, there will be an entry
created in the ifTable with ifType atmVirtual(149).
For each entry deleted from this table, the corresponding entry
from ifTable will be deleted. The ifIndex value for ifType
atmVirtual(149) is used for indexing to atmInterfaceConfTable
for getting information on a ATM virtual interface."
::= { caviConfig 1 }
caviEntry OBJECT-TYPE
SYNTAX CaviEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the caviTable table for each ATM virtual interface.
An entry in this table can only be created if values for all
objects in a row are provided.
The caviVpiNum object is applicable only to interfaces of
caviIfType vnni (3) or vuni (4).
The caviMinVpiNum and caviMaxVpiNum are applicable only to
interfaces of caviIfType evuni(5) or evnni(6)."
INDEX { caviIndex }
::= { caviTable 1 }
CaviEntry ::=
SEQUENCE {
caviIndex Integer32,
caviPhyIfIndex InterfaceIndex ,
caviViIfIndex InterfaceIndex,
caviMinRate Unsigned32,
caviMaxRate Unsigned32,
caviFileId Unsigned32,
caviIfType INTEGER,
caviVpiNum AtmVpIdentifier,
caviRowStatus RowStatus,
caviMinVpiNum AtmVpIdentifier,
caviMaxVpiNum AtmVpIdentifier
}
caviIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for the ATM virtual interface."
::= { caviEntry 1 }
caviPhyIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies the interface number ( 'ifIndex' ) assigned
to sonet(39),ds3(30),ds1(18),atmIma(107)."
::= { caviEntry 2 }
caviViIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the ATM virtual interface number
('ifIndex') assigned to this entry, and is used
to identify corresponding rows in the IF-MIB.
Note that re-inititalization of the management agent may
cause a client's 'caviViIfIndex' to change."
::= { caviEntry 3 }
caviMinRate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "cells-per-second"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ATM virtual interface's guaranteed cell rate.
This is the guaranteed bandwidth allocated for
the interface. The sum of caviMinRate of all ATM
virtual interfaces configured on a single physical line,
must not exceed the bandwidth of the physical line. Creation
of a row is rejected when the sum of caviMinRate of all existing
ATM virtual interfaces exceeds the physical line bandwidth.
The value of this object can't exceed the 'ifSpeed' or
'ifHighSpeed' value in ifTable for the associated
'caviPhyIfIndex'.
ATM cell bandwidths for various physical lines are:
OC192 line : 22605280 cells/sec
OC48 line : 5651320 cells/sec
OC12 line : 1412830 cells/sec
OC3 line : 353207 cells/sec
T3 line : 96000 cells/sec
E3 line : 80000 cells/sec."
::= { caviEntry 4 }
caviMaxRate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "cells-per-second"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ATM virtual interface's maximum cell rate.
If bandwidth is available, the interface will
be allocated bandwidth upto this value.
The total bandwidth of connections configured over this
interface cannot exceed this value.
The value of this object can't exceed the 'ifSpeed' or
'ifHighSpeed' value in ifTable for the associated
'caviPhyIfIndex'.
ATM cell bandwidths for various physical lines are:
OC192 line : 22605280 cells/sec
OC48 line : 5651320 cells/sec
OC12 line : 1412830 cells/sec
OC3 line : 353207 cells/sec
T3 line : 96000 cells/sec
E3 line : 80000 cells/sec."
::= {caviEntry 5 }
caviFileId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID of the file that holds module specific configuration
parameters for this ATM virtual interface."
DEFVAL { 0 }
::= { caviEntry 6 }
caviIfType OBJECT-TYPE
SYNTAX INTEGER {
uni(1),
nni(2),
vnni(3),
vuni(4),
evuni(5),
evnni(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object reflects the type of ATM virtual interface that can be
configured within a physical interface. The supported types of virtual
interfaces and their description is shown below:
uni : Only one virtual interface of uni type can be configured within
a physical interface. The ATM cells used in this interface would
use a 8 bit VPI and a 4 bit GFC.
nni : Only one virtual interface of nni type can be configured within
a physical interface.The ATM cells used in this interface would
use a 12 bit VPI.
vnni: Multiple virtual interfaces of vnni type can be configured
within a physical interface. However, all cells sent on this
interface belong to a single VPI (defined by caviVpiNum) and
the cells use a 12 bit VPI.
vuni: Multiple virtual interfaces of vuni type can be configured
within a physical interface. However, all cells sent on this
interface belong to a single VPI (defined by caviVpiNum) and
the cells use a 8 bit VPI and a 4 bit GFC.
evuni: Multiple virtual interfaces of evuni type can be configured
within a physical interface. However, all cells sent on this
interface belong to a range of VPI (defined by caviMinVpiNum
& caviMaxVpiNum) and the cells use a 8 bit VPI and a 4 bit GFC.
evnni: Multiple virtual interfaces of evuni type can be configured
within a physical interface. However, all cells sent on this
interface belong to a range of VPI (defined by caviMinVpiNum
& caviMaxVpiNum) and the cells use a 12 bit VPI."
DEFVAL { uni }
::= { caviEntry 7 }
caviVpiNum OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used when configuring ATM virtual interfaces of
caviIftype vuni(4) or vnni (3). A non-zero value is required
for vuni / vnni operation.
The value set in this object for other type of caviIfTypes
would be ignored by the agent. The GET operation on this object
would return 0 for caviIfTypes other than vuni/vnni."
DEFVAL { 0 }
::= { caviEntry 8 }
caviRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows create and delete operations on caviTable
entries.
An entry is created in the table by setting this object to
createAndGo(4).
An entry is deleted from the table by setting this object to
destroy(6).
An entry in this table may be modified after creation."
::= {caviEntry 9 }
caviMinVpiNum OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is mandatory while configuring this ATM virtual
interface as caviIfType evuni(5) or evnni(6). The range of
VPI accepted by the agent depends on caviIfType.
The evuni accepts a range from 0 to 255, while the evnni accepts
a range from 0 to 4095.
The object specifies the minimum VPI for a evuni/evnni interface.
The agent ignores a SET on this object for any interface other
than a evuni/evnni. A GET operation for interfaces other than a
evuni/evnni would always yield 0"
DEFVAL { 0 }
::= { caviEntry 10 }
caviMaxVpiNum OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is mandatory while configuring this ATM virtual
interface as caviIfType evuni(5) or evnni(6). The range of
VPI accepted by the agent depends on caviIfType.
The evuni accepts a range from 0 to 255, while the evnni accepts
a range from 0 to 4095.
The agent rejects a SET on this object for any interface other
than a evuni/evnni. A GET operation for interfaces other than a
evuni/evnni would always yield 0"
::= { caviEntry 11 }
-- ---------------------------------------------------------------------
-- ATM Virtual Interface Egress Statistics Table
-- ---------------------------------------------------------------------
caviStatEgressTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviStatEgressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table reflects real time statistics associated with
each of the ATM virtual interfaces on the egress side.
Ingress direction means coming from network into switch,
Egress direction means going from switch into the network."
::= { caviStatistics 1 }
caviStatEgressEntry OBJECT-TYPE
SYNTAX CaviStatEgressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for egress ATM virtual interface statistics. In all the following
descriptions,
CLP-0 means Cell Loss Priority = 0,
CLP-1 means Cell Loss Priority = 1.
Statistics are being collected before and after the traffic
management and policing device."
INDEX { ifIndex }
::= { caviStatEgressTable 1 }
CaviStatEgressEntry ::=
SEQUENCE {
caviEgrRcvClp0Cells Counter32,
caviEgrRcvClp1Cells Counter32,
caviEgrClp0DiscCells Counter32,
caviEgrClp1DiscCells Counter32,
caviEgrXmtClp0Cells Counter32,
caviEgrXmtClp1Cells Counter32,
caviEgrRcvOAMCells Counter32,
caviEgrRMCells Counter32,
caviEgrXmtEFCICells Counter32,
caviEgrRcvEFCICells Counter32,
caviEgrXmtOAMCells Counter32,
caviHEgrXmtClp0Cells Counter64,
caviHEgrXmtClp1Cells Counter64,
caviHighEgrRcvClp0Cells Counter32,
caviHighEgrRcvClp1Cells Counter32,
caviHighEgrClp0DiscCells Counter32,
caviHighEgrClp1DiscCells Counter32,
caviHighEgrXmtClp0Cells Counter32,
caviHighEgrXmtClp1Cells Counter32,
caviHEgrRcvClp0Cells Counter64,
caviHEgrRcvClp1Cells Counter64,
caviHEgrClp0DiscCells Counter64,
caviHEgrClp1DiscCells Counter64
}
caviEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells received from switch
at the traffic management and policing device."
::= {caviStatEgressEntry 1 }
caviEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells received from switch
at the traffic management and policing device."
::= {caviStatEgressEntry 2 }
caviEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells discarded due to policing."
::= {caviStatEgressEntry 3 }
caviEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells discarded due to policing."
::= {caviStatEgressEntry 4 }
caviEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells transmitted to the network
after traffic management and policing."
::= {caviStatEgressEntry 5 }
caviEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells transmitted to the network
after traffic management and policing."
::= {caviStatEgressEntry 6 }
caviEgrRcvOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM cells received from the switch
at the traffic management and policing device."
::= {caviStatEgressEntry 7 }
caviEgrRMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RM cells transmitted to the network from the switch."
::= {caviStatEgressEntry 8 }
caviEgrXmtEFCICells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EFCI cells transmitted to the network
after traffic management and policing."
::= {caviStatEgressEntry 9 }
caviEgrRcvEFCICells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EFCI cells received from the switch
at traffic management and policing device."
::= {caviStatEgressEntry 10 }
caviEgrXmtOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM loopback cells transmitted to network
after traffic management and policing."
::= {caviStatEgressEntry 11 }
caviHEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64-bit version of caviEgrXmtClp0Cells."
::= {caviStatEgressEntry 12 }
caviHEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64-bit version of caviEgrXmtClp1Cells."
::= {caviStatEgressEntry 13 }
caviHighEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper 32 bit of the number of CLP-0 cells received
from switch at the traffic management and policing
device."
::= {caviStatEgressEntry 14 }
caviHighEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper 32 bit of the number of CLP-1 cells received
from switch at the traffic management and policing
device."
::= {caviStatEgressEntry 15 }
caviHighEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper 32 bit of the number of CLP-0 cells discarded
due to policing."
::= {caviStatEgressEntry 16 }
caviHighEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper 32 bit of the number of CLP-1 cells discarded
due to policing."
::= {caviStatEgressEntry 17 }
caviHighEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper 32 bit of the number of CLP-0 cells
transmitted to the network after traffic management and
policing."
::= {caviStatEgressEntry 18 }
caviHighEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper 32 bit of the number of CLP-1 cells
transmitted to the network after traffic management and
policing."
::= {caviStatEgressEntry 19 }
caviHEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-0 cells received
from switch at the traffic management and policing
device."
::= {caviStatEgressEntry 20 }
caviHEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-1 cells received
from switch at the traffic management and policing
device."
::= {caviStatEgressEntry 21 }
caviHEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-0 cells
discarded due to policing."
::= {caviStatEgressEntry 22 }
caviHEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-1 cells
discarded due to policing."
::= {caviStatEgressEntry 23 }
-- ---------------------------------------------------------------------
-- ATM Virtual Interface Egress Interval Statistics Table
-- ---------------------------------------------------------------------
caviEgressIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviEgressIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table reflects interval statistics associated with
each of the ATM virtual interfaces in egress direction."
::= { caviStatistics 2 }
caviEgressIntervalEntry OBJECT-TYPE
SYNTAX CaviEgressIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for egress ATM virtual interface interval statistics.
In addition to the current 15-minute interval bucket, the previous
24 hours worth of 15-minute interval buckets are collected for each
ATM virtual interface.
Statistics are being collected before and after the traffic
management and policing device, in egress direction."
INDEX { ifIndex, caviEgressIntervalNumber }
::= { caviEgressIntervalTable 1 }
CaviEgressIntervalEntry ::=
SEQUENCE {
caviEgressIntervalNumber Unsigned32,
caviIntEgrRcvClp0Cells Counter32,
caviIntEgrRcvClp1Cells Counter32,
caviIntEgrClp0DiscCells Counter32,
caviIntEgrClp1DiscCells Counter32,
caviIntEgrXmtClp0Cells Counter32,
caviIntEgrXmtClp1Cells Counter32,
caviIntEgrRcvOAMCells Counter32,
caviIntEgrRMCells Counter32,
caviIntEgrXmtEFCICells Counter32,
caviIntEgrRcvEFCICells Counter32,
caviIntEgrXmtOAMCells Counter32,
caviHighIntEgrRcvClp0Cells Counter32,
caviHighIntEgrRcvClp1Cells Counter32,
caviHighIntEgrClp0DiscCells Counter32,
caviHighIntEgrClp1DiscCells Counter32,
caviHighIntEgrXmtClp0Cells Counter32,
caviHighIntEgrXmtClp1Cells Counter32,
caviHIntEgrRcvClp0Cells Counter64,
caviHIntEgrRcvClp1Cells Counter64,
caviHIntEgrClp0DiscCells Counter64,
caviHIntEgrClp1DiscCells Counter64,
caviHIntEgrXmtClp0Cells Counter64,
caviHIntEgrXmtClp1Cells Counter64
}
caviEgressIntervalNumber OBJECT-TYPE
SYNTAX Unsigned32(0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A number used to uniquely identify a ATM virtual interface's
interval statistics. 0 is used to identify the current
15-minute interval. 1-96 identify the previous 24 hours
of 15-minute interval buckets."
::= { caviEgressIntervalEntry 1 }
caviIntEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells received from switch
at the traffic management and policing device
during a 15 minute interval."
::= { caviEgressIntervalEntry 2 }
caviIntEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells received from switch
at the traffic management and policing device
during a 15 minute interval."
::= { caviEgressIntervalEntry 3 }
caviIntEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells discarded due to policing
during a 15 minute interval."
::= { caviEgressIntervalEntry 4 }
caviIntEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells discarded due to policing
during a 15 minute interval."
::= { caviEgressIntervalEntry 5 }
caviIntEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells transmitted to the network
after traffic management and policing
during a 15 minute interval."
::= { caviEgressIntervalEntry 6 }
caviIntEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells transmitted to the network
after traffic management and policing during a 15 minute
interval."
::= { caviEgressIntervalEntry 7 }
caviIntEgrRcvOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM cells received from the switch
at the traffic management and policing device
during a 15 minute interval."
::= { caviEgressIntervalEntry 8 }
caviIntEgrRMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RM cells transmitted to the network from the switch
during a 15 minute interval."
::= { caviEgressIntervalEntry 9 }
caviIntEgrXmtEFCICells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EFCI cells transmitted to the network
after traffic management and policing during a 15 minute
interval."
::= { caviEgressIntervalEntry 10 }
caviIntEgrRcvEFCICells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EFCI cells received from the switch
at traffic management and policing device during a 15
minute interval."
::= { caviEgressIntervalEntry 11 }
caviIntEgrXmtOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM loopback cells transmitted to network
after traffic management and policing during a 15 minute
interval."
::= { caviEgressIntervalEntry 12 }
caviHighIntEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of the number of CLP-0 cells received
from switch at the traffic management and policing
device during a 15 minute interval."
::= { caviEgressIntervalEntry 13 }
caviHighIntEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of the number of CLP-1 cells received
from switch at the traffic management and policing
device during a 15 minute interval."
::= { caviEgressIntervalEntry 14 }
caviHighIntEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of the number of CLP-0 cells discarded
due to policing during a 15 minute interval."
::= { caviEgressIntervalEntry 15 }
caviHighIntEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of the number of CLP-1 cells discarded
due to policing during a 15 minute interval."
::= { caviEgressIntervalEntry 16 }
caviHighIntEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of the number of CLP-0 cells
transmitted to the network after traffic management and
policing during a 15 minute interval."
::= { caviEgressIntervalEntry 17 }
caviHighIntEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of the number of CLP-1 cells
transmitted to the network after traffic management and
policing during a 15 minute interval."
::= { caviEgressIntervalEntry 18 }
caviHIntEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-0 cells received
from switch at the traffic management and policing
device during a 15 minute interval."
::= { caviEgressIntervalEntry 19 }
caviHIntEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-1 cells received
from switch at the traffic management and policing
device during a 15 minute interval."
::= { caviEgressIntervalEntry 20 }
caviHIntEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-0 cells
discarded due to policing during a 15 minute
interval."
::= { caviEgressIntervalEntry 21 }
caviHIntEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-1 cells
discarded due to policing during a 15 minute
interval."
::= { caviEgressIntervalEntry 22 }
caviHIntEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-0 cells
transmitted to the network after traffic management and
policing during a 15 minute interval."
::= { caviEgressIntervalEntry 23 }
caviHIntEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64 bit version of the number of CLP-1 cells
transmitted to the network after traffic management and
policing during a 15 minute interval."
::= { caviEgressIntervalEntry 24 }
-- ---------------------------------------------------------------------
-- ATM Virtual Interface Ingress Statistics Table
-- ---------------------------------------------------------------------
caviStatIngressTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviStatIngressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table reflects real time statistics associated with
each of the ATM virtual interfaces on the ingress side."
::= { caviStatistics 3 }
caviStatIngressEntry OBJECT-TYPE
SYNTAX CaviStatIngressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for egress ATM virtual interface statistics. In all the following
descriptions,
CLP-0 means Cell Loss Priority = 0,
CLP-1 means Cell Loss Priority = 1.
Statistics are being collected before and after the traffic
management and policing device."
INDEX { ifIndex }
::= { caviStatIngressTable 1 }
CaviStatIngressEntry ::=
SEQUENCE {
caviIngRcvClp0Cells Counter32,
caviIngRcvClp1Cells Counter32,
caviIngClp0DiscCells Counter32,
caviIngClp1DiscCells Counter32,
caviIngXmtClp0Cells Counter32,
caviIngXmtClp1Cells Counter32,
caviIngRcvOAMCells Counter32,
caviIngRMCells Counter32,
caviIngXmtEFCICells Counter32,
caviIngRcvEFCICells Counter32,
caviIngXmtOAMCells Counter32,
caviHIngRcvClp0Cells Counter64,
caviHIngRcvClp1Cells Counter64,
caviHighIngRcvClp0Cells Counter32,
caviHighIngRcvClp1Cells Counter32,
caviHighIngClp0DiscCells Counter32,
caviHighIngClp1DiscCells Counter32,
caviHighIngXmtClp0Cells Counter32,
caviHighIngXmtClp1Cells Counter32,
caviHIngClp0DiscCells Counter64,
caviHIngClp1DiscCells Counter64,
caviHIngXmtClp0Cells Counter64,
caviHIngXmtClp1Cells Counter64
}
caviIngRcvClp0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells received from network
at the traffic management and policing device in
ingress direction."
::= {caviStatIngressEntry 1 }
caviIngRcvClp1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-1 cells received from network
at the traffic management and policing device in
ingress direction."
::= {caviStatIngressEntry 2 }
caviIngClp0DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP-0 cells discarded due to policing in
ingress direction."
::= {caviStatIngressEntry 3 }
caviIngClp1DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only