forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ATM-SOFT-PVC-MIB.my
1090 lines (915 loc) · 32 KB
/
ATM-SOFT-PVC-MIB.my
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- --------------------------------------------------------------------
-- ATM FORUM SOFT PVC MIB
--
-- December 1998, Satya Narayana
--
-- Copyright (c) 1996-1998, 1999 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
ATM-SOFT-PVC-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises FROM RFC1155-SMI
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter32, Gauge32 FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus,
TruthValue, TimeStamp FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
ifIndex FROM IF-MIB
atmVplVpi, atmVclVpi,
atmVclVci FROM ATM-MIB;
atmSoftPvcMIB MODULE-IDENTITY
LAST-UPDATED "9703010000Z"
ORGANIZATION "The ATM Forum."
CONTACT-INFO
"The ATM Forum
2570 West El Camino Real, Suite 304
Mountain View, CA 94040-1313 USA
Phone: +1 415-949-6700
Fax: +1 415-949-6705
DESCRIPTION
"ATM Soft PVC MIB"
REVISION "9703010000Z"
DESCRIPTION
"Updated version of the Soft PVC MIB released with the
PNNI V1.0 Errata and PICS (af-pnni-81.00)."
REVISION "9606210000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { atmfSoftPvc 1 }
atmForum OBJECT IDENTIFIER ::= { enterprises 353 }
atmForumNetworkManagement OBJECT IDENTIFIER ::= { atmForum 5 }
atmfSoftPvc OBJECT IDENTIFIER ::= { atmForumNetworkManagement 5 }
atmSoftPvcMIBObjects OBJECT IDENTIFIER ::= { atmSoftPvcMIB 1 }
atmSoftPvcMIBTraps OBJECT IDENTIFIER ::= { atmSoftPvcMIB 2 }
AtmAddr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The ATM address used by the network entity.
The address types are: no address (0 octets),
E.164 (8 octets)and NSAP (20 octets).
Note: The E.164 address is encoded in BCD format."
SYNTAX OCTET STRING (SIZE(0|8|20))
--
-- This MIB contains five tables and a number of scalars. The scalars
-- contain overall status information and counters. The tables are:
-- Soft PVC VCCs - manage Soft PVCC at originating switch
-- Soft PVC VPCs - manage Soft PVPC at originating switch
-- Interface Soft PVC Address
-- Currently failing Soft PVCC table
-- Currently failing Soft PVPC table
--
-- Traffic statistics for Soft PVCCs and Soft PVPCs are accessible
-- via the atmVclStatTable and atmVplStatTable, as defined in the
-- Supplemental AtomMIB
atmSoftPvcBaseGroup OBJECT IDENTIFIER ::= { atmSoftPvcMIBObjects 1}
atmSoftPvcCallFailuresTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allows the generation of traps in response to call
failures. By default, this object is set to 'false'."
::= { atmSoftPvcBaseGroup 1 }
atmSoftPvcCallFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a series of call attempts has failed to
establish a Soft PVCC or Soft PVPC. The number of call
attempts in a series is determined by
atmSoftPVccRetryThreshold or atmSoftPVpcRetryThreshold,
respectively."
::= {atmSoftPvcBaseGroup 2 }
atmSoftPvcCurrentlyFailingSoftPVccs OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of Soft PVCCs for which there is
an active row in the atmSoftPVccTable having an
atmSoftPVccOperStatus with a value other than 'connected'."
::= { atmSoftPvcBaseGroup 3 }
atmSoftPvcCurrentlyFailingSoftPVpcs OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of Soft PVPCs for which there is an
active row in the atmSoftPVpcTable having an
atmSoftPVpcOperStatus with a value other than 'connected'."
::= { atmSoftPvcBaseGroup 4 }
atmSoftPvcNotificationInterval OBJECT-TYPE
SYNTAX INTEGER (0..3600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum interval between the sending
of atmSoftPvcCallFailuresTrap notifications."
DEFVAL { 30 }
::= { atmSoftPvcBaseGroup 5 }
--
-- Table to manage Soft PVCCs.
--
atmSoftPVccTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSoftPVccEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table used to manage Soft
Permanent Virtual Channel Connections (Soft PVCCs).
The Soft PVCC table is applicable only to switches."
::= { atmSoftPvcMIBObjects 2 }
atmSoftPVccEntry OBJECT-TYPE
SYNTAX AtmSoftPVccEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a Soft
Permanent Virtual Channel Connection (Soft PVCC)
originating at a switch interface.
A Soft PVCC is a VCC that is:
- provisioned at the originating (source)
interface of the connection
- established by signalling procedures
across a network to a destination interface.
A row in the atmVclTable must be created,
defining a VCL on the source interface, prior to
creating an atmSoftPVccEntry row. The row in the
atmVclTable must be active prior to activating the
atmSoftPVccEntry row.
The contents of this table reflect only the
characteristics unique to a Soft PVCC. The traffic
parameters are defined in the VCL row for the source
interface, as specified in the ATOMMIB (RFC1695) and
the forthcoming addition, the Supplemental ATOMMIB.
Note that the atmSigDescrParamTable contains some objects
such as the AAL parameters, Broadband high layer
information and Broadband low layer information
elements which are used to carry end-to-end information.
For this reason, these objects are not relevant to Soft
PVCCs.
When a row is made active, an attempt is made
to set up a switched connection to an interface at
the destination switch. No objects (other than
atmSoftPVccRowStatus) can be set while the row is
active.
At the destination, the VCL may be defined (but
not cross-connected) prior to arrival of the Setup
request.
The combination of ifIndex, atmVclVpi, and atmVclVci
specified in the index clause of this entry serves to
identify the VCL on the source interface. The
atmSoftPVccLeafReference object aids in distinguishing
between leaves of a point-to-multipoint Soft PVCC."
INDEX { ifIndex,
atmVclVpi,
atmVclVci,
atmSoftPVccLeafReference }
::= { atmSoftPVccTable 1 }
AtmSoftPVccEntry ::=
SEQUENCE {
atmSoftPVccLeafReference INTEGER,
atmSoftPVccTargetAddress AtmAddr,
atmSoftPVccTargetSelectType INTEGER,
atmSoftPVccTargetVpi INTEGER,
atmSoftPVccTargetVci INTEGER,
atmSoftPVccLastReleaseCause INTEGER,
atmSoftPVccLastReleaseDiagnostic OCTET STRING,
atmSoftPVccOperStatus INTEGER,
atmSoftPVccRestart INTEGER,
atmSoftPVccRetryInterval INTEGER,
atmSoftPVccRetryTimer INTEGER,
atmSoftPVccRetryThreshold INTEGER,
atmSoftPVccRetryFailures Gauge32,
atmSoftPVccRetryLimit INTEGER,
atmSoftPVccRowStatus RowStatus
}
atmSoftPVccLeafReference OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer which, in the case of the
source VCL having an atmVclCastType of
'p2mpRoot', serves to distinguish between the
multiple leaves attached to a root of a
point-to-multipoint Soft PVCC. If the atmVclCastType
is not 'p2mpRoot' the value 1 shall be used."
::= { atmSoftPVccEntry 1 }
atmSoftPVccTargetAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The target ATM Address of this Soft PVCC. If no
address is supplied, no attempts to establish the
Soft PVCC are initiated."
::= { atmSoftPVccEntry 2 }
atmSoftPVccTargetSelectType OBJECT-TYPE
SYNTAX INTEGER {
required(1),
any(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates whether the target VPI/VCI values
are to be used at the destination.
If the value 'any' is specified, the destination
switch will choose the VPI/VCI values. In such a
case, once the Soft PVCC atmSoftPVccOperStatus
value is 'connected', the value of this object
changes to 'required', such that the same VPI/VCI
values will continue to be used even if the connection
is subsequently torn down and re-established. The
VPI/VCI values chosen will be available for reading in
atmSoftPVccTargetVpi and atmSoftPVccTargetVci.
If the value 'required' is specified, then values
must be supplied for objects atmSoftPVccTargetVpi
and atmSoftPVccTargetVci prior to activation of the
row. These values are then to be used at the destination."
DEFVAL { required }
::= { atmSoftPVccEntry 3 }
atmSoftPVccTargetVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VPI value of the VCL used at the target interface.
This value is not relevant when the value of
atmSoftPVccTargetSelectType is 'any'."
DEFVAL { 0 }
::= { atmSoftPVccEntry 4 }
atmSoftPVccTargetVci OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VCI value of the VCL used at the target interface.
This value must be filled in when the
atmSoftPVccTargetSelectType is set to 'required'.This
value is not relevant when the value of
atmSoftPVccTargetSelectType is 'any'."
::= { atmSoftPVccEntry 5 }
atmSoftPVccLastReleaseCause OBJECT-TYPE
SYNTAX INTEGER(1..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value of the Cause field of the Cause
Information Element in the last RELEASE
signalling message received for this Soft PVCC.
Indicates the reason for the Release."
::= { atmSoftPVccEntry 6 }
atmSoftPVccLastReleaseDiagnostic OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value of the first 8 bytes of diagnostic information
from the Cause field of the Cause Information Element
in the last RELEASE signalling message received for
this Soft PVCC."
::= { atmSoftPVccEntry 7 }
atmSoftPVccOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
establishmentInProgress(2),
connected(3),
retriesExhausted(4),
noAddressSupplied(5),
lowerLayerDown(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the status of the Soft PVCC. Valid values
are:
other - none of the types specified below
establishmentInProgress - connection or party is not
operational, but setup or add
party attempts are ongoing
connected - connection or party is currently
operational
retriesExhausted - retry limit has been reached and
setup or add party attempts have
ceased
noAddressSupplied - no remote address has been
configured, so no setup or add
party attempts are initiated
lowerLayerDown - underlying ATM interface is not
operational
When the row is not 'active', the value of this
object is 'other'."
::= { atmSoftPVccEntry 8 }
atmSoftPVccRestart OBJECT-TYPE
SYNTAX INTEGER {
restart(1),
noop(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When the value is set to 'restart' the Soft PVCC
is released if necessary and a new setup procedure
is begun. As a result of this action, the
atmSoftPVccOperStatus object transitions to
'establishmentInProgress' (if not already in this state)
and the atmSoftPVccRetryFailures object is cleared
When the value is set to 'noop' no operation is
performed. When read, the value 'noop' is returned."
::= { atmSoftPVccEntry 9 }
atmSoftPVccRetryInterval OBJECT-TYPE
SYNTAX INTEGER (0..3600)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Defines the period to wait before attempting
to establish the Soft PVCC after the first failed call
attempt. The time to wait between subsequent call
attempts may differ to implement a backoff scheme.
Zero represents an infinite interval indicating no
retries."
DEFVAL { 10 }
::= { atmSoftPVccEntry 10 }
atmSoftPVccRetryTimer OBJECT-TYPE
SYNTAX INTEGER (0..86400)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current value of the retry timer for
this connection. When the value reaches zero an attempt
will be made to establish the Soft PVCC. When the timer
is not running, the value zero shall be returned."
::= { atmSoftPVccEntry 11 }
atmSoftPVccRetryThreshold OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the number of consecutive call setup attempts for
the same Soft PVCC which need to fail before the
atmSoftPvcCallFailures object is incremented. A value of
zero indicates that an infinite number of call attempts
are required to increment the atmSoftPvcCallFailures object
and thus disables alarms for the Soft PVCC."
DEFVAL { 1 }
::= { atmSoftPVccEntry 12 }
atmSoftPVccRetryFailures OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates how many attempts to establish the connection
have failed. This count is reset whenever a connection
is successfully established or the Soft PVCC is restarted."
::= { atmSoftPVccEntry 13 }
atmSoftPVccRetryLimit OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sets a maximum limit on how many consecutive unsuccessful
call setup attempts can be made before stopping the attempt
to set up the connection. If this limit is reached then
management action will be required (e.g. setting
atmSoftPVccRestart to 'restart') to initiate a new attempt
to establish the connection. A value of zero indicates
no limit - the attempts will continue until successful."
DEFVAL { 0 }
::= { atmSoftPVccEntry 14 }
atmSoftPVccRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to create and delete a Soft PVCC. When this
object is set to 'active' an attempt is made to
set up the Soft PVCC. When this object has the value
'active' and is set to another value, any
set-up or connection in-progress is released."
::= { atmSoftPVccEntry 15 }
-- Table to manage Soft PVPCs
--
-- The following MIB definition includes support for point to
-- multipoint Soft PVPCs. Version 1.0 of the PNNI specification does
-- not allow the use of point to multipoint Soft PVPCs. The value
-- of atmSoftPVpcLeafReference should always be set to 1 indicating
-- a point to point Soft PVPC.
--
atmSoftPVpcTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSoftPVpcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table used to manage Soft
Permanent Virtual Path Connections (Soft PVPCs)
The Soft PVPC table is applicable only to switches."
::= { atmSoftPvcMIBObjects 3 }
atmSoftPVpcEntry OBJECT-TYPE
SYNTAX AtmSoftPVpcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a Soft
Permanent Virtual Path Connection (Soft PVPC)
originating at a switch interface.
A Soft PVPC is a VPC that is:
- provisioned at the originating (source)
interface of the connection
- established by signalling procedures
across a network to a destination interface.
A row in the atmVplTable must be created,
defining a VPL on the source interface, prior to
creating an atmSoftPVpcEntry row. The row in the
atmVplTable must be active prior to activating the
atmSoftPVpcEntry row.
The contents of this table reflect only the
characteristics unique to a Soft PVPC. The traffic
parameters are defined in the VPL row for the source
interface, as specified in the ATOMMIB (RFC1695) and
the forthcoming addition, the Supplemental ATOMMIB.
Note that the atmSigDescrParamTable contains some
objects such as the AAL parameters, Broadband high
layer information, and Broadband low layer information
elements which are used to carry end-to-end information.
For this reason, these objects are not relevant to Soft
PVPCs.
When a row is made active, an attempt is made
to set up a switched connection to an interface at
the destination switch. No objects (other than
atmSoftPVpcRowStatus) can be set while the row is
active.
At the destination, the VPL may be defined (but
not cross-connected) prior to arrival of the Setup
request.
The combination of ifIndex, atmVplVpi specified
in the index clause of this entry serves to
identify the VPL on the source interface. The
atmSoftPVpcLeafReference object aids in distinguishing
between leaves of a point-to-multipoint Soft PVPC."
INDEX { ifIndex,
atmVplVpi,
atmSoftPVpcLeafReference }
::= { atmSoftPVpcTable 1 }
AtmSoftPVpcEntry ::=
SEQUENCE {
atmSoftPVpcLeafReference INTEGER,
atmSoftPVpcTargetAddress AtmAddr,
atmSoftPVpcTargetSelectType INTEGER,
atmSoftPVpcTargetVpi INTEGER,
atmSoftPVpcLastReleaseCause INTEGER,
atmSoftPVpcLastReleaseDiagnostic OCTET STRING,
atmSoftPVpcOperStatus INTEGER,
atmSoftPVpcRestart INTEGER,
atmSoftPVpcRetryInterval INTEGER,
atmSoftPVpcRetryTimer INTEGER,
atmSoftPVpcRetryThreshold INTEGER,
atmSoftPVpcRetryFailures Gauge32,
atmSoftPVpcRetryLimit INTEGER,
atmSoftPVpcRowStatus RowStatus
}
atmSoftPVpcLeafReference OBJECT-TYPE
SYNTAX INTEGER (1..63535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer which, in the case of the
source VPL having a atmVplCastType of
'p2mpRoot', serves to distinguish between the
multiple leaves attached to a root of a
point-to-multipoint Soft PVPC.
If the atmVplCastType is not 'p2mpRoot', the
value 1 shall be used."
::= { atmSoftPVpcEntry 1 }
atmSoftPVpcTargetAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The target ATM Address of this Soft PVPC. If no
address is supplied, no attempts to establish the
Soft PVPC are initiated."
::= { atmSoftPVpcEntry 2 }
atmSoftPVpcTargetSelectType OBJECT-TYPE
SYNTAX INTEGER {
required(1),
any(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates whether the target VPI value
is to be used at the destination.
If the value 'any' is specified, the
destination switch will choose the VPI
value. In such a case, once the Soft PVPC
atmSoftPVpcOperStatus value is 'connected',
the value of this object changes to 'required',
such that the same VPI value will continue to
be used even if the connection is subsequently
torn down and re-established. The VPI value
chosen will be available for reading in
atmSoftPVpcTargetVpi.
If the value 'required' is specified, then
a value must be supplied for object
atmSoftPVpcTargetVpi prior to activation
of the row. This value is then to be used
at the destination."
DEFVAL { required }
::= { atmSoftPVpcEntry 3 }
atmSoftPVpcTargetVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VPI value of the VPL used at the
target interface.
This value must be filled in when the
atmSoftPVpcTargetSelectType is set to 'required'.
This value is not relevant when the value of
atmSoftPVpcTargetSelectType is 'any'."
::= { atmSoftPVpcEntry 4 }
atmSoftPVpcLastReleaseCause OBJECT-TYPE
SYNTAX INTEGER(1..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value of the Cause field of the Cause
Information Element in the last RELEASE
signalling message received for this Soft PVPC.
Indicates the reason for the Release."
::= { atmSoftPVpcEntry 5 }
atmSoftPVpcLastReleaseDiagnostic OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value of the first 8 bytes of diagnostic information
from the Cause field of the Cause Information Element
in the last RELEASE signalling message received for
this Soft PVPC."
::= { atmSoftPVpcEntry 6 }
atmSoftPVpcOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
establishmentInProgress(2),
connected(3),
retriesExhausted(4),
noAddressSupplied(5),
lowerLayerDown(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the status of the Soft PVPC.
other - none of the types specified below
establishmentInProgress - connection or party is not
operational, but setup or add
party attempts are ongoing
connected - connection or party is currently
operational
retriesExhausted - retry limit has been reached and
setup or add party attempts have
ceased
noAddressSupplied - no remote address has been
configured, so no setup or add
party attempts are initiated
lowerLayerDown - underlying ATM interface is not
operational
When the row is not 'active', the value of this
object is 'other'."
::= { atmSoftPVpcEntry 7 }
atmSoftPVpcRestart OBJECT-TYPE
SYNTAX INTEGER {
restart(1),
noop(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When the value is set to 'restart', the Soft PVPC is
released if necessary and a new setup procedure is begun.
As a result of this action, the atmSoftPVpcOperStatus
object transitions to 'establishmentInProgress' (if not
already in this state) and the atmSoftPVpcRetryFailures
object is cleared.
When the value is set to 'noop', no operation is performed.
When read, the value 'noop' is returned."
::= { atmSoftPVpcEntry 8 }
atmSoftPVpcRetryInterval OBJECT-TYPE
SYNTAX INTEGER (0..3600)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Defines the period to wait before attempting
to establish the Soft PVPC after the first failed
call attempt. The time to wait between subsequent
call attempts may differ to implement a backoff scheme.
Zero represents an infinite interval indicating no
retries."
DEFVAL { 10 }
::= { atmSoftPVpcEntry 9 }
atmSoftPVpcRetryTimer OBJECT-TYPE
SYNTAX INTEGER (0..86400)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current value of the retry timer for
this connection. When the value reaches zero an attempt
will be made to establish the Soft PVPC. When the
timer is not running, the value zero shall be returned."
::= { atmSoftPVpcEntry 10 }
atmSoftPVpcRetryThreshold OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the number of consecutive call setup attempts for
the same Soft PVPC which need to fail before the
atmSoftPvcCallFailures object is incremented. A value of
zero indicates that an infinite number of call attempts
are required to increment the atmSoftPvcCallFailures object
and thus disables alarms for the Soft PVPC."
DEFVAL { 1 }
::= { atmSoftPVpcEntry 11 }
atmSoftPVpcRetryFailures OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates how many attempts to establish the connection
have failed. This count is reset whenever a connection
is successfully established or the Soft PVPC is restarted."
::= { atmSoftPVpcEntry 12 }
atmSoftPVpcRetryLimit OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sets a maximum limit on how many consecutive unsuccessful
call setup attempts can be made before stopping the attempt
to set up the connection. If this limit is reached then
management action will be required (e.g. setting
atmSoftPVpcRestart to 'restart') to initiate a new attempt
to establish the connection. A value of zero indicates no
limit - the attempts will continue until successful."
DEFVAL { 0 }
::= { atmSoftPVpcEntry 13 }
atmSoftPVpcRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to create and delete a Soft PVPC. When this
object is set to 'active' an attempt is made to
set up the Soft PVPC. When this object has the value
'active' and is set to another value, any
set-up or connection in-progress is released."
::= { atmSoftPVpcEntry 14 }
--
-- This table is used to configure one or more ATM addresses
-- prior to setting up Soft PVCCs or Soft PVPCs at an ATM
-- interface in a node.
-- In addition, prior to setting up a Soft PVC at the source
-- interface, this table can be consulted at the destination
-- interface.
--
atmInterfaceSoftPvcAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmInterfaceSoftPvcAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to configure ATM addresses at
an ATM interface on this node prior to setting up
Soft PVPCs or Soft PVPCs at that interface."
::= { atmSoftPvcMIBObjects 4 }
atmInterfaceSoftPvcAddressEntry OBJECT-TYPE
SYNTAX AtmInterfaceSoftPvcAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ATM address entry for configuring Soft PVCCs or
Soft PVPCs at an ATM interface."
INDEX { ifIndex, atmInterfaceSoftPvcAddress }
::= { atmInterfaceSoftPvcAddressTable 1 }
AtmInterfaceSoftPvcAddressEntry ::=
SEQUENCE {
atmInterfaceSoftPvcAddress AtmAddr,
atmInterfaceSoftPvcAddressRowStatus RowStatus
}
atmInterfaceSoftPvcAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the address that can be used to establish a Soft
PVCC or Soft PVPC to this interface."
::= { atmInterfaceSoftPvcAddressEntry 1 }
atmInterfaceSoftPvcAddressRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to create and delete an ATM address at this interface
for setting up Soft PVCCs or Soft PVPCs."
::= { atmInterfaceSoftPvcAddressEntry 2 }
-- Currently Failing Soft PVCC table
atmCurrentlyFailingSoftPVccTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmCurrentlyFailingSoftPVccEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table indicating all Soft Permanent Virtual Channel
Connections (Soft PVCCs) for which the atmSoftPVccRowStatus
is 'active' and the atmSoftPVccOperStatus is other than
'connected'."
::= { atmSoftPvcMIBObjects 5 }
atmCurrentlyFailingSoftPVccEntry OBJECT-TYPE
SYNTAX AtmCurrentlyFailingSoftPVccEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a Soft Permanent
Virtual Channel Connection (Soft PVCC) for which the
atmSoftPVccRowStatus is 'active' and the
atmSoftPVccOperStatus is other than 'connected'."
INDEX { ifIndex,
atmVclVpi,
atmVclVci,
atmSoftPVccLeafReference }
::= { atmCurrentlyFailingSoftPVccTable 1 }
AtmCurrentlyFailingSoftPVccEntry ::=
SEQUENCE {
atmCurrentlyFailingSoftPVccTimeStamp TimeStamp
}
atmCurrentlyFailingSoftPVccTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this Soft PVCC began to fail."
::= { atmCurrentlyFailingSoftPVccEntry 1 }
-- Currently Failing Soft PVPC table
atmCurrentlyFailingSoftPVpcTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmCurrentlyFailingSoftPVpcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table indicating all Soft Permanent Virtual Path
Connections (Soft PVPCs) for which the atmSoftPVpcRowStatus
is 'active' and the atmSoftPVpcOperStatus is other than
'connected'."
::= { atmSoftPvcMIBObjects 6 }
atmCurrentlyFailingSoftPVpcEntry OBJECT-TYPE
SYNTAX AtmCurrentlyFailingSoftPVpcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a Soft Permanent
Virtual Path Connection (Soft PVPC) for which the
atmSoftPVpcRowStatus is 'active' and the
atmSoftPVpcOperStatus is other than 'connected'."
INDEX { ifIndex,
atmVclVpi,
atmSoftPVpcLeafReference }
::= { atmCurrentlyFailingSoftPVpcTable 1 }
AtmCurrentlyFailingSoftPVpcEntry ::=
SEQUENCE {
atmCurrentlyFailingSoftPVpcTimeStamp TimeStamp
}
atmCurrentlyFailingSoftPVpcTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this Soft PVPC began to fail."
::= { atmCurrentlyFailingSoftPVpcEntry 1 }
-- Soft PVC Traps
atmSoftPvcTraps OBJECT IDENTIFIER ::= { atmSoftPvcMIBTraps 1 }
atmSoftPvcTrapsPrefix OBJECT IDENTIFIER ::= { atmSoftPvcTraps 0 }
atmSoftPvcCallFailuresTrap NOTIFICATION-TYPE
OBJECTS { atmSoftPvcCallFailures,
atmSoftPvcCurrentlyFailingSoftPVccs,
atmSoftPvcCurrentlyFailingSoftPVpcs }
STATUS current
DESCRIPTION
"A notification indicating that one or more series of
call attempts in trying to establish a Soft PVPC or
Soft PVCC have failed since the last
atmSoftPvcCallFailureTrap was sent. If this trap has
not been sent for the last atmSoftPvcNotificationInterval,
then it will be sent on the next increment of
atmSoftPvcCallFailures."
::= { atmSoftPvcTrapsPrefix 1 }
-- conformance information
atmSoftPvcMIBConformance
OBJECT IDENTIFIER ::= { atmSoftPvcMIB 3 }
atmSoftPvcMIBCompliances
OBJECT IDENTIFIER ::= { atmSoftPvcMIBConformance 1 }
atmSoftPvcMIBGroups
OBJECT IDENTIFIER ::= { atmSoftPvcMIBConformance 2 }
-- compliance statements
atmSoftPvcMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the ATM Soft PVC group."
MODULE -- this module
MANDATORY-GROUPS
{ atmSoftPvcBaseMIBGroup, atmSoftPvcVccMIBGroup,
atmSoftPvcAddressMIBGroup
}
OBJECT atmSoftPVccRetryLimit
MIN-ACCESS read-only
DESCRIPTION
"Write access not required."
GROUP atmSoftPvcVpcMIBGroup
DESCRIPTION
"Required if Soft PVPCs are supported."
OBJECT atmSoftPVpcRetryLimit
MIN-ACCESS read-only
DESCRIPTION
"Write access not required."
::= { atmSoftPvcMIBCompliances 1 }