-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-ATM-VIRTUAL-IF-MIB-V1SMI.my
1787 lines (1625 loc) · 57.3 KB
/
CISCO-ATM-VIRTUAL-IF-MIB-V1SMI.my
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
-- MIB file created 07-Jan-2004 18:20:47, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-ATM-VIRTUAL-IF-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-ATM-VIRTUAL-IF-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
RowStatus
FROM SNMPv2-TC-v1
AtmVpIdentifier
FROM ATM-TC-MIB
InterfaceIndex, ifIndex
FROM IF-MIB
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoAtmVirtualIfMIB OBJECT IDENTIFIER ::= { ciscoMgmt 129 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200210110000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- The MIB module to manage ATM Virtual interface objects.
-- ATM virtual interfaces are configured on a physical line.
-- RevDate
-- 200210110000Z
-- RevDescr
-- 1. Added caviIngressIntervalTable.
-- RevDate
-- 200205070000Z
-- RevDescr
-- 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.
-- RevDate
-- 200109030000Z
-- RevDescr
-- Added caviMinVpiNum and caviMaxVpiNum. Modified description
-- for caviEntry and caviIfType.
-- RevDate
-- 200008110000Z
-- RevDescr
-- Changed description of objects caviMinRate and caviMaxRate.
-- Modified range for caviMinRate, caviMaxRate and
-- caviFileId.
-- RevDate
-- 200001140000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoAtmVirtualIfMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIB 1 }
caviConfig OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIBObjects 1 }
caviStatistics OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIBObjects 2 }
caviMIBConformance OBJECT IDENTIFIER ::= { ciscoAtmVirtualIfMIB 3 }
caviMIBCompliances OBJECT IDENTIFIER ::= { caviMIBConformance 1 }
caviMIBGroups OBJECT IDENTIFIER ::= { caviMIBConformance 2 }
caviTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviEntry
ACCESS not-accessible
STATUS mandatory
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
ACCESS not-accessible
STATUS mandatory
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 INTEGER,
caviPhyIfIndex InterfaceIndex,
caviViIfIndex InterfaceIndex,
caviMinRate Gauge,
caviMaxRate Gauge,
caviFileId Gauge,
caviIfType INTEGER,
caviVpiNum AtmVpIdentifier,
caviRowStatus RowStatus,
caviMinVpiNum AtmVpIdentifier,
caviMaxVpiNum AtmVpIdentifier
}
caviIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A unique value for the ATM virtual interface."
::= { caviEntry 1 }
caviPhyIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
-- Rsyntax INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
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
-- Rsyntax INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
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 Gauge
-- Units
-- cells-per-second
ACCESS read-write
STATUS mandatory
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 Gauge
-- Units
-- cells-per-second
ACCESS read-write
STATUS mandatory
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 Gauge
ACCESS read-write
STATUS mandatory
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)
}
ACCESS read-write
STATUS mandatory
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
-- Rsyntax INTEGER(0..4095)
ACCESS read-write
STATUS mandatory
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
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
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
-- Rsyntax INTEGER(0..4095)
ACCESS read-write
STATUS mandatory
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
-- Rsyntax INTEGER(0..4095)
ACCESS read-write
STATUS mandatory
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 }
caviStatEgressTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviStatEgressEntry
ACCESS not-accessible
STATUS mandatory
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
ACCESS not-accessible
STATUS mandatory
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 Counter,
caviEgrRcvClp1Cells Counter,
caviEgrClp0DiscCells Counter,
caviEgrClp1DiscCells Counter,
caviEgrXmtClp0Cells Counter,
caviEgrXmtClp1Cells Counter,
caviEgrRcvOAMCells Counter,
caviEgrRMCells Counter,
caviEgrXmtEFCICells Counter,
caviEgrRcvEFCICells Counter,
caviEgrXmtOAMCells Counter,
caviHEgrXmtClp0Cells Counter,
caviHEgrXmtClp1Cells Counter,
caviHighEgrRcvClp0Cells Counter,
caviHighEgrRcvClp1Cells Counter,
caviHighEgrClp0DiscCells Counter,
caviHighEgrClp1DiscCells Counter,
caviHighEgrXmtClp0Cells Counter,
caviHighEgrXmtClp1Cells Counter,
caviHEgrRcvClp0Cells Counter,
caviHEgrRcvClp1Cells Counter,
caviHEgrClp0DiscCells Counter,
caviHEgrClp1DiscCells Counter
}
caviEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-0 cells received from switch
at the traffic management and policing device."
::= { caviStatEgressEntry 1 }
caviEgrRcvClp1Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-1 cells received from switch
at the traffic management and policing device."
::= { caviStatEgressEntry 2 }
caviEgrClp0DiscCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-0 cells discarded due to policing."
::= { caviStatEgressEntry 3 }
caviEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-1 cells discarded due to policing."
::= { caviStatEgressEntry 4 }
caviEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-0 cells transmitted to the network
after traffic management and policing."
::= { caviStatEgressEntry 5 }
caviEgrXmtClp1Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-1 cells transmitted to the network
after traffic management and policing."
::= { caviStatEgressEntry 6 }
caviEgrRcvOAMCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of OAM cells received from the switch
at the traffic management and policing device."
::= { caviStatEgressEntry 7 }
caviEgrRMCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of RM cells transmitted to the network from the switch."
::= { caviStatEgressEntry 8 }
caviEgrXmtEFCICells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of EFCI cells transmitted to the network
after traffic management and policing."
::= { caviStatEgressEntry 9 }
caviEgrRcvEFCICells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of EFCI cells received from the switch
at traffic management and policing device."
::= { caviStatEgressEntry 10 }
caviEgrXmtOAMCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of OAM loopback cells transmitted to network
after traffic management and policing."
::= { caviStatEgressEntry 11 }
caviHEgrXmtClp0Cells OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 64-bit version of caviEgrXmtClp0Cells."
::= { caviStatEgressEntry 12 }
caviHEgrXmtClp1Cells OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 64-bit version of caviEgrXmtClp1Cells."
::= { caviStatEgressEntry 13 }
caviHighEgrRcvClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Upper 32 bit of the number of CLP-0 cells discarded
due to policing."
::= { caviStatEgressEntry 16 }
caviHighEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Upper 32 bit of the number of CLP-1 cells discarded
due to policing."
::= { caviStatEgressEntry 17 }
caviHighEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 64 bit version of the number of CLP-0 cells
discarded due to policing."
::= { caviStatEgressEntry 22 }
caviHEgrClp1DiscCells OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 64 bit version of the number of CLP-1 cells
discarded due to policing."
::= { caviStatEgressEntry 23 }
caviEgressIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviEgressIntervalEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table reflects interval statistics associated with
each of the ATM virtual interfaces in egress direction."
::= { caviStatistics 2 }
caviEgressIntervalEntry OBJECT-TYPE
SYNTAX CaviEgressIntervalEntry
ACCESS not-accessible
STATUS mandatory
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 Gauge,
caviIntEgrRcvClp0Cells Counter,
caviIntEgrRcvClp1Cells Counter,
caviIntEgrClp0DiscCells Counter,
caviIntEgrClp1DiscCells Counter,
caviIntEgrXmtClp0Cells Counter,
caviIntEgrXmtClp1Cells Counter,
caviIntEgrRcvOAMCells Counter,
caviIntEgrRMCells Counter,
caviIntEgrXmtEFCICells Counter,
caviIntEgrRcvEFCICells Counter,
caviIntEgrXmtOAMCells Counter,
caviHighIntEgrRcvClp0Cells Counter,
caviHighIntEgrRcvClp1Cells Counter,
caviHighIntEgrClp0DiscCells Counter,
caviHighIntEgrClp1DiscCells Counter,
caviHighIntEgrXmtClp0Cells Counter,
caviHighIntEgrXmtClp1Cells Counter,
caviHIntEgrRcvClp0Cells Counter,
caviHIntEgrRcvClp1Cells Counter,
caviHIntEgrClp0DiscCells Counter,
caviHIntEgrClp1DiscCells Counter,
caviHIntEgrXmtClp0Cells Counter,
caviHIntEgrXmtClp1Cells Counter
}
caviEgressIntervalNumber OBJECT-TYPE
SYNTAX Gauge(0..96)
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-0 cells discarded due to policing
during a 15 minute interval."
::= { caviEgressIntervalEntry 4 }
caviIntEgrClp1DiscCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-1 cells discarded due to policing
during a 15 minute interval."
::= { caviEgressIntervalEntry 5 }
caviIntEgrXmtClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of RM cells transmitted to the network from the switch
during a 15 minute interval."
::= { caviEgressIntervalEntry 9 }
caviIntEgrXmtEFCICells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
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 }
caviStatIngressTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaviStatIngressEntry
ACCESS not-accessible
STATUS mandatory
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
ACCESS not-accessible
STATUS mandatory
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 Counter,
caviIngRcvClp1Cells Counter,
caviIngClp0DiscCells Counter,
caviIngClp1DiscCells Counter,
caviIngXmtClp0Cells Counter,
caviIngXmtClp1Cells Counter,
caviIngRcvOAMCells Counter,
caviIngRMCells Counter,
caviIngXmtEFCICells Counter,
caviIngRcvEFCICells Counter,
caviIngXmtOAMCells Counter,
caviHIngRcvClp0Cells Counter,
caviHIngRcvClp1Cells Counter,
caviHighIngRcvClp0Cells Counter,
caviHighIngRcvClp1Cells Counter,
caviHighIngClp0DiscCells Counter,
caviHighIngClp1DiscCells Counter,
caviHighIngXmtClp0Cells Counter,
caviHighIngXmtClp1Cells Counter,
caviHIngClp0DiscCells Counter,
caviHIngClp1DiscCells Counter,
caviHIngXmtClp0Cells Counter,
caviHIngXmtClp1Cells Counter
}
caviIngRcvClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
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 Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CLP-0 cells discarded due to policing in
ingress direction."
::= { caviStatIngressEntry 3 }