forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-ATM-TRUNK-STAT-MIB.mib
1499 lines (1372 loc) · 49.7 KB
/
CISCO-ATM-TRUNK-STAT-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
-- *****************************************************************
-- CISCO-ATM-TRUNK-STAT-MIB
-- The MIB contains ATM PVC/CID statistics
--
-- April 2004, Rashmi Purandare, Animesh Patel, George Ogagan
-- August 2005 Rashmi Purandare
--
-- Copyright (c) 2004, 2005 by Cisco Systems, Inc.
-- All rights reserved.
-- ****************************************************************
CISCO-ATM-TRUNK-STAT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32,
Counter32 FROM SNMPv2-SMI
TruthValue,
TimeStamp FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
ciscoMgmt FROM CISCO-SMI
ifIndex FROM IF-MIB
AtmVcIdentifier,
AtmVpIdentifier FROM ATM-TC-MIB;
ciscoAtmTrunkStatMIB MODULE-IDENTITY
LAST-UPDATED "200508100000Z"
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 contains ATM Trunk statistics.
TERMINOLOGY
-----------
PVC: Permanent Virtual Circuit
OAM: Operation and Management
CRC: Cyclic redundancy check
AIS: Alarm Indication Signal
TDM: Time Division Multiplex
FERF: Far End Receive Failure
CPS: Common Part Sub-layer
PDU: Protocol Data Unit
HEC: Header Error Control
DSP: Digital Signal Processing
CID: Channel Identifier
UUI: User-to-User Information
VoIP: Voice over IP
CCS: Common Channel Signaling
VoAAL2: Voice over AAL2
SDU: Service Data Unit
HDLC: High Level Data Link Control
SAR: Segmantation and Reassembly
External AIS - is an Alarm Indication Signal associated
with a maintenance alarm detected on a defective
maintenance span, that is transmitted in the direction
of the defect as a substitute for normal signal.
The purpose is to show the downstream entities that
a defect has been identified and to prevent other
maintenance alarms consequent to this first defect.
External AIS bit stream is represented by an all 1's
signal.
Ref - ITU-T Rec. M.20 sec. 5.4.2 a
External RAI - is a Remote Alarm Indication signal
that is transmitted upstream from an entity that has
detected defects persisting long enough to constitute
a received signal failure. Its purpose is to report in
the backward direction that there is an interruption
of service in the forward direction.
The forward direction is from the originating end of
the alarm to the remote end.
The backward direction is from the remote end to the
orginating end of the alarm.
Ref - ITU-T Rec. G.704 section 2.1.3.1.3
I.366.2 - ANNEX N
External Connection AIS - is a Alarm Indicating Signal
transmitted in the downstream direction from the AAL
type 2 connecting point that first detects a defect
affecting the AAL type 2 connection; this includes
defects indicated by lower layers.
Ref - ITU-T Rec. I.610 sec 6.2.2.1.1.1
External Connection RDI - is a signal transmitted upstream
by an AAl type 2 endpoint that is in an alarm state as the
result of having received an AAL type2 connection AIS or
having detected a defect that affects the AAL type2
connection.
All ATM alarm definitions are specified in I.610
(ITU standard).
"
REVISION "200508100000Z"
DESCRIPTION
"Add new objects
- catsPvcOamLpbkTimeoutCnts
- catsPvcNewOamLpbkTimeoutDur
- catsPvcActiveOamLpbkTimeoutDur
- catsPvcOamLpbkTimeoutThreshold"
REVISION "200405120000Z"
DESCRIPTION
"Initial version of the MIB."
::= { ciscoMgmt 407 }
ciscoAtmTrunkStatNotifs OBJECT IDENTIFIER ::=
{ ciscoAtmTrunkStatMIB 0 }
ciscoAtmTrunkStatObjects OBJECT IDENTIFIER ::=
{ ciscoAtmTrunkStatMIB 1 }
catsStatistics OBJECT IDENTIFIER ::=
{ ciscoAtmTrunkStatObjects 1 }
catsPvcHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CatsPvcHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents a 24 hour history of
statistics per PVC. The statistics are collected
using 15 minute intervals.
Entries in this table are populated at the
end of the interval.
"
::= { catsStatistics 1 }
catsPvcHistoryEntry OBJECT-TYPE
SYNTAX CatsPvcHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table. Each entry represents the PVC
statistics for a given 15 minute interval.
The ifIndex refers to the instance in the ifTable
with ifType propAtm(197) or atm(37).
"
INDEX { ifIndex,
catsPvcVpi,
catsPvcVci,
catsPvcIntervalIndex
}
::= { catsPvcHistoryTable 1 }
CatsPvcHistoryEntry ::=
SEQUENCE {
catsPvcVpi AtmVpIdentifier,
catsPvcVci AtmVcIdentifier,
catsPvcIntervalIndex Unsigned32,
catsPvcValidFlag TruthValue,
catsPvcDiscontinuityTime TimeStamp,
catsPvcAtmXmtCells Counter32,
catsPvcAtmRcvCells Counter32,
catsPvcAvgAtmXmtCells Counter32,
catsPvcAvgAtmRcvCells Counter32,
catsPvcPeakAtmXmtCells Counter32,
catsPvcPeakAtmRcvCells Counter32,
catsPvcOamXmtEndLpbkCells Counter32,
catsPvcOamRcvEndLpbkCells Counter32,
catsPvcOamXmtSegLpbkCells Counter32,
catsPvcOamRcvSegLpbkCells Counter32,
catsPvcOamLpbkLostCells Counter32,
catsPvcDiscardedRcvOamCells Counter32,
catsPvcAisSuppressCnts Counter32,
catsPvcXmtAisCnts Counter32,
catsPvcRcvAisCnts Counter32,
catsPvcXmtFerfCnts Counter32,
catsPvcRcvFerfCnts Counter32,
catsPvcXmtAisCells Counter32,
catsPvcRcvAisCells Counter32,
catsPvcXmtFerfCells Counter32,
catsPvcRcvFerfCells Counter32,
catsPvcOamLpbkTimeoutCnts Counter32,
catsPvcNewOamLpbkTimeoutDur Unsigned32,
catsPvcActiveOamLpbkTimeoutDur Unsigned32,
catsPvcOamLpbkTimeoutThreshold Unsigned32
}
catsPvcVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The VPI value for the PVC for which the
statistics are being collected.
"
::= { catsPvcHistoryEntry 1 }
catsPvcVci OBJECT-TYPE
SYNTAX AtmVcIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The VCI value for the PVC for which the
statistics are being collected.
"
::= { catsPvcHistoryEntry 2 }
catsPvcIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the history interval number.
The intervals are 15 minutes long and thus for
a 24 hour period there will be 96 intervals.
The 24 hour interval is aligned to wall clock.
The index of 1 will represent the interval from
00:00 to 00:15. The index of 2 will represent the
interval from 00:15 to 00:30 and so on.
"
::= { catsPvcHistoryEntry 3 }
catsPvcValidFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate if the entry has
valid statistics data. It contains a value of
true(1) if the data is valid and false(2) otherwise.
A possible scenario when this flag will be set
to false(2) is when there are time changes due to
daylight savings time and/ or time zone changes.
This flag can also be set to false(2) if the
statistics in this 15 minute interval have
experienced discontinuity.
"
::= { catsPvcHistoryEntry 4 }
catsPvcDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will represent the timestamp when the
statistics in this 15 minute interval were
discontinued due to a forced clear on the module.
If this has the default value then it indicates
that the statistics in this interval have not
experienced any discontinuity.
"
DEFVAL { 0 }
::= { catsPvcHistoryEntry 5 }
catsPvcAtmXmtCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of cells transmitted by this
PVC towards the ATM network.
"
::= { catsPvcHistoryEntry 6 }
catsPvcAtmRcvCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of cells received by this PVC
from the ATM network.
"
::= { catsPvcHistoryEntry 7 }
catsPvcAvgAtmXmtCells OBJECT-TYPE
SYNTAX Counter32
UNITS "cells-per-sec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of cells transmitted towards
the network by this PVC.
The average is computed by dividing the total
number of cells transmitted over this 15 minute
interval by the interval time (15 minutes).
"
::= { catsPvcHistoryEntry 8 }
catsPvcAvgAtmRcvCells OBJECT-TYPE
SYNTAX Counter32
UNITS "cells-per-sec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of cells received from
the network by the PVC.
The average is computed by dividing the total
number of cells received over this 15 minute
interval by the interval time (15 minutes).
"
::= { catsPvcHistoryEntry 9 }
catsPvcPeakAtmXmtCells OBJECT-TYPE
SYNTAX Counter32
UNITS "cells-per-sec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peak number of cells per second transmitted
towards the network.
The transmitted cells per second are monitored
every second and the peak value over this 15
minute interval is returned in this object.
"
::= { catsPvcHistoryEntry 10 }
catsPvcPeakAtmRcvCells OBJECT-TYPE
SYNTAX Counter32
UNITS "cells-per-sec"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peak number of cells per second received
from the network.
The received cells per second are monitored
every second and the peak value over this
15 minute interval is returned in this object.
"
::= { catsPvcHistoryEntry 11 }
catsPvcOamXmtEndLpbkCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM end-to-end loopback cells
that were transmitted on this connection during
this 15 minute interval.
"
::= { catsPvcHistoryEntry 12 }
catsPvcOamRcvEndLpbkCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM end-to-end loopback cells
that were received on this connection during
this 15 minute interval.
"
::= { catsPvcHistoryEntry 13 }
catsPvcOamXmtSegLpbkCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM Segment loop back cells
that were transmitted on this connection during
this 15 minute interval.
"
::= { catsPvcHistoryEntry 14 }
catsPvcOamRcvSegLpbkCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM Segment loop back cells
that were received on this connection during
this 15 minute interval.
"
::= { catsPvcHistoryEntry 15 }
catsPvcOamLpbkLostCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object keeps track of the number of
OAM loopback cells lost.
"
::= { catsPvcHistoryEntry 16 }
catsPvcDiscardedRcvOamCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OAM cells that had CRC errors
and are not counted in any other counters for
received OAM cells.
"
::= { catsPvcHistoryEntry 17 }
catsPvcAisSuppressCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that an ATM AIS alarm
was successfully suppressed which prevented the
alarm from propagating to the TDM interfaces.
"
::= { catsPvcHistoryEntry 18 }
catsPvcXmtAisCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that an ATM AIS alarm
was transmitted.
"
::= { catsPvcHistoryEntry 19 }
catsPvcRcvAisCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that an ATM AIS alarm
was received.
"
::= { catsPvcHistoryEntry 20 }
catsPvcXmtFerfCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that an ATM FERF alarm
was transmitted.
"
::= { catsPvcHistoryEntry 21 }
catsPvcRcvFerfCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that an ATM FERF alarm
was received.
"
::= { catsPvcHistoryEntry 22 }
catsPvcXmtAisCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AIS cells that were transmitted
on this connection during this 15 minute
interval.
"
::= { catsPvcHistoryEntry 23 }
catsPvcRcvAisCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AIS cells that were received
on this connection during this 15 minute
interval.
"
::= { catsPvcHistoryEntry 24 }
catsPvcXmtFerfCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of FERF cells that were transmitted
on this connection during this 15 minute
interval.
"
::= { catsPvcHistoryEntry 25 }
catsPvcRcvFerfCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of FERF cells that were received
on this connection during this 15 minute
interval.
"
::= { catsPvcHistoryEntry 26 }
catsPvcOamLpbkTimeoutCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that OAM Loopback
Timeout alarm had occurred within this
15 minute interval.
"
::= { catsPvcHistoryEntry 27 }
catsPvcNewOamLpbkTimeoutDur OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration of new OAM Loopback Timeout
alarms for this 15 minute interval expressed
in seconds.
"
::= { catsPvcHistoryEntry 28 }
catsPvcActiveOamLpbkTimeoutDur OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total duration of new and past OAM loopback
timeout alarms that were active during this 15
minute interval.
For example, if the an alarm lasted for a total of
50 seconds and crossed interval boundaries.
In the previous 15 minute interval it lasted for
30 seconds and 20 seconds in the current 15 minute
interval. There is a new alarm that lasted for 15
seconds in the current 15 minute interval as well.
Thus, this object will have a value of 20+15 = 35 seconds.
"
::= { catsPvcHistoryEntry 29 }
catsPvcOamLpbkTimeoutThreshold OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the threshold for OAM Loopback Timeout
alarm expressed in seconds. If the OAM cell is not
received back within the threshold specified in this
object, an OAM loopback timeout alarm is generated.
"
DEFVAL { 5 }
::= { catsPvcHistoryEntry 30 }
catsAal2PvcHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CatsAal2PvcHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents a 24 hour history of
statistics per AAL2 PVC. The statistics are collected
using 15 minute intervals.
Entries in this table are populated at the
end of the interval.
"
::= { catsStatistics 2 }
catsAal2PvcHistoryEntry OBJECT-TYPE
SYNTAX CatsAal2PvcHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table. Each entry contains the
statistics for particular AAL2 PVC for the given 15
minute interval.
The primary index, ifIndex, will be of ifType propAtm(197),
atm(37) or aal2(187).
"
INDEX { ifIndex,
catsAal2PvcVpi,
catsAal2PvcVci,
catsAal2PvcIntervalIndex
}
::= { catsAal2PvcHistoryTable 1 }
CatsAal2PvcHistoryEntry ::=
SEQUENCE {
catsAal2PvcVpi AtmVpIdentifier,
catsAal2PvcVci AtmVcIdentifier,
catsAal2PvcIntervalIndex Unsigned32,
catsAal2PvcValidFlag TruthValue,
catsAal2PvcDiscontinuityTime TimeStamp,
catsAal2PvcCpsSentPkts Counter32,
catsAal2PvcCpsRcvdPkts Counter32,
catsAal2PvcHecErrors Counter32,
catsAal2PvcCrcErrors Counter32,
catsAal2PvcInvOsfCells Counter32,
catsAal2PvcInvParCells Counter32,
catsAal2PvcCpsInvCidPkts Counter32,
catsAal2PvcCpsInvUuiPkts Counter32,
catsAal2PvcCpsInvLenPkts Counter32
}
catsAal2PvcVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The VPI value for the AAL2 PVC for which the
statistics are being collected.
"
::= { catsAal2PvcHistoryEntry 1 }
catsAal2PvcVci OBJECT-TYPE
SYNTAX AtmVcIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The VCI value for the AAL2 PVC for which the
statistics are being collected.
"
::= { catsAal2PvcHistoryEntry 2 }
catsAal2PvcIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the history interval number.
The intervals are 15 minutes long and thus for
a 24 hour period there will be 96 intervals.
The 24 hour interval is aligned to wall clock.
The index of 1 will represent the interval from
00:00 to 00:15. The index of 2 will represent the
interval from 00:15 to 00:30 and so on.
"
::= { catsAal2PvcHistoryEntry 3 }
catsAal2PvcValidFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate if the entry has
valid statistics data. It contains a value of
true(1) if the data is valid and false(2) otherwise.
A possible scenario when this flag will be set
to false(2) is when there are time changes due to
daylight savings time and/ or time zone changes.
This flag can also be set to false(2) if
statistics in this 15 minute interval have
experienced discontinuity.
"
::= { catsAal2PvcHistoryEntry 4 }
catsAal2PvcDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will represent the timestamp when the
statistics in this 15 minute interval were
discontinued due to a forced clear on the module.
If this has the default value then it indicates that
the statistics in this interval have not experienced
any discontinuity.
"
DEFVAL { 0 }
::= { catsAal2PvcHistoryEntry 5 }
catsAal2PvcCpsSentPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 CPS packets sent to the
network during this 15 minute interval.
"
::= { catsAal2PvcHistoryEntry 6 }
catsAal2PvcCpsRcvdPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 CPS packets received from
the network during this 15 minute interval.
This does not include the packets which are
counted as error packets.
"
::= { catsAal2PvcHistoryEntry 7 }
catsAal2PvcHecErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of egress AAL2(ATM Adaptation layer 2)
CPS PDU dropped due to HEC error.
"
::= { catsAal2PvcHistoryEntry 8 }
catsAal2PvcCrcErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of egress AAL2 Type3 CPS PDUs dropped
due to invalid CRC-10 error.
CRC validation is for Type 3 packets only.
Type 1 packets are not subjected to CRC-10 error
validation. This does not count the Type 3 packets
generated by the DSP.
"
::= { catsAal2PvcHistoryEntry 9 }
catsAal2PvcInvOsfCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 cells dropped due to invalid
OSF (OffSet Field) in the egress direction.
"
::= { catsAal2PvcHistoryEntry 10 }
catsAal2PvcInvParCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 cells dropped due to invalid
parity bit field in the egress direction.
"
::= { catsAal2PvcHistoryEntry 11 }
catsAal2PvcCpsInvCidPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 CPS packets dropped in the
egress direction due to invalid CID(Channel Identifier).
The CID may be considered as invalid if it is out of
range or not configured.
"
::= { catsAal2PvcHistoryEntry 12 }
catsAal2PvcCpsInvUuiPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 CPS packets dropped in the
egress direction due to invalid UUI field.
"
::= { catsAal2PvcHistoryEntry 13 }
catsAal2PvcCpsInvLenPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL2 CPS packets dropped in the
egress direction due to invalid length field.
"
::= { catsAal2PvcHistoryEntry 14 }
catsAal5PvcHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CatsAal5PvcHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents a 24 hour history of
statistics per AAL5 PVC. The statistics are collected
using 15 minute intervals.
Entries in this table are populated at the
end of the interval.
"
::= { catsStatistics 3 }
catsAal5PvcHistoryEntry OBJECT-TYPE
SYNTAX CatsAal5PvcHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table. Each entry contains the
statistics for a particular AAL5 PVC for the given
15 minute interval.
The primary index, ifIndex, will be of ifType propAtm(197),
atm(37) or aal5(49).
"
INDEX { ifIndex,
catsAal5PvcVpi,
catsAal5PvcVci,
catsAal5PvcIntervalIndex
}
::= { catsAal5PvcHistoryTable 1 }
CatsAal5PvcHistoryEntry ::=
SEQUENCE {
catsAal5PvcVpi AtmVpIdentifier,
catsAal5PvcVci AtmVcIdentifier,
catsAal5PvcIntervalIndex Unsigned32,
catsAal5PvcValidFlag TruthValue,
catsAal5PvcDiscontinuityTime TimeStamp,
catsAal5PvcPduSentPkts Counter32,
catsAal5PvcPduRcvdPkts Counter32,
catsAal5PvcInvCpiPdus Counter32,
catsAal5PvcOverSizedSDUs Counter32,
catsAal5PvcInvLenPdus Counter32,
catsAal5PvcCrc32ErrorPdus Counter32,
catsAal5PvcReassemTimerExpiryPdus Counter32
}
catsAal5PvcVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The VPI value for the AAL5 PVC for which the
statistics are being collected.
"
::= { catsAal5PvcHistoryEntry 1 }
catsAal5PvcVci OBJECT-TYPE
SYNTAX AtmVcIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The VCI value for the AAL5 PVC for which the
statistics are being collected.
"
::= { catsAal5PvcHistoryEntry 2 }
catsAal5PvcIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the history interval number.
The intervals are 15 minutes long and thus for
a 24 hour period there will be 96 intervals.
The 24 hour interval is aligned to wall clock.
The index of 1 will represent the interval from
00:00 to 00:15. The index of 2 will represent the
interval from 00:15 to 00:30 and so on.
"
::= { catsAal5PvcHistoryEntry 3 }
catsAal5PvcValidFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate if the entry has
valid statistics data. It contains a value of
true(1) if the data is valid and false(2) otherwise.
A possible scenario when this flag will be set
to false(2) is when there are time changes due to
daylight savings time and/ or time zone changes.
This flag can also be set to false(2) if
statistics in this 15 minute interval have
experienced discontinuity.
"
::= { catsAal5PvcHistoryEntry 4 }
catsAal5PvcDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will represent the timestamp when the
statistics in this 15 minute interval were
discontinued due to a forced clear on the module.
If this has the default value then it indicates
that the statistics in this interval have not
experienced any discontinuity.
"
DEFVAL { 0 }
::= { catsAal5PvcHistoryEntry 5 }
catsAal5PvcPduSentPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 PDUs transmitted to the network.
This is applicable only to the PVCs configured as
AAL5 PVCs (VoIP(Voice Over IP) PVCs or
CCS PVCs in the case of VoAAL2 application).
"
::= { catsAal5PvcHistoryEntry 6 }
catsAal5PvcPduRcvdPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 PDUs received from the network.
This is applicable only to the PVCs configured as
AAL5 PVCs (VoIP(Voice Over IP) PVCs or
CCS(Common Channel Signaling) PVCs in the case of
VoAAL2 application).
"
::= { catsAal5PvcHistoryEntry 7 }
catsAal5PvcInvCpiPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 PDUs dropped in the egress direction
due to invalid CPI(Common Part Indicator) field in the
AAL5 PDU trailer. This is applicable only to the PVCs
configured as AAL5 PVCs (VoIP(Voice Over IP) PVCs or
CCS(Common Channel Signaling) PVCs in the case of
VoAAL2 application).
"
::= { catsAal5PvcHistoryEntry 8 }
catsAal5PvcOverSizedSDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number AAL5 PDUs discarded on this AAL5 PVC at the
interface associated with an AAL5 entity because the
AAL5 SDUs were too large.
"
::= { catsAal5PvcHistoryEntry 9 }
catsAal5PvcInvLenPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 PDUs dropped due to length
violations. This is applicable to CCS PVCs.
The HDLC frames should have a minimum frame size
in order for the proper interpretation by the upper
layer protocol.
"
::= { catsAal5PvcHistoryEntry 10 }
catsAal5PvcCrc32ErrorPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 PDUs dropped in the egress
direction due to CRC-32 errors detected by the
SAR.
"
::= { catsAal5PvcHistoryEntry 11 }
catsAal5PvcReassemTimerExpiryPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 PDU reassembly timer expirations.
The timers are maintained in the egress direction
for building an AAL5 PDU from the cells.
"
::= { catsAal5PvcHistoryEntry 12 }
catsCidHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CatsCidHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents a 24 hour history of
statistics per CID. The statistics are collected
using 15 minute intervals.
The Channel IDentification (CID) is the standard
term to identify an ATM AAL2 connection (ITU-T I.366.2).
CID is unique within a VC (SVC or PVC).
Entries in this table are populated at the
end of the interval.
"
::= { catsStatistics 4 }
catsCidHistoryEntry OBJECT-TYPE
SYNTAX CatsCidHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table. Each entry contains the
statistics for a particular CID for the given 15
minute interval.
The primary index, ifIndex, will be of ifType propAtm(197),
atm(37) or aal2(37).
"
INDEX { ifIndex,
catsCidVpi,
catsCidVci,
catsCid,
catsCidIntervalIndex
}
::= { catsCidHistoryTable 1 }