PRESLEY-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises FROM RFC1155-SMI
DisplayString, sysContact,sysName,sysLocation FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212
TRAP-TYPE FROM RFC-1215;
a3Com OBJECT IDENTIFIER ::= { enterprises 43 }
generic OBJECT IDENTIFIER ::= { a3Com 10 }
alertLed OBJECT IDENTIFIER ::= { generic 23 }
alertLedState OBJECT-TYPE
SYNTAX INTEGER {
active (1),
inactive (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This Read-only object shows the state of the Alert LED."
DEFVAL { inactive }
::= { alertLed 1 }
alertLedTrap TRAP-TYPE
ENTERPRISE a3Com
VARIABLES {alertLedState, alertDescription, sysContact, sysName, sysLocation }
DESCRIPTION
"When the Alert LED is Activated or Inactivated this trap is
generated. The variables provided with it are the current state
of the Alert LED and the alertDescription of the last Activated
Alert LED condition, the name of the managed hub, it's location
and contact information."
::= 73
alertTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlertTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of descriptive, status and configuration information
about the Alert LED Conditions."
::= { alertLed 3 }
alertTableEntry OBJECT-TYPE
SYNTAX AlertTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the Alert LED table containing information about a
single condition."
INDEX { alertIdentifier }
::= { alertTable 1 }
AlertTableEntry ::=
SEQUENCE {
alertIdentifier INTEGER,
alertDescription DisplayString,
alertStatus INTEGER,
alertType INTEGER,
alertConfiguration INTEGER
}
alertIdentifier OBJECT-TYPE
SYNTAX INTEGER {
networkUtilization (1),
networkErrorRate (2),
utpPortPartitioned (3),
coaxPortPartitioned (4),
loginSecurityViolation (5),
snmpSecurityViolation (6),
portSecurityViolation (7),
stationConnectivity (8),
alertLedTest (9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This identifies a particular Alert LED Condition."
::= { alertTableEntry 1 }
alertDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of Alert LED Condition."
::= { alertTableEntry 2 }
alertStatus OBJECT-TYPE
SYNTAX INTEGER {
active (1),
inactive (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of Alert LED Condition."
::= { alertTableEntry 3 }
alertType OBJECT-TYPE
SYNTAX INTEGER {
threshold (1),
state (2),
latched (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of Alert LED Condition."
::= { alertTableEntry 4 }
alertConfiguration OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2),
high (3),
medium (4),
low (5),
acknowledge (6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Configuration of Alert LED Condition.
For Threshold Conditions this can be High, Medium, Low or
Disabled.
For State Conditions it is Enabled or Disabled.
For Latched Conditions it is Enabled, Disabled, or if the
Condition is Active the additional option of Acknowledge."
::= { alertTableEntry 5 }
END