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
|
-- =================================================================
-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description:HUAWEI MAC AUTHEN MIB
-- Reference:
-- Version: V1.05
-- History:
-- v1.01
-- modified by z00196108 2013-8-7
-- v1.02
-- modified by z00196108 2013-10-23
-- v1.03
-- modified by q00228201 2014-1-13
-- v1.04
-- modified by h00280725 2015-6-22
-- v1.05
-- modified by c00350813 2016-3-18
-- =================================================================
HUAWEI-MAC-AUTHEN-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
MODULE-IDENTITY, IpAddress, OBJECT-TYPE,
NOTIFICATION-TYPE,Integer32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,OBJECT-GROUP,NOTIFICATION-GROUP
FROM SNMPv2-CONF
InterfaceIndexOrZero, ifDescr
FROM IF-MIB
VlanIdOrNone
FROM Q-BRIDGE-MIB
EnabledStatus
FROM P-BRIDGE-MIB
RowStatus,MacAddress,DisplayString
FROM SNMPv2-TC;
--
-- Module Identifier
--
hwMacAuthenMIB MODULE-IDENTITY
LAST-UPDATED "201603181536Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"This MIB describes objects used for mac-authentication,including
configuring mac-authentication."
REVISION "201603181536Z"
DESCRIPTION
"Modify hwMacAuthenModeUsername"
REVISION "201506221604Z"
DESCRIPTION
"Modify range of hwMacAuthenMaxUserNum"
REVISION "200912151800Z" -- December 15th, 2009 at 14:00 GMT
DESCRIPTION
"The initial revision of this MIB module."
REVISION "201308071111Z" -- August 7th, 2013 at 14:00 GMT
DESCRIPTION
"Modify quiet-period."
REVISION "201310231221Z" -- October 23th, 2013 at 14:00 GMT
DESCRIPTION
"Modify hwMacAuthenTimerOfflineDetect"
REVISION "201401131221Z"
DESCRIPTION
"Modify quiet-period."
::= { hwDatacomm 171 }
--
-- Objects Identifier
--
hwMacAuthenObjects OBJECT IDENTIFIER ::= { hwMacAuthenMIB 1 }
--
-- Nodes Identifier
--
hwMacAuthenGlobalEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Global MAC authenticate. Enable this before you want to enable
other interfaces MAC authentication. "
DEFVAL { disable }
::= { hwMacAuthenObjects 1 }
hwMacAuthenModeUsername OBJECT-TYPE
SYNTAX INTEGER
{
macAddressWithoutHyphen(1),
macAddressWithHyphen(2),
fixed(3),
option82(4),
macAddressWithHyphenNormal(5),
macAddressWithoutHyphenUpper(6),
macAddressWithHyphenUpper(7),
macAddressWithHyphenNormalUpper(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify MAC authentication mode config."
DEFVAL { macAddressWithoutHyphen }
::= { hwMacAuthenObjects 2 }
hwMacAuthenPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Special the fixed password. "
::= { hwMacAuthenObjects 3 }
hwMacAuthenUsername OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Special the fixed username. "
::= { hwMacAuthenObjects 4 }
hwMacAuthenDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify domain server configuration. "
::= { hwMacAuthenObjects 5 }
hwMacAuthenTimerOfflineDetect OBJECT-TYPE
SYNTAX Integer32(0..7200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify timer configuration."
DEFVAL { 300 }
::= { hwMacAuthenObjects 6 }
hwMacAuthenTimerQuiet OBJECT-TYPE
SYNTAX Integer32(0..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify timer configuration."
DEFVAL { 60 }
::= { hwMacAuthenObjects 7 }
hwMacAuthenTimerServerTimeout OBJECT-TYPE
SYNTAX Integer32(1..120)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify timer configuration."
DEFVAL { 30 }
::= { hwMacAuthenObjects 8 }
hwMacAuthenReauthInterval OBJECT-TYPE
SYNTAX Integer32(1..7200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify timer configuration of guest vlan reauthentication. "
DEFVAL { 30 }
::= { hwMacAuthenObjects 9 }
hwMacAuthenCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwMacAuthenCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC authentication configuration table."
::= { hwMacAuthenObjects 10 }
hwMacAuthenCfgEntry OBJECT-TYPE
SYNTAX HwMacAuthenCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the MAC authentication configuration table."
INDEX { hwMacAuthenPortIndex }
::= { hwMacAuthenCfgTable 1 }
HwMacAuthenCfgEntry ::=
SEQUENCE {
hwMacAuthenPortIndex Integer32,
hwMacAuthenPortEnable EnabledStatus,
hwMacAuthenGuestVlan VlanIdOrNone,
hwMacAuthenMaxUserNum Integer32,
hwMacAuthenPortDomain DisplayString,
hwMacAuthenPortModeUserName INTEGER,
hwMacAuthenPortUserName DisplayString,
hwMacAuthenPortPassWord DisplayString,
hwMacAuthenPortPwdType INTEGER
}
hwMacAuthenPortIndex OBJECT-TYPE
SYNTAX Integer32 (0..1280)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Index of L2-Switch Interface."
::= { hwMacAuthenCfgEntry 1 }
hwMacAuthenPortEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Whether to enable MAC authentication on this interface."
DEFVAL { disable }
::= { hwMacAuthenCfgEntry 2 }
hwMacAuthenGuestVlan OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Specify guest vlan configuration information for ports."
::= { hwMacAuthenCfgEntry 3 }
hwMacAuthenMaxUserNum OBJECT-TYPE
SYNTAX Integer32(1..16384)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The max number of users. "
DEFVAL { 256 }
::= { hwMacAuthenCfgEntry 4 }
hwMacAuthenPortDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify domain server configuration for ports."
::= { hwMacAuthenCfgEntry 5 }
hwMacAuthenPortModeUserName OBJECT-TYPE
SYNTAX INTEGER
{
obeyGlobalConfiguration(1),
macAddressWithoutHyphen(2),
macAddressWithHyphen(3),
fixed(4),
option82(5),
macAddressWithHyphenNormal(6),
macAddressWithoutHyphenUpper(7),
macAddressWithHyphenUpper(8),
macAddressWithHyphenNormalUpper(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify MAC authentication mode config for ports."
DEFVAL { obeyGlobalConfiguration }
::= { hwMacAuthenCfgEntry 6 }
hwMacAuthenPortUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Special the fixed username for ports."
::= { hwMacAuthenCfgEntry 7 }
hwMacAuthenPortPassWord OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Special the fixed password for ports."
::= { hwMacAuthenCfgEntry 8 }
hwMacAuthenPortPwdType OBJECT-TYPE
SYNTAX INTEGER
{
simple(1),
cipher(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of port password. "
DEFVAL { simple }
::= { hwMacAuthenCfgEntry 9 }
hwMacAuthenPwdType OBJECT-TYPE
SYNTAX INTEGER
{
simple(1),
cipher(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of global password. "
DEFVAL { simple }
::= { hwMacAuthenObjects 11 }
--
-- Traps Identifier
--
hwMacAuthenMibTraps OBJECT IDENTIFIER ::= { hwMacAuthenMIB 2 }
hwMacAuthenMaxUserAlarm NOTIFICATION-TYPE
OBJECTS { ifDescr }
STATUS current
DESCRIPTION
"The number of ahthenticate users is reached the max number. "
::= { hwMacAuthenMibTraps 1 }
-- ============== conformance information ==============
hwMacAuthenConformance OBJECT IDENTIFIER ::= { hwMacAuthenMIB 3 }
hwMacAuthenCompliances OBJECT IDENTIFIER ::= { hwMacAuthenConformance 1 }
hwMacAuthenCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting this module."
MODULE -- this module
MANDATORY-GROUPS
{
hwMacAuthenCfgGroup
}
::= { hwMacAuthenCompliances 1 }
-- ============== groups ==============
hwMacAuthenCfgGroups OBJECT IDENTIFIER ::= { hwMacAuthenConformance 2 }
hwMacAuthenCfgGroup OBJECT-GROUP
OBJECTS {
hwMacAuthenGlobalEnable,
hwMacAuthenModeUsername,
hwMacAuthenPassword,
hwMacAuthenUsername,
hwMacAuthenDomain,
hwMacAuthenTimerOfflineDetect,
hwMacAuthenTimerQuiet,
hwMacAuthenTimerServerTimeout,
hwMacAuthenReauthInterval,
hwMacAuthenPortEnable,
hwMacAuthenGuestVlan,
hwMacAuthenMaxUserNum,
hwMacAuthenPortDomain,
hwMacAuthenPortModeUserName,
hwMacAuthenPortUserName,
hwMacAuthenPortPassWord,
hwMacAuthenPortPwdType,
hwMacAuthenPwdType
}
STATUS current
DESCRIPTION
"The mac-authen's Configuration group."
::= { hwMacAuthenCfgGroups 1 }
hwMacAuthenTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwMacAuthenMaxUserAlarm }
STATUS current
DESCRIPTION
"The mac-authen's Notification group."
::= { hwMacAuthenCfgGroups 2 }
-- ============== conformance information define end ==============
END
|