SSL-ACCELERATION-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY, NOTIFICATION-TYPE, IpAddress, TimeTicks FROM SNMPv2-SMI DisplayString FROM SNMPv2-TC management FROM IPIVOT-HEADER; sslAccelerationMib MODULE-IDENTITY LAST-UPDATED "0002020000Z" ORGANIZATION "IPivot, Inc." CONTACT-INFO "Contact: IPivot Support Postal: IPivot, Inc. 12568 Kirkham Court Poway, CA 92064 USA Phone: 1-800-785-2655 Email: support@ipivot.com Web: www.ipivot.com" DESCRIPTION "SSL Acceleration MIB" REVISION "0002020000Z" DESCRIPTION "IMPORTS OBJECT-TYPE Added." ::= { management 6 } sslObjects OBJECT IDENTIFIER ::= { sslAccelerationMib 1 } sslEvents OBJECT IDENTIFIER ::= { sslAccelerationMib 2 } -- -- SSL acceleration objects and events -- sslMonTable OBJECT-TYPE SYNTAX SEQUENCE OF SslMonEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "SSL monitor table. The entries are indexed from 1-24, one for each hour of the day. In this way, the MIB can return data for the past 24 hours. The current hour of day is indicated by currentHour in l7BrokerMib and can be used when retrieving running counts for the current hour." ::= { sslObjects 1 } sslMonEntry OBJECT-TYPE SYNTAX SslMonEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains SSL counts for a 1-hour period." INDEX { sslMonHour } ::= { sslMonTable 1 } SslMonEntry ::= SEQUENCE { sslMonHour INTEGER (0..23), sslPeakCpsRate INTEGER (0..4294967295), sslCpsRate INTEGER (0..4294967295), sslConnProcessed INTEGER (0..4294967295), sslTraffic INTEGER (1..2), sslErrs INTEGER (0..4294967295) } sslMonHour OBJECT-TYPE SYNTAX INTEGER (0..23) MAX-ACCESS not-accessible STATUS current DESCRIPTION "Index for sslMonTable. Indicates which hour of the day the entry is for." ::= { sslMonEntry 1 } sslPeakCpsRate OBJECT-TYPE SYNTAX INTEGER (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The peak SSL connections/second processed during the the 1-hour period." ::= { sslMonEntry 2 } sslCpsRate OBJECT-TYPE SYNTAX INTEGER (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The average rate of SSL connections/second processed during the 1-hour period." ::= { sslMonEntry 3 } sslConnProcessed OBJECT-TYPE SYNTAX INTEGER (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of SSL connections processed. This is the count during the 1-hour period." ::= { sslMonEntry 4 } sslTraffic OBJECT-TYPE SYNTAX INTEGER { ok (1), overflow (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates whether or not SSL traffic exceeded maximum capacity at least once during the 1-hour period. This object starts with the value 'ok' and is changed to 'overflow' at the first instance in which SSL traffic exceeds the capacity of the box. The value does not toggle back to 'ok'. A trap is sent when the value is 'overflow'." ::= { sslMonEntry 5 } sslErrs OBJECT-TYPE SYNTAX INTEGER (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "Number of errors encountered during SSL processing. This is the count for a 1 hour period." ::= { sslMonEntry 6 } sslTrafficOverflowAlert NOTIFICATION-TYPE OBJECTS { sslMonHour } STATUS current DESCRIPTION "SSL traffic exceeded maximum capacity. sslTraffic for the current hour has been set to 'overflow'." ::= { sslEvents 1 } END