forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-ATM-CONN-MIB.mib
2590 lines (2337 loc) · 92.8 KB
/
CISCO-ATM-CONN-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- CISCO ATM connection management MIB
--
-- Jan 1996, Yunsen Wang
--
-- Copyright (c) 1996-1999, 2001 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-ATM-CONN-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter32,Integer32,Gauge32 FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
TimeStamp,
TruthValue, RowStatus FROM SNMPv2-TC
ifIndex, InterfaceIndexOrZero FROM IF-MIB
atmVplVpi, atmVclVpi, atmVclVci,
AtmTrafficDescrParamIndex FROM ATM-MIB
NsapAtmAddr FROM CISCO-ATM-IF-MIB
ciscoExperiment FROM CISCO-SMI
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
LsPerVcqThresholdGroup FROM CISCO-ATM-RM-MIB
SnmpAdminString FROM SNMP-FRAMEWORK-MIB;
ciscoAtmConnMIB MODULE-IDENTITY
LAST-UPDATED "200207120000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-atm@cisco.com"
DESCRIPTION
"This MIB module is a cisco extension to VPL/VCL table defined
in rfc1695 for ATM switch connection management."
REVISION "200207120000Z"
DESCRIPTION
"Added a new enumeration 'useTrafficDescr' to the syntax of
ciscoAtmVclEpdEnable."
REVISION "200110300000Z"
DESCRIPTION
"Added ciscoAtmVplConnType and ciscoAtmVclConnType objects
to the VPL and VCL tables."
REVISION "200110100000Z"
DESCRIPTION
"Added ciscoAtmVplConnName and ciscoAtmVclConnName objects
to the VPL and VCL tables."
REVISION "200108060000Z"
DESCRIPTION
"Added a enumeration for ConfigType to enable configuration
of Passive Half leg for 2-ended Soft PVC/PVP"
REVISION "200101290000Z"
DESCRIPTION
"Added objects that provide per-connection Transmit
statistics for the switch fabric."
REVISION "9810020000Z"
DESCRIPTION
"Added objects for reporting negotiated traffic parameters."
REVISION "9705260000Z"
DESCRIPTION
"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."
REVISION "9611010000Z"
DESCRIPTION
"Added
- VPL/VCL violation counter,
- SVC frame discard using AAL5IE,
- default VPL/VCL tolerance
objects."
REVISION "9807260000Z"
DESCRIPTION
"Added
- object to configure a VP leg as a
hierarchical VP."
::= { ciscoExperiment 13 } -- assigned by cana@cisco.com
--
-- Caution. This MIB is temporary and experimental.
-- In the future will be removed from products,
-- perhaps with short notice, in favor of more standard
-- or generic MIBs. Application developers should not
-- depend on long-term access to this MIB.
--
ciscoAtmConnMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmConnMIB 1 }
CastType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the type of the connection. It can be either a point
to point connection or point to multipoint root or leaf."
SYNTAX INTEGER {
pointToPoint(1),
pointToMultiPointRoot(2),
pointToMultiPointLeaf(3)
}
ConfigType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies whether it's a permanent, switched, soft or
soft passive config type."
SYNTAX INTEGER {
other(1),
permanent(2),
switch(3),
soft(4),
softPassive(5)
}
SpanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"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."
SYNTAX INTEGER {
unknown(1), -- not installed
transit(2),
terminate(3),
both(4) -- p2mp root
}
EnableStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enable or Disable operation."
SYNTAX INTEGER { enable(1), disable(2) }
UpcStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Define the Usage Parameter Control (UPC) operation as one of
pass,tag or drop at this connection."
SYNTAX INTEGER {
passing(1),
tagging(2),
dropping(3),
localShaping(4)
}
ConnState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"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'."
SYNTAX INTEGER {
setup(1),
release(2),
notInstalled(3),
down(4),
up(5)
}
Location ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Location of calling or called or unknown."
SYNTAX INTEGER {
unknown(1),
calling(2),
called(3)
}
Direction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Calling or called side associated with address."
SYNTAX INTEGER {
unknown(1),
p2pCallingSide(2),
p2pCalledSide(3),
p2mpRoot(4),
p2mpLeaf(5)
}
SnoopDirType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Direction of Snooped Traffic"
SYNTAX INTEGER {
transmit(1),
receive(2)
}
-- This group is an extension of VPL table
ciscoAtmVpl OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 1 }
ciscoAtmVplTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoAtmVplEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Virtual Path Link extension Table."
::= { ciscoAtmVpl 1 }
ciscoAtmVplEntry OBJECT-TYPE
SYNTAX CiscoAtmVplEntry
MAX-ACCESS not-accessible
STATUS current
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 {
-- config info
ciscoAtmVplCastType CastType,
ciscoAtmVplSpanType SpanType,
ciscoAtmVplConfigType ConfigType,
ciscoAtmVplRxUpcMode UpcStatus,
-- connection state
ciscoAtmVplConnState ConnState,
-- oam config info
ciscoAtmVplOamLoopbkTxInterval Integer32,
ciscoAtmVplOamSegmentLoopback EnableStatus,
ciscoAtmVplOamEndLoopback EnableStatus,
ciscoAtmVplOamAisEnable EnableStatus,
ciscoAtmVplOamRdiEnable EnableStatus,
-- per vc statistics
ciscoAtmVplInstallTime TimeStamp,
ciscoAtmVplInCells Counter32,
ciscoAtmVplOutCells Counter32,
-- cross side connection info
ciscoAtmVplCrossIfIndex InterfaceIndexOrZero,
ciscoAtmVplCrossVpi Integer32,
ciscoAtmVplNextLeafIfIndex InterfaceIndexOrZero,
ciscoAtmVplNextLeafVpi Integer32,
-- soft PVP
ciscoAtmVplRemoteAddr NsapAtmAddr,
ciscoAtmVplRemoteVpi Integer32,
ciscoAtmVplLocation Location,
ciscoAtmVplSlowRetryIntv Integer32,
ciscoAtmVplNumAttempts Counter32,
ciscoAtmVplLastReleaseCause Integer32,
-- logical port
ciscoAtmVplLogicalPortDef INTEGER,
ciscoAtmVplLogicalPortIndex InterfaceIndexOrZero,
-- per vc violation stats
ciscoAtmVplUpcViolations Counter32,
ciscoAtmVplEpdTpdCellDrops Counter32,
ciscoAtmVplEpdTpdPacketDrops Counter32,
ciscoAtmVplEpdTpdPacketsIn Counter32,
ciscoAtmVplClp1Drops Counter32,
-- default tolerance
ciscoAtmVplDefaultRxUpcTolerance Integer32,
ciscoAtmVplDefaultRxUpcVbrCdvt Integer32,
-- lightstream per-vc queueing
-- switch chipset objects
ciscoAtmVplLsPerVcqWrrWeight INTEGER,
ciscoAtmVplLsPerVcqTunnelIsShaped TruthValue,
ciscoAtmVplLsPerVcqXmtQueuedCells Gauge32,
ciscoAtmVplLsPerVcQThreshGrp LsPerVcqThresholdGroup,
-- feature card per-flow queueing
-- (FC-PFQ) per-VPL statistics objects
ciscoAtmVplInClp0Cells Counter32,
ciscoAtmVplInClp1Cells Counter32,
ciscoAtmVplOutClp0Cells Counter32,
ciscoAtmVplOutClp1Cells Counter32,
ciscoAtmVplCellDrops Counter32,
ciscoAtmVplClp0VcqFullCellDrops Counter32,
ciscoAtmVplVcqClpThreshCellDrops Counter32,
-- feature card per-flow queueing
-- Hierarchical VP-Tunnel
ciscoAtmVplLsPerVcqTunnelIsHierarchical TruthValue,
-- Objects for negotiated traffic parameters
ciscoAtmVplRxNegTraffDescrIndex AtmTrafficDescrParamIndex,
ciscoAtmVplTxNegTraffDescrIndex AtmTrafficDescrParamIndex,
-- Switch Fabric Tx Statistics
ciscoAtmVplSwFabOutCells Counter32,
ciscoAtmVplSwFabOutClp0Cells Counter32,
ciscoAtmVplSwFabOutClp1Cells Counter32,
-- Connection info
ciscoAtmVplConnName SnmpAdminString,
ciscoAtmVplConnType INTEGER
}
ciscoAtmVplCastType OBJECT-TYPE
SYNTAX CastType
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Vpl span is either a transit one or a terminating one."
DEFVAL { transit }
::= { ciscoAtmVplEntry 2 }
ciscoAtmVplConfigType OBJECT-TYPE
SYNTAX ConfigType
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Usage Parameter Control opeartion is pass,tag,drop or
local shaping at this connection."
DEFVAL { passing }
::= { ciscoAtmVplEntry 4 }
ciscoAtmVplConnState OBJECT-TYPE
SYNTAX ConnState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The connection state of this VPL. "
::= { ciscoAtmVplEntry 5 }
ciscoAtmVplOamLoopbkTxInterval OBJECT-TYPE
SYNTAX Integer32 (5..60)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Frequency of OAM loopback cells generated."
DEFVAL { 5 }
::= { ciscoAtmVplEntry 6 }
ciscoAtmVplOamSegmentLoopback OBJECT-TYPE
SYNTAX EnableStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable segment loopback on this virtual path."
DEFVAL { disable }
::= { ciscoAtmVplEntry 7 }
ciscoAtmVplOamEndLoopback OBJECT-TYPE
SYNTAX EnableStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable end to end loopback on this virtual path."
DEFVAL { disable }
::= { ciscoAtmVplEntry 8 }
ciscoAtmVplOamAisEnable OBJECT-TYPE
SYNTAX EnableStatus
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of cells received on this
VPL."
::= { ciscoAtmVplEntry 12 }
ciscoAtmVplOutCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of cells transmitted on
this VPL."
::= { ciscoAtmVplEntry 13 }
ciscoAtmVplCrossIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
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 Integer32 (0..4095)
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-only
STATUS current
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 Integer32 (0..4095)
MAX-ACCESS read-only
STATUS current
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
MAX-ACCESS read-write
STATUS current
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 Integer32 (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Soft PVP target VPI in calling side. 0 in called side."
::= { ciscoAtmVplEntry 19 }
ciscoAtmVplLocation OBJECT-TYPE
SYNTAX Location
MAX-ACCESS read-only
STATUS current
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 Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Soft PVP slow retry interval time in seconds."
::= { ciscoAtmVplEntry 21 }
ciscoAtmVplNumAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
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 Integer32(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 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)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the VPC at this VPL interface
is an Atm Logical Port interface."
DEFVAL { notLogicalIf }
::= { ciscoAtmVplEntry 24 }
ciscoAtmVplLogicalPortIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "Never implemented."
::= { ciscoAtmVplEntry 27 }
ciscoAtmVplEpdTpdPacketDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "Never implemented."
::= { ciscoAtmVplEntry 28 }
ciscoAtmVplEpdTpdPacketsIn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "Never implemented."
::= { ciscoAtmVplEntry 29 }
ciscoAtmVplClp1Drops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "Never implemented."
::= { ciscoAtmVplEntry 30 }
ciscoAtmVplDefaultRxUpcTolerance OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
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 Integer32
MAX-ACCESS read-only
STATUS current
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)
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-write
STATUS current
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 Gauge32
MAX-ACCESS read-only
STATUS current
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
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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
MAX-ACCESS read-write
STATUS current
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
MAX-ACCESS read-only
STATUS current
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
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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
MAX-ACCESS read-write
STATUS current
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
SYNTAX INTEGER {
local (1), -- within a node
endToEnd (2) -- across several nodes
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represent the PVP Type for this connection.
- local connection within the node
- endToEnd across several nodes
This object serves as an information object for a
management system and has no functional meaning to
the switch."
::= { ciscoAtmVplEntry 52 }
-- This group is an extension of VCL table
ciscoAtmVcl OBJECT IDENTIFIER ::= { ciscoAtmConnMIBObjects 2 }
ciscoAtmVclTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoAtmVclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Virtual Channel Link extension Table."
::= { ciscoAtmVcl 1 }
ciscoAtmVclEntry OBJECT-TYPE
SYNTAX CiscoAtmVclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry in the Vcl table.This entry is used to model
a bi-directional Vcl. This table augments the atmVclTable
defined in RFC 1695. However it uses ifIndex, atmVclVpi
and atmVclVci as an Index for historical reasons.
The entries are created/deleted as a by-product of
creating and deleting entries in the atmVclTable."
INDEX { ifIndex,atmVclVpi,atmVclVci }
::= { ciscoAtmVclTable 1 }
CiscoAtmVclEntry ::=
SEQUENCE {
-- config info
ciscoAtmVclCastType CastType,
ciscoAtmVclSpanType SpanType,
ciscoAtmVclConfigType ConfigType,
ciscoAtmVclRxUpcMode UpcStatus,
ciscoAtmVclEpdEnable INTEGER,
-- connection state
ciscoAtmVclConnState ConnState,
-- oam config info
ciscoAtmVclOamLoopbkTxInterval Integer32,
ciscoAtmVclOamSegmentLoopback EnableStatus,
ciscoAtmVclOamEndLoopback EnableStatus,
ciscoAtmVclOamAisEnable EnableStatus,
ciscoAtmVclOamRdiEnable EnableStatus,
-- per vc statistics
ciscoAtmVclInstallTime TimeStamp,
ciscoAtmVclInCells Counter32,
ciscoAtmVclOutCells Counter32,
-- cross side connection info
ciscoAtmVclCrossIfIndex InterfaceIndexOrZero,
ciscoAtmVclCrossVpi Integer32,
ciscoAtmVclCrossVci Integer32,
ciscoAtmVclNextLeafIfIndex InterfaceIndexOrZero,
ciscoAtmVclNextLeafVpi Integer32,
ciscoAtmVclNextLeafVci Integer32,
-- vc terminating info
ciscoAtmVclAalEncapFlag INTEGER,
ciscoAtmVclAalEncapProtocol INTEGER,
ciscoAtmVclAalUserVcType INTEGER,
ciscoAtmVclAtmInArpInterval Integer32,
-- soft PVC
ciscoAtmVclRemoteAddr NsapAtmAddr,
ciscoAtmVclRemoteVpi Integer32,
ciscoAtmVclRemoteVci Integer32,
ciscoAtmVclLocation Location,
ciscoAtmVclSlowRetryIntv Integer32,
ciscoAtmVclNumAttempts Counter32,
ciscoAtmVclLastReleaseCause Integer32,
-- per vc violation stats
ciscoAtmVclUpcViolations Counter32,