Initial commit
This commit is contained in:
95
MIBS/eltexmes21xx/ELTEX-MES-HWENVIROMENT-MIB
Normal file
95
MIBS/eltexmes21xx/ELTEX-MES-HWENVIROMENT-MIB
Normal file
@ -0,0 +1,95 @@
|
||||
ELTEX-MES-HWENVIROMENT-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-- Title: Eltex MES Hardware enviroment definition
|
||||
-- Version: 1.1
|
||||
-- Date: 04-Mar-2016
|
||||
|
||||
IMPORTS
|
||||
eltMes FROM ELTEX-MES
|
||||
OBJECT-TYPE FROM SNMPv2-SMI
|
||||
RlEnvMonState FROM RADLAN-HWENVIROMENT;
|
||||
|
||||
eltMesEnv MODULE-IDENTITY
|
||||
LAST-UPDATED "201603040000Z"
|
||||
ORGANIZATION "Eltex Enterprise Co, Ltd."
|
||||
CONTACT-INFO "www.eltex.nsk.ru"
|
||||
DESCRIPTION
|
||||
"This private MIB module contains Eltex's hardware enviroment definition."
|
||||
REVISION "201603040000Z"
|
||||
DESCRIPTION
|
||||
"Add eltEnvResetButtonMode scalar."
|
||||
REVISION "201506110000Z"
|
||||
DESCRIPTION
|
||||
"Initial revision."
|
||||
::= { eltMes 11 }
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- eltEnvMonBatteryStatusTable
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
eltEnvMonBatteryStatusTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF EltEnvMonBatteryStatusEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table of battery status maintained by the environmental monitor
|
||||
card."
|
||||
::= { eltMesEnv 1 }
|
||||
|
||||
eltEnvMonBatteryStatusEntry OBJECT-TYPE
|
||||
SYNTAX EltEnvMonBatteryStatusEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the battery status table, representing the status of
|
||||
the associated battery maintained by the environmental monitor."
|
||||
INDEX { eltEnvMonBatteryStatusIndex }
|
||||
::= { eltEnvMonBatteryStatusTable 1 }
|
||||
|
||||
EltEnvMonBatteryStatusEntry ::= SEQUENCE {
|
||||
eltEnvMonBatteryStatusIndex INTEGER,
|
||||
eltEnvMonBatteryState RlEnvMonState,
|
||||
eltEnvMonBatteryStatusCharge INTEGER
|
||||
}
|
||||
|
||||
eltEnvMonBatteryStatusIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Unique index for the battery being instrumented. This index is for SNMP
|
||||
purposes only, and has no intrinsic meaning."
|
||||
::= { eltEnvMonBatteryStatusEntry 1 }
|
||||
|
||||
eltEnvMonBatteryState OBJECT-TYPE
|
||||
SYNTAX RlEnvMonState
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The mandatory state of the battery being instrumented."
|
||||
::= { eltEnvMonBatteryStatusEntry 2 }
|
||||
|
||||
eltEnvMonBatteryStatusCharge OBJECT-TYPE
|
||||
SYNTAX INTEGER(0..100 | 255)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Remaining percentage of battery charge. Value of 255 means that this
|
||||
parameter is undefined due to battery not supporting this feature or
|
||||
because it cannot be obtained in current state."
|
||||
::= { eltEnvMonBatteryStatusEntry 3 }
|
||||
|
||||
eltEnvResetButtonMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
enable(0),
|
||||
disable(1),
|
||||
reset-only(2)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Mode of reset button: 0 - Enable, 1 - disable, 2 - reset-only mode"
|
||||
DEFVAL { enable }
|
||||
::= { eltMesEnv 2 }
|
||||
|
||||
END
|
Reference in New Issue
Block a user