-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-AUTHORIZATION-STATS-MIB.mib
318 lines (278 loc) · 10.7 KB
/
CISCO-AUTHORIZATION-STATS-MIB.mib
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
-- *-------------------------------------------------------------------------
-- * CISCO-AUTHORIZATION-STATS-MIB.my: The CISCO Authorization Status MIB.
-- *
-- * Jan 2003, Brian D. Steven
-- *
-- * Copyright (c) 2003-2006 by Cisco Systems, Inc.
--
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------------
CISCO-AUTHORIZATION-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Integer32,
Gauge32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
TimeInterval
FROM SNMPv2-TC
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
CiscoPort
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoAuthorizationStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200611080000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-cvpn3000@cisco.com"
DESCRIPTION
"The Cisco User Authorization Statistics MIB models
counters and objects that are of management
interest.
"
REVISION "200611080000Z"
DESCRIPTION
"The initial version of this MIB."
::= { ciscoMgmt 343 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cStatsAuthorization OBJECT IDENTIFIER
::= { ciscoAuthorizationStatsMibModule 1 }
cAuthorizationGlobal OBJECT IDENTIFIER
::= { cStatsAuthorization 1 }
cAuthorizationStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CAuthorizationStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The list of servers that may be queried for authorization
attributes for connecting IPSec tunnel users."
::= { cStatsAuthorization 2 }
cAuthorizationStatsEntry OBJECT-TYPE
SYNTAX CAuthorizationStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the cAuthorizationStatsTable. These entries are
created or destroyed whenever an authorization server
connection is added or removed via one of the management
interfaces to the tunnel server."
INDEX { cAuthorizServerIndex }
::= { cAuthorizationStatsTable 1 }
CAuthorizationStatsEntry ::= SEQUENCE {
cAuthorizServerIndex Integer32,
cAuthorizServerAddressType InetAddressType,
cAuthorizServerAddress InetAddress,
cAuthorizClientServerPortNum CiscoPort,
cAuthorizClientRoundTripTime TimeInterval,
cAuthorizClientAccessRequests Counter32,
cAuthorizClientAccessRetrans Counter32,
cAuthorizClientAccessAccepts Counter32,
cAuthorizClientAccessRejects Counter32,
cAuthorizClientAccessChallenges Counter32,
cAuthorizClientMalAccessResps Counter32,
cAuthorizClientBadAuthenticates Counter32,
cAuthorizClientPendingRequests Gauge32,
cAuthorizClientTimeouts Counter32,
cAuthorizClientUnknownTypes Counter32,
cAuthorizServerGroupId Integer32
}
cAuthorizServerIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The unique number used as the index for this row."
::= { cAuthorizationStatsEntry 1 }
cAuthorizServerAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The type of Internet address used by this entry."
::= { cAuthorizationStatsEntry 2 }
cAuthorizServerAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the authorization server whose
statistics are being reported."
::= { cAuthorizationStatsEntry 3 }
cAuthorizClientServerPortNum OBJECT-TYPE
SYNTAX CiscoPort
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UDP The port on the server to which authorization
requests are directed."
::= { cAuthorizationStatsEntry 4 }
cAuthorizClientRoundTripTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time interval between the most recent
Access-Reply/Access-Challenge and the Access-Request."
::= { cAuthorizationStatsEntry 5 }
-- Request/Response statistics
-- Ignoring Unknown Types, then
-- AccessRequests + AccesssRetransmissions = AccessAccepts +
-- AccessRejects + AccessChallenges + PendingRequests + Timeouts
cAuthorizClientAccessRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Request packets sent to
authorization server since client start-up.
This does not include retransmissions."
::= { cAuthorizationStatsEntry 6 }
cAuthorizClientAccessRetrans OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Request packets retransmitted
to authorization server since client start-up."
::= { cAuthorizationStatsEntry 7 }
cAuthorizClientAccessAccepts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Accept packets received by
authorization server since client start-up."
::= { cAuthorizationStatsEntry 8 }
cAuthorizClientAccessRejects OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Reject packets received by
authorization server since client start-up."
::= { cAuthorizationStatsEntry 9 }
cAuthorizClientAccessChallenges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Challenge packets received by
authorization server since client start-up."
::= { cAuthorizationStatsEntry 10 }
-- "Access-Response" includes an Access-Accept, Access-Challenge
-- or Access-Reject
cAuthorizClientMalAccessResps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of malformed Access-Response packets
received by authoriztion server since client start-up.
Malformed packets include packets with an invalid length.
Bad authenticators or Signature attributes are not included
as malformed access responses."
::= { cAuthorizationStatsEntry 11 }
cAuthorizClientBadAuthenticates OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Response packets containing
invalid authenticators or Signature attributes received by
authorization server since client start-up."
::= { cAuthorizationStatsEntry 12 }
cAuthorizClientPendingRequests OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Access-Request packets destined for
authorization server that have not yet timed out or received
a response. This variable is incremented when an
Access-Request is sent and decremented due to receipt of an
Access-Reply or Access-Challenge, a timeout or
retransmission."
::= { cAuthorizationStatsEntry 13 }
cAuthorizClientTimeouts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of timeouts to authorization server since
client startup. After a timeout the client may retry to the
same server, send to a different server, or give up. A retry
to the same server is counted as a retransmit as well as a
timeout. A send to a different server is counted as a Request
as well as a timeout."
::= { cAuthorizationStatsEntry 14 }
cAuthorizClientUnknownTypes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of unknown type packets received by
authorization server since client start-up."
::= { cAuthorizationStatsEntry 15 }
cAuthorizServerGroupId OBJECT-TYPE
SYNTAX Integer32 (0..65535 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Id of user group associated with authorization
server. The group ID is an integer value assigned by
the tunnel server. Group ID 0 is a special value used
to refer all gorups."
::= { cAuthorizationStatsEntry 16 }
-- conformance information
cAuthorizationMIBConformance OBJECT IDENTIFIER
::= { ciscoAuthorizationStatsMibModule 2 }
cAuthorizationMIBCompliances OBJECT IDENTIFIER
::= { cAuthorizationMIBConformance 1 }
cAuthorizationGroup OBJECT IDENTIFIER
::= { cAuthorizationMIBConformance 2 }
-- compliance statements
cAuthorizationMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for authorization clients
implementing the Authorization Client MIB."
MODULE -- this module
MANDATORY-GROUPS { cAuthorizationClientMIBGroup }
::= { cAuthorizationMIBCompliances 1 }
cAuthorizationClientMIBGroup OBJECT-GROUP
OBJECTS {
cAuthorizServerAddressType,
cAuthorizServerAddress,
cAuthorizClientServerPortNum,
cAuthorizClientRoundTripTime,
cAuthorizClientAccessRequests,
cAuthorizClientAccessRetrans,
cAuthorizClientAccessAccepts,
cAuthorizClientAccessRejects,
cAuthorizClientAccessChallenges,
cAuthorizClientMalAccessResps,
cAuthorizClientBadAuthenticates,
cAuthorizClientPendingRequests,
cAuthorizClientTimeouts,
cAuthorizClientUnknownTypes,
cAuthorizServerGroupId
}
STATUS current
DESCRIPTION
"The basic collection of objects providing management of
Authorization Clients."
::= { cAuthorizationGroup 1 }
END