forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AWC-VLAN-CFG-MIB.my
440 lines (376 loc) · 14.7 KB
/
AWC-VLAN-CFG-MIB.my
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
-- *****************************************************************
-- AWC-VLAN-MIB.my: Cisco Aironet Wireless LAN VLAN Configuration
-- MIB file
--
-- September 2002, Victor Griswold
--
-- Copyright (c) 2002 by Cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
AWC-VLAN-CFG-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
RowStatus,
TruthValue
FROM SNMPv2-TC
awcVx,
AwcVlanId,
AwcPolId,
WEPKeytype128,
AwcDot11MicAlgorithm,
AwcDot11WEPKeyPermuteAlgorithm,
AwcPfPriority
FROM AWCVX-MIB;
awcVlanCfgMIB MODULE-IDENTITY
LAST-UPDATED "200209060000Z"
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
"Aironet products VLAN Configuration MIB."
REVISION "200107110000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { awcVx 21 }
awcVlanCfgObjects OBJECT IDENTIFIER ::= { awcVlanCfgMIB 1 }
-- Textual Conventions
AwcVlanIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value used to index per-VLAN tables.
Represents an IEEE 802.1Q VLAN-ID with global scope
within a given bridged domain (see AwcVlanId
textual convention). The value 4095 indicates
that the conceptual row applies to non-VLAN-tagged
frames (though it would be more directly
representative of the packet format, 0 can not be
used for this purpose, per SNMP conventions)."
SYNTAX Unsigned32 (1..4095)
AwcVlanEncapType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The 802.1Q encapsulation mode. Valid values are:
dot1qDisabled (1), Disabled
dot1qPriority (2) 802.1Q Priority Tagging
dot1qHybrid (3), 802.1Q VLAN Hybrid Trunk
dot1qTrunk (4) 802.1Q VLAN Trunk
The default value is normally Disabled."
SYNTAX INTEGER {
dot1qDisabled(1),
dot1qPriority(2),
dot1qHybrid(3),
dot1qTrunk(4)
}
-- Object Type Definitions
awcMaxVlanIds OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Maximum number of discrete VLAN IDs supported.
The VLAN IDs need not be consecutive."
::= { awcVlanCfgObjects 1 }
awcVlanEncapMode OBJECT-TYPE
SYNTAX AwcVlanEncapType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encapsulation mode setting controls transmit
tagging logic for all ports. The value of this
object is derived from other settings within the
VLAN MIB."
DEFVAL { dot1qDisabled }
::= { awcVlanCfgObjects 2 }
awcNativeVlanId OBJECT-TYPE
SYNTAX AwcVlanId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Native VLAN ID for the device. The default Native
VLAN ID is 0, for no VLAN ID. If the device is attached
to an Ethernet bridge/switch VLAN port then a non-zero
Native VLAN ID must match the Port VLAN ID of the
bridge/switch port. The Native VLAN ID is the default
VLAN ID for frames that are not otherwise
associated with a VLAN ID."
DEFVAL { 0 }
::= { awcVlanCfgObjects 3 }
awcVlanAllowEncrypted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this attribute is true, the STA shall
indicate at the MAC service interface received
MSDUs regardless of the setting of the WEP
subfield of the Frame Control field, so long
as no other VLAN parameters necessitate use
of encryption. The default value of this attribute
shall be true.
The general use for awcVlanAllowEncrypted to be
true even when no static WEP keys are set for
a VLAN is to allow a station to utilize EAP
authentication to encrypt directed packets,
even while multicast packets are unencrypted."
DEFVAL { true }
::= { awcVlanCfgObjects 4 }
awcVlanAnyEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this attribute is true, VLAN operation of the
system is enabled when any awcVlanEnabled value is
true. When this attribute is false, VLAN operation
is disabled. The awcVlanAnyEnabled thus acts as a
master switch to enable or disable VLAN operation."
DEFVAL { false }
::= { awcVlanCfgObjects 5 }
-- VLAN Configuration Table
awcVlanCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AwcVlanCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table used for configuring and managing VLANS."
::= { awcVlanCfgObjects 6 }
awcVlanCfgEntry OBJECT-TYPE
SYNTAX AwcVlanCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VLAN table entry containing parameters for configuring
and managing a particular VLAN."
INDEX {awcVlanIndex}
::= { awcVlanCfgTable 1 }
AwcVlanCfgEntry ::= SEQUENCE {
awcVlanIndex AwcVlanIndex,
awcVlanPolId AwcPolId,
awcVlanEnabled TruthValue,
awcVlanNUcastKeyRotationInterval INTEGER,
awcVlanRowStatus RowStatus,
awcVlanMicAlgorithm AwcDot11MicAlgorithm,
awcVlanWEPKeyPermuteAlgorithm AwcDot11WEPKeyPermuteAlgorithm,
awcVlanName OCTET STRING,
awcVlanDefaultUserPriority AwcPfPriority,
awcVlanAlert TruthValue
}
awcVlanIndex OBJECT-TYPE
SYNTAX AwcVlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VLAN ID to which the parameters in this conceptual
row shall be applied. If 4095, the parameters in
this conceptual row shall be applied to
non-VLAN-tagged frames."
::= { awcVlanCfgEntry 1 }
awcVlanPolId OBJECT-TYPE
SYNTAX AwcPolId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Default Policy Group Identifier for hosts occupying
this VLAN."
DEFVAL { 0 }
::= { awcVlanCfgEntry 2 }
awcVlanEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If true, this VLAN is enabled on all trunk and
hybrid ports. If false, this VLAN is disabled on
all ports."
DEFVAL { false }
::= { awcVlanCfgEntry 3 }
awcVlanNUcastKeyRotationInterval OBJECT-TYPE
SYNTAX INTEGER (0..10000000)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WEP key rotation period. 0 indicates no key rotation."
DEFVAL { 0 }
::= { awcVlanCfgEntry 4 }
awcVlanRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used for creating/deleting conceptual rows in this
table."
::= { awcVlanCfgEntry 5 }
awcVlanMicAlgorithm OBJECT-TYPE
SYNTAX AwcDot11MicAlgorithm
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Auxiliary Message Integrity Check (MIC) calculated on
WEP-encoded packets of stations assigned to this VLAN.
This object is not applicable for the reserved VLAN
4095."
DEFVAL { micNone }
::= { awcVlanCfgEntry 6 }
awcVlanWEPKeyPermuteAlgorithm OBJECT-TYPE
SYNTAX AwcDot11WEPKeyPermuteAlgorithm
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Function through which the WEP encryption key is
permuted between key renewal periods for stations
assigned to this VLAN. This object is not
applicable for the reserved VLAN 4095."
DEFVAL { wepPermuteNone }
::= { awcVlanCfgEntry 7 }
awcVlanName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Descriptive textual name for the VLAN."
DEFVAL { "" }
::= { awcVlanCfgEntry 8 }
awcVlanDefaultUserPriority OBJECT-TYPE
SYNTAX AwcPfPriority
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Designation of the priority assigned to packets
transmitted over this VLAN, if no other filter or
classification rule has yet assigned a priority."
DEFVAL { default }
::= { awcVlanCfgEntry 9 }
awcVlanAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Should an alert be registered when a packet on
this VLAN is observed?"
DEFVAL { false }
::= { awcVlanCfgEntry 10 }
-- Native VLAN Default Shared WEP Table
awcVlanNUcastKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF AwcVlanNUcastKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Default Shared WEP Keys for all 802.11 packets
transmitted and received as non-VLAN-tagged
frames over a port with the Port VLAN ID specified
as awcVlanIndex. If WEP encryption
is enabled for transmitted 802.11 frames, then the
set of 1 to 4 default shared WEP keys are used
to encrypt transmitted 802.11 broadcast/multicast
frames associated with the Port VLAN ID. The
shared WEP keys are also used to encrypt/decrypt
unicast frames, associated with the Port VLAN ID,
if an individual session key is not defined for the
target station address."
::= { awcVlanCfgObjects 7 }
awcVlanNUcastKeyEntry OBJECT-TYPE
SYNTAX AwcVlanNUcastKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the awcVlanNUcastKeyTable table."
INDEX {awcVlanIndex, awcVlanNUcastKeyIndex}
::= { awcVlanNUcastKeyTable 1 }
AwcVlanNUcastKeyEntry ::= SEQUENCE {
awcVlanNUcastKeyIndex INTEGER,
awcVlanNUcastKeyLen INTEGER,
awcVlanNUcastKeyValue WEPKeytype128
}
awcVlanNUcastKeyIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"802.11 WEP Key Index, + 1, used when transmitting or
receiving frames with this key."
::= { awcVlanNUcastKeyEntry 1 }
awcVlanNUcastKeyLen OBJECT-TYPE
SYNTAX INTEGER (0..13)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Length in octets of awcVlanNUcastKeyValue. Common
values are 5 for 40-bit WEP and 13 for 128-bit WEP.
A value of 0 means that the key is not set."
DEFVAL { 0 }
::= { awcVlanNUcastKeyEntry 2 }
awcVlanNUcastKeyValue OBJECT-TYPE
SYNTAX WEPKeytype128
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A WEP default secret key value. The value is
write-only (attempt to read will result in
return of zero-length string)."
::= { awcVlanNUcastKeyEntry 3 }
awcVlanAllowUnencryptedVlanId OBJECT-TYPE
SYNTAX AwcVlanId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Single VLAN ID on which unencrypted packets are
allowed. The default Unencrypted VLAN ID is 0,
meaning that all VLANs require full encryption."
DEFVAL { 0 }
::= { awcVlanCfgObjects 8 }
-- Notifications
awcVlanCfgNotifications OBJECT IDENTIFIER ::= { awcVlanCfgMIB 2 }
-- Conformance
awcVlanCfgConformance OBJECT IDENTIFIER ::= { awcVlanCfgMIB 3 }
awcVlanCfgCompliances OBJECT IDENTIFIER ::= { awcVlanCfgConformance 1 }
awcVlanCfgGroups OBJECT IDENTIFIER ::= { awcVlanCfgConformance 2 }
-- Compliance
awcVlanCfgCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the awcVlanCfgMIB group."
MODULE -- this module
MANDATORY-GROUPS {
awcVlanCfgObjectsGroup
}
::= { awcVlanCfgCompliances 1 }
-- Units of Conformance
awcVlanCfgObjectsGroup OBJECT-GROUP
OBJECTS {
awcMaxVlanIds,
awcVlanEncapMode,
awcNativeVlanId,
awcVlanAllowEncrypted,
awcVlanPolId,
awcVlanEnabled,
awcVlanNUcastKeyRotationInterval,
awcVlanRowStatus,
awcVlanMicAlgorithm,
awcVlanWEPKeyPermuteAlgorithm,
awcVlanName,
awcVlanDefaultUserPriority,
awcVlanAlert,
awcVlanNUcastKeyLen,
awcVlanNUcastKeyValue,
awcVlanAllowUnencryptedVlanId
}
STATUS current
DESCRIPTION
""
::= { awcVlanCfgGroups 1 }
END