-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-ATM-CELL-LAYER-MIB.mib
1776 lines (1606 loc) · 61.4 KB
/
CISCO-ATM-CELL-LAYER-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
-- *****************************************************************
-- ciscoAtmCellLayer MIB
--
-- March 1999, Shilpa Kale
--
-- May 2000, Prashant Desai
--
-- April 2002, Sundar Ramamoorthy, Prasanna Mucharikar
--
-- Copyright (c) 1998, 2002 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-ATM-CELL-LAYER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
Counter32,
Counter64,
Integer32,
OBJECT-TYPE,
Gauge32,
Unsigned32 FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
TruthValue FROM SNMPv2-TC
ifIndex FROM IF-MIB
ciscoMgmt FROM CISCO-SMI;
ciscoAtmCellLayerMIB MODULE-IDENTITY
LAST-UPDATED "200206280000Z"
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 : [email protected]"
DESCRIPTION
"The MIB module to describe ATM cell layer objects and statistics
of a physical line."
REVISION "200206280000Z"
DESCRIPTION
"1. Added following objects to caclStatsTable, as
upper 32-bits for 64-bit wide counters:
caclHighInRcvCLP0Cells, caclHighInRcvCLP1Cells,
caclHighInValidOAMCells, caclHighInVpiVciErrCells,
caclHighInXmtCLP0Cells, caclHighInXmtCLP1Cells,
caclHighInHecErrDiscCells, caclHighInHecErrCorrectedCells,
caclHighOutXmtCLP0Cells, caclHighOutXmtCLP1Cells,
caclHighOutValidOAMCells, caclHighOutRcvCLP0Cells,
caclHighOutRcvCLP1Cells.
2. Added caclXStatsTable which contains 64-bits wide
counters.
3. Added following objects to caclIntervalStatsTable, as
upper 32-bits for 64-bit wide counters:
caclHighIntervalInRcvCLP0Cells,
caclHighIntervalInRcvCLP1Cells,
caclHighIntervalInVpiVciErrCells,
caclHighIntervalInXmtCLP0Cells,
caclHighIntervalInXmtCLP1Cells,
caclHighIntervalInHecErrDiscCells,
caclHighIntervalInHecErrCorrCells,
caclHighIntervalOutXmtCLP0Cells,
caclHighIntervalOutXmtCLP1Cells,
caclHighIntervalOutVpiVciErrCells,
caclHighIntervalOutRcvCLP0Cells,
caclHighIntervalOutRcvCLP1Cells.
4. Added caclXIntervalStatsTable which contains 64-bits
wide counters.
5. Changed IMPORT for Unsigned32 to SNMPv2-SMI, instead
of CISCO-TC."
REVISION "200005020000Z"
DESCRIPTION
"Changes made to this MIB module are as follows
(1) Added interval statistic table.
(2) Corrected some of the typographical errors in description of
certain published objects."
REVISION "9905030000Z"
DESCRIPTION
"The initial version of this MIB module."
::= { ciscoMgmt 133 }
ciscoAtmCellLayerMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmCellLayerMIB 1}
caclConfig OBJECT IDENTIFIER ::= { ciscoAtmCellLayerMIBObjects 1}
caclStats OBJECT IDENTIFIER ::= { ciscoAtmCellLayerMIBObjects 2}
-- ---------------------------------------------------------------------
--
-- Atm Cell Layer Config Group
--
-- ---------------------------------------------------------------------
caclConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaclConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Atm cell layer configuration table.
An entry in this table is automatically created for each entry
in the ifTable which has an ifType of atm(37), and which is
layered on top of a SONET,DS3 or DS1 interface on the ATM switch."
::= { caclConfig 1 }
caclConfigEntry OBJECT-TYPE
SYNTAX CaclConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the caclConfigTable. The table is indexed by the
ifIndex of the atm(37) interface."
INDEX { ifIndex }
::= { caclConfigTable 1 }
CaclConfigEntry ::=
SEQUENCE {
caclNullCellHeader OCTET STRING,
caclNullCellPayload Unsigned32,
caclHecCosetEnable TruthValue,
caclPayloadScramblingEnable TruthValue,
caclTimeElapsed INTEGER,
caclValidIntervals INTEGER,
caclInvalidIntervals INTEGER
}
caclNullCellHeader OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The first four bytes of the ATM header to be used for
Null cells. Generally, idle cells are inserted into a cell
stream as a mechanism for rate adaptation between the ATM
data link layer and the physical layer. The header fields:
Generic flow control,Payload type and Cell Loss Priority can
be specified in the value of this object. It applies to both
transmitted as well as received cells."
REFERENCE
"ITU-T Recomendation I.432"
::= { caclConfigEntry 1 }
caclNullCellPayload OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Null cell Payload definition. The idle cell
information field can be specified in this object. It applies
to both transmitted as well as received cells.
The default value is 0x6A."
REFERENCE
"ITU-T Recomendation I.432"
DEFVAL { '6A'h }
::= { caclConfigEntry 2 }
caclHecCosetEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enabled, the algorithm of Coset Polynomial Addition is applied
to do header error check calculations.
It applies to transmitted as well as received cells."
REFERENCE
"ITU-T Recomendation I.432"
DEFVAL { true }
::= { caclConfigEntry 3 }
caclPayloadScramblingEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether Payload Scrambling is enabled."
REFERENCE
"ITU-T Recomendation I.432"
DEFVAL { true }
::= { caclConfigEntry 4 }
caclTimeElapsed OBJECT-TYPE
SYNTAX INTEGER (0..899)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds that have elapsed since the
beginning of the near end current error-
measurement period. If, for some reason, such as
an adjustment in the system's time-of-day clock,
the current interval exceeds the maximum value,
the agent will return the maximum value."
::= { caclConfigEntry 5 }
caclValidIntervals OBJECT-TYPE
SYNTAX INTEGER (0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of previous near end intervals for
which data was collected. The value will be
96 unless the interface was brought online within
the last 24 hours, in which case the value will be
the number of complete 15 minute near end
intervals since the interface has been online. In
the case where the agent is a proxy, it is
possible that some intervals are unavailable. In
this case, this interval is the maximum interval
number for which data is available."
::= { caclConfigEntry 6 }
caclInvalidIntervals OBJECT-TYPE
SYNTAX INTEGER (0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of near end intervals in the range from 0 to
caclValidIntervals for which no data is
available. This object will typically be zero
except in cases where the data for some intervals
are not available (e.g., in proxy situations)."
::= { caclConfigEntry 7 }
-- --------------------------------------------------------------------
--
-- ATM Cell layer statistics Group
--
-- --------------------------------------------------------------------
caclStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaclStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ATM Cell layer stats table is for the cell layer over
a physical line. There is an entry for each SONET, DS3 or DS1
line. The table maintains objects that apply to ATM
end-systems, as well as objects that apply only to ATM switches.
In all the following descriptions of objects,
CLP-0 means Cell Loss Priority = 0, and
CLP-1 means Cell Loss Priority = 1.
ATM cells with CLP=0 have a higher priority in regard to cell
loss than ATM cells with CLP=1. Therefore, during resource
congestions, CLP=1 cells are dropped before any CLP=0 cell is
dropped.
Ingress direction means coming from network to the switch.
Egress direction means going from switch to the network."
::= { caclStats 1 }
caclStatsEntry OBJECT-TYPE
SYNTAX CaclStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for the ATM Cell layer statistics for a physical
line. These are realtime statistics which are collected per
cell layer over a physical line. Entries are created
automatically for each line.
The table is indexed by the ifIndex value of the
atm(37) interface."
INDEX { ifIndex}
::= { caclStatsTable 1 }
CaclStatsEntry ::=
SEQUENCE {
caclInRcvCLP0Cells Counter32,
caclInRcvCLP1Cells Counter32,
caclInValidOAMCells Counter32,
caclInErrOAMCells Counter32,
caclInGfcCells Counter32,
caclInVpiVciErrCells Counter32,
caclInLastUnknVpi Integer32,
caclInLastUnknVci Integer32,
caclInXmtCLP0Cells Counter32,
caclInXmtCLP1Cells Counter32,
caclInValidRMCells Counter32,
caclInRcvIdleCells Counter32,
caclInHecErrDiscCells Counter32,
caclInHecErrCorrectedCells Counter32,
caclInUpcCLP0DiscCells Counter32,
caclInUpcTotalDiscCells Counter32,
caclInUpcTotalNonCompCells Counter32,
caclOutXmtCLP0Cells Counter32,
caclOutXmtCLP1Cells Counter32,
caclOutValidOAMCells Counter32,
caclOutErrOAMCells Counter32,
caclOutVpiVciErrCells Counter32,
caclOutRcvCLP0Cells Counter32,
caclOutRcvCLP1Cells Counter32,
caclOutRcvValidRMCells Counter32,
caclOutRcvIdleCells Counter32,
caclHInRcvCLP0Cells Counter64,
caclHInRcvCLP1Cells Counter64,
caclHOutXmtCLP0Cells Counter64,
caclHOutXmtCLP1Cells Counter64,
caclHighInRcvCLP0Cells Counter32,
caclHighInRcvCLP1Cells Counter32,
caclHighInValidOAMCells Counter32,
caclHighInVpiVciErrCells Counter32,
caclHighInXmtCLP0Cells Counter32,
caclHighInXmtCLP1Cells Counter32,
caclHighInHecErrDiscCells Counter32,
caclHighInHecErrCorrectedCells Counter32,
caclHighOutXmtCLP0Cells Counter32,
caclHighOutXmtCLP1Cells Counter32,
caclHighOutValidOAMCells Counter32,
caclHighOutRcvCLP0Cells Counter32,
caclHighOutRcvCLP1Cells Counter32
}
caclInRcvCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received on the interface with
CLP0 bit set."
::= {caclStatsEntry 1 }
caclInRcvCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received on the interface with
CLP1 bit set."
::= {caclStatsEntry 2 }
caclInValidOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of valid Operation and Maintainance(OAM) cells
received on the interface."
::= {caclStatsEntry 3 }
caclInErrOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errored OAM cells received on the interface."
::= {caclStatsEntry 4 }
caclInGfcCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-zero GFC cells received on the interface."
::= {caclStatsEntry 5 }
caclInVpiVciErrCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received from the interface
with unknown Vpi/Vci values."
::= { caclStatsEntry 6 }
caclInLastUnknVpi OBJECT-TYPE
SYNTAX Integer32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last unknown Vpi value. This object is valid only
if 'caclInVpiVciErrCells' is non-zero."
::= { caclStatsEntry 7 }
caclInLastUnknVci OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last unknown Vci value. This object is valid only
if 'caclInVpiVciErrCells' is non-zero."
::= { caclStatsEntry 8 }
caclInXmtCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP0 cells received from the interface
and transmitted to the switch fabric."
::= {caclStatsEntry 9 }
caclInXmtCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP1 cells received from the interface
and transmitted to the switch fabric."
::= {caclStatsEntry 10 }
caclInValidRMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Valid RM cells received from the interface."
::= {caclStatsEntry 11 }
caclInRcvIdleCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of idle cells received from the interface."
::= {caclStatsEntry 12 }
caclInHecErrDiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Header Error Check (HEC) calculation is used to provide error
detection and correction from the ATM cell header. This object
is the number of received cells which were discarded because
they had HEC errors."
::= { caclStatsEntry 13 }
caclInHecErrCorrectedCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received cells which had HEC errors
that were corrected."
::= { caclStatsEntry 14 }
caclInUpcCLP0DiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In order to allocate resources fairly among different users,
networks police traffic at resource access points. The traffic
enforcement or policing taken at a UNI is called Usage Parameter
Control (UPC). This is the counter associated with the number
of CLP0 cells discarded due to policing."
::= { caclStatsEntry 15 }
caclInUpcTotalDiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of cells(CLP0+1) discarded due to policing."
::= { caclStatsEntry 16 }
caclInUpcTotalNonCompCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-compliant cells (cells that are not compliant
to a specific traffic profile) discarded due to policing."
::= { caclStatsEntry 17 }
caclOutXmtCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP0 cells transmitted to interface."
::= { caclStatsEntry 18 }
caclOutXmtCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP1 cells transmitted to interface."
::= { caclStatsEntry 19 }
caclOutValidOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Operartion and Maintainance(OAM) cells received
by the interface from the switch fabric."
::= {caclStatsEntry 20 }
caclOutErrOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errored OAM cells received by the interface
from the switch fabric."
::= {caclStatsEntry 21 }
caclOutVpiVciErrCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells with unknown vpi vci value in
received by the interface from the switch fabric."
::= {caclStatsEntry 22 }
caclOutRcvCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP0 cells received by the interface
from the switch fabric."
::= {caclStatsEntry 23 }
caclOutRcvCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP1 cells received by the interface
from the switch fabric."
::= {caclStatsEntry 24 }
caclOutRcvValidRMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Valid RM cells received by the interface
from the switch fabric."
::= {caclStatsEntry 25 }
caclOutRcvIdleCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of idle cells received by the interface
from the switch fabric."
::= {caclStatsEntry 26 }
caclHInRcvCLP0Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64-bit version of caclInRcvCLP0Cells."
::= {caclStatsEntry 27 }
caclHInRcvCLP1Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64-bit version of caclnRcvCLP1Cells."
::= {caclStatsEntry 28 }
caclHOutXmtCLP0Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64-bit version of caclOutXmtCLP0Cells."
::= {caclStatsEntry 29 }
caclHOutXmtCLP1Cells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 64-bit version of caclOutXmtCLP1Cells."
::= {caclStatsEntry 30 }
caclHighInRcvCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of cells received on the
interface with CLP0 bit set."
::= {caclStatsEntry 31 }
caclHighInRcvCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of cells received on the
interface with CLP1 bit set."
::= {caclStatsEntry 32 }
caclHighInValidOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of valid Operation and
Maintainance(OAM) cells received on the interface."
::= {caclStatsEntry 33 }
caclHighInVpiVciErrCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of cells received from the
interface with unknown Vpi/Vci values."
::= { caclStatsEntry 34 }
caclHighInXmtCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of CLP0 cells received from
the interface and transmitted to the switch fabric."
::= {caclStatsEntry 35 }
caclHighInXmtCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of CLP1 cells received from
the interface and transmitted to the switch fabric."
::= {caclStatsEntry 36 }
caclHighInHecErrDiscCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Header Error Check (HEC) calculation is used to provide error
detection and correction from the ATM cell header. This
object is the upper 32 bit of the number of received cells
which were discarded because they had HEC errors."
::= { caclStatsEntry 37 }
caclHighInHecErrCorrectedCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of received cells which had
HEC errors that were corrected."
::= { caclStatsEntry 38 }
caclHighOutXmtCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of CLP0 cells transmitted to
interface."
::= { caclStatsEntry 39 }
caclHighOutXmtCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of CLP1 cells transmitted to
interface."
::= { caclStatsEntry 40 }
caclHighOutValidOAMCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of Operartion and
Maintainance(OAM) cells received by the interface from the
switch fabric."
::= {caclStatsEntry 41 }
caclHighOutRcvCLP0Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of CLP0 cells received by
the interface from the switch fabric."
::= {caclStatsEntry 42 }
caclHighOutRcvCLP1Cells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bit of the number of CLP1 cells received by
the interface from the switch fabric."
::= {caclStatsEntry 43 }
-- --------------------------------------------------------------------
--
-- ATM Cell layer interval statistics
--
-- --------------------------------------------------------------------
caclIntervalStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaclIntervalStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ATM Cell layer interval stats table. This table contains
statistics for the current (incomplete) interval and upto
96 previous (completed) 15-minute intervals."
::= { caclStats 2 }
caclIntervalStatsEntry OBJECT-TYPE
SYNTAX CaclIntervalStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for the ATM Cell layer interval statistics for a
physical line. Entries are created automatically for each
line. The table is indexed by the ifIndex and interval
number. Interval number 0 is the current interval being
collected."
INDEX { ifIndex, caclIntervalNumber }
::= { caclIntervalStatsTable 1 }
CaclIntervalStatsEntry ::=
SEQUENCE {
caclIntervalNumber INTEGER,
caclIntervalInRcvCLP0Cells Gauge32,
caclIntervalInRcvCLP1Cells Gauge32,
caclIntervalInValidOAMCells Gauge32,
caclIntervalInErrOAMCells Gauge32,
caclIntervalInGfcCells Gauge32,
caclIntervalInVpiVciErrCells Gauge32,
caclIntervalInLastUnknVpi Integer32,
caclIntervalInLastUnknVci Integer32,
caclIntervalInXmtCLP0Cells Gauge32,
caclIntervalInXmtCLP1Cells Gauge32,
caclIntervalInValidRMCells Gauge32,
caclIntervalInRcvIdleCells Gauge32,
caclIntervalInHecErrDiscCells Gauge32,
caclIntervalInHecErrCorrCells Gauge32,
caclIntervalInUpcCLP0DiscCells Gauge32,
caclIntervalInUpcTotalDiscCells Gauge32,
caclIntervalInUpcTotNonCmpCells Gauge32,
caclIntervalOutXmtCLP0Cells Gauge32,
caclIntervalOutXmtCLP1Cells Gauge32,
caclIntervalOutValidOAMCells Gauge32,
caclIntervalOutErrOAMCells Gauge32,
caclIntervalOutVpiVciErrCells Gauge32,
caclIntervalOutRcvCLP0Cells Gauge32,
caclIntervalOutRcvCLP1Cells Gauge32,
caclIntervalOutRcvValidRMCells Gauge32,
caclIntervalOutRcvIdleCells Gauge32,
caclHighIntervalInRcvCLP0Cells Gauge32,
caclHighIntervalInRcvCLP1Cells Gauge32,
caclHighIntervalInVpiVciErrCells Gauge32,
caclHighIntervalInXmtCLP0Cells Gauge32,
caclHighIntervalInXmtCLP1Cells Gauge32,
caclHighIntervalInHecErrDiscCells Gauge32,
caclHighIntervalInHecErrCorrCells Gauge32,
caclHighIntervalOutXmtCLP0Cells Gauge32,
caclHighIntervalOutXmtCLP1Cells Gauge32,
caclHighIntervalOutVpiVciErrCells Gauge32,
caclHighIntervalOutRcvCLP0Cells Gauge32,
caclHighIntervalOutRcvCLP1Cells Gauge32
}
caclIntervalNumber OBJECT-TYPE
SYNTAX INTEGER (0..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number between 0 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the 15 minutes interval completed 23 hours and 45
minutes prior to interval 1. 0 means the current
interval being collected."
::= { caclIntervalStatsEntry 1 }
caclIntervalInRcvCLP0Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received on the interface with
CLP0 bit set during 15 minute interval."
::= { caclIntervalStatsEntry 2 }
caclIntervalInRcvCLP1Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received on the interface with
CLP1 bit set during 15 minute interval."
::= { caclIntervalStatsEntry 3 }
caclIntervalInValidOAMCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of valid Operation and Maintainance(OAM) cells
received on the interface during 15 minute interval."
::= { caclIntervalStatsEntry 4 }
caclIntervalInErrOAMCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errored OAM cells received on the interface
during 15 minute interval."
::= { caclIntervalStatsEntry 5 }
caclIntervalInGfcCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-zero GFC cells received on the interface
during 15 minute interval."
::= { caclIntervalStatsEntry 6 }
caclIntervalInVpiVciErrCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received from the interface
with unknown Vpi/Vci values during 15 minute interval."
::= { caclIntervalStatsEntry 7 }
caclIntervalInLastUnknVpi OBJECT-TYPE
SYNTAX Integer32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last unknown Vpi value during 15 minute interval.
This object is valid only if the value of
'caclIntervalInVpiVciErrCells' for the same interval
is non-zero."
::= { caclIntervalStatsEntry 8 }
caclIntervalInLastUnknVci OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last unknown Vci value during 15 minute interval.
This object is valid only if the value of
'caclIntervalInVpiVciErrCells' for the same interval
is non-zero."
::= { caclIntervalStatsEntry 9 }
caclIntervalInXmtCLP0Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP0 cells received from the interface
and transmitted to the switch fabric during 15 minute
interval."
::= {caclIntervalStatsEntry 10 }
caclIntervalInXmtCLP1Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP1 cells received from the interface
and transmitted to the switch fabric during 15 minute
interval."
::= {caclIntervalStatsEntry 11 }
caclIntervalInValidRMCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Valid RM cells received from the interface
during 15 minute interval."
::= {caclIntervalStatsEntry 12 }
caclIntervalInRcvIdleCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of idle cells received from the interface
during 15 minute interval."
::= {caclIntervalStatsEntry 13 }
caclIntervalInHecErrDiscCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the number of received cells which were
discarded because they had HEC errors during 15 minute
interval."
::= { caclIntervalStatsEntry 14 }
caclIntervalInHecErrCorrCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received cells which had HEC errors
that were corrected during 15 minute interval."
::= { caclIntervalStatsEntry 15 }
caclIntervalInUpcCLP0DiscCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the counter associated with the number of CLP0
cells discarded due to policing during 15 minute interval."
::= { caclIntervalStatsEntry 16 }
caclIntervalInUpcTotalDiscCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of cells(CLP0+1) discarded due to policing
during 15 minute interval."
::= { caclIntervalStatsEntry 17 }
caclIntervalInUpcTotNonCmpCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-compliant cells (cells that are not
compliant to a specific traffic profile) discarded due to
policing during 15 minute interval."
::= { caclIntervalStatsEntry 18 }
caclIntervalOutXmtCLP0Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP0 cells transmitted to interface during
15 minute interval."
::= { caclIntervalStatsEntry 19 }
caclIntervalOutXmtCLP1Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CLP1 cells transmitted to interface during
15 minute interval."
::= { caclIntervalStatsEntry 20 }
caclIntervalOutValidOAMCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Operartion and Maintainance(OAM) cells received
by the interface from the switch fabric during 15 minute
interval."
::= { caclIntervalStatsEntry 21 }
caclIntervalOutErrOAMCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errored OAM cells received by the interface
from the switch fabric during 15 minute interval."
::= { caclIntervalStatsEntry 22 }
caclIntervalOutVpiVciErrCells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells with unknown vpi vci value in
received by the interface from the switch fabric
during 15 minute interval."
::= { caclIntervalStatsEntry 23 }
caclIntervalOutRcvCLP0Cells OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION