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
|
-- ****************************************************************************
-- COLUBRIS-VIRTUAL-AP-MIB definitions
--
-- Copyright (c) 2004, Colubris Networks, Inc.
-- All Rights Reserved.
--
-- Colubris Networks Virtual Access Point MIB file.
--
-- ****************************************************************************
COLUBRIS-VIRTUAL-AP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex
FROM IF-MIB
colubrisMgmtV2
FROM COLUBRIS-SMI
ColubrisSSID, ColubrisUsersAuthenticationMode,
ColubrisProfileIndexOrZero, ColubrisSecurity,
ColubrisPriorityQueue
FROM COLUBRIS-TC
;
colubrisVirtualApMIB MODULE-IDENTITY
LAST-UPDATED "200607250000Z"
ORGANIZATION "Colubris Networks, Inc."
CONTACT-INFO "Colubris Networks
Postal: 200 West Street Ste 300
Waltham, Massachusetts 02451-1121
UNITED STATES
Phone: +1 781 684 0001
Fax: +1 781 684 0009
E-mail: cn-snmp@colubris.com"
DESCRIPTION "Colubris Networks Virtual Access Point MIB."
::= { colubrisMgmtV2 11 }
-- colubrisVirtualApMIB definition
colubrisVirtualApMIBObjects OBJECT IDENTIFIER ::= { colubrisVirtualApMIB 1 }
-- colubris Virtual Access Point groups
coVirtualApConfig OBJECT IDENTIFIER ::= { colubrisVirtualApMIBObjects 1 }
-- The Virtual Access Point Address Configuration Group
coVirtualAccessPointConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoVirtualAccessPointConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "VSC configuration attributes. In tabular form to
allow for multiple instances."
::= { coVirtualApConfig 1 }
coVirtualAccessPointConfigEntry OBJECT-TYPE
SYNTAX CoVirtualAccessPointConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coVirtualAccessPointConfigTable.
ifIndex - Each 802.11 interface is represented by an ifEntry.
Interface tables in this MIB module are indexed by
ifIndex.
coVirtualWlanProfileIndex - Uniquely access a profile for this
particular 802.11 interface."
INDEX { ifIndex, coVirtualApWlanProfileIndex }
::= { coVirtualAccessPointConfigTable 1 }
CoVirtualAccessPointConfigEntry ::= SEQUENCE
{
coVirtualApWlanProfileIndex Integer32,
coVirtualApSSID ColubrisSSID,
coVirtualApBroadcastSSID TruthValue,
coVirtualApMaximumNumberOfUsers Integer32,
coVirtualApDefaultVLAN Integer32,
coVirtualApSecurity ColubrisSecurity,
coVirtualApAuthenMode ColubrisUsersAuthenticationMode,
coVirtualApAuthenProfileIndex ColubrisProfileIndexOrZero,
coVirtualApUserAccountingEnabled INTEGER,
coVirtualApUserAccountingProfileIndex ColubrisProfileIndexOrZero,
coVirtualApDefaultUserRateLimitationEnabled TruthValue,
coVirtualApDefaultUserMaxTransmitRate Integer32,
coVirtualApDefaultUserMaxReceiveRate Integer32,
coVirtualApDefaultUserBandwidthLevel ColubrisPriorityQueue,
coVirtualApOperState INTEGER
}
coVirtualApWlanProfileIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of the VSC profile."
::= { coVirtualAccessPointConfigEntry 1 }
coVirtualApSSID OBJECT-TYPE
SYNTAX ColubrisSSID
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Service Set ID assigned to the VSC. This value must be
unique per radio interface."
::= { coVirtualAccessPointConfigEntry 2 }
coVirtualApBroadcastSSID OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if the SSID is included in beacon frames.
On Intersil hardware, only the first profile is
manageable. Reading this attribute shall always return
'false' for the other profiles. Writing into this attribute
for the other profiles will return an error."
::= { coVirtualAccessPointConfigEntry 3 }
coVirtualApMaximumNumberOfUsers OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies the maximum number of concurrent users that this
profile can accept."
::= { coVirtualAccessPointConfigEntry 4 }
coVirtualApDefaultVLAN OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies the default VLAN to use for this profile
when no radius authentication has taken place.
The value 0 is used when no VLAN has been assigned to this
profile. Writing to this object is only available on
satellite devices."
::= { coVirtualAccessPointConfigEntry 5 }
coVirtualApSecurity OBJECT-TYPE
SYNTAX ColubrisSecurity
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies all supported authentication/encryption algorithms."
::= { coVirtualAccessPointConfigEntry 6 }
coVirtualApAuthenMode OBJECT-TYPE
SYNTAX ColubrisUsersAuthenticationMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies if user authentication is performed locally or via
an AAA server."
::= { coVirtualAccessPointConfigEntry 7 }
coVirtualApAuthenProfileIndex OBJECT-TYPE
SYNTAX ColubrisProfileIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the AAA server profile to use for user authentication.
This parameter only applies when the coVirtualApSecurity
is set to 'wpa' or 'ieee802dot1x' or 'ieee802dot1xWithWep' and
the coVirtualApAuthenMode set to 'profile' or
'localAndProfile'. When set to Zero, no AAA server profile
is selected or on a public satellite device it could represent
a pre-configured AAA profile."
::= { coVirtualAccessPointConfigEntry 8 }
coVirtualApUserAccountingEnabled OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates if accounting information is generated by the
device and sent to the AAA server for users connecting to
this profile. Accounting information will be generated only
if a valid AAA server profile is configured for the
coVirtualApAccountingProfileIndex attribute."
::= { coVirtualAccessPointConfigEntry 9 }
coVirtualApUserAccountingProfileIndex OBJECT-TYPE
SYNTAX ColubrisProfileIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the AAA server profile to be used for accounting
information. The special value Zero indicates that no accounting
profile is selected."
::= { coVirtualAccessPointConfigEntry 10 }
coVirtualApDefaultUserRateLimitationEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates if the default user rate limitation is enabled."
::= { coVirtualAccessPointConfigEntry 11 }
coVirtualApDefaultUserMaxTransmitRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the default user maximum transmit rate."
::= { coVirtualAccessPointConfigEntry 12 }
coVirtualApDefaultUserMaxReceiveRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the default user maximum receive rate."
::= { coVirtualAccessPointConfigEntry 13 }
coVirtualApDefaultUserBandwidthLevel OBJECT-TYPE
SYNTAX ColubrisPriorityQueue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the default user bandwidth level."
::= { coVirtualAccessPointConfigEntry 14 }
coVirtualApOperState OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Activate/Deactivate the Virtual Service Community in
the radio."
::= { coVirtualAccessPointConfigEntry 15 }
-- conformance information
colubrisVirtualApMIBConformance OBJECT IDENTIFIER ::= { colubrisVirtualApMIB 2 }
colubrisVirtualApMIBCompliances OBJECT IDENTIFIER ::= { colubrisVirtualApMIBConformance 1 }
colubrisVirtualApMIBGroups OBJECT IDENTIFIER ::= { colubrisVirtualApMIBConformance 2 }
-- compliance statements
colubrisVirtualApMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for the Virtual Access Point MIB."
MODULE MANDATORY-GROUPS
{
colubrisVirtualApMIBGroup
}
::= { colubrisVirtualApMIBCompliances 1 }
-- units of conformance
colubrisVirtualApMIBGroup OBJECT-GROUP
OBJECTS {
coVirtualApSSID,
coVirtualApBroadcastSSID,
coVirtualApMaximumNumberOfUsers,
coVirtualApDefaultVLAN,
coVirtualApSecurity,
coVirtualApAuthenMode,
coVirtualApAuthenProfileIndex,
coVirtualApUserAccountingEnabled,
coVirtualApUserAccountingProfileIndex,
coVirtualApDefaultUserRateLimitationEnabled,
coVirtualApDefaultUserMaxTransmitRate,
coVirtualApDefaultUserMaxReceiveRate,
coVirtualApDefaultUserBandwidthLevel,
coVirtualApOperState
}
STATUS current
DESCRIPTION "A collection of objects for use with Virtual Access Points."
::= { colubrisVirtualApMIBGroups 1 }
END
|