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
|
-- *****************************************************************
-- Meru Networks Enterprise Specific MIB
--
-- Copyright (c) 2005 by Meru Networks
-- All rights reserved
--
-- *****************************************************************
MERU-CONFIG-MACFILTERING-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE,
OBJECT-TYPE,
MODULE-IDENTITY,
OBJECT-IDENTITY,
enterprises,
Counter32,
Counter64,
Gauge32,
TimeTicks,
IpAddress,
Integer32
FROM SNMPv2-SMI
Ipv6Address
FROM IPV6-TC
TEXTUAL-CONVENTION,
TimeInterval,
TimeStamp,
DateAndTime,
TruthValue,
DisplayString,
MacAddress,
RowStatus
FROM SNMPv2-TC
mwConfiguration
FROM MERU-SMI
;
mwConfigMacFiltering MODULE-IDENTITY
LAST-UPDATED "200506050000Z"
ORGANIZATION "Meru Networks"
CONTACT-INFO "support@merunetworks.com"
DESCRIPTION
"This MIB defines all the managed objects used to manage the Meru WLAN
MAC Filtering Configuration infrastructure"
::= { mwConfiguration 6 }
mwAcl OBJECT IDENTIFIER ::= { mwConfigMacFiltering 1 }
mwAclCachingTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Auto Authentication Expiry Period(Seconds)"
::= { mwAcl 4 }
mwAclAccessAllowTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwAclAccessAllowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes ACL Allow Access Configuration "
::= { mwConfigMacFiltering 2 }
mwAclAccessAllowEntry OBJECT-TYPE
SYNTAX MwAclAccessAllowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes ACL Allow Access Configuration "
INDEX { mwAclAccessAllowTableIndex }
::= { mwAclAccessAllowTable 1 }
MwAclAccessAllowEntry ::= SEQUENCE {
mwAclAccessAllowTableIndex Integer32,
mwAclAccessAllowMac MacAddress,
mwAclAccessAllowDescr DisplayString(SIZE (0..40)),
mwAclAccessAllowRowStatus RowStatus
}
mwAclAccessAllowTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwAclAccessAllowEntry 1 }
mwAclAccessAllowMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Address. The value must not be 00:00:00:00:00:00"
::= { mwAclAccessAllowEntry 2 }
mwAclAccessAllowDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..40))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Description"
::= { mwAclAccessAllowEntry 3 }
mwAclAccessAllowRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwAclAccessAllowEntry 5 }
mwAclAccessDenyTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwAclAccessDenyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes ACL Deny Access Configuration "
::= { mwConfigMacFiltering 3 }
mwAclAccessDenyEntry OBJECT-TYPE
SYNTAX MwAclAccessDenyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes ACL Deny Access Configuration "
INDEX { mwAclAccessDenyTableIndex }
::= { mwAclAccessDenyTable 1 }
MwAclAccessDenyEntry ::= SEQUENCE {
mwAclAccessDenyTableIndex Integer32,
mwAclAccessDenyMac MacAddress,
mwAclAccessDenyDescr DisplayString(SIZE (0..40)),
mwAclAccessDenyRowStatus RowStatus
}
mwAclAccessDenyTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwAclAccessDenyEntry 1 }
mwAclAccessDenyMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Address. The value must not be 00:00:00:00:00:00"
::= { mwAclAccessDenyEntry 2 }
mwAclAccessDenyDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..40))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Description"
::= { mwAclAccessDenyEntry 3 }
mwAclAccessDenyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwAclAccessDenyEntry 5 }
END
|