Initial commit
This commit is contained in:
71
MIBS/bktel/BKTEL-HFC862-BASE-MIB
Normal file
71
MIBS/bktel/BKTEL-HFC862-BASE-MIB
Normal file
@ -0,0 +1,71 @@
|
||||
-- ******************************************************************************************
|
||||
-- *
|
||||
-- * Description: Base definitions for BKtel HFC-862 systems
|
||||
-- *
|
||||
-- * Copyright 2006 by BKtel communications GmbH
|
||||
-- *
|
||||
-- * V.1.0 04.10.2006 M. Heldmann - created this "bkbase.mib" file based on BKtel systems "abase.mib" file
|
||||
-- * - removed all definitins not used by NMS implementation of BKtel communications GmbH
|
||||
-- * - NESlotValue expanded due to new 2G6 platform needs
|
||||
-- * V.1.1 08.05.2014 M. Heldmann - removed NESlotValue (0..99) restriction due to new (2014) NECXE
|
||||
-- ******************************************************************************************
|
||||
|
||||
|
||||
BKTEL-HFC862-BASE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
iso, experimental
|
||||
FROM RFC1155-SMI;
|
||||
|
||||
|
||||
--
|
||||
-- Type definitions
|
||||
--
|
||||
|
||||
DisplayString ::= OCTET STRING
|
||||
|
||||
TruthValue ::= INTEGER
|
||||
{
|
||||
true(1),
|
||||
false(2)
|
||||
}
|
||||
|
||||
NESlotValue ::= INTEGER -- (0..99) - removed the restriction due to new (2014) NECXE
|
||||
|
||||
ModuleWidthValue ::= INTEGER (0..8)
|
||||
|
||||
-- Due to compatibility reasons this enumeration starts from value (0)
|
||||
-- For the same reason the values (1) and (4) are reserved and must not be used
|
||||
PerceivedSeverityValue ::= INTEGER
|
||||
{ -- Meaning:
|
||||
notification(0), -- all OK, notify only
|
||||
alarm(2), -- used for alarms (hihi or lolo)
|
||||
warning(3), -- used for warnings (hi or lo)
|
||||
clear(5) -- all OK
|
||||
}
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
org OBJECT IDENTIFIER ::= { iso 3 }
|
||||
|
||||
dod OBJECT IDENTIFIER ::= { org 6 }
|
||||
|
||||
internet OBJECT IDENTIFIER ::= { dod 1 }
|
||||
|
||||
mgmt OBJECT IDENTIFIER ::= { internet 2 }
|
||||
|
||||
private OBJECT IDENTIFIER ::= { internet 4 }
|
||||
|
||||
enterprises OBJECT IDENTIFIER ::= { private 1 }
|
||||
|
||||
bktelSystems OBJECT IDENTIFIER ::= { enterprises 7501 }
|
||||
|
||||
hfc OBJECT IDENTIFIER ::= { bktelSystems 1 }
|
||||
|
||||
ne OBJECT IDENTIFIER ::= { hfc 1 }
|
||||
|
||||
modules OBJECT IDENTIFIER ::= { hfc 2 }
|
||||
|
||||
END
|
811
MIBS/bktel/BKTEL-HFC862-BES-V01-MIB
Normal file
811
MIBS/bktel/BKTEL-HFC862-BES-V01-MIB
Normal file
@ -0,0 +1,811 @@
|
||||
--- ****************************************************************************
|
||||
-- *
|
||||
-- * Description: Implements definitions for the BK-Ethernet-Switch-modules
|
||||
-- *
|
||||
-- * Copyright 2007 by BKtel communications GmbH
|
||||
-- *
|
||||
-- *
|
||||
-- * V.0.1 12.05.2006 M. Heldmann first draft
|
||||
-- * V.0.2 04.10.2006 M. Heldmann NESlotWriteValue expanded due to new 2G6 platform needs
|
||||
-- * V.1.0 11.05.2007 M. Heldmann renamed this module from "bkswitch" to "bkbes"
|
||||
-- * added a couple of parameters
|
||||
-- * V.1.1 11.07.2013 M. Heldmann adjusted syntax of "CommonEntry" to remove MIB compiler warnings
|
||||
-- * V.1.2 05.09.2014 M. Heldmann changed CommonModuleWidth and ConfigNESlotWrite STATUS to optional
|
||||
-- ****************************************************************************
|
||||
|
||||
BKTEL-HFC862-BES-V01-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
experimental, enterprises, TimeTicks, IpAddress, Counter
|
||||
FROM RFC1155-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215
|
||||
modules, DisplayString, TruthValue, PerceivedSeverityValue, NESlotValue, ModuleWidthValue
|
||||
FROM BKTEL-HFC862-BASE-MIB
|
||||
;
|
||||
|
||||
bes OBJECT IDENTIFIER ::= { modules 114 }
|
||||
besCommon OBJECT IDENTIFIER ::= { bes 1 }
|
||||
besStates OBJECT IDENTIFIER ::= { bes 2 }
|
||||
besConfiguration OBJECT IDENTIFIER ::= { bes 3 }
|
||||
besControl OBJECT IDENTIFIER ::= { bes 4 }
|
||||
besMeasuringValues OBJECT IDENTIFIER ::= { bes 5 }
|
||||
besDisplay OBJECT IDENTIFIER ::= { bes 6 }
|
||||
besDisplayPorts OBJECT IDENTIFIER ::= { bes 56 }
|
||||
|
||||
|
||||
--
|
||||
-- Type definitions
|
||||
--
|
||||
|
||||
PortType ::= INTEGER
|
||||
{
|
||||
typeCopper(1),
|
||||
typeFiber(2)
|
||||
}
|
||||
|
||||
PortLinkState ::= INTEGER
|
||||
{
|
||||
linkDown(1),
|
||||
linkUp(2)
|
||||
}
|
||||
|
||||
PortStatus ::= INTEGER
|
||||
{
|
||||
statusUnknown(1),
|
||||
statusInit(2),
|
||||
statusValid(3),
|
||||
statusBusy(4),
|
||||
statusEmpty(5),
|
||||
statusInvalid(6),
|
||||
statusLossOfSignal(7)
|
||||
}
|
||||
|
||||
PortDuplexMode ::= INTEGER
|
||||
{
|
||||
duplexFull(1),
|
||||
duplexHalf(2)
|
||||
}
|
||||
|
||||
PortSpeed ::= INTEGER
|
||||
{
|
||||
speedUnknown(0),
|
||||
speed10Mbps(10),
|
||||
speed100Mbps(100),
|
||||
speed1000Mbps(1000)
|
||||
}
|
||||
|
||||
PortFlowControl ::= INTEGER
|
||||
{
|
||||
flowControlDisabled(1),
|
||||
flowControlEnabled(2)
|
||||
}
|
||||
|
||||
NESlotWriteValue ::= INTEGER (-1..99)
|
||||
|
||||
|
||||
-- MibCompiler defs --
|
||||
-- $idx$: besDisplayConfiguration
|
||||
-- MibCompiler defs --
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- BES (BK Ethernet Switch)
|
||||
--*****************************************************************************************
|
||||
-- besCommon group
|
||||
|
||||
besCommonNumberOfModules OBJECT-TYPE
|
||||
SYNTAX INTEGER(0..50)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Number of modules in table."
|
||||
::= { besCommon 1 }
|
||||
|
||||
besCommonTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesCommonEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The table contains all modules of the BES-type in the NE"
|
||||
::= { besCommon 2 }
|
||||
|
||||
-- table of states entry(ro/rw)
|
||||
|
||||
besCommonEntry OBJECT-TYPE
|
||||
SYNTAX BesCommonEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Common-Values for a module."
|
||||
INDEX { besNESlot }
|
||||
::= { besCommonTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesCommonEntry ::= SEQUENCE
|
||||
{
|
||||
besNESlot NESlotValue,
|
||||
besCommonType DisplayString,
|
||||
besCommonDescr DisplayString,
|
||||
besCommonFirmwareId DisplayString,
|
||||
besCommonModuleWidth ModuleWidthValue
|
||||
}
|
||||
|
||||
besNESlot OBJECT-TYPE
|
||||
SYNTAX NESlotValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The slot number of the chassis for which this
|
||||
entry contains management information."
|
||||
::= { besCommonEntry 1 }
|
||||
|
||||
besCommonType OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The type of physical module. modSlotEmpty indicates
|
||||
an empty slot. A Value of modSlotUnknown indicates
|
||||
that the type of module is unknown."
|
||||
::= { besCommonEntry 2 }
|
||||
|
||||
besCommonDescr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A textual description of the module.
|
||||
If not available, this Value should be
|
||||
set to a zero length string."
|
||||
::= { besCommonEntry 3 }
|
||||
|
||||
besCommonFirmwareId OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The firmware Id of the module."
|
||||
::= { besCommonEntry 4 }
|
||||
|
||||
besCommonModuleWidth OBJECT-TYPE
|
||||
SYNTAX ModuleWidthValue
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION "The width of the module in multiples of slots (1, 2, ...)"
|
||||
::= { besCommonEntry 5 }
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- besMeasuringValues group
|
||||
|
||||
-- table of measuring Values
|
||||
|
||||
besMeasuringValuesTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesMeasuringValuesEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { besMeasuringValues 1 }
|
||||
|
||||
-- table of measuring Values entry
|
||||
|
||||
besMeasuringValuesEntry OBJECT-TYPE
|
||||
SYNTAX BesMeasuringValuesEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Common-Values for a module."
|
||||
INDEX { besNESlot }
|
||||
::= { besMeasuringValuesTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesMeasuringValuesEntry ::= SEQUENCE
|
||||
{
|
||||
besTemperatureLoLo INTEGER,
|
||||
besTemperatureLo INTEGER,
|
||||
besTemperatureValue INTEGER,
|
||||
besTemperatureHi INTEGER,
|
||||
besTemperatureHiHi INTEGER,
|
||||
|
||||
besInputVoltageLoLo INTEGER,
|
||||
besInputVoltageLo INTEGER,
|
||||
besInputVoltageValue INTEGER,
|
||||
besInputVoltageHi INTEGER,
|
||||
besInputVoltageHiHi INTEGER
|
||||
}
|
||||
|
||||
-- *****
|
||||
besTemperatureLoLo OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature low alarm threshold in 0.1 celsius degrees."
|
||||
::= { besMeasuringValuesEntry 1 }
|
||||
|
||||
besTemperatureLo OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature low warning threshold in 0.1 celsius degrees."
|
||||
::= { besMeasuringValuesEntry 2 }
|
||||
|
||||
besTemperatureValue OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature in 0.1 celsius degrees."
|
||||
::= { besMeasuringValuesEntry 3 }
|
||||
|
||||
besTemperatureHi OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature high warning threshold in 0.1 celsius degrees."
|
||||
::= { besMeasuringValuesEntry 4 }
|
||||
|
||||
besTemperatureHiHi OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature high alarm threshold in 0.1 celsius degrees."
|
||||
::= { besMeasuringValuesEntry 5 }
|
||||
|
||||
-- *****
|
||||
besInputVoltageLoLo OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The input supply voltage low alarm threshold in steps of 0.1 Volts."
|
||||
::= { besMeasuringValuesEntry 6 }
|
||||
|
||||
besInputVoltageLo OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The input supply voltage low warning threshold in steps of 0.1 Volts."
|
||||
::= { besMeasuringValuesEntry 7 }
|
||||
|
||||
besInputVoltageValue OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The input supply voltage in steps of 0.1 Volts.
|
||||
Input supply voltage nominal value, see 'besDisplayInputVoltageNominal'"
|
||||
::= { besMeasuringValuesEntry 8 }
|
||||
|
||||
besInputVoltageHi OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The input supply voltage high warning threshold in steps of 0.1 Volts."
|
||||
::= { besMeasuringValuesEntry 9 }
|
||||
|
||||
besInputVoltageHiHi OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The input supply voltage high alarm threshold in steps of 0.1 Volts."
|
||||
::= { besMeasuringValuesEntry 10 }
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- besStates group
|
||||
|
||||
-- Note: For every control OId there must be a correspondant alarm OId!
|
||||
|
||||
besStatesTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesStatesEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { besStates 1 }
|
||||
|
||||
-- table of states entry(ro/rw)
|
||||
|
||||
besStatesEntry OBJECT-TYPE
|
||||
SYNTAX BesStatesEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Alarms for a module."
|
||||
INDEX { besNESlot }
|
||||
::= { besStatesTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesStatesEntry ::= SEQUENCE
|
||||
{
|
||||
besStatesBootloader PerceivedSeverityValue,
|
||||
besStatesCommLoss PerceivedSeverityValue,
|
||||
besStatesTemperatureLow PerceivedSeverityValue,
|
||||
besStatesTemperatureHigh PerceivedSeverityValue,
|
||||
besStatesInputVoltageLow PerceivedSeverityValue,
|
||||
besStatesInputVoltageHigh PerceivedSeverityValue
|
||||
}
|
||||
|
||||
besStatesBootloader OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The device is running in bootloader mode
|
||||
without a legal application software."
|
||||
::= { besStatesEntry 1 }
|
||||
|
||||
besStatesCommLoss OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The NEC has lost the connection to the device.
|
||||
Reason may be a removed or defective device.
|
||||
Note that this state is set by the NEC and not
|
||||
by the device"
|
||||
::= { besStatesEntry 2 }
|
||||
|
||||
besStatesTemperatureLow OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature low"
|
||||
::= { besStatesEntry 3 }
|
||||
|
||||
besStatesTemperatureHigh OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Device temperature high"
|
||||
::= { besStatesEntry 4 }
|
||||
|
||||
besStatesInputVoltageLow OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Input supply voltage low"
|
||||
::= { besStatesEntry 5 }
|
||||
|
||||
besStatesInputVoltageHigh OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Input supply voltage high"
|
||||
::= { besStatesEntry 6 }
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- besControl group
|
||||
|
||||
besControlTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesControlEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { besControl 1 }
|
||||
|
||||
-- table of control entry(ro/rw)
|
||||
|
||||
besControlEntry OBJECT-TYPE
|
||||
SYNTAX BesControlEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Alarms for a module."
|
||||
INDEX { besNESlot }
|
||||
::= { besControlTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesControlEntry ::= SEQUENCE
|
||||
{
|
||||
besControlReset TruthValue,
|
||||
besControlModuleLedBlink TruthValue
|
||||
}
|
||||
|
||||
besControlReset OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Reset the module."
|
||||
::= { besControlEntry 1 }
|
||||
|
||||
besControlModuleLedBlink OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Writing this variable to true(1) lets the device's
|
||||
modul LED blink green for 10 seconds.
|
||||
Writing this variable to false(2) stbes blinking at once.
|
||||
This variable always returns false(2) on read requests"
|
||||
::= { besControlEntry 2 }
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- besConfiguration group
|
||||
|
||||
besConfigurationTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesConfigurationEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { besConfiguration 1 }
|
||||
|
||||
-- table of configuration entry(ro/rw)
|
||||
|
||||
besConfigurationEntry OBJECT-TYPE
|
||||
SYNTAX BesConfigurationEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
INDEX { besNESlot }
|
||||
::= { besConfigurationTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesConfigurationEntry ::= SEQUENCE
|
||||
{
|
||||
besConfigNESlotWrite NESlotWriteValue,
|
||||
besConfigConfigurationIndex INTEGER,
|
||||
besConfigConfiguration DisplayString
|
||||
}
|
||||
|
||||
-- Common part
|
||||
|
||||
besConfigNESlotWrite OBJECT-TYPE
|
||||
SYNTAX NESlotWriteValue
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION "By writing this variable a slot can be assigned
|
||||
for devices that dont support hardware slot detection.
|
||||
Reading '-1' means that the slot position is NOT writable."
|
||||
::= { besConfigurationEntry 1 }
|
||||
|
||||
besConfigConfigurationIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Index of the active configuration (1..besDisplayNumberOfConfigs)"
|
||||
::= { besConfigurationEntry 2 }
|
||||
|
||||
besConfigConfiguration OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of the active configuration"
|
||||
::= { besConfigurationEntry 3 }
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- Display group
|
||||
|
||||
besDisplayTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesDisplayEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { besDisplay 1 }
|
||||
|
||||
-- table of configuration entry(ro/rw)
|
||||
|
||||
besDisplayEntry OBJECT-TYPE
|
||||
SYNTAX BesDisplayEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
INDEX { besNESlot }
|
||||
::= { besDisplayTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesDisplayEntry ::= SEQUENCE
|
||||
{
|
||||
besDisplayNumberOfPorts INTEGER,
|
||||
besDisplayInputVoltageNominal INTEGER,
|
||||
|
||||
besDisplayNumberOfConfigs INTEGER,
|
||||
besDisplayConfiguration1 DisplayString,
|
||||
besDisplayConfiguration2 DisplayString,
|
||||
besDisplayConfiguration3 DisplayString,
|
||||
besDisplayConfiguration4 DisplayString,
|
||||
besDisplayConfiguration5 DisplayString,
|
||||
besDisplayConfiguration6 DisplayString,
|
||||
besDisplayConfiguration7 DisplayString,
|
||||
besDisplayConfiguration8 DisplayString,
|
||||
besDisplayConfiguration9 DisplayString,
|
||||
besDisplayConfiguration10 DisplayString,
|
||||
besDisplayConfiguration11 DisplayString,
|
||||
besDisplayConfiguration12 DisplayString,
|
||||
besDisplayConfiguration13 DisplayString,
|
||||
besDisplayConfiguration14 DisplayString,
|
||||
besDisplayConfiguration15 DisplayString,
|
||||
besDisplayConfiguration16 DisplayString
|
||||
|
||||
}
|
||||
|
||||
besDisplayNumberOfPorts OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The number of ports"
|
||||
::={ besDisplayEntry 1 }
|
||||
|
||||
besDisplayInputVoltageNominal OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The nominal value of input voltage in 0.1 V units."
|
||||
::={ besDisplayEntry 2 }
|
||||
|
||||
besDisplayNumberOfConfigs OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The number of different configurations supplied"
|
||||
::={ besDisplayEntry 3 }
|
||||
|
||||
besDisplayConfiguration1 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #1"
|
||||
::= { besDisplayEntry 4 }
|
||||
|
||||
besDisplayConfiguration2 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #2"
|
||||
::= { besDisplayEntry 5 }
|
||||
|
||||
besDisplayConfiguration3 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #3"
|
||||
::= { besDisplayEntry 6 }
|
||||
|
||||
besDisplayConfiguration4 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #4"
|
||||
::= { besDisplayEntry 7 }
|
||||
|
||||
besDisplayConfiguration5 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #5"
|
||||
::= { besDisplayEntry 8 }
|
||||
|
||||
besDisplayConfiguration6 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #6"
|
||||
::= { besDisplayEntry 9 }
|
||||
|
||||
besDisplayConfiguration7 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #7"
|
||||
::= { besDisplayEntry 10 }
|
||||
|
||||
besDisplayConfiguration8 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #8"
|
||||
::= { besDisplayEntry 11 }
|
||||
|
||||
besDisplayConfiguration9 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #9"
|
||||
::= { besDisplayEntry 12 }
|
||||
|
||||
besDisplayConfiguration10 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #10"
|
||||
::= { besDisplayEntry 13 }
|
||||
|
||||
besDisplayConfiguration11 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #11"
|
||||
::= { besDisplayEntry 14 }
|
||||
|
||||
besDisplayConfiguration12 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #12"
|
||||
::= { besDisplayEntry 15 }
|
||||
|
||||
besDisplayConfiguration13 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #13"
|
||||
::= { besDisplayEntry 16 }
|
||||
|
||||
besDisplayConfiguration14 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #14"
|
||||
::= { besDisplayEntry 17 }
|
||||
|
||||
besDisplayConfiguration15 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #15"
|
||||
::= { besDisplayEntry 18 }
|
||||
|
||||
besDisplayConfiguration16 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Description of configuration no. #16"
|
||||
::= { besDisplayEntry 19 }
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
-- DisplayPorts group
|
||||
|
||||
-- MibCompiler defs --
|
||||
-- $suboids$: 56,1
|
||||
-- MibCompiler defs --
|
||||
|
||||
besDisplayPortsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BesDisplayPortsEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { besDisplayPorts 1 }
|
||||
|
||||
-- table of configuration entry(ro/rw)
|
||||
|
||||
besDisplayPortsEntry OBJECT-TYPE
|
||||
SYNTAX BesDisplayPortsEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
INDEX { besNESlot, besDisplayPortsPortIndex }
|
||||
::= { besDisplayPortsTable 1 }
|
||||
|
||||
-- the structure of the entry
|
||||
|
||||
BesDisplayPortsEntry ::= SEQUENCE
|
||||
{
|
||||
besDisplayPortsPortIndex INTEGER,
|
||||
besDisplayPortsPortName DisplayString,
|
||||
besDisplayPortsType PortType,
|
||||
besDisplayPortsLinkState PortLinkState,
|
||||
besDisplayPortsStatus PortStatus,
|
||||
besDisplayPortsDuplexMode PortDuplexMode,
|
||||
besDisplayPortsSpeed PortSpeed,
|
||||
besDisplayPortsFlowControl PortFlowControl,
|
||||
besDisplayPortsFiberTxDistance INTEGER,
|
||||
besDisplayPortsFiberTxWavelen INTEGER,
|
||||
besDisplayPortsFiberRxWavelenMin INTEGER,
|
||||
besDisplayPortsFiberRxWavelenMax INTEGER,
|
||||
besDisplayPortsFiberSfpData DisplayString
|
||||
|
||||
}
|
||||
|
||||
besDisplayPortsPortIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port index (1..besDisplayNumberOfPorts)"
|
||||
::={ besDisplayPortsEntry 1 }
|
||||
|
||||
besDisplayPortsPortName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port name"
|
||||
::={ besDisplayPortsEntry 2 }
|
||||
|
||||
besDisplayPortsType OBJECT-TYPE
|
||||
SYNTAX PortType
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port type"
|
||||
::={ besDisplayPortsEntry 3 }
|
||||
|
||||
besDisplayPortsLinkState OBJECT-TYPE
|
||||
SYNTAX PortLinkState
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port link status"
|
||||
::={ besDisplayPortsEntry 4 }
|
||||
|
||||
besDisplayPortsStatus OBJECT-TYPE
|
||||
SYNTAX PortStatus
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port status"
|
||||
::={ besDisplayPortsEntry 5 }
|
||||
|
||||
besDisplayPortsDuplexMode OBJECT-TYPE
|
||||
SYNTAX PortDuplexMode
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port duplex mode"
|
||||
::={ besDisplayPortsEntry 6 }
|
||||
|
||||
besDisplayPortsSpeed OBJECT-TYPE
|
||||
SYNTAX PortSpeed
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port speed"
|
||||
::={ besDisplayPortsEntry 7 }
|
||||
|
||||
besDisplayPortsFlowControl OBJECT-TYPE
|
||||
SYNTAX PortFlowControl
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port speed"
|
||||
::={ besDisplayPortsEntry 8 }
|
||||
|
||||
besDisplayPortsFiberTxDistance OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port transmission distance in units of km (Fiber ports only)"
|
||||
::={ besDisplayPortsEntry 9 }
|
||||
|
||||
besDisplayPortsFiberTxWavelen OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port transmission wavelength in units of nm (Fiber ports only)"
|
||||
::={ besDisplayPortsEntry 10 }
|
||||
|
||||
besDisplayPortsFiberRxWavelenMin OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port minimum receive wavelength in units of nm (Fiber ports only)"
|
||||
::={ besDisplayPortsEntry 11 }
|
||||
|
||||
besDisplayPortsFiberRxWavelenMax OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port maximum receive wavelength in units of nm (Fiber ports only)"
|
||||
::={ besDisplayPortsEntry 12 }
|
||||
|
||||
besDisplayPortsFiberSfpData OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Port SFP data text (Fiber ports only)"
|
||||
::={ besDisplayPortsEntry 13 }
|
||||
|
||||
|
||||
|
||||
--*****************************************************************************************
|
||||
END
|
||||
|
493
MIBS/bktel/BKTEL-HFC862-HMSNE-MIB
Normal file
493
MIBS/bktel/BKTEL-HFC862-HMSNE-MIB
Normal file
@ -0,0 +1,493 @@
|
||||
-- ******************************************************************************************
|
||||
-- *
|
||||
-- * Description: Implements definitions for a HMS based network element
|
||||
-- *
|
||||
-- * Copyright 2014 by BKtel communications GmbH
|
||||
-- *
|
||||
-- * V.1.0 04.10.2006 M. Heldmann - created this "bkhmsne.mib" file based on BKtel systems "ahmsne.mib" file
|
||||
-- * - marked all parameters that are not used by NMS implementation of BKtel communications GmbH
|
||||
-- * - removed the 'ne' OID definition here and added 'ne' to IMPORTS
|
||||
-- * because the 'ne' is defined in root mib too
|
||||
-- * V.1.1 12.05.2014 M. Heldmann - marked all obsolete parameters as 'obsolete' - they may be no more supported by future NEC types and NEC software versions
|
||||
-- * - expanded neModulTable by full inventory information
|
||||
-- * - a couple of renamings
|
||||
-- * - changed name neModulType to neModuleModelName with SYNTAX DisplayString
|
||||
-- ******************************************************************************************
|
||||
|
||||
|
||||
BKTEL-HFC862-HMSNE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215
|
||||
ne, DisplayString, TruthValue, NESlotValue, PerceivedSeverityValue
|
||||
FROM BKTEL-HFC862-BASE-MIB
|
||||
;
|
||||
|
||||
|
||||
neCommon OBJECT IDENTIFIER ::= { ne 1 }
|
||||
|
||||
neType OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Type of NE"
|
||||
::= { neCommon 1 }
|
||||
|
||||
neDescription OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The description of the NE."
|
||||
::= { neCommon 2 }
|
||||
|
||||
neLocationStreet OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Location Street of Network Element.
|
||||
Writable size depends on net element controller, default 32"
|
||||
::= { neCommon 3 }
|
||||
|
||||
neLocationCity OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Location City of Network Element.
|
||||
Writable size depends on net element controller, default 32"
|
||||
::= { neCommon 4 }
|
||||
|
||||
neObsolete_UsingAPS OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 5 }
|
||||
|
||||
neObsolete_APSMode OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 6 }
|
||||
|
||||
-- #####+1 Space reserved
|
||||
|
||||
neObsolete_CommonSubrackWidth OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete.
|
||||
(The width of the Subracks)"
|
||||
::= { neCommon 8 }
|
||||
|
||||
neObsolete_CommonSubrackNumber OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete.
|
||||
(The number of Subracks)"
|
||||
::= { neCommon 9 }
|
||||
|
||||
neObsolete_NumberModul OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..61)
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete.
|
||||
(Current number of entries in the Modul table)"
|
||||
::= { neCommon 10 }
|
||||
|
||||
neObsolete_UsingRevertiveMode OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 11 }
|
||||
|
||||
neObsolete_RevertiveMode OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..300)
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 12 }
|
||||
|
||||
neObsolete_InitPhase OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 13 }
|
||||
|
||||
neObsolete_PredecessorRedundantPath OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 14 }
|
||||
|
||||
neObsolete_PredecessorNominalPath OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neCommon 15 }
|
||||
|
||||
neModuleTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF NeModuleEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Table containing information about each Module."
|
||||
::= { neCommon 16 }
|
||||
|
||||
neModuleEntry OBJECT-TYPE
|
||||
SYNTAX NeModuleEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"List of information about each Module."
|
||||
INDEX { neModuleNESlot }
|
||||
::= { neModuleTable 1 }
|
||||
|
||||
NeModuleEntry ::= SEQUENCE
|
||||
{
|
||||
neModuleNESlot NESlotValue,
|
||||
neModuleSubrack INTEGER,
|
||||
neModuleModelName DisplayString,
|
||||
neModuleMibLink OBJECT IDENTIFIER,
|
||||
neModuleSubrackSlot INTEGER,
|
||||
neModuleSlotUnitsUsed INTEGER,
|
||||
neModuleSlotRackDetection INTEGER,
|
||||
neModuleHousingType INTEGER,
|
||||
neModuleFirmwareVersion DisplayString,
|
||||
neModuleHardwareVersion DisplayString,
|
||||
neModuleDateOfProduction DisplayString,
|
||||
neModuleSerialNumber DisplayString,
|
||||
neModuleArticleNumber DisplayString,
|
||||
neModuleCustomerCode DisplayString,
|
||||
neModuleAliasName DisplayString,
|
||||
neModuleUserdata DisplayString,
|
||||
neModuleReset TruthValue,
|
||||
neModuleLedBlink TruthValue
|
||||
}
|
||||
|
||||
neModuleNESlot OBJECT-TYPE -- former neNESlot
|
||||
SYNTAX NESlotValue
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Slot number
|
||||
IMPORTANT NOTE:
|
||||
this is a not a physical slot within a module rack,
|
||||
but an assigned slot ID that uniquely identifies each module
|
||||
including non subrack based modules as 19 inch modules"
|
||||
::= { neModuleEntry 1 }
|
||||
|
||||
neModuleSubrack OBJECT-TYPE -- former neSubrack
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Subrack number in which the module is equiped (1 .. N).
|
||||
A value of 0 means: No subrack number"
|
||||
::= { neModuleEntry 2 }
|
||||
|
||||
neModuleModelName OBJECT-TYPE -- former neModulType
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module model name"
|
||||
::= { neModuleEntry 3 }
|
||||
|
||||
neModuleMibLink OBJECT-TYPE -- former neModulMibLink
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Defines the link to the OID of the equiped module"
|
||||
::= { neModuleEntry 4 }
|
||||
|
||||
-- Expansions, 12.05.2014
|
||||
|
||||
neModuleSubrackSlot OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Slot number within subrack in which the module is equiped (1 .. N).
|
||||
A value of 0 means: No slot number"
|
||||
::= { neModuleEntry 5 }
|
||||
|
||||
neModuleSlotUnitsUsed OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"For modules of type 'housing19inch(4)' this parameter specfifies the number of 19 inch height units used.
|
||||
For all other module types the number of slots within subrack which the module occupies."
|
||||
::= { neModuleEntry 6 }
|
||||
|
||||
neModuleSlotRackDetection OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
notSupported(1),
|
||||
supported(2),
|
||||
detectionError(3)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Reports the state of modules slot and rack hardware detection."
|
||||
::= { neModuleEntry 7 }
|
||||
|
||||
neModuleHousingType OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
housingUnknownOrDefault(1),
|
||||
housingBk(2),
|
||||
housing2G6(3),
|
||||
housing19inch(4)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Module housing type"
|
||||
::= { neModuleEntry 8 }
|
||||
|
||||
neModuleFirmwareVersion OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module firmware version"
|
||||
::= { neModuleEntry 9 }
|
||||
|
||||
neModuleHardwareVersion OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module hardware version"
|
||||
::= { neModuleEntry 10 }
|
||||
|
||||
neModuleDateOfProduction OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module date of production, possible formats:
|
||||
- empty string -> no data defined
|
||||
- YYYY -> only the year of production is defined
|
||||
- YYYY-MM-DD -> full date of production is defined"
|
||||
::= { neModuleEntry 11 }
|
||||
|
||||
neModuleSerialNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module serial number"
|
||||
::= { neModuleEntry 12 }
|
||||
|
||||
neModuleArticleNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module article number"
|
||||
::= { neModuleEntry 13 }
|
||||
|
||||
neModuleCustomerCode OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Customer specific article code"
|
||||
::= { neModuleEntry 14 }
|
||||
|
||||
neModuleAliasName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module alias name"
|
||||
::= { neModuleEntry 15 }
|
||||
|
||||
neModuleUserdata OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Module user data"
|
||||
::= { neModuleEntry 16 }
|
||||
|
||||
neModuleReset OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Resets the module if this parameter is written to true(1)."
|
||||
::= { neModuleEntry 17 }
|
||||
|
||||
neModuleLedBlink OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "Writing this variable to true(1) lets the device's
|
||||
modul LED blink green for 10 seconds.
|
||||
Writing this variable to false(2) stops blinking at once.
|
||||
This variable always returns false(2) on read requests"
|
||||
::= { neModuleEntry 18 }
|
||||
|
||||
neStates OBJECT IDENTIFIER ::= { ne 2 }
|
||||
|
||||
neStatesObsolete_TrapDisable OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 1 }
|
||||
|
||||
neStatesObsolete_TerminalConnected OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 2 }
|
||||
|
||||
-- #####+1 Space reserved
|
||||
|
||||
neStatesObsolete_Isolated OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 4 }
|
||||
|
||||
neStatesObsolete_ResetModullist OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 5 }
|
||||
|
||||
neStatesObsolete_Redundant OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 6 }
|
||||
|
||||
neStatesObsolete_ActivateRedundantPath OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 7 }
|
||||
|
||||
neStatesObsolete_AutoOff OBJECT-TYPE
|
||||
SYNTAX PerceivedSeverityValue
|
||||
ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neStates 8 }
|
||||
|
||||
neConfig OBJECT IDENTIFIER ::= { ne 3 }
|
||||
|
||||
neConfigObsolete_NEtype OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neConfig 1 }
|
||||
|
||||
neConfigObsolete_IPaddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neConfig 2 }
|
||||
|
||||
|
||||
neConfigObsolete_Alarmdelay OBJECT-TYPE
|
||||
SYNTAX INTEGER (3..60)
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neConfig 3 }
|
||||
|
||||
|
||||
neConfigDeprecated_MinTrapInterval OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..10)
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"This parameter is deprecated.
|
||||
(The minimum waiting time between two traps.
|
||||
Only used for HMS070 over RS232 interface)"
|
||||
::= { neConfig 4 }
|
||||
|
||||
neConfigDeprecated_MaxTrapLifetime OBJECT-TYPE
|
||||
SYNTAX INTEGER (30..300)
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"This parameter is deprecated.
|
||||
(The maximum lifetime of a trap.
|
||||
Only used for HMS070 over RS232 interface)"
|
||||
::= { neConfig 5 }
|
||||
|
||||
|
||||
|
||||
neControl OBJECT IDENTIFIER ::= { ne 4 }
|
||||
|
||||
neControlTrapDisable OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"All traps and notifications for the whole NE are disabled: true(1) or enabled: false(2)"
|
||||
::= { neControl 1 }
|
||||
|
||||
neControlResetModullist OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This command removes all disconnected (not responding) modules from the module list."
|
||||
::= { neControl 2 }
|
||||
|
||||
neControlObsolete_SetDefaultAPS OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-write
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"This parameter is obsolete."
|
||||
::= { neControl 3 }
|
||||
|
||||
|
||||
|
||||
|
||||
-- This trap is obsolete and no more supported by new (2014) NECxE
|
||||
neSynchronizeEvent TRAP-TYPE
|
||||
ENTERPRISE ne
|
||||
DESCRIPTION "The SNMP trap that is generated when data on LMT must get actualized."
|
||||
::= 1
|
||||
|
||||
|
||||
END
|
1184
MIBS/bktel/BKTEL-HFC862-NECE-MIB
Normal file
1184
MIBS/bktel/BKTEL-HFC862-NECE-MIB
Normal file
File diff suppressed because it is too large
Load Diff
2407
MIBS/bktel/BKTEL-HFC862-OA-V01-MIB
Normal file
2407
MIBS/bktel/BKTEL-HFC862-OA-V01-MIB
Normal file
File diff suppressed because it is too large
Load Diff
2000
MIBS/bktel/BKTEL-HFC862-OVTX-V11-MIB
Normal file
2000
MIBS/bktel/BKTEL-HFC862-OVTX-V11-MIB
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user