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-SSL-STATS-MIB
154 lines (128 loc) · 4.35 KB
/
ALTIGA-SSL-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
-- *------------------------------------------------------------------
-- * ALTIGA-SSL-STATS-MIB.my: Altiga SSL Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-SSL-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32
FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsSsl, alSslGroup
FROM ALTIGA-MIB
alSslMibModule
FROM ALTIGA-GLOBAL-REG;
altigaSslStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200209051300Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The Altiga SSL Statistics MIB models counters and objects that are
of management interest for SSL.
Acronyms
The following acronyms are used in this document:
MIB: Management Information Base
SSL: Secure Sockets Layer
"
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alSslMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
alStatsSslGlobal OBJECT IDENTIFIER ::= { alStatsSsl 1 }
alSslStatsTotalSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of total sessions."
::= { alStatsSslGlobal 1 }
alSslStatsActiveSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of active sessions."
::= { alStatsSslGlobal 2 }
alSslStatsMaxSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number current of active sessions at
any one time."
::= { alStatsSslGlobal 3 }
alSslStatsPreDecryptOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets sent to the decryption engine. Includes
octets used as part of negotiation."
::= { alStatsSslGlobal 4 }
alSslStatsPostDecryptOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets received from the decryption engine."
::= { alStatsSslGlobal 5 }
alSslStatsPreEncryptOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets send to the encryption engine."
::= { alStatsSslGlobal 6 }
alSslStatsPostEncryptOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets received from the encryption engine.
Includes octets used as part of negitiation."
::= { alStatsSslGlobal 7 }
altigaSslStatsMibConformance OBJECT IDENTIFIER ::= { altigaSslStatsMibModule 1 }
altigaSslStatsMibCompliances OBJECT IDENTIFIER ::= { altigaSslStatsMibConformance 1 }
altigaSslStatsMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for agents which
implement the Altiga SSL Statistics MIB."
MODULE
MANDATORY-GROUPS {
altigaSslStatsGroup
}
::= { altigaSslStatsMibCompliances 1 }
altigaSslStatsGroup OBJECT-GROUP
OBJECTS
{
alSslStatsTotalSessions,
alSslStatsActiveSessions,
alSslStatsMaxSessions,
alSslStatsPreDecryptOctets,
alSslStatsPostDecryptOctets,
alSslStatsPreEncryptOctets,
alSslStatsPostEncryptOctets
}
STATUS current
DESCRIPTION
"The objects for SSL statistics."
::= { alSslGroup 2 }
END