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
|
-- ****************************************************************************
-- COLUBRIS-DEVICE-DOT1X-MIB definitions
--
-- Copyright (c) 2006, Colubris Networks, Inc.
-- All Rights Reserved.
--
-- Colubris Device IEEE 802.1x MIB file.
--
-- ****************************************************************************
COLUBRIS-DEVICE-DOT1X-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Counter32
FROM SNMPv2-SMI
DisplayString, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
colubrisMgmtV2
FROM COLUBRIS-SMI
coDevDisIndex
FROM COLUBRIS-DEVICE-MIB
;
colubrisDeviceDot1xMIB MODULE-IDENTITY
LAST-UPDATED "200607050000Z"
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 Device IEEE 802.1x MIB."
::= { colubrisMgmtV2 32 }
-- colubrisDeviceDot1xMIB definition
colubrisDeviceDot1xMIBObjects OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIB 1 }
-- colubris Device IEEE 802.1x groups
coDeviceDot1xConfigGroup OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIBObjects 1 }
coDeviceDot1xStatusGroup OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIBObjects 2 }
coDeviceDot1xStatsGroup OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIBObjects 3 }
-- The Device IEEE 802.1x Status Group
coDeviceDot1xStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device IEEE 802.1x wireless station status attributes."
::= { coDeviceDot1xStatusGroup 1 }
coDeviceDot1xStatusEntry OBJECT-TYPE
SYNTAX CoDeviceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceDot1xStatusTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller.
coDev1xStaIndex - Uniquely identifies a 802.1x station on
the device."
INDEX { coDevDisIndex, coDev1xStaIndex }
::= { coDeviceDot1xStatusTable 1 }
CoDeviceStatusEntry ::= SEQUENCE
{
coDev1xStaIndex Integer32,
coDev1xStaMacAddress MacAddress,
coDev1xStaUserName DisplayString,
coDev1xStaPaeState INTEGER,
coDev1xStaBackendAuthState INTEGER,
coDev1xStaPortStatus INTEGER,
coDev1xStaSessionTime Counter32,
coDev1xStaTerminateCause INTEGER
}
coDev1xStaIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of a 802.1x station on the
device."
::= { coDeviceDot1xStatusEntry 1 }
coDev1xStaMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Wireless MAC address of the 802.1x station."
::= { coDeviceDot1xStatusEntry 2 }
coDev1xStaUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The User-Name representing the identity of the
Supplicant PAE."
::= { coDeviceDot1xStatusEntry 3 }
coDev1xStaPaeState OBJECT-TYPE
SYNTAX INTEGER
{
initialize(1),
disconnected(2),
connecting(3),
authenticating(4),
authenticated(5),
aborting(6),
held(7),
forceAuth(8),
forceUnauth(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current value of the Authenticator PAE state
machine."
::= { coDeviceDot1xStatusEntry 4 }
coDev1xStaBackendAuthState OBJECT-TYPE
SYNTAX INTEGER
{
request(1),
response(2),
success(3),
fail(4),
timeout(5),
idle(6),
initialize(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current state of the Backend Authentication
state machine."
::= { coDeviceDot1xStatusEntry 5 }
coDev1xStaPortStatus OBJECT-TYPE
SYNTAX INTEGER
{
authorized(1),
unauthorized(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current value of the controlled Port status
parameter for the Port."
::= { coDeviceDot1xStatusEntry 6 }
coDev1xStaSessionTime OBJECT-TYPE
SYNTAX Counter32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The duration of the session in seconds."
::= { coDeviceDot1xStatusEntry 7 }
coDev1xStaTerminateCause OBJECT-TYPE
SYNTAX INTEGER
{
supplicantLogoff(1),
portFailure(2),
supplicantRestart(3),
reauthFailed(4),
authControlForceUnauth(5),
portReInit(6),
portAdminDisabled(7),
notTerminatedYet(999)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The reason for session termination."
::= { coDeviceDot1xStatusEntry 8 }
-- The Device IEEE 802.1x Stats Group
coDeviceDot1xStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device IEEE 802.1x wireless client statistic attributes."
::= { coDeviceDot1xStatsGroup 1 }
coDeviceDot1xStatsEntry OBJECT-TYPE
SYNTAX CoDeviceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceDot1xStatsTable.
coDevDisIndex - Uniquely identify a device in the
MultiService Controller.
coDev1xStaIndex - Uniquely identify a 802.1x station on
the device."
AUGMENTS { coDeviceDot1xStatusEntry }
::= { coDeviceDot1xStatsTable 1 }
CoDeviceStatsEntry ::= SEQUENCE
{
coDev1xStaEapolRxFrame Counter32,
coDev1xStaEapolTxFrame Counter32,
coDev1xStaBackendResponses Counter32,
coDev1xStaBackendChallenges Counter32,
coDev1xStaBackendAuthSuccesses Counter32,
coDev1xStaBackendAuthFails Counter32
}
coDev1xStaEapolRxFrame OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of valid EAPOL frames of any type
that have been received by this Authenticator."
::= { coDeviceDot1xStatsEntry 1 }
coDev1xStaEapolTxFrame OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of EAPOL frames of any type that
have been transmitted by this Authenticator."
::= { coDeviceDot1xStatsEntry 2 }
coDev1xStaBackendResponses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Counts the number of times that the state machine sends
an initial Access-Request packet to the Authentication
server (i.e., executes sendRespToServer on entry to the
RESPONSE state). Indicates that the Authenticator
attempted communication with the Authentication Server."
::= { coDeviceDot1xStatsEntry 3 }
coDev1xStaBackendChallenges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Counts the number of times that the state machine
receives an initial Access-Challenge packet from the
Authentication server (i.e., aReq becomes TRUE,
causing exit from the RESPONSE state). Indicates that
the Authentication Server has communication with
the Authenticator."
::= { coDeviceDot1xStatsEntry 4 }
coDev1xStaBackendAuthSuccesses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Counts the number of times that the state machine
receives an EAP-Success message from the Authentication
Server (i.e., aSuccess becomes TRUE, causing a
transition from RESPONSE to SUCCESS). Indicates that
the Supplicant has successfully authenticated to
the Authentication Server."
::= { coDeviceDot1xStatsEntry 5 }
coDev1xStaBackendAuthFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Counts the number of times that the state machine
receives an EAP-Failure message from the Authentication
Server (i.e., aFail becomes TRUE, causing a transition
from RESPONSE to FAIL). Indicates that the Supplicant
has not authenticated to the Authentication Server."
::= { coDeviceDot1xStatsEntry 6 }
-- conformance information
colubrisDeviceDot1xMIBConformance OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIB 2 }
colubrisDeviceDot1xMIBCompliances OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIBConformance 1 }
colubrisDeviceDot1xMIBGroups OBJECT IDENTIFIER ::= { colubrisDeviceDot1xMIBConformance 2 }
-- compliance statements
colubrisDeviceDot1xMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for the Device MIB."
MODULE MANDATORY-GROUPS
{
colubrisDeviceDot1xStatusMIBGroup,
colubrisDeviceDot1xStatsMIBGroup
}
::= { colubrisDeviceDot1xMIBCompliances 1 }
-- units of conformance
colubrisDeviceDot1xStatusMIBGroup OBJECT-GROUP
OBJECTS {
coDev1xStaMacAddress,
coDev1xStaUserName,
coDev1xStaPaeState,
coDev1xStaBackendAuthState,
coDev1xStaPortStatus,
coDev1xStaSessionTime,
coDev1xStaTerminateCause
}
STATUS current
DESCRIPTION "A collection of status objects for IEEE 802.1x
stations connected to colubris devices."
::= { colubrisDeviceDot1xMIBGroups 1 }
colubrisDeviceDot1xStatsMIBGroup OBJECT-GROUP
OBJECTS {
coDev1xStaEapolRxFrame,
coDev1xStaEapolTxFrame,
coDev1xStaBackendResponses,
coDev1xStaBackendChallenges,
coDev1xStaBackendAuthSuccesses,
coDev1xStaBackendAuthFails
}
STATUS current
DESCRIPTION "A collection of statistical objects for IEEE 802.1x
stations connected to colubris devices."
::= { colubrisDeviceDot1xMIBGroups 2 }
END
|