summaryrefslogtreecommitdiff
path: root/MIBS/bluecoat/BLUECOAT-SG-AUTHENTICATION-MIB
blob: 2e54fa5eec554c64bb74337a3ea4851a132983a7 (plain)
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
BLUECOAT-SG-AUTHENTICATION-MIB DEFINITIONS ::= BEGIN

IMPORTS
        MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, Integer32
                FROM SNMPv2-SMI
        DisplayString
                FROM SNMPv2-TC
        blueCoatMgmt
                FROM BLUECOAT-MIB;

bluecoatSGAuthentication MODULE-IDENTITY
        LAST-UPDATED    "201408060300Z"
        ORGANIZATION    "Blue Coat Systems, Inc."
        CONTACT-INFO    "support.services@bluecoat.com
                         http://www.bluecoat.com"
        DESCRIPTION     "The BLUECOAT-SG-AUTHENTICATION-MIB provides authentication information
                         and statistics for a BlueCoat SG proxy appliance."
        REVISION        "201408060300Z"
        DESCRIPTION     "Initial revision of this MIB."
        ::= { blueCoatMgmt 15 }

ToggleState ::= INTEGER {
    enabled(1),
    disabled(2)
}

---
--- Main Groups
---

schannelStats                  OBJECT IDENTIFIER ::= { bluecoatSGAuthentication 2 }
lsaDomainControllerStats       OBJECT IDENTIFIER ::= { bluecoatSGAuthentication 3 }
schannelServerStats            OBJECT IDENTIFIER ::= { bluecoatSGAuthentication 4 }
authNotifications              OBJECT IDENTIFIER ::= { bluecoatSGAuthentication 5 }

authNotificationsPrefix
        OBJECT IDENTIFIER ::= { authNotifications 0 }


schannelStatsTable      OBJECT-TYPE
        SYNTAX          SEQUENCE OF SchannelStatsEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "This table lists the various statistics
                         concerning the schannel."
        ::= { schannelStats 1 }

schannelStatsEntry OBJECT-TYPE
        SYNTAX          SchannelStatsEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "A schannelStats entry describes the
                         present usage of a schannel."
        INDEX           { schannelStatsIndex }
        ::= { schannelStatsTable 1 }

SchannelStatsEntry ::= SEQUENCE {
        schannelStatsIndex                 INTEGER,
        domainName                          DisplayString,
        domainStatus                        DisplayString,
        timeouts                            INTEGER,
        transactions                        INTEGER,
        currentWaiters                      INTEGER,
        maxWaiters                          INTEGER,
        resets                              INTEGER
}

schannelStatsIndex OBJECT-TYPE
        SYNTAX          Integer32 (1..2147483647)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "An arbitrary value which uniquely identifies
                         a resource."
        ::= { schannelStatsEntry 1 }

domainName OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "The name of the domain."
        ::= { schannelStatsEntry 2 }

domainStatus OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "The status of the domain."
        ::= { schannelStatsEntry 3 }

timeouts OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Number of Schannel timeouts."
        ::= { schannelStatsEntry 4 }

transactions OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Number of Schannel transactions."
        ::= { schannelStatsEntry 5  }

currentWaiters OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Number of current waiters."
        ::= { schannelStatsEntry 6 }

maxWaiters OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Max number of waiters."
        ::= { schannelStatsEntry 7 }

resets OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Number of schannel resets."
        ::= { schannelStatsEntry 8 }


lsaDomainControllerStatsTable     OBJECT-TYPE
        SYNTAX          SEQUENCE OF LSADomainControllerStatsEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "This table lists the various lsa domain controller statistics."
        ::= { lsaDomainControllerStats 1 }

lsaDomainControllerStatsEntry     OBJECT-TYPE
        SYNTAX          LSADomainControllerStatsEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "Describe statistics of Domain controllers."
        INDEX           { lsaDomainControllerStatsIndex }
        ::= { lsaDomainControllerStatsTable 1 }

LSADomainControllerStatsEntry ::= SEQUENCE {
        lsaDomainControllerStatsIndex   INTEGER,
        domainControllerName           DisplayString,
        address                        DisplayString,
        siteNmae                       DisplayString,
        flags                          DisplayString,
        avgLDAPPingTime                INTEGER,
        maxLDAPPingTime                INTEGER
        }

lsaDomainControllerStatsIndex OBJECT-TYPE
        SYNTAX          Integer32 (1..2147483647)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "An arbitrary value which uniquely identifies
                         a resource."
        ::= { lsaDomainControllerStatsEntry 1 }

domainControllerName OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Name of domain controller."
        ::= { lsaDomainControllerStatsEntry 2 }

address OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Adress of Domain Controller."
        ::= { lsaDomainControllerStatsEntry 3 }

siteName OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Site name of domain controller."
        ::= { lsaDomainControllerStatsEntry 4 }

avgLDAPPingTime OBJECT-TYPE
        SYNTAX          Counter32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average LDAP ping time in milliseconds."
        ::= { lsaDomainControllerStatsEntry 5 }

lastLDAPPingTime OBJECT-TYPE
        SYNTAX          Counter32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Last LDAP ping time in milliseconds."
        ::= { lsaDomainControllerStatsEntry 6 }

flags OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Domain Controller flags."
        ::= { lsaDomainControllerStatsEntry 7 }


schannelServerStatsTable      OBJECT-TYPE
        SYNTAX          SEQUENCE OF SchannelServerStatsEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "This table lists the various statistics
                         concerning the schannel server."
        ::= { schannelServerStats 1 }

schannelServerStatsEntry OBJECT-TYPE
        SYNTAX          SchannelServerStatsEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "A schannelStats entry describes the
                         present usage of a schannel server."
        INDEX           { schannelServerStatsIndex }
        ::= { schannelServerStatsTable 1 }

SchannelServerStatsEntry ::= SEQUENCE {
        schannelServerStatsIndex            INTEGER,
        serverName                          DisplayString,
        connectionsInUse                    INTEGER,
        availableConnections                INTEGER,
        averageTransactions                 INTEGER,
        authsByDomainLast1Minute            INTEGER,
        authsByDomainLast3Minutes           INTEGER,
        authsByDomainLast5Minutes           INTEGER,
        authsByDomainLast15Minutes          INTEGER,
        authsByDomainLast60Minutes          INTEGER,
        failedAuthsByDomainLast1Minute      INTEGER,
        failedAuthsByDomainLast3Minutes     INTEGER,
        failedAuthsByDomainLast5Minutes     INTEGER,
        failedAuthsByDomainLast15Minutes    INTEGER,
        failedAuthsByDomainLast60Minutes    INTEGER,
        avgLatencyPerDomainLast1Minute      INTEGER,
        avgLatencyPerDomainLast3Minutes     INTEGER,
        avgLatencyPerDomainLast5Minutes     INTEGER,
        avgLatencyPerDomainLast15Minutes    INTEGER,
        avgLatencyPerDomainLast60Minutes    INTEGER,
        maxLatencyPerDomainLast1Minute      INTEGER,
        maxLatencyPerDomainLast3Minutes     INTEGER,
        maxLatencyPerDomainLast5Minutes     INTEGER,
        maxLatencyPerDomainLast15Minutes    INTEGER,
        maxLatencyPerDomainLast60Minutes    INTEGER,
        minLatencyPerDomainLast1Minute      INTEGER,
        minLatencyPerDomainLast3Minutes     INTEGER,
        minLatencyPerDomainLast5Minutes     INTEGER,
        minLatencyPerDomainLast15Minutes    INTEGER,
        minLatencyPerDomainLast60Minutes    INTEGER
}

schannelServerStatsIndex OBJECT-TYPE
        SYNTAX          Integer32 (1..2147483647)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION     "An arbitrary value which uniquely identifies
                         a resource."
        ::= { schannelServerStatsEntry 1 }

serverName OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "The status of the domain."
        ::= { schannelServerStatsEntry 2 }

connectionsInUse OBJECT-TYPE
        SYNTAX          Counter32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Number of connections in use."
        ::= { schannelServerStatsEntry 3 }

availableConnections OBJECT-TYPE
        SYNTAX          Counter32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Number of available connections."
        ::= { schannelServerStatsEntry 4 }

averageTransactions OBJECT-TYPE
        SYNTAX          Counter32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average transactions per second (last minute)."
        ::= { schannelServerStatsEntry 5 }

authsByDomainLast1Minute OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Auths by Domains Last 1 Minute."
        ::= { schannelServerStatsEntry 6 }

authsByDomainLast3Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Auths by Domains Last 3 Minutes."
        ::= { schannelServerStatsEntry 7 }

authsByDomainLast5Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Auths by Domains Last 5 Minutes."
        ::= { schannelServerStatsEntry 8 }

authsByDomainLast15Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Auths by Domains Last 15 Minutes."
        ::= { schannelServerStatsEntry 9 }

authsByDomainLast60Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Auths by Domains Last 60 Minutes."
        ::= { schannelServerStatsEntry 10 }

failedAuthsByDomainLast1Minute OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Failed auths by Domains Last 1 Minute."
        ::= { schannelServerStatsEntry 11 }

failedAuthsByDomainLast3Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Failed auths by Domains Last 3 Minutes."
        ::= { schannelServerStatsEntry 12 }

failedAuthsByDomainLast5Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Failed auths by Domains Last 5 Minutes."
        ::= { schannelServerStatsEntry 13 }

failedAuthsByDomainLast15Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Failed auths by Domains Last 15 Minutes."
        ::= { schannelServerStatsEntry 14 }

failedAuthsByDomainLast60Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Failed auths by Domains Last 60 Minutes."
        ::= { schannelServerStatsEntry 15 }

avgLatencyPerDomainLast1Minute OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average Latency Per Domains Last 1 Minute."
        ::= { schannelServerStatsEntry 16 }

avgLatencyPerDomainLast3Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average Latency Per Domain Last 3 Minutes."
        ::= { schannelServerStatsEntry 17 }

avgLatencyPerDomainLast5Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average Latency Per Last 5 Minutes."
        ::= { schannelServerStatsEntry 18 }

avgLatencyPerDomainLast15Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average Latency Per Domain Last 15 Minutes."
        ::= { schannelServerStatsEntry 19 }

avgLatencyPerDomainLast60Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Average Latency Per Domain Last 60 Minutes."
        ::= { schannelServerStatsEntry 20 }

maxLatencyPerDomainLast1Minute OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Max Latency Per Domain Last 1 Minute."
        ::= { schannelServerStatsEntry 21 }

maxLatencyPerDomainLast3Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Max Latency Per Domains Last 3 Minutes."
        ::= { schannelServerStatsEntry 22 }

maxLatencyPerDomainLast5Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Max Latency Per Domains Last 5 Minutes."
        ::= { schannelServerStatsEntry 23 }

maxLatencyPerDomainLast15Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Max Latency Per Domains Last 15 Minutes."
        ::= { schannelServerStatsEntry 24 }

maxLatencyPerDomainLast60Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Max Latency Per Domains Last 60 Minutes."
        ::= { schannelServerStatsEntry 25 }

minLatencyPerDomainLast1Minute OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Min Latency Per Domains Last 1 Minute."
        ::= { schannelServerStatsEntry 26 }

minLatencyPerDomainLast3Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Min Latency Per Domains Last 3 Minutes."
        ::= { schannelServerStatsEntry 27 }

minLatencyPerDomainLast5Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Min Latency Per Domains Last 5 Minutes."
        ::= { schannelServerStatsEntry 28 }

minLatencyPerDomainLast15Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Min Latency Per Domains Last 15 Minutes."
        ::= { schannelServerStatsEntry 29 }

minLatencyPerDomainLast60Minutes OBJECT-TYPE
        SYNTAX          Counter32
        UNITS           "Bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION     "Min Latency Per Domains Last 60 Minutes."
        ::= { schannelServerStatsEntry 30 }

--
-- notifications
--

schannelLatencyTrap NOTIFICATION-TYPE
        OBJECTS { domainName, latencyType, latencyValue }
        STATUS          current
        DESCRIPTION     "The domain that warrants a notification."
        ::= { authNotificationsPrefix 1 }


---
--- BLUECOAT-SG-AUTHENTICATION-MIB Ends
---

END