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
|
--
-- Copyright (c) 2010 by Ruckus Wireless, Inc.
-- All Rights Reserved
--
RUCKUS-DEVICE-MIB DEFINITIONS ::= BEGIN
IMPORTS
ruckusCommonDeviceModule
FROM RUCKUS-ROOT-MIB
TruthValue,
DisplayString
FROM SNMPv2-TC
MODULE-IDENTITY,
OBJECT-TYPE,
IpAddress
FROM SNMPv2-SMI
OBJECT-GROUP,
MODULE-COMPLIANCE
FROM SNMPv2-CONF
ifIndex
FROM IF-MIB
RuckusCountryCode
FROM RUCKUS-TC-MIB;
ruckusDeviceMIB MODULE-IDENTITY
LAST-UPDATED "201010150800Z"
ORGANIZATION "Ruckus Wireless, Inc."
CONTACT-INFO
"Ruckus Wireless Inc.
Postal:
880 W Maude Ave
Sunnyvale, CA 94085
USA
EMail: support@ruckuswireless.com
Phone: +1-650-265-4200."
DESCRIPTION
"Ruckus device management mib."
::= { ruckusCommonDeviceModule 1 }
-- Groups
--
ruckusDeviceObjects OBJECT IDENTIFIER ::= { ruckusDeviceMIB 1 }
ruckusDeviceInfo OBJECT IDENTIFIER ::= { ruckusDeviceObjects 1 }
ruckusDeviceTrapInfo OBJECT IDENTIFIER ::= { ruckusDeviceObjects 2 }
ruckusDeviceIPInfo OBJECT IDENTIFIER ::= { ruckusDeviceObjects 3 }
ruckusDeviceWanInfo OBJECT IDENTIFIER ::= { ruckusDeviceObjects 4 }
ruckusDeviceEvents OBJECT IDENTIFIER ::= { ruckusDeviceMIB 2 }
-- Device Generals
--
ruckusDeviceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies name of the device.
Show the same value as model name."
::= { ruckusDeviceInfo 1 }
ruckusDeviceReboot OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to true(1) would cause to reboot the device.
Always returns false(2) on read."
DEFVAL { false }
::= { ruckusDeviceInfo 2 }
ruckusDeviceRebootWithDefaults OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows the product to revert to factory defaults."
DEFVAL { false }
::= { ruckusDeviceInfo 3 }
ruckusDeviceCountryCode OBJECT-TYPE
SYNTAX RuckusCountryCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the country code.
Example ISO country codes: CA,US,HK,IL,CN,JP,TW."
::= { ruckusDeviceInfo 4 }
ruckusDeviceGPS OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies GPS coordinates of the device.
(e.g. 37.3881,-122.0258)"
::= { ruckusDeviceInfo 5 }
ruckusDeviceNEId OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "NE Id."
::= { ruckusDeviceInfo 6 }
ruckusDeviceLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Location of the device.
Show the intstallation position."
::= { ruckusDeviceInfo 10 }
-- SNMP Trap Receiver
--
ruckusDeviceTrapDestination OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies primary trap destination IPv6 or IPv4 address."
::= { ruckusDeviceTrapInfo 1 }
ruckusDeviceTrapDestination2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies secondary trap destination IPv6 or IPv4 address."
::= { ruckusDeviceTrapInfo 2 }
-- Device Misc IP Configuration
--
ruckusDevicePrimaryDNS OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies primary DNS IP address."
::= { ruckusDeviceIPInfo 1 }
ruckusDeviceSecondaryDNS OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies secondary DNS IP address."
::= { ruckusDeviceIPInfo 2 }
ruckusDevicePrimaryDNSIPV6 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies primary DNS IPV6 address."
::= { ruckusDeviceIPInfo 3 }
ruckusDeviceSecondaryDNSIPV6 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies secondary DNS IPV6 address."
::= { ruckusDeviceIPInfo 4 }
-- Device's WAN Configuration
--
ruckusDeviceWanTable OBJECT-TYPE
SYNTAX SEQUENCE OF RuckusDeviceWanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies each wan table."
::= { ruckusDeviceWanInfo 1 }
ruckusDeviceWanEntry OBJECT-TYPE
SYNTAX RuckusDeviceWanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies each wan entry."
INDEX {
ifIndex }
::= { ruckusDeviceWanTable 1 }
RuckusDeviceWanEntry ::= SEQUENCE {
ruckusDeviceWanIPAddrMode INTEGER,
ruckusDeviceWanIPAddr IpAddress,
ruckusDeviceWanName DisplayString,
ruckusDeviceWanNetmask IpAddress,
ruckusDeviceWanGateway IpAddress,
ruckusDeviceWanIPVersion INTEGER,
ruckusDeviceWanIPV6AddrMode INTEGER,
ruckusDeviceWanIPV6Addr OCTET STRING,
ruckusDeviceWanIPV6PrefixLen INTEGER,
ruckusDeviceWanIPV6Gateway OCTET STRING }
ruckusDeviceWanIPAddrMode OBJECT-TYPE
SYNTAX INTEGER {
none(1),
static(2),
dhcp(3),
pppoe(4) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies how the wan gets its IP address.
none - bridging
static - Statically assigned IP address
dhcp - Using DHCP protocol
pppoe - Using PPPoE protocol
when ipaddr mode from dhcp to static,the relative nodes should be set together ,
including:ruckusDeviceWanIPAddr,ruckusDeviceWanNetmask,ruckusDeviceWanGateway
"
::= { ruckusDeviceWanEntry 1 }
ruckusDeviceWanIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is writable only if the ruckusDeviceWanIPAddrMode
is set to static(2)."
::= { ruckusDeviceWanEntry 2 }
ruckusDeviceWanName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the name of the wan interface."
::= { ruckusDeviceWanEntry 3 }
ruckusDeviceWanNetmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the ip address mask if the ruckusDeviceWanIPAddrMode
is set to static(2)."
::= { ruckusDeviceWanEntry 4 }
ruckusDeviceWanGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the gateway ipaddr if the ruckusDeviceWanIPAddrMode
is set to static(2)."
::= { ruckusDeviceWanEntry 5 }
ruckusDeviceWanIPVersion OBJECT-TYPE
SYNTAX INTEGER { ipv4(1), ipv6(2),dualstack(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the system ip version,ipv4 or ipv6 or dualstack.
ipv4 - only support IPV4
ipv6 - only support IPV6
dualstack - support IPV4 and IPV6"
DEFVAL {ipv6}
::= { ruckusDeviceWanEntry 8 }
ruckusDeviceWanIPV6AddrMode OBJECT-TYPE
SYNTAX INTEGER {
auto-configuration(1),
static(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies how the wan gets its IPV6 address.
auto-configuration - auto get ipv6 address by RFC about IPV6
static - Statically assigned IPV6 address
when ipv6addr mode from auto-configuration to static,the relative nodes should be set together ,
including:ruckusDeviceWanIPV6Addr,ruckusDeviceWanIPV6PrefixLen,ruckusDeviceWanIPV6Gateway "
DEFVAL {auto-configuration}
::= { ruckusDeviceWanEntry 10 }
ruckusDeviceWanIPV6Addr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is writable only if the ruckusDeviceWanIPAddrMode
is set to static(2)."
::= { ruckusDeviceWanEntry 11 }
ruckusDeviceWanIPV6PrefixLen OBJECT-TYPE
SYNTAX INTEGER (3..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the ip v6 address prefix length if the ruckusDeviceWanIPV6AddrMode
is set to static(2)."
::= { ruckusDeviceWanEntry 12 }
ruckusDeviceWanIPV6Gateway OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the gateway ipv6 address if the ruckusDeviceWanIPV6AddrMode
is set to static(2)."
::= { ruckusDeviceWanEntry 13 }
-- Conformance & Compliance
--
END
|