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
|
LINKSYS-WBA-MIB DEFINITIONS ::= BEGIN
IMPORTS
rnd FROM LINKSYS-MIB
InetAddressType,InetAddress,InetAddressIPv6 FROM INET-ADDRESS-MIB -- RFC2851
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
TEXTUAL-CONVENTION, DisplayString,MacAddress FROM SNMPv2-TC
OBJECT-TYPE FROM SNMPv2-SMI;
rlWBA MODULE-IDENTITY
LAST-UPDATED "201007050000Z"
ORGANIZATION "Linksys LLC."
CONTACT-INFO
"www.linksys.com/business/support"
DESCRIPTION
"The private MIB module definition for Web Based Authentication."
REVISION "201007050000Z"
DESCRIPTION
"Added this MODULE-IDENTITY clause."
::= { rnd 228 }
RlWBAStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The host(mac,ifindex) authentication status"
SYNTAX INTEGER {
unknown(0),
inProcess(1),
failAuthen(2),
pending(3),
authenticating(4),
authenticated(5),
waitAck(6)
}
RlWBARetryFlagOp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The retry flag options"
SYNTAX INTEGER {
off(0),
on(1)
}
rlWBAAuxiliaryTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlWBAAuxiliaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table is an auxiliary table with 1 entry only. Used
to pass user credentials to authentication manager and provide
the users' authentication status."
::= { rlWBA 1 }
rlWBAAuxiliaryEntry OBJECT-TYPE
SYNTAX RlWBAAuxiliaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { rlWBAIp }
::= { rlWBAAuxiliaryTable 1 }
RlWBAAuxiliaryEntry ::= SEQUENCE {
rlWBAIp InetAddress,
rlWBAStatus RlWBAStatusType,
rlAuxFailReason INTEGER,
rlIsRetryFlag RlWBARetryFlagOp,
rlWBAUsername DisplayString,
rlWBAPassword DisplayString
}
rlWBAIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "User remote IP address."
::= { rlWBAAuxiliaryEntry 1 }
rlWBAStatus OBJECT-TYPE
SYNTAX RlWBAStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The host authentication status."
::= { rlWBAAuxiliaryEntry 2 }
rlAuxFailReason OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Web Based Authentication fail reason"
::= { rlWBAAuxiliaryEntry 3 }
rlIsRetryFlag OBJECT-TYPE
SYNTAX RlWBARetryFlagOp
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Web Based Authentication retry flag.
If flag is on it means the host that started authentication process was out
due to higher priority session. The host must retry authenticating until higher session
is accepted/failed. The default value is OFF"
DEFVAL{ off }
::= { rlWBAAuxiliaryEntry 4 }
rlWBAUsername OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Web Based Authentication User Name"
::= { rlWBAAuxiliaryEntry 5 }
rlWBAPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Web Based Authentication User Password."
::= { rlWBAAuxiliaryEntry 6 }
-- -------------------------------------------------------------
-- --------- Image Tables --------------------------------
-- -------------------------------------------------------------
rlWBAImageTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlWBAImageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table holds the images content."
::= {rlWBA 2 }
rlWBAImageEntry OBJECT-TYPE
SYNTAX RlWBAImageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rlWBAImageTable."
INDEX { rlWBAImageNumber,rlWBAImageIndex}
::= {rlWBAImageTable 1 }
RlWBAImageEntry ::= SEQUENCE {
rlWBAImageNumber INTEGER (1..10),
rlWBAImageIndex INTEGER (1..1000),
rlWBAImageText OCTET STRING
}
rlWBAImageNumber OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This variable identifies the Image number ... "
::= { rlWBAImageEntry 1 }
rlWBAImageIndex OBJECT-TYPE
SYNTAX INTEGER (1..1000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This variable identifies the Data of index of the image cut into octetes of 160 bytes"
::= { rlWBAImageEntry 2 }
rlWBAImageText OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable identifies the MIB which holds image content ."
::= { rlWBAImageEntry 3 }
-- -------------------------------------------------------------
-- --------- Image Tables --------------------------------
-- -------------------------------------------------------------
rlWBADataTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlWBADataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table holds the Data content."
::= {rlWBA 3 }
rlWBADataEntry OBJECT-TYPE
SYNTAX RlWBADataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rlWBADataTable."
INDEX { rlWBADataNumber,rlWBADataIndex}
::= {rlWBADataTable 1 }
RlWBADataEntry ::= SEQUENCE {
rlWBADataNumber INTEGER (1..10),
rlWBADataIndex INTEGER (1..1000),
rlWBADataText SnmpAdminString
}
rlWBADataNumber OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This variable identifies the Data of index of the image cut into octets of 160 bytes"
::= { rlWBADataEntry 1 }
rlWBADataIndex OBJECT-TYPE
SYNTAX INTEGER (1..1000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"TBD"
::= { rlWBADataEntry 2 }
rlWBADataText OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable identifies the MIB which holds a section of the Data content in the table.(chunk of 160 bytes)"
::= { rlWBADataEntry 3 }
-- image information
rlWBAImageInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlWBAImageInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table holds the images content."
::= {rlWBA 4 }
rlWBAImageInfoEntry OBJECT-TYPE
SYNTAX RlWBAImageInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rlWBAImageInfoTable."
INDEX { rlWBAImageInfoNumber}
::= {rlWBAImageInfoTable 1 }
RlWBAImageInfoEntry ::= SEQUENCE {
rlWBAImageInfoNumber INTEGER (1..10),
rlWBAImageInfoName SnmpAdminString,
rlWBAImageInfoSize INTEGER
}
rlWBAImageInfoNumber OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This variable identifies the Image number ... "
::= { rlWBAImageInfoEntry 1 }
rlWBAImageInfoName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable identifies the Name of the image eg: myImage.png"
::= { rlWBAImageInfoEntry 2 }
rlWBAImageInfoSize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable identifies the size of the image."
::= { rlWBAImageInfoEntry 3 }
rlWBAImageClear OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Action to Clear a certain image "
::= {rlWBA 5}
rlWBADataClear OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Action to Clear a certain image "
::= {rlWBA 6 }
rlWBAImageDownloadFinishStatus OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Finish status of customization image download"
::= {rlWBA 7}
END
|