-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-VSI-MASTER-MIB.mib
1114 lines (1011 loc) · 44.6 KB
/
CISCO-VSI-MASTER-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 VSI Master MIB
-- Virtual Switch Interface Master MIB
--
-- September 1999, Steve Elias & Mike Lague
--
-- Copyright (c) 1999, 2000 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-VSI-MASTER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Gauge32, Counter32 FROM SNMPv2-SMI
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
TruthValue FROM SNMPv2-TC
InterfaceIndex FROM IF-MIB
ciscoMgmt FROM CISCO-SMI;
ciscoVsiMasterMIB MODULE-IDENTITY
LAST-UPDATED "200006010000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"This MIB module contains objects related to the master side of the
the Virtual Switch Interface protocol used for control of ATM
switches."
::= { ciscoMgmt 162 }
-- *****************************************************************
-- VSI Master Textual Conventions
-- *****************************************************************
VsiControllerIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the controller index for each
Virtual Switch Interface (VSI) controller in the domain of the
VSI Master. The value is an internally generated unique number
with local significance only. It must remain constant after
the VSI Master sub-system is initialized."
SYNTAX Integer32 (1..2147483647)
VsiSessionIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines a unique value, greater
than zero, for each VSI session in the managed system.
The value should remain constant after a VSI session
is reinitialized."
SYNTAX Integer32 (1..2147483647)
VsiLogicalIfIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines a unique value, greater than
zero, for each VSI logical interface controlled by the managed
system. A logical interface index is an abstract number that
is generated and provided by a Slave, and represents a virtual
interface. It is used by the Master, when communicating
with the Slave, to gain access to interface data, including
ifIndex. This is not a selector index for ifType, ifName,
ifOperState, and ifAdminState, etc."
SYNTAX Integer32 (1..2147483647)
VsiXCIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines a unique value, greater
than zero, for each cross connect on a managed system
controlled by VSI. The value should remain constant
after a crossconnect is initialized, for the duration
of the life of the cross connect."
SYNTAX Integer32 (1..2147483647)
-- *****************************************************************
-- Top-level structure of the MIB
-- *****************************************************************
ciscoVsiMasterObjects OBJECT IDENTIFIER ::= { ciscoVsiMasterMIB 1 }
ciscoVsiMasterNotifications OBJECT IDENTIFIER ::= { ciscoVsiMasterMIB 2 }
ciscoVsiMasterConformance OBJECT IDENTIFIER ::= { ciscoVsiMasterMIB 3 }
-- *****************************************************************
-- VSI Master Controller Objects
-- *****************************************************************
vsiMasterControllerTable OBJECT-TYPE
SYNTAX SEQUENCE OF VsiMasterControllerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a set of VSI controllers. Each controller
represents an instance of the VSI Master control protocol.
A controller communicates with a set of VSI Slaves across
a control interface. Running the VSI protocol, the controller
supports a network control application.
Through VSI, such an application can control the Virtual
Circuit cross-connect table inside the ATM switch,
perform monitoring and statistics collection of interfaces and
virtual circuits on the switch, and discover configuration
information from within the switch."
::= { ciscoVsiMasterObjects 1 }
vsiMasterControllerEntry OBJECT-TYPE
SYNTAX VsiMasterControllerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
controller which uses the VSI protocol. Controller entries
represent internally generated control structures. Therefore
each row is created by the agent in response to the learning of
a controller's instantiation. Instantiation of a controller
is performed by the VSI Master protocol implementation under
management via this MIB. These structures, once instantiated,
are never deleted. Each controller manages a set of VSI
slaves, via a protocol instance called a Session."
INDEX { vsiControllerIndex }
::= { vsiMasterControllerTable 1 }
VsiMasterControllerEntry ::=
SEQUENCE {
vsiControllerIndex VsiControllerIndex,
vsiControllerId Integer32,
vsiCrossConnects Integer32,
vsiControllerType INTEGER,
vsiBaseVersionSupported Integer32,
vsiTopVersionSupported Integer32,
vsiVersionInUse Integer32,
vsiSpecifiedVersion Integer32,
vsiControlInterface InterfaceIndex,
vsiLogicalControlInterface VsiLogicalIfIndex
}
vsiControllerIndex OBJECT-TYPE
SYNTAX VsiControllerIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value per VSI controller, greater than 0. This
object gets its value from the vsiControllerId, and is used
for row selection within the vsiMasterControllerTable."
::= { vsiMasterControllerEntry 1 }
vsiControllerId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The controller identifier for the VSI controller. Values are
arbitrarily assigned by the VSI protocol implementation being
managed via this MIB, with local significance only. These
values appear in the header of all VSI protocol messages."
::= { vsiMasterControllerEntry 2 }
vsiCrossConnects OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains a value equal to the number of cross-connects
being controlled via VSI protocol via this controller."
::= { vsiMasterControllerEntry 3 }
vsiControllerType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
mpls(2), -- Multi Protocol Label Switching
pnni(3), -- Private Network to Network Interface
par(4) } -- Portable Autoroute
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A VSI controller represents an instance of a service layer
accessible to a network control application. This object serves
to identify the type of the network control application currently
being supported by this controller.
other(1): the type is unspecified.
mpls(2): indicates that the client is a Label Switch Controller
performing Multi Protocol Label Switching.
pnni(3): indicates that the client is an instance of the ATM Private
Network to Network Interface.
par(4): indicates that the client is an instance of ATM
Portable Autoroute."
::= { vsiMasterControllerEntry 4 }
vsiBaseVersionSupported OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A VSI Master protocol instance defines internally a set of
versions of the protocol that it will support. These versions
are numbered, by default, starting from 1. This object
makes available the lowest numbered version that the VSI
Master protocol supports. This object is related to the other
vsiMasterControllerEntry objects, vsiTopVersionSupported and
vsiVersionInUse."
::= { vsiMasterControllerEntry 5 }
vsiTopVersionSupported OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A VSI Master protocol instance defines internally a set of
versions of the protocol that it will support. These versions
are numbered, by default, starting from 1. This object
makes available the highest numbered version that the VSI
Master protocol supports. This object is related to the other
vsiMasterControllerEntry objects, vsiBaseVersionSupported and
vsiVersionInUse."
::= { vsiMasterControllerEntry 6 }
vsiVersionInUse OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the VSI version currently being used by this
controller. Protocol selection procedures dictate that this
should be the highest value of protocol version, between
vsiBaseVersionSupported and vsiTopVersionSupported, that is
supported by all slaves. An exception to this rule will
occur when the version is constrained to a specific value
indicated by the vsiSpecifiedVersion object."
::= { vsiMasterControllerEntry 7 }
vsiSpecifiedVersion OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is written with a non-zero value,
re-synchronization procedures will be initiated, if necessary,
in order to constrain the master and slaves to use the indicated
protocol version. When written with zero (0), the master and
slaves should use the version dictated by the usual protocol
version selection procedures; resynchronization procedures will be
invoked, if necessary, to achieve this result."
::= { vsiMasterControllerEntry 8 }
vsiControlInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A VSI controller communicates with a set of VSI Slaves
across a control interface. The controller is connected to
the ATM switch via an ATM link called the Slave Control Link.
The interface at the Master end of the link is the Master
Control Port, and is described by this object; it is the
ifIndex of this Master Control Port."
::= { vsiMasterControllerEntry 9 }
vsiLogicalControlInterface OBJECT-TYPE
SYNTAX VsiLogicalIfIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the instance of a logical interface index
bound to the slave end of the Slave Control Link, which is
referred to in the description of vsiControlInterface."
::= { vsiMasterControllerEntry 10 }
-- *****************************************************************
-- VSI Master Session Objects
-- *****************************************************************
vsiSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF VsiSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing VSI master-slave session status information.
Each VSI controller manages a set of VSI slaves, via a protocol
instance called a Session. VSI slaves are entities that reside
on the controlled ATM switch. Their number and characteristics
are discovered by the VSI controller via the VSI protocol. This
table has an entry for each slave so discovered."
::= { ciscoVsiMasterObjects 2 }
vsiSessionEntry OBJECT-TYPE
SYNTAX VsiSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A vsiSessionEntry is a set of objects that together represent the
status of each instance of VSI protocol and the slave in an ATM
switch to which that instance corresponds. There is one vsiSession
for each slave. The number of slaves is discovered via the VSI
protocol. Each slave is responsible for a subset of the total number
of external interfaces on the ATM switch. Session entries refer back
to their respective controllers via vsiSessionControllerIndex, and
are in turn referred to by vsiLogicalIfSessionIndex in the
VsiLogicalIfEntry. These entries are never deleted."
INDEX { vsiSessionControllerIndex, vsiSessionIndex }
::= { vsiSessionTable 1 }
VsiSessionEntry ::=
SEQUENCE {
vsiSessionControllerIndex VsiControllerIndex,
vsiSessionIndex VsiSessionIndex,
vsiSessionVpi Integer32,
vsiSessionVci Integer32,
vsiSessionSwitchId Integer32,
vsiSessionSwitchName SnmpAdminString,
vsiSessionSlaveId Integer32,
vsiSessionState INTEGER,
vsiSessionWindowSize Integer32,
vsiSessionCmdsPending Gauge32,
vsiSessionActiveId Integer32,
vsiSessionPowerupId Integer32
}
vsiSessionControllerIndex OBJECT-TYPE
SYNTAX VsiControllerIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of the controller which controls this master-slave session.
This identifies which vsiMasterControllerEntry represents the
controller communicating with a slave through this Session."
::= { vsiSessionEntry 1 }
vsiSessionIndex OBJECT-TYPE
SYNTAX VsiSessionIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A VSI controller discovers a set of slaves through VSI
protocol. Each of the discovered slaves is bound to a
protocol Session and each of these Sessions occupies a
row in the vsiSessionTable. This object is the row selector.
The value should remain constant after a VSI session is
reinitialized."
::= { vsiSessionEntry 2 }
vsiSessionVpi OBJECT-TYPE
SYNTAX Integer32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual path identifier for this VSI master-slave session.
The Slave Control Link, referred to in the description of
vsiLogicalControlInterface, supports an ATM control VC. This
is the vpi for that link."
::= { vsiSessionEntry 3 }
vsiSessionVci OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual channel identifier for this VSI master-slave session.
The Slave Control Link, referred to in the description of
vsiLogicalControlInterface, supports an ATM control VC. This
is the vci for that link."
::= { vsiSessionEntry 4 }
vsiSessionSwitchId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the switch which participates in this VSI
master-slave session. The switch terminates the virtual
circuit identified by the vpi/vci pair referred to by
vsiSessionVpi and vsiSessionVci."
::= { vsiSessionEntry 5 }
vsiSessionSwitchName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP hostname for the slave switch which is controlled by
this session. This is an ascii string of maximum
length 64 characters, learned from the ATM switch."
::= { vsiSessionEntry 6 }
vsiSessionSlaveId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the slave for this VSI master-slave session.
This value is learned from the slave on the switch."
::= { vsiSessionEntry 7 }
vsiSessionState OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
unknown(2),
configuring(3),
resyncStarting(4),
resyncUnderway(5),
resyncEnding(6),
discovery(7),
established(8),
shutdownStarting(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the VSI session.
inactive(1): communications data structures for communicating
with the slave have been created, but the VSI protocol has
not been started.
unknown(2): slave has been queried, but its configuration data
has not yet been recieved.
configuring(3): configuration data has been sent to the slave,
but a response has not yet been received.
resyncStarting(4): a re-sync command has been sent to the slave,
but a response has not yet been recieved.
resyncUnderway(5): a re-sync command response has been received
from the slave, but the network applications have not yet
completed reasserting connections.
resyncEnding(6): a command has been sent to end re-sync, but a
response has not yet been received.
discovery(7): a query has been sent to the slave for interface
information, but a response has not yet been received.
established(8): discovery has completed.
shutdownStarting(9): the master has started an orderly shutdown
of the slave."
::= { vsiSessionEntry 8 }
vsiSessionWindowSize OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of command messages the VSI master will send
before requiring a response from slave. If the value is 0,
then flow control is not enabled."
::= { vsiSessionEntry 9 }
vsiSessionCmdsPending OBJECT-TYPE
SYNTAX Gauge32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of unacknowledged command messages. The VSI master
sends commands to the slave, without receiving acknowledgement,
until the window size threshold has been reached.
This object is a count of the number of commands that have been
sent and that are awaiting acknowledgment."
::= { vsiSessionEntry 10 }
vsiSessionActiveId OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID supplied by the slave to identify the session. This value is
interpreted by the master, when a change occurs, to indicate that
a resync should be inititated."
::= { vsiSessionEntry 11 }
vsiSessionPowerupId OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID supplied by the slave to identify the session at powerup.
This is the initial value for vsiSessionActiveId, and its default
is zero. Changes in vsiSessionActiveId signal a resync."
::= { vsiSessionEntry 12 }
-- *****************************************************************
-- VSI Master Logical Interface Objects
-- *****************************************************************
vsiLogicalIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF VsiLogicalIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about logical interfaces
on the slave switch controlled via VSI. Logical interfaces
are an abstraction of exposed, external ATM interfaces that
are available for connections. When two external interfaces,
represented by two logical interfaces, are paired, they provide
physical paths through the switch. These physical pathways
support cross-connects."
::= { ciscoVsiMasterObjects 3 }
vsiLogicalIfEntry OBJECT-TYPE
SYNTAX VsiLogicalIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about a single VSI
logical interface. Entries are instantiated and removed
as signalled by the slave which controls the external
interface. Each entry contains information about the
capacity of cross-connects the interface can bear, cell
rate, merge capability, vpi/vci ranges, and statistics.
Pairs of logical interfaces support potential cross-connects
that, when actualized, are represented by the vsiXCEntrys
in the vsiXCTable.
Logical interfaces are controlled by a designated slave,
as determined by the switch. The slave is in the
domain of the controller whose identity is given
by vsiLogicalIfControllerIndex. This object is an opaque
identifier, provided by the slave, and used as a key to
identify the entry."
INDEX { vsiLogicalIfControllerIndex, vsiLogicalIfIndex }
::= { vsiLogicalIfTable 1 }
VsiLogicalIfEntry ::=
SEQUENCE {
vsiLogicalIfControllerIndex VsiControllerIndex,
vsiLogicalIfIndex VsiLogicalIfIndex,
vsiLogicalIfName SnmpAdminString,
vsiLogicalIfOperState INTEGER,
vsiLogicalIfAdminState INTEGER,
vsiLogicalIfRxCells Counter32,
vsiLogicalIfTxCells Counter32,
vsiLogicalIfRxCellsDiscarded Counter32,
vsiLogicalIfTxCellsDiscarded Counter32,
vsiLogicalIfRxHeaderErrors Counter32,
vsiLogicalIfRxInvalidAddrs Counter32,
vsiLogicalIfEndPointsInUse Gauge32,
vsiLogicalIfAvailIngressChnls Gauge32,
vsiLogicalIfAvailEgressChnls Gauge32,
vsiLogicalIfAvailIngressCellRate Gauge32,
vsiLogicalIfAvailEgressCellRate Gauge32,
vsiLogicalIfMaxIngressCellRate Integer32,
vsiLogicalIfMaxEgressCellRate Integer32,
vsiLogicalIfVcMergeSupported TruthValue,
vsiLogicalIfMulticastSupported TruthValue,
vsiLogicalIfVpiTranslated TruthValue,
vsiLogicalIfStrictSigRange TruthValue,
vsiLogicalIfMinVpi INTEGER,
vsiLogicalIfMaxVpi INTEGER,
vsiLogicalIfMinVci INTEGER,
vsiLogicalIfMaxVci INTEGER,
vsiLogicalControlIfIndex InterfaceIndex,
vsiLogicalIfSessionIndex VsiSessionIndex
}
vsiLogicalIfControllerIndex OBJECT-TYPE
SYNTAX VsiControllerIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VSI controller index of the controller through which
this logical interface was learned."
::= { vsiLogicalIfEntry 1 }
vsiLogicalIfIndex OBJECT-TYPE
SYNTAX VsiLogicalIfIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each VSI logical
interface. Logical interface numbers are selected by the
switch to be unique and persistent. The same number is
preserved through power failures. This index is not the same
as an ifIndex. It is an abstract number provided by the slave,
representing a virtual interface, which is an identifier to be used
when communicating with the slave about an interface."
::= { vsiLogicalIfEntry 2 }
vsiLogicalIfName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical descriptor of the logical interface, as
reported by the VSI slave. It is distinct from ifName."
::= { vsiLogicalIfEntry 3 }
vsiLogicalIfOperState OBJECT-TYPE
SYNTAX INTEGER {
removed(1),
active(2),
failedExternal(3),
failedInternal(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VSI operational state of the logical interface as
reported to the VSI master by the VSI slave.
removed(1): the interface is not a valid interface for this controller.
active(2): the interface is active and ready for use.
failedExternal(3): external failure, such as a line alarm, detected.
failedInternal(4): local hardware has detected a failure, making the
interface unusable."
::= { vsiLogicalIfEntry 4 }
vsiLogicalIfAdminState OBJECT-TYPE
SYNTAX INTEGER {
down(1),
up(2),
pendingDown(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current administrative (configured) state of the
interface, as reported to the VSI master by the VSI slave.
down(1): the interface is not a valid interface for the controller.
up(2): the interface is configured for use by the controller.
pendingDown(3): the interface is being removed from service, and
the controller is requested to remove all connections."
::= { vsiLogicalIfEntry 5 }
vsiLogicalIfRxCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received via this logical interface
as reported to the VSI master by the VSI slave."
::= { vsiLogicalIfEntry 6 }
vsiLogicalIfTxCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells transmitted via this logical
interface as reported to the VSI master by the VSI slave."
::= { vsiLogicalIfEntry 7 }
vsiLogicalIfRxCellsDiscarded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received cells discarded by this logical
interface as reported to the VSI master by the VSI slave."
::= { vsiLogicalIfEntry 8 }
vsiLogicalIfTxCellsDiscarded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted cells discarded by this logical
interface as reported to the VSI master by the VSI slave."
::= { vsiLogicalIfEntry 9 }
vsiLogicalIfRxHeaderErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received via this logical
interface which had header errors, as reported to
the VSI master by the VSI slave."
::= { vsiLogicalIfEntry 10 }
vsiLogicalIfRxInvalidAddrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of cells received by this logical
interface which had invalid addresses, as
reported to the VSI master by the VSI slave.
An unknown vpi/vci value set is an example of
of an invalid address."
::= { vsiLogicalIfEntry 11 }
vsiLogicalIfEndPointsInUse OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of end points in use on this logical
interface, as reported to the VSI master by the
VSI slave. If this logical interface has not been
removed, but does not currently support any cross
connects, this object will be reported as zero (0)."
::= { vsiLogicalIfEntry 12 }
vsiLogicalIfAvailIngressChnls OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ingress channels available for this
logical interface, as reported to the VSI master
by the VSI slave."
::= { vsiLogicalIfEntry 13 }
vsiLogicalIfAvailEgressChnls OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of egress channels available for this
logical interface, as reported to the VSI master
by the VSI slave."
::= { vsiLogicalIfEntry 14 }
vsiLogicalIfAvailIngressCellRate OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The available ingress cell rate in cells/second
for the logical interface, as reported to the VSI
master by the VSI slave."
::= { vsiLogicalIfEntry 15 }
vsiLogicalIfAvailEgressCellRate OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The available egress cell rate in cells/second
for the logical interface, as reported to the VSI
master by the VSI slave."
::= { vsiLogicalIfEntry 16 }
vsiLogicalIfVcMergeSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this object has the value true(1) then VC merge
capability is supported for this logical interface.
Otherwise VC merge capability is not supported on
this logical interface."
::= { vsiLogicalIfEntry 17 }
vsiLogicalIfMulticastSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this object has the value true(1) then multicast
capability is supported for this logical interface.
Otherwise multicast capability is not supported on
this logical interface."
::= { vsiLogicalIfEntry 18 }
vsiLogicalIfVpiTranslated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this object has the value true(1) then vpi values
entering on this logical interface are translated at
the other end of the link. This translation may be
an indication that the link is supporting a tunnel.
Otherwise, vpi values are not translated for traversal
of the link."
::= { vsiLogicalIfEntry 19 }
vsiLogicalIfStrictSigRange OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this object has the value true(1) then signalling
addresses must be in the strict advertised range for
the high-address (vpi). Otherwise, signalling addresses
are not so constrained."
::= { vsiLogicalIfEntry 20 }
vsiLogicalIfMaxIngressCellRate OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum ingress cell rate in cells/second for the
logical interface, as reported to the VSI. This value is
the limiting value for vsiLogicalIfAvailIngressCellRate."
::= { vsiLogicalIfEntry 21 }
vsiLogicalIfMaxEgressCellRate OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum egress cell rate in cells/second
for the logical interface, as reported to the VSI
master by the VSI slave."
::= { vsiLogicalIfEntry 22 }
vsiLogicalIfMinVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum allowed vpi value for this interface
as reported by VSI slave switch."
::= { vsiLogicalIfEntry 23 }
vsiLogicalIfMaxVpi OBJECT-TYPE
SYNTAX INTEGER(0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum allowed vpi value for this interface
as reported by VSI slave switch."
::= { vsiLogicalIfEntry 24 }
vsiLogicalIfMinVci OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum allowed vci value for this interface
as reported by VSI slave switch."
::= { vsiLogicalIfEntry 25 }
vsiLogicalIfMaxVci OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum allowed vci value for this interface
as reported by VSI slave switch."
::= { vsiLogicalIfEntry 26 }
vsiLogicalControlIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface index for the interface which
controls this logical interface. This is the
ifIndex of the controlling xtagatm interface, and
is a direct manifestation of the mapping between
a logical interface and the real ifIndex."
::= { vsiLogicalIfEntry 27 }
vsiLogicalIfSessionIndex OBJECT-TYPE
SYNTAX VsiSessionIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"All logical interfaces are in the domain of a VSI slave,
which communicates with the VSI master through a Session.
This object is a selector for an entry in the table
vsiSessionTable. It is the VSI session index for the VSI
session which controls this logical interface."
::= { vsiLogicalIfEntry 28 }
-- *****************************************************************
-- VSI Master Cross-connect Objects
-- *****************************************************************
vsiXCTable OBJECT-TYPE
SYNTAX SEQUENCE OF VsiXCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about crossconnects
on the slave switch controlled via VSI. Cross connects
represent virtual links across two interfaces. The
participating interfaces that support these links are
represented in this MIB by the vsiLogicalIfTable entries."
::= { ciscoVsiMasterObjects 4 }
vsiXCEntry OBJECT-TYPE
SYNTAX VsiXCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about one unidirectional
or bidirectional crossconnect on the slave switch
controlled via VSI. A VSI controller represents an instance
of a service layer accessible to a network control application.
The application creates virtual links via service requests to
the controller, which in turn sends commands to the VSI slave,
indicating the participating logical interfaces. Conversely,
links are taken down by a reverse process. Virtual link
creation and deletion come about as a result of routing
decisions."
INDEX { vsiXCControllerIndex,
vsiXCLogicalIfLow,
vsiXCLogicalIfHi,
vsiXCIndex }
::= { vsiXCTable 1 }
VsiXCEntry ::=
SEQUENCE {
vsiXCControllerIndex VsiControllerIndex,
vsiXCLogicalIfLow VsiLogicalIfIndex,
vsiXCLogicalIfHi VsiLogicalIfIndex,
vsiXCIndex VsiXCIndex,
vsiXCState INTEGER,
vsiXCVpiLow Integer32,
vsiXCVciLow Integer32,
vsiXCVpiHi Integer32,
vsiXCVciHi Integer32
}
vsiXCControllerIndex OBJECT-TYPE
SYNTAX VsiControllerIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VSI controller through which this
crossconnect was instantiated. This object is the index for
a vsiControllerTable entry; the controller indexed is
the VSI protocol partner to the slave that is controlling
the logical interfaces on which this cross connect is
supported."
::= { vsiXCEntry 1 }
vsiXCLogicalIfLow OBJECT-TYPE
SYNTAX VsiLogicalIfIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VSI logical interface index for the first endpoint
of the cross-connect. This object is the selector index
for one of the two vsiLogicalIfTable entries that support this
cross connect. Further, this index value is constrained
to be 'numerically lower than' the index value of the other
vsiLogicalIfTable entry, indexed by vsiXCLogicalIfHi,
supporting this cross connect."
::= { vsiXCEntry 2 }
vsiXCLogicalIfHi OBJECT-TYPE
SYNTAX VsiLogicalIfIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VSI logical interface index for the second endpoint
of the cross-connect. This object is the selector index
for one of the two vsiLogicalIfTable entries that support this
cross connect. Further, this index value is constrained
to be 'numerically higher than' the index value of the other
vsiLogicalIfTable entry, indexed by vsiXCLogicalIfLow,
supporting this cross connect."
::= { vsiXCEntry 3 }
vsiXCIndex OBJECT-TYPE
SYNTAX VsiXCIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value greater than zero, for each crossconnect
within the set of VsiXCTable entries indexed by
vsiXCLogicalIfLow and vsiXCLogicalIfHi.
The value should remain constant after a crossconnect
is initialized. These values are assigned in sequence
by the management agent, starting from one (1)."
::= { vsiXCEntry 4 }
vsiXCState OBJECT-TYPE
SYNTAX INTEGER {
deleted(1),
reserved(2),
committed(3),
reservedFail(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state of the cross connect, as reported
to the VSI master by the VSI slave.
deleted(1): the connection does not exist.
reserved(2): connection is in the reserved state.
committed(3): connection is in the committed state.
reservedFail(4): connection is reserved but has an internal failure."
::= { vsiXCEntry 5 }
vsiXCVpiLow OBJECT-TYPE
SYNTAX Integer32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vpi of that endpoint of the cross-connect which
terminates on the logical interface whose index is
given by vsiXCLogicalIfLow."
::= { vsiXCEntry 6 }
vsiXCVciLow OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current