This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
ALTIGA-SEP-STATS-MIB
497 lines (437 loc) · 15.8 KB
/
ALTIGA-SEP-STATS-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
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
-- *------------------------------------------------------------------
-- * ALTIGA-SEP-STATS-MIB.my: Cisco VPN3000 Series SEP Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002, 2003 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-SEP-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32
FROM SNMPv2-SMI
RowStatus, DisplayString
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsSep, alSepGroup
FROM ALTIGA-MIB
alSepMibModule
FROM ALTIGA-GLOBAL-REG;
altigaSepStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200303270000Z"
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 VPN 3000 Series SEP Statistics MIB models counters
and objects that are of management interest for the SEP
hardware.
Acronyms
The following acronyms are used in this document:
MIB: Management Information Base
RSA: Rivest, Shamir, and Adelman
SEP: Scalable Encryption Processor
"
REVISION "200303270000Z"
DESCRIPTION
"Added new enum value to alSepModuleStatsType
and alSepModuleStatsState."
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alSepMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- per SEP statistics
alSepModuleStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlSepModuleStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of SEPs modules found."
::= { alStatsSep 2 }
alSepModuleStatsEntry OBJECT-TYPE
SYNTAX AlSepModuleStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alSepModuleStatsTable."
INDEX { alSepModuleStatsSlotNum }
::= { alSepModuleStatsTable 1 }
AlSepModuleStatsEntry ::= SEQUENCE {
alSepModuleStatsRowStatus RowStatus,
alSepModuleStatsSlotNum INTEGER,
alSepModuleStatsType INTEGER,
alSepModuleStatsState INTEGER,
alSepModuleStatsDspCodeVersion DisplayString,
alSepModuleStatsHashOutboundPackets Counter32,
alSepModuleStatsHashOutboundOctets Counter32,
alSepModuleStatsHashInboundPackets Counter32,
alSepModuleStatsHashInboundOctets Counter32,
alSepModuleStatsEncPackets Counter32,
alSepModuleStatsEncOctets Counter32,
alSepModuleStatsDecPackets Counter32,
alSepModuleStatsDecOctets Counter32,
alSepModuleStatsHashEncPackets Counter32,
alSepModuleStatsHashDecPackets Counter32,
alSepModuleStatsCryptoTransformsTotal Counter32,
alSepModuleStatsPacketDrops Counter32,
alSepModuleStatsRandRequests Counter32,
alSepModuleStatsRandReplens Counter32,
alSepModuleStatsRandBytesAvail Integer32,
alSepModuleStatsRandCacheEmpty Counter32,
alSepModuleStatsDHKeysGenerated Counter32,
alSepModuleStatsDHDerivedSecretKeys Counter32,
alSepModuleStatsRSASignings Counter32,
alSepModuleStatsRSAVerifications Counter32,
alSepModuleStatsRSAEncPackets Counter32,
alSepModuleStatsRSAEncOctets Counter32,
alSepModuleStatsRSADecPackets Counter32,
alSepModuleStatsRSADecOctets Counter32,
alSepModuleStatsDSAKeysGenerated Counter32,
alSepModuleStatsDSASignings Counter32,
alSepModuleStatsDSAVerifications Counter32,
alSepModuleStatsRSAKeysGenerated Counter32
}
alSepModuleStatsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row."
::= { alSepModuleStatsEntry 1 }
alSepModuleStatsSlotNum OBJECT-TYPE
SYNTAX INTEGER(1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The physical slot this SEP is connected to."
::= { alSepModuleStatsEntry 2 }
alSepModuleStatsType OBJECT-TYPE
SYNTAX INTEGER {
cryptSet(1),
cryptIc(2),
bcm582x(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of HW engine used to perform the
cryptographic transforms.
cryptSet: First generation of Hardware Cryptographic Processor.
cryptIc: Cryptographic Integrated Circuit.
bcm582x: BroadCom 582x series Hardware Cryptographic Products.
"
::= { alSepModuleStatsEntry 3 }
alSepModuleStatsState OBJECT-TYPE
SYNTAX INTEGER {
sepNotFound(1),
sepFound(2),
sepDiagFailure(3),
sepNotOperational(4),
sepLoading(5),
sepInitializing(6),
sepOperational(7),
sepDisabled(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The functional state of this SEP.
sepNotFound: SEP is not found.
sepFound: SEP is found.
sepDiagFailure: SEP dialog fail.
sepNotOperational: SEP is not operational.
sepLoading: SEP is loading data.
sepInitializing: SEP is initializing.
sepOperational: SEP is operational.
sepDisabled: SEP is disabled.
"
::= { alSepModuleStatsEntry 4 }
alSepModuleStatsDspCodeVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of DSP microcode running on this SEP."
::= { alSepModuleStatsEntry 5 }
alSepModuleStatsHashOutboundPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound authentication-only packets processed
by this SEP."
::= { alSepModuleStatsEntry 6 }
alSepModuleStatsHashOutboundOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound octets authenticated by this SEP."
::= { alSepModuleStatsEntry 7 }
alSepModuleStatsHashInboundPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound authentication-only packets processed
by this SEP."
::= { alSepModuleStatsEntry 8 }
alSepModuleStatsHashInboundOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound octets authenticated by this SEP."
::= { alSepModuleStatsEntry 9 }
alSepModuleStatsEncPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound encryption-only packets processed by
this SEP."
::= { alSepModuleStatsEntry 10 }
alSepModuleStatsEncOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound octets encrypted by this SEP."
::= { alSepModuleStatsEntry 11 }
alSepModuleStatsDecPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound decryption-only packets processed by
this SEP."
::= { alSepModuleStatsEntry 12 }
alSepModuleStatsDecOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound octets decrypted by this SEP."
::= { alSepModuleStatsEntry 13 }
alSepModuleStatsHashEncPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of combined outbound hash/encrypt packets processed
by this SEP."
::= { alSepModuleStatsEntry 14 }
alSepModuleStatsHashDecPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of combined inbound hash/decrypt packets processed
by this SEP."
::= { alSepModuleStatsEntry 15 }
alSepModuleStatsCryptoTransformsTotal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of hash, encryption, decryption,
hash/encrypt, and hash/decrypt transforms
performed by this SEP."
::= { alSepModuleStatsEntry 16 }
alSepModuleStatsPacketDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets intended for SEP processing,
dropped due to the SEP ring being full."
::= { alSepModuleStatsEntry 17 }
alSepModuleStatsRandRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of random # requests made to the SEP."
::= { alSepModuleStatsEntry 18 }
alSepModuleStatsRandReplens OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of random # requests fulfilled by the SEP."
::= { alSepModuleStatsEntry 19 }
alSepModuleStatsRandBytesAvail OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of random bytes currently cached on the Host."
::= { alSepModuleStatsEntry 20 }
alSepModuleStatsRandCacheEmpty OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a random # request came in and
we had no SEP generated random #'s available on the host."
::= { alSepModuleStatsEntry 21 }
alSepModuleStatsDHKeysGenerated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a new Diffie Hellman key pair has been
generated by a SEP."
::= { alSepModuleStatsEntry 22 }
alSepModuleStatsDHDerivedSecretKeys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a SEP has derived the Diffie Hellman
secret key."
::= { alSepModuleStatsEntry 23 }
alSepModuleStatsRSASignings OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times an RSA Digital Signature has been
generated by a SEP."
::= { alSepModuleStatsEntry 24 }
alSepModuleStatsRSAVerifications OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times an RSA Digital Signature has been
verified by a SEP."
::= { alSepModuleStatsEntry 25 }
alSepModuleStatsRSAEncPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets RSA-encrypted by this SEP."
::= { alSepModuleStatsEntry 26 }
alSepModuleStatsRSAEncOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets RSA-encrypted by this SEP."
::= { alSepModuleStatsEntry 27 }
alSepModuleStatsRSADecPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets RSA-decrypted by this SEP."
::= { alSepModuleStatsEntry 28 }
alSepModuleStatsRSADecOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets RSA-decrypted by this SEP."
::= { alSepModuleStatsEntry 29 }
alSepModuleStatsDSAKeysGenerated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a new DSA Key pair has been
generated by a SEP."
::= { alSepModuleStatsEntry 30 }
alSepModuleStatsDSASignings OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a DSA Digital Signature has been
generated by a SEP."
::= { alSepModuleStatsEntry 31 }
alSepModuleStatsDSAVerifications OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a DSA Digital Signature has been
verified by a SEP."
::= { alSepModuleStatsEntry 32 }
alSepModuleStatsRSAKeysGenerated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a new RSA Key pair has been
generated by a SEP."
::= { alSepModuleStatsEntry 33 }
altigaSepStatsMibConformance OBJECT IDENTIFIER
::= { altigaSepStatsMibModule 1 }
altigaSepStatsMibCompliances OBJECT IDENTIFIER
::= { altigaSepStatsMibConformance 1 }
altigaSepStatsMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for agents which
implement the Altiga SEP Statistics MIB."
MODULE
MANDATORY-GROUPS {
altigaSepStatsGroup
}
::= { altigaSepStatsMibCompliances 1 }
altigaSepStatsGroup OBJECT-GROUP
OBJECTS
{
alSepModuleStatsRowStatus,
alSepModuleStatsType,
alSepModuleStatsState,
alSepModuleStatsDspCodeVersion,
alSepModuleStatsHashOutboundPackets,
alSepModuleStatsHashOutboundOctets,
alSepModuleStatsHashInboundPackets,
alSepModuleStatsHashInboundOctets,
alSepModuleStatsEncPackets,
alSepModuleStatsEncOctets,
alSepModuleStatsDecPackets,
alSepModuleStatsDecOctets,
alSepModuleStatsHashEncPackets,
alSepModuleStatsHashDecPackets,
alSepModuleStatsCryptoTransformsTotal,
alSepModuleStatsPacketDrops,
alSepModuleStatsRandRequests,
alSepModuleStatsRandReplens,
alSepModuleStatsRandBytesAvail,
alSepModuleStatsRandCacheEmpty,
alSepModuleStatsDHKeysGenerated,
alSepModuleStatsDHDerivedSecretKeys,
alSepModuleStatsRSASignings,
alSepModuleStatsRSAVerifications,
alSepModuleStatsRSAEncPackets,
alSepModuleStatsRSAEncOctets,
alSepModuleStatsRSADecPackets,
alSepModuleStatsRSADecOctets,
alSepModuleStatsDSAKeysGenerated,
alSepModuleStatsDSASignings,
alSepModuleStatsDSAVerifications,
alSepModuleStatsRSAKeysGenerated
}
STATUS current
DESCRIPTION
"The objects for the SEP Module statistics."
::= { alSepGroup 2 }
END