-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-ATM-CONN-MIB-V1SMI.my
2641 lines (2448 loc) · 83.5 KB
/
CISCO-ATM-CONN-MIB-V1SMI.my
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MIB file created 25-Mar-2003 15:57:32, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-ATM-CONN-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-ATM-CONN-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TimeStamp, TruthValue, RowStatus
FROM SNMPv2-TC-v1
ifIndex, InterfaceIndexOrZero
FROM IF-MIB
atmVplVpi, atmVclVpi, atmVclVci, AtmTrafficDescrParamIndex
FROM ATM-MIB
NsapAtmAddr
FROM CISCO-ATM-IF-MIB
ciscoExperiment
FROM CISCO-SMI
LsPerVcqThresholdGroup
FROM CISCO-ATM-RM-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoAtmConnMIB OBJECT IDENTIFIER ::= { ciscoExperiment 13 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200207120000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This MIB module is a cisco extension to VPL/VCL table defined
-- in rfc1695 for ATM switch connection management.
-- RevDate
-- 200207120000Z
-- RevDescr
-- Added a new enumeration 'useTrafficDescr' to the syntax of
-- ciscoAtmVclEpdEnable.
-- RevDate
-- 200110300000Z
-- RevDescr
-- Added ciscoAtmVplConnType and ciscoAtmVclConnType objects
-- to the VPL and VCL tables.
-- RevDate
-- 200110100000Z
-- RevDescr
-- Added ciscoAtmVplConnName and ciscoAtmVclConnName objects
-- to the VPL and VCL tables.
-- RevDate
-- 200108060000Z
-- RevDescr
-- Added a enumeration for ConfigType to enable configuration
-- of Passive Half leg for 2-ended Soft PVC/PVP
-- RevDate
-- 200101290000Z
-- RevDescr
-- Added objects that provide per-connection Transmit
-- statistics for the switch fabric.
-- RevDate
-- 9810020000Z
-- RevDescr
-- Added objects for reporting negotiated traffic parameters.
-- RevDate
-- 9705260000Z
-- RevDescr
-- Added objects for management of new features made possible
-- on the LS1010 by the Feature Card Plus. This includes
-- support for:
-- - per-VC queueing hardware structures,
-- - enhanced UPC,
-- - per-connection snooping,
-- - enhanced per-connection statistics.
-- RevDate
-- 9611010000Z
-- RevDescr
-- Added
-- - VPL/VCL violation counter,
-- - SVC frame discard using AAL5IE,
-- - default VPL/VCL tolerance
-- objects.
-- RevDate
-- 9807260000Z
-- RevDescr
-- Added
-- - object to configure a VP leg as a
-- hierarchical VP.
ciscoAtmConnMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmConnMIB 1 }
ciscoAtmVpl OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 1 }
ciscoAtmVcl OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 2 }
ciscoAtmSvp OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 3 }
ciscoAtmSvc OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 4 }
ciscoAtmSnoopVc OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 5 }
ciscoAtmSnoopVp OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 6 }
ciscoAtmConnMIBConformance OBJECT IDENTIFIER ::= { ciscoAtmConnMIB 3 }
ciscoAtmConnMIBCompliances OBJECT IDENTIFIER ::= { ciscoAtmConnMIBConformance 1 }
ciscoAtmConnMIBGroups OBJECT IDENTIFIER ::= { ciscoAtmConnMIBConformance 2 }
CastType ::= INTEGER {
pointToPoint(1),
pointToMultiPointRoot(2),
pointToMultiPointLeaf(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Specifies the type of the connection. It can be either a point
-- to point connection or point to multipoint root or leaf.
ConfigType ::= INTEGER {
other(1),
permanent(2),
switch(3),
soft(4),
softPassive(5)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Specifies whether it's a permanent, switched, soft or
-- soft passive config type.
SpanType ::= INTEGER {
unknown(1),
transit(2),
terminate(3),
both(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The SpanType textual convention is used to specify different
-- connection span types.
-- The connection span types are:
--
-- - 'unknown', which indicates that the connection entry is not
-- cross-connected.
--
-- - 'transit', which indicates that the connection entry is
-- cross-connected and is not a connection end point.
--
-- - 'terminate', which indicates that the connection entry is
-- cross-connected and is a connection end point.
--
-- - 'both', which indicates that the connection is transit as
-- well as terminating. This will be true only if the connection
-- cast type is a pointToMultiPointRoot and has transit and
-- terminating connection leaves.
--
-- None of the above values may be specified in a management
-- protocol set operation.
EnableStatus ::= INTEGER {
enable(1),
disable(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Enable or Disable operation.
UpcStatus ::= INTEGER {
passing(1),
tagging(2),
dropping(3),
localShaping(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Define the Usage Parameter Control (UPC) operation as one of
-- pass,tag or drop at this connection.
ConnState ::= INTEGER {
setup(1),
release(2),
notInstalled(3),
down(4),
up(5)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The ConnState textual convention is used to specify different
-- connection states.
-- The connections states are:
--
-- - 'setup', which indicates that the connection entry is to be
-- created and installed in the hardware and software connection
-- tables.
--
-- - 'release', which indicates that the connection entry is to
-- be removed from the hardware and software connection tables.
--
-- - 'notInstalled', which indicates connection entry is created
-- only in the software connection tables. The connection entry is
-- not installed in the hardware connection table.
--
-- - 'down' which indicates that connection is down and is present
-- in both software and hardware connection tables.
--
-- - 'up' which indicates that connection is up and is present
-- in both software and hardware connection tables.
--
-- - 'setup' and 'release' are only two values may be specified
-- in a management protocol set operation, only three values will
-- be returned in response to a management protocol retrieval
-- operation: 'notInstalled', 'down' or 'up'.
Location ::= INTEGER {
unknown(1),
calling(2),
called(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Location of calling or called or unknown.
Direction ::= INTEGER {
unknown(1),
p2pCallingSide(2),
p2pCalledSide(3),
p2mpRoot(4),
p2mpLeaf(5)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Calling or called side associated with address.
SnoopDirType ::= INTEGER {
transmit(1),
receive(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Direction of Snooped Traffic
ciscoAtmVplTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoAtmVplEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Virtual Path Link extension Table."
::= { ciscoAtmVpl 1 }
ciscoAtmVplEntry OBJECT-TYPE
SYNTAX CiscoAtmVplEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" An entry in the Vpl table.This entry is used to model
a bi-directional Vpl. This table augments the atmVplTable
defined in RFC 1695. However it uses ifIndex and atmVplVpi
as an Index for historical reasons. The entries are
created/deleted as a by-product of creating and deleting
entries in the atmVplTable."
INDEX { ifIndex, atmVplVpi }
::= { ciscoAtmVplTable 1 }
CiscoAtmVplEntry ::= SEQUENCE {
ciscoAtmVplCastType CastType,
ciscoAtmVplSpanType SpanType,
ciscoAtmVplConfigType ConfigType,
ciscoAtmVplRxUpcMode UpcStatus,
ciscoAtmVplConnState ConnState,
ciscoAtmVplOamLoopbkTxInterval INTEGER,
ciscoAtmVplOamSegmentLoopback EnableStatus,
ciscoAtmVplOamEndLoopback EnableStatus,
ciscoAtmVplOamAisEnable EnableStatus,
ciscoAtmVplOamRdiEnable EnableStatus,
ciscoAtmVplInstallTime TimeStamp,
ciscoAtmVplInCells Counter,
ciscoAtmVplOutCells Counter,
ciscoAtmVplCrossIfIndex InterfaceIndexOrZero,
ciscoAtmVplCrossVpi INTEGER,
ciscoAtmVplNextLeafIfIndex InterfaceIndexOrZero,
ciscoAtmVplNextLeafVpi INTEGER,
ciscoAtmVplRemoteAddr NsapAtmAddr,
ciscoAtmVplRemoteVpi INTEGER,
ciscoAtmVplLocation Location,
ciscoAtmVplSlowRetryIntv INTEGER,
ciscoAtmVplNumAttempts Counter,
ciscoAtmVplLastReleaseCause INTEGER,
ciscoAtmVplLogicalPortDef INTEGER,
ciscoAtmVplLogicalPortIndex InterfaceIndexOrZero,
ciscoAtmVplUpcViolations Counter,
ciscoAtmVplEpdTpdCellDrops Counter,
ciscoAtmVplEpdTpdPacketDrops Counter,
ciscoAtmVplEpdTpdPacketsIn Counter,
ciscoAtmVplClp1Drops Counter,
ciscoAtmVplDefaultRxUpcTolerance INTEGER,
ciscoAtmVplDefaultRxUpcVbrCdvt INTEGER,
ciscoAtmVplLsPerVcqWrrWeight INTEGER,
ciscoAtmVplLsPerVcqTunnelIsShaped TruthValue,
ciscoAtmVplLsPerVcqXmtQueuedCells Gauge,
ciscoAtmVplLsPerVcQThreshGrp LsPerVcqThresholdGroup,
ciscoAtmVplInClp0Cells Counter,
ciscoAtmVplInClp1Cells Counter,
ciscoAtmVplOutClp0Cells Counter,
ciscoAtmVplOutClp1Cells Counter,
ciscoAtmVplCellDrops Counter,
ciscoAtmVplClp0VcqFullCellDrops Counter,
ciscoAtmVplVcqClpThreshCellDrops Counter,
ciscoAtmVplLsPerVcqTunnelIsHierarchical TruthValue,
ciscoAtmVplRxNegTraffDescrIndex AtmTrafficDescrParamIndex,
ciscoAtmVplTxNegTraffDescrIndex AtmTrafficDescrParamIndex,
ciscoAtmVplSwFabOutCells Counter,
ciscoAtmVplSwFabOutClp0Cells Counter,
ciscoAtmVplSwFabOutClp1Cells Counter,
ciscoAtmVplConnName SnmpAdminString,
ciscoAtmVplConnType INTEGER
}
ciscoAtmVplCastType OBJECT-TYPE
SYNTAX CastType
-- Rsyntax INTEGER {
-- pointToPoint(1),
-- pointToMultiPointRoot(2),
-- pointToMultiPointLeaf(3)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
" Vpl type is either a point to point connection or point
to multipoint root or leaf."
DEFVAL { pointToPoint }
::= { ciscoAtmVplEntry 1 }
ciscoAtmVplSpanType OBJECT-TYPE
SYNTAX SpanType
-- Rsyntax INTEGER {
-- unknown(1),
-- transit(2),
-- terminate(3),
-- both(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Vpl span is either a transit one or a terminating one."
DEFVAL { transit }
::= { ciscoAtmVplEntry 2 }
ciscoAtmVplConfigType OBJECT-TYPE
SYNTAX ConfigType
-- Rsyntax INTEGER {
-- other(1),
-- permanent(2),
-- switch(3),
-- soft(4),
-- softPassive(5)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
" Vpl type is either a PVC, SVC, Soft PVC or Soft Passive half leg.
The half leg can be set to Passive through user configuration only."
DEFVAL { permanent }
::= { ciscoAtmVplEntry 3 }
ciscoAtmVplRxUpcMode OBJECT-TYPE
SYNTAX UpcStatus
-- Rsyntax INTEGER {
-- passing(1),
-- tagging(2),
-- dropping(3),
-- localShaping(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
" Usage Parameter Control opeartion is pass,tag,drop or
local shaping at this connection."
DEFVAL { passing }
::= { ciscoAtmVplEntry 4 }
ciscoAtmVplConnState OBJECT-TYPE
SYNTAX ConnState
-- Rsyntax INTEGER {
-- setup(1),
-- release(2),
-- notInstalled(3),
-- down(4),
-- up(5)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The connection state of this VPL. "
::= { ciscoAtmVplEntry 5 }
ciscoAtmVplOamLoopbkTxInterval OBJECT-TYPE
SYNTAX INTEGER(5..60)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Frequency of OAM loopback cells generated."
DEFVAL { 5 }
::= { ciscoAtmVplEntry 6 }
ciscoAtmVplOamSegmentLoopback OBJECT-TYPE
SYNTAX EnableStatus
-- Rsyntax INTEGER {
-- enable(1),
-- disable(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable segment loopback on this virtual path."
DEFVAL { disable }
::= { ciscoAtmVplEntry 7 }
ciscoAtmVplOamEndLoopback OBJECT-TYPE
SYNTAX EnableStatus
-- Rsyntax INTEGER {
-- enable(1),
-- disable(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable end to end loopback on this virtual path."
DEFVAL { disable }
::= { ciscoAtmVplEntry 8 }
ciscoAtmVplOamAisEnable OBJECT-TYPE
SYNTAX EnableStatus
-- Rsyntax INTEGER {
-- enable(1),
-- disable(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable Alarm Indication Signal OAM cell generation
if the interafce goes down on a crossconnect virtual path."
DEFVAL { disable }
::= { ciscoAtmVplEntry 9 }
ciscoAtmVplOamRdiEnable OBJECT-TYPE
SYNTAX EnableStatus
-- Rsyntax INTEGER {
-- enable(1),
-- disable(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable Remote Defect Indication OAM cell generation
if an Alarm Indication Signal OAM cell is received."
DEFVAL { disable }
::= { ciscoAtmVplEntry 10 }
ciscoAtmVplInstallTime OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time stamp derived from sysUpTime when this VPL gets
created. The VPL entries are created/deleted as a by-product
of creating and deleting entries in the atmVplTable defined
in RFC1695."
::= { ciscoAtmVplEntry 11 }
ciscoAtmVplInCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells received on this
VPL."
::= { ciscoAtmVplEntry 12 }
ciscoAtmVplOutCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells transmitted on
this VPL."
::= { ciscoAtmVplEntry 13 }
ciscoAtmVplCrossIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
-- Rsyntax INTEGER(0..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"For point to point, this is the cross-connected VPL's
ifIndex of this VPL. For point to multi-point connection,
this will be the root VPL's ifIndex for a leaf VPL entry in
the multicast chain, or it's the 1st leaf for a root VPL entry.
If it's zero, it means it's not cross-connected yet.
Atomically set ciscoAtmVplConnState, ciscoAtmVplCrossIfIndex
and ciscoAtmVplCrossVpi will create or delete a cross
connection to crossed half leg of this ciscoAtmVplCrossIfindex
and ciscoAtmVplCrossVpi for p2p PVP, or add or drop a multicast
connection of this ciscoAtmVplCrossIfindex and
ciscoAtmVplCrossVpi to/from the root on the multicast chain
for p2mp PVP."
DEFVAL { 0 }
::= { ciscoAtmVplEntry 14 }
ciscoAtmVplCrossVpi OBJECT-TYPE
SYNTAX INTEGER(0..4095)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This specifies the VPI value of the VPL to which this VPL is
cross-connected. For point to multi-point connection, this is
the root VPL's VPI for the leaf entry. Similarly it is the
1st leaf's VPI value for the root entry."
DEFVAL { 0 }
::= { ciscoAtmVplEntry 15 }
ciscoAtmVplNextLeafIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
-- Rsyntax INTEGER(0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"For point to point, this is zero i.e. not used.
For point to multi-point connection, this will be the next
leaf VPL's ifIndex on the multicast chain. This will be 0
if this is the root VPL entry. If it's zero for a leaf VPL,
it means this is the last leaf."
DEFVAL { 0 }
::= { ciscoAtmVplEntry 16 }
ciscoAtmVplNextLeafVpi OBJECT-TYPE
SYNTAX INTEGER(0..4095)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"For point to point, this is zero i.e. not used.
This apply only to point to multi-point connection,
this will be the next leaf VPL's VPI on the multicast chain."
DEFVAL { 0 }
::= { ciscoAtmVplEntry 17 }
ciscoAtmVplRemoteAddr OBJECT-TYPE
SYNTAX NsapAtmAddr
-- Rsyntax OCTET STRING(SIZE(20))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Soft PVP target address if this is the calling side
Soft PVP source address if this is called side.
Atomically set ConnState, RemoteAddr
and RemoteVpi will create or delete a soft PVP.
Atomically set ConnState, RemoteAddr without RemoteVpi will
also create or delete a soft PVP but let target switch
assign the vpi."
::= { ciscoAtmVplEntry 18 }
ciscoAtmVplRemoteVpi OBJECT-TYPE
SYNTAX INTEGER(0..4095)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Soft PVP target VPI in calling side. 0 in called side."
::= { ciscoAtmVplEntry 19 }
ciscoAtmVplLocation OBJECT-TYPE
SYNTAX Location
-- Rsyntax INTEGER {
-- unknown(1),
-- calling(2),
-- called(3)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicate calling or called side of a soft PVP.
If ciscoAtmVplConfigType is not soft then
ciscoAtmVplLocation value should be ignored."
::= { ciscoAtmVplEntry 20 }
ciscoAtmVplSlowRetryIntv OBJECT-TYPE
SYNTAX INTEGER(0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Soft PVP slow retry interval time in seconds."
::= { ciscoAtmVplEntry 21 }
ciscoAtmVplNumAttempts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of retries made to install this soft PVP
connection. If ciscoAtmVplConfigType is not soft then
ciscoAtmVplNumAttempts value should be ignored."
::= { ciscoAtmVplEntry 22 }
ciscoAtmVplLastReleaseCause OBJECT-TYPE
SYNTAX INTEGER(1..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of the Cause field of the Cause
Information Element in the last Release
Signalling message received for this SPVP.
Indicates the reason for the Release.
ciscoAtmVplConfigType is not soft then
ciscoAtmVplLastReleaseCause value should be ignored."
REFERENCE
"ATM Forum's UNI3.0/3.1 Speicifcation"
::= { ciscoAtmVplEntry 23 }
ciscoAtmVplLogicalPortDef OBJECT-TYPE
SYNTAX INTEGER {
notLogicalIf(1),
isLogicalIf(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates whether the VPC at this VPL interface
is an Atm Logical Port interface."
DEFVAL { notLogicalIf }
::= { ciscoAtmVplEntry 24 }
ciscoAtmVplLogicalPortIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
-- Rsyntax INTEGER(0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ifTable index of the Atm logical port
interface associated with this VPL. Only valid if
the value of atmVplLogicalPortDef is isLogicalIf,
and the VPL row is active."
::= { ciscoAtmVplEntry 25 }
ciscoAtmVplUpcViolations OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of nonconforming cells detected
by Usage Parameter Control (UPC) for cells received
on this VPL.
On LS1010 systems, this counter is valid only if
equipped with the Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 26 }
ciscoAtmVplEpdTpdCellDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Never implemented."
::= { ciscoAtmVplEntry 27 }
ciscoAtmVplEpdTpdPacketDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Never implemented."
::= { ciscoAtmVplEntry 28 }
ciscoAtmVplEpdTpdPacketsIn OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Never implemented."
::= { ciscoAtmVplEntry 29 }
ciscoAtmVplClp1Drops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Never implemented."
::= { ciscoAtmVplEntry 30 }
ciscoAtmVplDefaultRxUpcTolerance OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the tolerance (CDVT for CBR, ABR, UBR connections, Maximum
Burst Size for VBR connectons) requested for Usage
Parameter Control is not explicitly specified in VPL creation,
this object contains the default that is used. If tolerance
is explicitly specified in VPL creation, it can be found in
the Traffic Table row specified by atmVplReceiveTrafficDescrIndex,
and the value of this object is -1."
::= { ciscoAtmVplEntry 31 }
ciscoAtmVplDefaultRxUpcVbrCdvt OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the Cell Delay Variation Tolerance (CDVT) requested for
Usage Parameter Control for a VBR connection is not explicitly
specified in VPL creation, this object contains the default
that is used. If CDVT is explicitly specified in VPL creation,
it can be found in the Traffic Table row specified by
atmVplReceiveTrafficDescrIndex, and the value of this object
is -1."
::= { ciscoAtmVplEntry 32 }
ciscoAtmVplLsPerVcqWrrWeight OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Configure the weighting specified for a VP half-leg
within a service class to make the scheduling decision
among other active VPLs in the service class. This
is for transmit on the VPL on the interface. This
parameter only applies to transit VPs. This object
is defined only when the switch is equipped with
the Lightstream per-VC queueing chipset."
::= { ciscoAtmVplEntry 33 }
ciscoAtmVplLsPerVcqTunnelIsShaped OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Determines whether this is to be a -shaped- VP, per
the Lightstream per-VC queueing chipset. If the value
specified is TRUE, the VP is to be a shaped VP Tunnel.
Such a VP cannot be cross-connected. This object
is defined only when the switch is equipped with
the Lightstream per-VC queueing chipset."
::= { ciscoAtmVplEntry 34 }
ciscoAtmVplLsPerVcqXmtQueuedCells OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of cells received on this VPL and
residing on the per-connection queue. Note that
this value is not valid until the VPL is in an
active cross-connect. This object
is defined only when the switch is equipped with
the Lightstream per-VC queueing chipset."
::= { ciscoAtmVplEntry 35 }
ciscoAtmVplLsPerVcQThreshGrp OBJECT-TYPE
SYNTAX LsPerVcqThresholdGroup
-- Rsyntax INTEGER {
-- tg1(1),
-- tg2(2),
-- tg3(3),
-- tg4(4),
-- tg5(5),
-- tg6(6),
-- tg7(7),
-- tg8(8),
-- tg9(9),
-- tg10(10),
-- tg11(11),
-- tg12(12),
-- tg13(13),
-- tg14(14),
-- tg15(15),
-- tg16(16)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Threshold Group to which the cell-queue for
cells received by this VP are queued. This object
is defined only when the switch is equipped with
the Lightstream per-VC queueing chipset."
::= { ciscoAtmVplEntry 36 }
ciscoAtmVplInClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells with the CLP bit clear
received on this VPL. Note that these cells may
subsequently be discarded.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 37 }
ciscoAtmVplInClp1Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells with the CLP bit set
received on this VPL. Note that these cells may
subsequently be discarded.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 38 }
ciscoAtmVplOutClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells with the CLP bit clear
transmitted on this VPL.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
the Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 39 }
ciscoAtmVplOutClp1Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells with the CLP bit set
transmitted on this VPL.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
the Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 40 }
ciscoAtmVplCellDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells received on this
VPL, but discarded.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 41 }
ciscoAtmVplClp0VcqFullCellDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells received on this
VPL with the CLP bit clear, discarded because
the per-VC queue limit is exceeded.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 43 }
ciscoAtmVplVcqClpThreshCellDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells received on this
VPL, discarded because the discard threshold
(as opposed to the queue-limit) is exceeded
on the per-VC queue, and the CLP bit is set.
This counter is valid only:
- if the VPL is not a Logical Interface (tunnel).
- on LS1010 systems, only those equipped with
Feature Card - Per Flow Queueing."
::= { ciscoAtmVplEntry 44 }
ciscoAtmVplLsPerVcqTunnelIsHierarchical OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Determines whether this is to be a -Hierarchical- VP, per
the Lightstream per-VC queueing chipset. If the value
specified is TRUE, the VP is to be a Hierarchical VP Tunnel.
Such a VP cannot be cross-connected. This object
is defined on a LS1010 only when the switch is equipped with
the Lightstream per-VC queueing chipset."
::= { ciscoAtmVplEntry 45 }
ciscoAtmVplRxNegTraffDescrIndex OBJECT-TYPE
SYNTAX AtmTrafficDescrParamIndex
-- Rsyntax INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Identifies the entry in the atmTrafficDescrParamTable which
contains negotiated traffic parameters applied to the receive
direction of this VPL.
This object is not instantiated if this VPL is not the calling
side of a soft VP, or if there was no traffic negotiation."
::= { ciscoAtmVplEntry 46 }
ciscoAtmVplTxNegTraffDescrIndex OBJECT-TYPE
SYNTAX AtmTrafficDescrParamIndex
-- Rsyntax INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Identifies the entry in the atmTrafficDescrParamTable which
contains negotiated traffic parameters applied to the transmit
direction of this VPL.
This object is not instantiated if this VPL is not the calling
side of a soft VP, or if there was no traffic negotiation."
::= { ciscoAtmVplEntry 47 }
ciscoAtmVplSwFabOutCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells transmitted on
this VPL by the Switch Fabric. This object is not
instantiated on systems that do not have support for
collecting such statistics."
::= { ciscoAtmVplEntry 48 }
ciscoAtmVplSwFabOutClp0Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells with the CLP bit clear
transmitted on this VPL by the Switch Fabric. This object
is not instantiated for a VPL that is a logical interface
(VP Tunnel). This object is not instantiated on systems
that do not have support for collecting such statistics."
::= { ciscoAtmVplEntry 49 }
ciscoAtmVplSwFabOutClp1Cells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of cells with the CLP bit set transmitted
on this VPL by the Switch Fabric. This object is not
instantiated for a VPL that is a logical interface
(VP Tunnel). This object is not instantiated on systems
that do not have support for collecting such statistics."
::= { ciscoAtmVplEntry 50 }
ciscoAtmVplConnName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A human readable string that identifies this connection.
This object will return a zero-length string if value is
not set."
::= { ciscoAtmVplEntry 51 }
ciscoAtmVplConnType OBJECT-TYPE