159 lines
4.3 KiB
Plaintext
159 lines
4.3 KiB
Plaintext
-- =================================================================
|
|
-- Copyright (c) 2010-2013 Hewlett-Packard Development Company, L.P.
|
|
--
|
|
-- Description: PPPoE server MIB
|
|
-- Reference:
|
|
-- Version: V1.1
|
|
-- History:
|
|
-- V1.0 Initial version by y04444
|
|
-- V1.1 2009-09-07 Modify by yuhaibo
|
|
-- Add PPPoE server trap
|
|
-- =================================================================
|
|
HPN-ICF-PPPOE-SERVER-MIB DEFINITIONS ::= BEGIN
|
|
IMPORTS
|
|
hpnicfCommon
|
|
FROM HPN-ICF-OID-MIB
|
|
OBJECT-TYPE, MODULE-IDENTITY, Integer32, Counter32, NOTIFICATION-TYPE
|
|
FROM SNMPv2-SMI;
|
|
|
|
hpnicfPPPoEServer MODULE-IDENTITY
|
|
LAST-UPDATED "200905060000Z" -- May 06th, 2009 at 00:00 GMT
|
|
ORGANIZATION
|
|
""
|
|
CONTACT-INFO
|
|
""
|
|
DESCRIPTION
|
|
"The MIB module is used for PPPoE server."
|
|
REVISION "200905060000Z"
|
|
DESCRIPTION
|
|
"Initial version"
|
|
::= { hpnicfCommon 102 }
|
|
|
|
hpnicfPPPoEServerObject OBJECT IDENTIFIER ::= { hpnicfPPPoEServer 1 }
|
|
|
|
--
|
|
-- PPPOE SERVER MAXIMUM SESSIONS SUPPORT
|
|
--
|
|
|
|
hpnicfPPPoEServerMaxSessions OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The maximum sessions supported by PPPoE server."
|
|
::= { hpnicfPPPoEServerObject 1 }
|
|
|
|
--
|
|
-- PPPOE SERVER CURRENT SESSION NUMBERS
|
|
--
|
|
|
|
hpnicfPPPoEServerCurrSessions OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The number of current sessions on the PPPoE server."
|
|
::= { hpnicfPPPoEServerObject 2 }
|
|
|
|
--
|
|
-- PPPOE SERVER AUTHENTICATION REQUEST NUMBERS
|
|
--
|
|
|
|
hpnicfPPPoEServerAuthRequests OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The number of authentication requests."
|
|
::= { hpnicfPPPoEServerObject 3 }
|
|
|
|
--
|
|
-- PPPOE SERVER AUTHENTICATION SUCCESS NUMBERS
|
|
--
|
|
|
|
hpnicfPPPoEServerAuthSuccesses OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The number of authentication succeses."
|
|
::= { hpnicfPPPoEServerObject 4 }
|
|
|
|
--
|
|
-- PPPOE SERVER AUTHENTICATION FAIL NUMBERS
|
|
--
|
|
|
|
hpnicfPPPoEServerAuthFailures OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The number of authentication failure."
|
|
::= { hpnicfPPPoEServerObject 5 }
|
|
|
|
--
|
|
-- PPPOE SERVER ABNORMAL OFFLINE COUNT THRESHOLD
|
|
--
|
|
|
|
hpnicfPPPoESAbnormOffsThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (0..65535)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The threshold of abnormal offline count."
|
|
::= { hpnicfPPPoEServerObject 6 }
|
|
|
|
--
|
|
-- PPPOE SERVER ABNORMAL OFFLINE PERCENT THRESHOLD
|
|
--
|
|
|
|
hpnicfPPPoESAbnormOffPerThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The threshold of abnormal offline percent."
|
|
::= { hpnicfPPPoEServerObject 7 }
|
|
|
|
--
|
|
-- PPPOE SERVER NORMAL OFFLINE PERCENT THRESHOLD
|
|
--
|
|
|
|
hpnicfPPPoESNormOffPerThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The threshold of normal offline percent."
|
|
::= { hpnicfPPPoEServerObject 8 }
|
|
|
|
--
|
|
-- Define the PPPoE Server Traps.
|
|
--
|
|
hpnicfPPPoEServerTraps OBJECT IDENTIFIER ::= { hpnicfPPPoEServer 2 }
|
|
|
|
hpnicfPPPoeServerTrapPrefix OBJECT IDENTIFIER ::= { hpnicfPPPoEServerTraps 0 }
|
|
|
|
hpnicfPPPoESAbnormOffsAlarm NOTIFICATION-TYPE
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This trap is generated when the PPPoE server abnormal
|
|
offline counts over threshold in five minutes."
|
|
::= { hpnicfPPPoeServerTrapPrefix 1 }
|
|
|
|
hpnicfPPPoESAbnormOffPerAlarm NOTIFICATION-TYPE
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This trap is generated when the PPPoE server abnormal
|
|
offline percent over threshold in five minutes."
|
|
::= { hpnicfPPPoeServerTrapPrefix 2 }
|
|
|
|
hpnicfPPPoESNormOffPerAlarm NOTIFICATION-TYPE
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This trap is generated when the PPPoE server normal
|
|
offline percent under threshold in five minutes."
|
|
::= { hpnicfPPPoeServerTrapPrefix 3 }
|
|
|
|
END
|