-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-ATM2-MIB.mib
1215 lines (1029 loc) · 53.4 KB
/
CISCO-ATM2-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 ATM2 MIB
--
-- August 1997, Karthik Ramachandran
--
-- Copyright (c) 1997-1998 by cisco Systems, Inc.
-- All rights reserved.
-------------------------------------------------------------------
CISCO-ATM2-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32 FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
ciscoExperiment FROM CISCO-SMI
ifIndex FROM IF-MIB
atmInterfaceConfEntry FROM ATM-MIB; -- RFC 1695
ciscoAtm2MIB MODULE-IDENTITY
LAST-UPDATED "9803040000Z"
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
"This MIB Module is a supplement to the
ATM-MIB [1]. It is an adaptation of a
portion of the ATOMMIB supplemental MIB."
REVISION "9803040000Z"
DESCRIPTION
"Added VPI/VCI range objects from supplemental
ATOMMIB"
::= { ciscoExperiment 23 }
ciscoatm2MIBObjects OBJECT IDENTIFIER ::= {ciscoAtm2MIB 1}
-- This CISCO-ATM2-MIB Module consists of the following tables:
-- 1. ciscoatmSigStatTable
-- 2. ciscoatmSigSupportTable
-- 3. ciscoatmInterfaceExtTable
--
-- 1. ATM Interface Signalling Statistics Table
--
ciscoatmSigStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoatmSigStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains ATM interface signalling monitoring
, one entry per ATM signalling interface."
::= { ciscoatm2MIBObjects 1 }
ciscoatmSigStatEntry OBJECT-TYPE
SYNTAX CiscoatmSigStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This list contains signalling statistics variables."
INDEX { ifIndex }
::= { ciscoatmSigStatTable 1}
CiscoatmSigStatEntry ::= SEQUENCE {
ciscoatmSigSSCOPConEvents Counter32,
ciscoatmSigSSCOPErrdPdus Counter32,
ciscoatmSigDetectSetupAttempts Counter32,
ciscoatmSigEmitSetupAttempts Counter32,
ciscoatmSigDetectUnavailRoutes Counter32,
ciscoatmSigEmitUnavailRoutes Counter32,
ciscoatmSigDetectUnavailResrcs Counter32,
ciscoatmSigEmitUnavailResrcs Counter32,
ciscoatmSigDetectCldPtyEvents Counter32,
ciscoatmSigEmitCldPtyEvents Counter32,
ciscoatmSigDetectMsgErrors Counter32,
ciscoatmSigEmitMsgErrors Counter32,
ciscoatmSigDetectClgPtyEvents Counter32,
ciscoatmSigEmitClgPtyEvents Counter32,
ciscoatmSigDetectTimerExpireds Counter32,
ciscoatmSigEmitTimerExpireds Counter32,
ciscoatmSigDetectRestarts Counter32,
ciscoatmSigEmitRestarts Counter32,
ciscoatmSigInEstabls Counter32,
ciscoatmSigOutEstabls Counter32
}
ciscoatmSigSSCOPConEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSCOP Connection Events Counter. This
counter counts the sum of the following errors:
1) SSCOP Connection Disconnect Counter
The abnormal occurrence of this event is
characterized by the expiry of Timer_NO_RESPONSE.
(This event is communicated to the layer management
with MAA-ERROR code P. See ITU-T Q.2110 [13].)
2) SSCOP Connection Initiation Failure
This condition indicates the inability to establish
an SSCOP connection. This event occurs whenever the
number of expiries of the connection control timer
(Timer_CC) exceeds the MaxCC or upon receipt of a
connection reject message BGREJ PDU. (This event is
communicated to layer management with MAA-ERROR
code O. See ITU-T Q.2110.)
3) SSCOP Connection Re-Establ/Resynch
This event occurs upon receipt of a BGN PDU or RESYNC
PDU."
::= { ciscoatmSigStatEntry 5}
ciscoatmSigSSCOPErrdPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSCOP Errored PDUs Counter. This counter counts the
sum of the following errors:
1) Invalid PDUs.
These are defined in SSCOP and consist of PDUs
with incorrect length (MAA-ERROR code U),
undefined PDU type code or not 32-bit aligned.
2) PDUs that result in MAA error codes and are
discarded
See Errors A-M and Q-T defined in ITU-T Q.2110 [13]."
::= { ciscoatmSigStatEntry 6 }
ciscoatmSigDetectSetupAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call Setup Attempts Counter. This counter counts
the number of call setup attempts(both successful
and unsuccessful) detected on this interface."
::= { ciscoatmSigStatEntry 7 }
ciscoatmSigEmitSetupAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call Setup Attempts Counter. This counter counts the
number of call setup attempts(both successful and
unsuccessful) transmitted on this interface."
::= { ciscoatmSigStatEntry 8 }
ciscoatmSigDetectUnavailRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Route Unavailability detected on this
interface. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE
mesg for the same call), ADD PARTY REJECT, or STATUS
message that contains one of the following cause code
values is received (Note: These cause values apply to
both UNI3.0 and UNI3.1):
Cause Value Meaning
1 unallocated (unassigned) number
2 no route to specified transit network
3 no route to destination
88 incompatible destination
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 9 }
ciscoatmSigEmitUnavailRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Route Unavailability transmitted from this
interface. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE
mesg for the same call), ADD PARTY REJECT, or STATUS
message that contains one of the following cause code
values is transmitted (Note: These cause values apply
to both UNI3.0 and UNI3.1):
Cause Value Meaning
1 unallocated (unassigned) number
2 no route to specified transit network
3 no route to destination
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 10 }
ciscoatmSigDetectUnavailResrcs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Resource Unavailability detected on this
interfrace. This counter is incremented when a
RELEASE, RELEASE COMPLETE (only when not preceded by a
RELEASE mesg for the same call), ADD PARTY REJECT, or
STATUS message that contains one of the following cause
code values is received (Note: These cause values apply
to both UNI3.0 and UNI3.1 unless otherwise stated):
Cause Value Meaning
35 requested VPCI/VCI not available
37 user cell rate not available (UNI3.1
only)
38 network out of order
41 temporary failure
45 no VPCI/VCI available
47 resource unavailable, unspecified
49 Quality of Service unavailable
51 user cell rate not available (UNI3.0
only)
58 bearer capability not presently
available
63 Service or option not available,
unspecified
92 too many pending add party requests
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 11 }
ciscoatmSigEmitUnavailResrcs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Resource Unavailability transmitted from
this interfrace. This counter is incremented when a
RELEASE, RELEASE COMPLETE (only when not preceded by a
RELEASE mesg for the same call), ADD PARTY REJECT, or
STATUS message that contains one of the following cause
code values is transmitted (Note: These cause values
apply to both UNI3.0 and UNI3.1 unless otherwise
stated):
Cause Value Meaning
35 requested VPCI/VCI not available
37 user cell rate not available (UNI3.1
only)
38 network out of order
41 temporary failure
45 no VPCI/VCI available
47 resource unavailable, unspecified
49 Quality of Service unavailable
51 user cell rate not available (UNI3.0
only)
58 bearer capability not presently
available
63 Service or option not available,
unspecified
92 too many pending add party requests
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 12 }
ciscoatmSigDetectCldPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Called Party Responsible For Unsuccessful
Call detected on this interface. This counter is
incremented when a RELEASE, RELEASE COMPLETE (only when
not preceded by a RELEASE mesg for the same call), ADD
PARTY REJECT, or STATUS message that contains one of
the following cause code values is received (Note:
These cause values apply to both UNI3.0 and UNI3.1):
Cause Value Meaning
17 user busy
18 no user responding
21 call rejected
22 number changed
23 user rejects all calls with calling
line id restriction (CLIR)
27 destination out of order
31 normal, unspecified
88 incompatible destination
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted.
Note: Cause Value #30 'response to STATUS ENQUIRY'
was not included in this memo since it did not apply
to a hard failure."
::= { ciscoatmSigStatEntry 13 }
ciscoatmSigEmitCldPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Called Party Responsible For Unsuccessful Call
transmitted from this interface. This counter is
incremented when a RELEASE, RELEASE COMPLETE (only
when not preceded by a RELEASE mesg for the same call),
ADD PARTY REJECT, or STATUS message that contains one
of the following cause code values is
transmitted (Note: These cause values apply to both
UNI3.0 and UNI3.1):
Cause Value Meaning
17 user busy
18 no user responding
21 call rejected
22 number changed
23 user rejects all calls with calling
line id restriction (CLIR)
27 destination out of order
31 normal, unspecified
88 incompatible destination
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted.
Note: Cause Value #30 'response to STATUS ENQUIRY'
was not included in this memo since it did not apply
to a hard failure."
::= { ciscoatmSigStatEntry 14 }
ciscoatmSigDetectMsgErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Incorrect Messages detected on this
interface. The Incorrect Messages Counter reflects any
sort of incorrect information in a message. This
includes:
- RELEASE, RELEASE COMPLETE, ADD PARTY REJECT,
and STATUS messages transmitted, that contain any of
the Cause values listed below.
- Ignored messages. These messages are dropped
because the message was so damaged that it could
not be further processed. A list of dropped
messages is compiled below:
1. Message with invalid protocol discriminator
2. Message with errors in the call reference I.E.
- Bits 5-8 of the first octet not equal to
'0000'
- Bits 1-4 of the first octet indicating a
length other than 3 octets
- RELEASE COMPLETE message received with a
call reference that does not relate to a
call active or in progress
- SETUP message received with call reference
flag incorrectly set to 1
- SETUP message received with a call
reference for a call that is already
active or in progress.
3. Message too short
The following cause values are monitored by this
counter (Note: These cause values apply to both UNI3.0
and UNI3.1 unless otherwise stated):
Cause Value Meaning
10 VPCI/VCI unacceptable (UNI3.0 only)
36 VPCI/VCI assignment failure (UNI3.1 only)
81 invalid call reference value
82 identified channel does not exist
89 invalid endpoint reference
96 mandatory information element is missing
97 message type non-existent or not
implemented
99 information element non-existent or not
implemented
100 invalid information element contents
101 message not compatible with call state
104 incorrect message length
111 protocol error, unspecified
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 15 }
ciscoatmSigEmitMsgErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Incorrect Messages detected on this
interface. The Incorrect Messages Counter reflects any
sort of incorrect information in a message. This
includes:
- RELEASE, RELEASE COMPLETE, ADD PARTY REJECT,
and STATUS messages transmitted or
received, that contain any of the Cause values
listed below.
- Ignored messages. These messages are dropped
because the message was so damaged that it could
not be further processed. A list of dropped
messages is compiled below:
1. Message with invalid protocol discriminator
2. Message with errors in the call reference I.E.
- Bits 5-8 of the first octet not equal to
'0000'
- Bits 1-4 of the first octet indicating a
length other than 3 octets
- RELEASE COMPLETE message received with a
call reference that does not relate to a
call active or in progress
- SETUP message received with call reference
flag incorrectly set to 1
- SETUP message received with a call
reference for a call that is already
active or in progress.
3. Message too short
The following cause values are monitored by this
counter (Note: These cause values apply to both UNI3.0
and UNI3.1 unless otherwise stated):
Cause Value Meaning
10 VPCI/VCI unacceptable (UNI3.0 only)
36 VPCI/VCI assignment failure (UNI3.1 only)
81 invalid call reference value
82 identified channel does not exist
89 invalid endpoint reference
96 mandatory information element is missing
97 message type non-existent or not
implemented
99 information element non-existent or not
implemented
100 invalid information element contents
101 message not compatible with call state
104 incorrect message length
111 protocol error, unspecified
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 16 }
ciscoatmSigDetectClgPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Calling Party Events detected on this
interface. This counter monitors error events that
occur due to the originating user doing something
wrong. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE
mesg for the same call), ADD PARTY REJECT, or STATUS
message that contains one of the following cause code
values is received (Note: These cause values apply to
both UNI3.0 and UNI3.1):
Cause Value Meaning
28 invalid number format (address incomplete)
43 access information discarded
57 bearer capability not authorized
65 bearer capability not implemented
73 unsupported combination of traffic
parameters
78 AAL parameters cannot be supported (UNI3.1
only)
91 invalid transit network selection
93 AAL parameters cannot be supported (UNI3.0
only)
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 17 }
ciscoatmSigEmitClgPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Calling Party Events transmitted from this
interface. This counter monitors error events that
occur due to the originating user doing something
wrong. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE
mesg for the same call), ADD PARTY REJECT, or STATUS
message that contains one of the following cause code
values is transmitted (Note: These cause values apply
to both UNI3.0 and UNI3.1):
Cause Value Meaning
28 invalid number format (address incomplete)
43 access information discarded
57 bearer capability not authorized
65 bearer capability not implemented
73 unsupported combination of traffic
parameters
78 AAL parameters cannot be supported (UNI3.1
only)
91 invalid transit network selection
93 AAL parameters cannot be supported (UNI3.0
only)
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { ciscoatmSigStatEntry 18 }
ciscoatmSigDetectTimerExpireds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Timer Expiries detected on this interface.
The Timer Expiries Counter provides a count of network
timer expiries, and to some extent, host or switch
timer expiries. The conditions for incrementing this
counter are:
- Expiry of any network timer
- Receipt of a RELEASE or RELEASE COMPLETE
message with Cause #102, 'recovery on
timer expiry'.
NOTE: For this counter, RELEASE COMPLETE messages
that are a reply to a previous RELEASE message and
contain the same cause value, are redundant (for
counting purposes) and should not be counted."
::= { ciscoatmSigStatEntry 19 }
ciscoatmSigEmitTimerExpireds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Timer Expiries transmitted from this
interface. The Timer Expiries Counter provides a count
of network timer expiries, and to some extent, host or
switch timer expiries. The conditions for incrementing
this counter are:
- Expiry of any network timer
- Receipt of a RELEASE or RELEASE COMPLETE
message with Cause #102, 'recovery on
timer expiry'.
NOTE: For this counter, RELEASE COMPLETE messages
that are a reply to a previous RELEASE message and
contain the same cause value, are redundant (for
counting purposes) and should not be counted."
::= { ciscoatmSigStatEntry 20 }
ciscoatmSigDetectRestarts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Restart Activity errors detected on this
interface. The Restart Activity Counter provides a
count of host, switch, or network restart activity.
This counter is incremented when receiving a RESTART
message."
::= { ciscoatmSigStatEntry 21 }
ciscoatmSigEmitRestarts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Restart Activity errors transmitted from
this interface. The Restart Activity Counter provides
a count of host, switch, or network restart activity.
This counter is incremented when transmitting a RESTART
message."
::= { ciscoatmSigStatEntry 22 }
ciscoatmSigInEstabls OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SVC VCCs established at this signalling
entity for incoming connections."
::= { ciscoatmSigStatEntry 23 }
ciscoatmSigOutEstabls OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SVC VCCs established at this signalling
entity for outgoing connections."
::= { ciscoatmSigStatEntry 24 }
-- 2. ATM Interface Signalling Support Table
-- This table provides information to support
-- the signalling process which is used to establish
-- ATM Switched Virtual Connections (SVCs).
ciscoatmSigSupportTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoatmSigSupportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains ATM local interface configuration
parameters, one entry per ATM signalling interface."
::= { ciscoatm2MIBObjects 2 }
ciscoatmSigSupportEntry OBJECT-TYPE
SYNTAX CiscoatmSigSupportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This list contains signalling configuration parameters
and state variables."
INDEX { ifIndex }
::= { ciscoatmSigSupportTable 1}
CiscoatmSigSupportEntry ::= SEQUENCE {
ciscoatmSigSupportClgPtyNumDel INTEGER,
ciscoatmSigSupportClgPtySubAddr INTEGER,
ciscoatmSigSupportCldPtySubAddr INTEGER,
ciscoatmSigSupportHiLyrInfo INTEGER,
ciscoatmSigSupportLoLyrInfo INTEGER,
ciscoatmSigSupportBlliRepeatInd INTEGER,
ciscoatmSigSupportAALInfo INTEGER,
ciscoatmSigSupportUnknownIe INTEGER
}
ciscoatmSigSupportClgPtyNumDel OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the Calling Party Number
Information Element is transferred to the called party
address. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 1 }
ciscoatmSigSupportClgPtySubAddr OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept and transfer
the Calling Party Subaddress Information Element from
the calling party to the called party. Calling party
subaddress information shall only be transferred to the
called party if calling party number delivery is
enabled (i.e., atmSigSupportClgPtyNumDel =
'enabled(1)'. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 2 }
ciscoatmSigSupportCldPtySubAddr OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and
deliver the Called Party Subaddress Information Element
from the calling party to the called party. The value
of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 3 }
ciscoatmSigSupportHiLyrInfo OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and
deliver the Broadband High Layer Information Element
from the calling party to the called party. The value
of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 4 }
ciscoatmSigSupportLoLyrInfo OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and
deliver the Broadband Low Layer Information Element
from the calling party to the called party. The value
of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 5 }
ciscoatmSigSupportBlliRepeatInd OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and
deliver the Broadband Repeat Indicator with two or
three instances of the Broadband Low Layer Information
Element for low layer information selection from the
calling party to the called party. This object shall
only be transferred if atmSigSupportLoLyrInfo =
'enabled(1)'. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 6 }
ciscoatmSigSupportAALInfo OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and
deliver the ATM Adaptation Layer Parameters Information
Element from the calling party to the called party.
The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 7 }
ciscoatmSigSupportUnknownIe OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and
deliver the unknown Information Element from the
calling party to the called party, when the IE instruction
field flag is set to zero.When the IE action flag is set to
one, the IE action indicator should be followed regardless
of this configuration.
The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { ciscoatmSigSupportEntry 8 }
-- 3. ATM Interface Configuration Extension table
-- Since ciscoatmInterfaceExtTable implements only a
-- part of atmInterfaceExtTable from Supplemental ATOMMIB,
-- only objects 16 through 21 are here
ciscoatmInterfaceExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoatmInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains ATM interface configuration
not defined in the atmInterfaceConfTable from the
ATM-MIB. This table has information on the VPI/VCI
range."
::= { ciscoatm2MIBObjects 3 }
ciscoatmInterfaceExtEntry OBJECT-TYPE
SYNTAX CiscoatmInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry extends the atmInterfaceConfEntry defined
in ATM-MIB. Each entry corresponds to an ATM interface."
AUGMENTS { atmInterfaceConfEntry }
::= { ciscoatmInterfaceExtTable 1 }
CiscoatmInterfaceExtEntry ::= SEQUENCE {
ciscoatmInterfaceConfMaxSvpcVpi INTEGER,
ciscoatmInterfaceCurrentMaxSvpcVpi INTEGER,
ciscoatmInterfaceConfMaxSvccVpi INTEGER,
ciscoatmInterfaceCurrentMaxSvccVpi INTEGER,
ciscoatmInterfaceConfMinSvccVci INTEGER,
ciscoatmInterfaceCurrentMinSvccVci INTEGER
}
ciscoatmInterfaceConfMaxSvpcVpi OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM
interface is configured to support for allocation to
switched virtual path connections."
::= { ciscoatmInterfaceExtEntry 16 }
ciscoatmInterfaceCurrentMaxSvpcVpi OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM
interface may currently allocate to switched virtual
path connections. This value is the minimum of
ciscoatmInterfaceConfMaxSvpcVpi, and the
ciscoatmInterfaceConfMaxSvpcVpi of the interface's
UNI/NNI peer.
If the interface does not negotiate with its peer to
determine the maximum VPI that can be allocated to
SVPCs on the interface, then the value of this object
must equal ciscoatmInterfaceConfMaxSvpcVpi."
::= { ciscoatmInterfaceExtEntry 17 }
ciscoatmInterfaceConfMaxSvccVpi OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM
interface is configured to support for allocation to
switched virtual channel connections."
::= { ciscoatmInterfaceExtEntry 18 }
ciscoatmInterfaceCurrentMaxSvccVpi OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM
interface may currently allocate to switched virtual
channel connections. This value is the minimum of
ciscoatmInterfaceConfMaxSvccVpi, and the
ciscoatmInterfaceConfMaxSvccVpi of the interface's
UNI/NNI peer.
If the interface does not negotiate with its peer to
determine the maximum VPI that can be allocated to
SVCCs on the interface, then the value of this object
must equal ciscoatmInterfaceConfMaxSvccVpi."
::= { ciscoatmInterfaceExtEntry 19 }
ciscoatmInterfaceConfMinSvccVci OBJECT-TYPE
SYNTAX INTEGER (32..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum VCI that the signalling stack on the ATM
interface is configured to support for allocation to
switched virtual channel connections."
::= { ciscoatmInterfaceExtEntry 20 }
ciscoatmInterfaceCurrentMinSvccVci OBJECT-TYPE
SYNTAX INTEGER (32..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum VCI that the signalling stack on the ATM
interface may currently allocate to switched virtual
channel connections. This value is the maximum of
ciscoatmInterfaceConfMinSvccVci, and the
ciscoatmInterfaceConfMinSvccVci of the interface's
UNI/NNI peer.
If the interface does not negotiate with its peer to
determine the minimum VCI that can be allocated to
SVCCs on the interface, then the value of this object
must equal ciscoatmInterfaceConfMinSvccVci."
::= { ciscoatmInterfaceExtEntry 21 }
-- ************************************************
-- Conformance Information
ciscoatm2MIBConformance OBJECT IDENTIFIER ::= {ciscoAtm2MIB 3}
ciscoatm2MIBGroups OBJECT IDENTIFIER
::= {ciscoatm2MIBConformance 1}
ciscoatm2MIBCompliances OBJECT IDENTIFIER
::= {ciscoatm2MIBConformance 2}
-- Compliance Statements
ciscoatm2MIBCompliance MODULE-COMPLIANCE
STATUS obsolete -- superceded by ciscoatm2MIBCompliance2
DESCRIPTION
"The compliance statement for SNMP entities which
represent ATM interfaces. The compliance statements
are used to determine if a particular group or object
applies to hosts, networks/switches, or both."
MODULE -- this module
MANDATORY-GROUPS { ciscoAtmSwitchServcHostGroup }
GROUP ciscoAtmSwitchServcGroup
DESCRIPTION
"This group is mandatory for a Switch/Service that
implements ATM interfaces."
-- Objects in the ATM Switch/Service/Host Group