summaryrefslogtreecommitdiff
path: root/MIBS/enterasys/CTRON-SFPS-VSTP-MIB
blob: 3c3dc62bf881e81af5bb45a5e15b1444ded677ef (plain)
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
CTRON-SFPS-VSTP-MIB DEFINITIONS ::= BEGIN

--  sfps-vstp-mib.txt
--  Revision: 0.0.05
--
--  Cabletron Systems, Inc.
--  35 Industrial Way, P.O. Box 5005
--  Rochester, NH 03867-0505
--  (603) 332-9400
--  support@ctron.com
--
--  This module provides authoritative definitions for Cabletron's
--  enterprise specific Fast Packet Switching Services API MIB.
--
--  This module will be extended, as required.
--
--
--  Cabletron Systems reserves the right to make changes in
--  specification and other information contained in this document
--  without prior notice.  The reader should consult Cabletron Systems
--  to determine whether any such changes have been made.
--
--  In no event shall Cabletron Systems be liable for any incidental,
--  indirect, special, or consequential damages whatsoever (including
--  but not limited to lost profits) arising out of or related to this
--  document or the information contained in it, even if Cabletron
--  Systems has been advised of, known, or should have known, the
--  possibility of such damages.
--
--  Cabletron grants vendors, end-users, and other interested parties
--  a non-exclusive license to use this Specification in connection
--  with the management of Cabletron products.
--  Copyright October 93 Cabletron Systems
--

IMPORTS
      OBJECT-TYPE
                FROM RFC-1212
--      DisplayString
--                FROM RFC1213-MIB
--      enterprises,
        TimeTicks 
--        IpAddress,
--        Counter,
--        Gauge
                FROM RFC1155-SMI
 
--  These Objects are defined in the file sfps-inc.mib.txt.0.0.1
        vlanSpanningTreePort, vlanSpanningTreeSwitch 
                FROM CTRON-SFPS-INCLUDE-MIB; 
 

--  Textual Conventions

SfpsSwitchPort ::= INTEGER
--  this will map to chassis.module.portgroup.portsubgroup.port index value

HexInteger ::= INTEGER



-- begin Vlan Spanning Tree Port Table
-- VLAN Switch Configuration Group
-- This group contains a sequence of spanning tree entries

vlanSpanningTreePortTable    OBJECT-TYPE
       SYNTAX     SEQUENCE OF VlanSpanningTreePortEntry
       ACCESS     not-accessible
       STATUS     mandatory
       DESCRIPTION 
                "This table contains information used by the spanning tree algorithm
                 for each port instance."
       ::= { vlanSpanningTreePort 1 }

vlanSpanningTreePortEntry   OBJECT-TYPE
      SYNTAX   VlanSpanningTreePortEntry
      ACCESS   not-accessible
      STATUS   mandatory
      DESCRIPTION
                "Each entry contains spanning tree information for that port instance."
      INDEX    { vlanSpanningTreePortPortNumber }
      ::= { vlanSpanningTreePortTable 1 }

VlanSpanningTreePortEntry ::=
     SEQUENCE  {
                vlanSpanningTreePortPortNumber                  SfpsSwitchPort,
                vlanSpanningTreePortPortState                   INTEGER,
                vlanSpanningTreePortPortIdentifier              HexInteger,
                vlanSpanningTreePortPathCost                    INTEGER,
                vlanSpanningTreePortDesignatedRoot              OCTET STRING,
                vlanSpanningTreePortDesignatedCost              INTEGER,
                vlanSpanningTreePortDesignatedBridge            OCTET STRING,
                vlanSpanningTreePortDesignatedPort              HexInteger
        }


 vlanSpanningTreePortPortNumber           OBJECT-TYPE
     SYNTAX       SfpsSwitchPort
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "The port number of the port instance. This value is also the 
                 primary index for the table."
     ::= { vlanSpanningTreePortEntry 1 }

vlanSpanningTreePortPortState             OBJECT-TYPE
     SYNTAX          INTEGER  {
                              enabled(1),   
                              disabled(2),
                              blocking(3),
                              listening(4),
                              learning(5),
                              forwarding(6),
                              broken(7)
                              }
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree port state for this port."
     ::= { vlanSpanningTreePortEntry 2 }       

vlanSpanningTreePortPortIdentifier        OBJECT-TYPE
     SYNTAX             HexInteger 
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree port identifier for this port."
     ::= { vlanSpanningTreePortEntry 3 }        

vlanSpanningTreePortPathCost              OBJECT-TYPE
     SYNTAX             INTEGER 
     ACCESS             read-write
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree path cost for this port."
     ::= { vlanSpanningTreePortEntry 4 }

vlanSpanningTreePortDesignatedRoot        OBJECT-TYPE
     SYNTAX             OCTET STRING
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree designated root for this port."
     ::= { vlanSpanningTreePortEntry 5 }

vlanSpanningTreePortDesignatedCost        OBJECT-TYPE
     SYNTAX             INTEGER 
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree designated cost for this port."
     ::= { vlanSpanningTreePortEntry 6 }

vlanSpanningTreePortDesignatedBridge      OBJECT-TYPE
     SYNTAX             OCTET STRING 
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree designated bridge for this port."
     ::= { vlanSpanningTreePortEntry 7 }

vlanSpanningTreePortDesignatedPort      OBJECT-TYPE
     SYNTAX             HexInteger 
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "The spanning tree designated port."
     ::= { vlanSpanningTreePortEntry 8 }



-- begin Vlan Spanning Tree Switch Table
-- Table contains sequence of spaning tree switch entries

vlanSpanningTreeSwitchTable    OBJECT-TYPE
       SYNTAX     SEQUENCE OF VlanSpanningTreeSwitchEntry
       ACCESS     not-accessible
       STATUS     mandatory
       DESCRIPTION 
                "This table contains information used by the spanning tree
                 algorithm specific to the switch on which the algorithm is
                 running."
       ::= { vlanSpanningTreeSwitch 1 }

vlanSpanningTreeSwitchEntry    OBJECT-TYPE
      SYNTAX   VlanSpanningTreeSwitchEntry
      ACCESS   not-accessible
      STATUS   mandatory
      DESCRIPTION
                "Each entry specifies switch specific spanning tree information."
      INDEX    { vlanSpanningTreeSwitchIndex }
      ::= { vlanSpanningTreeSwitchTable 1 }

VlanSpanningTreeSwitchEntry ::=
     SEQUENCE  {
                vlanSpanningTreeSwitchIndex                 INTEGER,
                vlanSpanningTreeSwitchBridgePriority        HexInteger,
                vlanSpanningTreeSwitchBridgeId              OCTET STRING,
                vlanSpanningTreeSwitchDesignatedRoot        OCTET STRING,
                vlanSpanningTreeSwitchRootPathCost          INTEGER,
                vlanSpanningTreeSwitchOperTime              TimeTicks,
                vlanSpanningTreeSwitchRootPort              SfpsSwitchPort,
                vlanSpanningTreeSwitchRootPortTime          TimeTicks,
                vlanSpanningTreeSwitchPrevRootPort          SfpsSwitchPort,
                vlanSpanningTreeSwitchPrevRootPortTime      TimeTicks,
                vlanSpanningTreeSwitchMaxAge                INTEGER,
                vlanSpanningTreeSwitchHelloTime             INTEGER,
                vlanSpanningTreeSwitchForwardDelay          INTEGER
        }


 vlanSpanningTreeSwitchIndex               OBJECT-TYPE
     SYNTAX       INTEGER
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Table index value."
     ::= { vlanSpanningTreeSwitchEntry 1 }

vlanSpanningTreeSwitchBridgePriority       OBJECT-TYPE
     SYNTAX       HexInteger
     ACCESS       read-write
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree designated bridge priority."
     ::= { vlanSpanningTreeSwitchEntry 2 }

vlanSpanningTreeSwitchBridgeId             OBJECT-TYPE
     SYNTAX       OCTET STRING
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree bridge id value."
     ::= { vlanSpanningTreeSwitchEntry 3 }

vlanSpanningTreeSwitchDesignatedRoot       OBJECT-TYPE
     SYNTAX       OCTET STRING
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree designated root value."
     ::= { vlanSpanningTreeSwitchEntry 4 }

vlanSpanningTreeSwitchRootPathCost         OBJECT-TYPE
     SYNTAX       INTEGER
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree root path cost."
     ::= { vlanSpanningTreeSwitchEntry 5 }

vlanSpanningTreeSwitchOperTime       OBJECT-TYPE
     SYNTAX       TimeTicks
     ACCESS             read-only
     STATUS             mandatory
     DESCRIPTION
                "Spanning tree operational time."
     ::= { vlanSpanningTreeSwitchEntry 6 }

vlanSpanningTreeSwitchRootPort             OBJECT-TYPE
     SYNTAX       SfpsSwitchPort
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree root port."
     ::= { vlanSpanningTreeSwitchEntry 7 }

vlanSpanningTreeSwitchRootPortTime             OBJECT-TYPE
     SYNTAX       TimeTicks
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree root port time."
     ::= { vlanSpanningTreeSwitchEntry 8 }

vlanSpanningTreeSwitchPrevRootPort             OBJECT-TYPE
     SYNTAX       SfpsSwitchPort
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree previous root port."
     ::= { vlanSpanningTreeSwitchEntry 9 }

vlanSpanningTreeSwitchPrevRootPortTime             OBJECT-TYPE
     SYNTAX       TimeTicks
     ACCESS       read-only
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree previous root port time."
     ::= { vlanSpanningTreeSwitchEntry 10 }

vlanSpanningTreeSwitchMaxAge               OBJECT-TYPE
     SYNTAX       INTEGER
     ACCESS       read-write
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree max age value."
     ::= { vlanSpanningTreeSwitchEntry 11 }

vlanSpanningTreeSwitchHelloTime            OBJECT-TYPE
     SYNTAX       INTEGER
     ACCESS       read-write
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree hello time value."
     ::= { vlanSpanningTreeSwitchEntry 12 }

vlanSpanningTreeSwitchForwardDelay         OBJECT-TYPE
     SYNTAX       INTEGER
     ACCESS       read-write
     STATUS       mandatory
     DESCRIPTION
                "Spanning tree forward delay value."
     ::= { vlanSpanningTreeSwitchEntry 13 }

END