Device: Added basic support for BKtel Optical Amplifier (#12754)

* added basic bktel oa support

* renamed bktel mibs
This commit is contained in:
Torch 2021-04-16 13:50:56 +02:00 committed by GitHub
parent c464797536
commit 62c5759bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 7839 additions and 0 deletions

BIN
html/images/os/bktel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,9 @@
os: bktel-oa
text: 'BKtel'
type: network
icon: bktel
mib_dir: bktel
discovery:
- sysObjectID:
- .1.3.6.1.4.1.7501.1.2.100
- .1.3.6.1.4.1.7501.1.2.99

View File

@ -0,0 +1,86 @@
mib: BKTEL-HFC862-OA-V01-MIB
modules:
os:
version: '.1.3.6.1.4.1.7501.1.1.1.16.1.3.49'
hardware: '.1.3.6.1.4.1.7501.1.2.116.1.2.1.2.50'
sensors:
pre-cache:
data:
-
oid:
- oaTemperatureLo
- oaTemperatureLoLo
- oaTemperatureHi
- oaTemperatureHiHi
- oaInputPowerLoLo
- oaInputPowerLo
- oaInputPowerHiHi
- oaInputPowerHi
- oaOutputPwrOrGainLoLo
- oaOutputPwrOrGainLo
- oaOutputPwrOrGainHiHi
- oaOutputPwrOrGainHi
- oaInputVoltageLoLo
- oaInputVoltageLo
- oaInputVoltageHiHi
- oaInputVoltageHi
temperature:
data:
-
oid: oaMeasuringValuesTable
value: oaTemperatureValue
divisor: 10
num_oid: '.1.3.6.1.4.1.7501.1.2.116.5.1.1.3.{{ $index }}'
descr: 'OA Temperature'
group: OA Temperature
high_limit: oaTemperatureHiHi
low_limit: oaTemperatureLoLo
warn_limit: oaTemperatureHi
low_warn_limit: oaTemperatureLo
dbm:
options:
skip_values: 0
data:
-
oid: oaMeasuringValuesTable
value: oaInputPowerValue
divisor: 10
num_oid: '.1.3.6.1.4.1.7501.1.2.116.5.1.1.8.{{ $index }}'
descr: 'Input Power dBm'
group: Input Power dBm
index: oa-in-dbm.{{ $index }}
high_limit: oaInputPowerHiHi
low_limit: oaInputPowerLoLo
warn_limit: oaInputPowerHi
low_warn_limit: oaInputPowerLo
-
oid: oaMeasuringValuesTable
value: oaOutputPwrOrGainValue
divisor: 10
num_oid: '.1.3.6.1.4.1.7501.1.2.116.5.1.1.13.{{ $index }}'
descr: 'Output Power dBm'
group: Output Power dBm
index: oa-out-dbm.{{ $index }}
high_limit: oaOutputPwrOrGainHiHi
low_limit: oaOutputPwrOrGainLoLo
warn_limit: oaOutputPwrOrGainHi
low_warn_limit: oaOutputPwrOrGainLo
voltage:
data:
-
oid: oaMeasuringValuesTable
value: oaInputVoltageValue
divisor: 10
num_oid: '.1.3.6.1.4.1.7501.1.2.116.5.1.1.23.{{ $index }}'
descr: 'Amplifier Input voltage'
group: Amplifier Input voltage
high_limit: oaInputVoltageHiHi
low_limit: oaInputVoltageLoLo
warn_limit: oaInputVoltageHi
low_warn_limit: oaInputVoltageLo

View 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

View 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

View 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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,565 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.7501.1.2.100",
"sysDescr": "Net Element Controller for HFC Cable TV components",
"sysContact": "<private>",
"version": "NECE-E",
"hardware": "KOA32165",
"features": null,
"os": "bktel-oa",
"type": "network",
"serial": null,
"icon": "bktel.png",
"location": "<private>"
}
]
},
"poller": "matches discovery"
},
"ports": {
"discovery": {
"ports": [
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "Ethernet",
"ifName": "Ethernet",
"portName": null,
"ifIndex": 1,
"ifSpeed": null,
"ifSpeed_prev": null,
"ifConnectorPresent": null,
"ifPromiscuousMode": null,
"ifHighSpeed": null,
"ifHighSpeed_prev": null,
"ifOperStatus": "up",
"ifOperStatus_prev": null,
"ifAdminStatus": null,
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": null,
"ifType": "ethernetCsmacd",
"ifAlias": "Ethernet",
"ifPhysAddress": null,
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
"ifTrunk": null,
"counter_in": null,
"counter_out": null,
"ignore": 0,
"disabled": 0,
"detailed": 0,
"deleted": 0,
"pagpOperationMode": null,
"pagpPortState": null,
"pagpPartnerDeviceId": null,
"pagpPartnerLearnMethod": null,
"pagpPartnerIfIndex": null,
"pagpPartnerGroupIfIndex": null,
"pagpPartnerDeviceName": null,
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": null,
"ifInUcastPkts_prev": null,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": null,
"ifOutUcastPkts_prev": null,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": null,
"ifInErrors_prev": null,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": null,
"ifOutErrors_prev": null,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": null,
"ifInOctets_prev": null,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": null,
"ifOutOctets_prev": null,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
"poll_prev": null,
"ifInNUcastPkts": null,
"ifInNUcastPkts_prev": null,
"ifInNUcastPkts_delta": null,
"ifInNUcastPkts_rate": null,
"ifOutNUcastPkts": null,
"ifOutNUcastPkts_prev": null,
"ifOutNUcastPkts_delta": null,
"ifOutNUcastPkts_rate": null,
"ifInDiscards": null,
"ifInDiscards_prev": null,
"ifInDiscards_delta": null,
"ifInDiscards_rate": null,
"ifOutDiscards": null,
"ifOutDiscards_prev": null,
"ifOutDiscards_delta": null,
"ifOutDiscards_rate": null,
"ifInUnknownProtos": null,
"ifInUnknownProtos_prev": null,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": null,
"ifInBroadcastPkts_prev": null,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": null,
"ifOutBroadcastPkts_prev": null,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": null,
"ifInMulticastPkts_prev": null,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": null,
"ifOutMulticastPkts_prev": null,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "Ethernet over USB",
"ifName": "Ethernet over USB",
"portName": null,
"ifIndex": 2,
"ifSpeed": null,
"ifSpeed_prev": null,
"ifConnectorPresent": null,
"ifPromiscuousMode": null,
"ifHighSpeed": null,
"ifHighSpeed_prev": null,
"ifOperStatus": "down",
"ifOperStatus_prev": null,
"ifAdminStatus": null,
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": null,
"ifType": "usb",
"ifAlias": "Ethernet over USB",
"ifPhysAddress": null,
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
"ifTrunk": null,
"counter_in": null,
"counter_out": null,
"ignore": 0,
"disabled": 0,
"detailed": 0,
"deleted": 0,
"pagpOperationMode": null,
"pagpPortState": null,
"pagpPartnerDeviceId": null,
"pagpPartnerLearnMethod": null,
"pagpPartnerIfIndex": null,
"pagpPartnerGroupIfIndex": null,
"pagpPartnerDeviceName": null,
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": null,
"ifInUcastPkts_prev": null,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": null,
"ifOutUcastPkts_prev": null,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": null,
"ifInErrors_prev": null,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": null,
"ifOutErrors_prev": null,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": null,
"ifInOctets_prev": null,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": null,
"ifOutOctets_prev": null,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
"poll_prev": null,
"ifInNUcastPkts": null,
"ifInNUcastPkts_prev": null,
"ifInNUcastPkts_delta": null,
"ifInNUcastPkts_rate": null,
"ifOutNUcastPkts": null,
"ifOutNUcastPkts_prev": null,
"ifOutNUcastPkts_delta": null,
"ifOutNUcastPkts_rate": null,
"ifInDiscards": null,
"ifInDiscards_prev": null,
"ifInDiscards_delta": null,
"ifInDiscards_rate": null,
"ifOutDiscards": null,
"ifOutDiscards_prev": null,
"ifOutDiscards_delta": null,
"ifOutDiscards_rate": null,
"ifInUnknownProtos": null,
"ifInUnknownProtos_prev": null,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": null,
"ifInBroadcastPkts_prev": null,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": null,
"ifOutBroadcastPkts_prev": null,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": null,
"ifInMulticastPkts_prev": null,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": null,
"ifOutMulticastPkts_prev": null,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
}
]
},
"poller": {
"ports": [
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "Ethernet",
"ifName": "Ethernet",
"portName": null,
"ifIndex": 1,
"ifSpeed": 100000000,
"ifSpeed_prev": null,
"ifConnectorPresent": null,
"ifPromiscuousMode": null,
"ifHighSpeed": null,
"ifHighSpeed_prev": null,
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
"ifAdminStatus": "up",
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": 1514,
"ifType": "ethernetCsmacd",
"ifAlias": "Ethernet",
"ifPhysAddress": "0008b0012e70",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
"ifTrunk": null,
"counter_in": null,
"counter_out": null,
"ignore": 0,
"disabled": 0,
"detailed": 0,
"deleted": 0,
"pagpOperationMode": null,
"pagpPortState": null,
"pagpPartnerDeviceId": null,
"pagpPartnerLearnMethod": null,
"pagpPartnerIfIndex": null,
"pagpPartnerGroupIfIndex": null,
"pagpPartnerDeviceName": null,
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 0,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 0,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": 0,
"ifInErrors_prev": 0,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": 0,
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 0,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 0,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
"poll_prev": null,
"ifInNUcastPkts": 0,
"ifInNUcastPkts_prev": 0,
"ifInNUcastPkts_delta": null,
"ifInNUcastPkts_rate": null,
"ifOutNUcastPkts": 0,
"ifOutNUcastPkts_prev": 0,
"ifOutNUcastPkts_delta": null,
"ifOutNUcastPkts_rate": null,
"ifInDiscards": 0,
"ifInDiscards_prev": 0,
"ifInDiscards_delta": null,
"ifInDiscards_rate": null,
"ifOutDiscards": 0,
"ifOutDiscards_prev": 0,
"ifOutDiscards_delta": null,
"ifOutDiscards_rate": null,
"ifInUnknownProtos": 0,
"ifInUnknownProtos_prev": 0,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": 0,
"ifInBroadcastPkts_prev": 0,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": 0,
"ifOutBroadcastPkts_prev": 0,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": 0,
"ifInMulticastPkts_prev": 0,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": 0,
"ifOutMulticastPkts_prev": 0,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "Ethernet over USB",
"ifName": "Ethernet over USB",
"portName": null,
"ifIndex": 2,
"ifSpeed": 10000000,
"ifSpeed_prev": null,
"ifConnectorPresent": null,
"ifPromiscuousMode": null,
"ifHighSpeed": null,
"ifHighSpeed_prev": null,
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
"ifAdminStatus": "down",
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": 1514,
"ifType": "usb",
"ifAlias": "Ethernet over USB",
"ifPhysAddress": "0008b0000001",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
"ifTrunk": null,
"counter_in": null,
"counter_out": null,
"ignore": 0,
"disabled": 0,
"detailed": 0,
"deleted": 0,
"pagpOperationMode": null,
"pagpPortState": null,
"pagpPartnerDeviceId": null,
"pagpPartnerLearnMethod": null,
"pagpPartnerIfIndex": null,
"pagpPartnerGroupIfIndex": null,
"pagpPartnerDeviceName": null,
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 0,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 0,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": 0,
"ifInErrors_prev": 0,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": 0,
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 0,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 0,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
"poll_prev": null,
"ifInNUcastPkts": 0,
"ifInNUcastPkts_prev": 0,
"ifInNUcastPkts_delta": null,
"ifInNUcastPkts_rate": null,
"ifOutNUcastPkts": 0,
"ifOutNUcastPkts_prev": 0,
"ifOutNUcastPkts_delta": null,
"ifOutNUcastPkts_rate": null,
"ifInDiscards": 0,
"ifInDiscards_prev": 0,
"ifInDiscards_delta": null,
"ifInDiscards_rate": null,
"ifOutDiscards": 0,
"ifOutDiscards_prev": 0,
"ifOutDiscards_delta": null,
"ifOutDiscards_rate": null,
"ifInUnknownProtos": 0,
"ifInUnknownProtos_prev": 0,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": 0,
"ifInBroadcastPkts_prev": 0,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": 0,
"ifOutBroadcastPkts_prev": 0,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": 0,
"ifInMulticastPkts_prev": 0,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": 0,
"ifOutMulticastPkts_prev": 0,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
}
]
}
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "dbm",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7501.1.2.116.5.1.1.8.50",
"sensor_index": "oa-in-dbm.50",
"sensor_type": "bktel-oa",
"sensor_descr": "Input Power dBm",
"group": "Input Power dBm",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 6.5,
"sensor_limit": 10,
"sensor_limit_warn": 9.5,
"sensor_limit_low": -5,
"sensor_limit_low_warn": -3,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "dbm",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7501.1.2.116.5.1.1.13.50",
"sensor_index": "oa-out-dbm.50",
"sensor_type": "bktel-oa",
"sensor_descr": "Output Power dBm",
"group": "Output Power dBm",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 16.5,
"sensor_limit": 19.5,
"sensor_limit_warn": 17.5,
"sensor_limit_low": 13.5,
"sensor_limit_low_warn": 15.5,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7501.1.2.116.5.1.1.3.50",
"sensor_index": "50",
"sensor_type": "bktel-oa",
"sensor_descr": "OA Temperature",
"group": "OA Temperature",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 36,
"sensor_limit": 75,
"sensor_limit_warn": 70,
"sensor_limit_low": -25,
"sensor_limit_low_warn": -20,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "voltage",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7501.1.2.116.5.1.1.23.50",
"sensor_index": "50",
"sensor_type": "bktel-oa",
"sensor_descr": "Amplifier Input voltage",
"group": "Amplifier Input voltage",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 24,
"sensor_limit": 28,
"sensor_limit_warn": 27,
"sensor_limit_low": 20,
"sensor_limit_low_warn": 21,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
}
],
"state_indexes": []
},
"poller": "matches discovery"
}
}

View File

@ -0,0 +1,213 @@
1.3.6.1.2.1.1.1.0|4|Net Element Controller for HFC Cable TV components
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7501.1.2.100
1.3.6.1.2.1.1.3.0|67|560568912
1.3.6.1.2.1.1.4.0|4x|3C707269766174653E
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.2.1|4|Ethernet
1.3.6.1.2.1.2.2.1.2.2|4|Ethernet over USB
1.3.6.1.2.1.2.2.1.3.1|2|6
1.3.6.1.2.1.2.2.1.3.2|2|160
1.3.6.1.2.1.2.2.1.4.1|2|1514
1.3.6.1.2.1.2.2.1.4.2|2|1514
1.3.6.1.2.1.2.2.1.5.1|66|100000000
1.3.6.1.2.1.2.2.1.5.2|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4x|0008B0012E70
1.3.6.1.2.1.2.2.1.6.2|4x|0008B0000001
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.10.1|65|0
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.11.1|65|0
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.16.1|65|0
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.17.1|65|0
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.4.1.5591.1.1.1.1.1.15.1.3.6.1.4.1.7501.1.2.116.5.1.1.3.50|6|1.3.6.1.4.1.7501.1.2.116.5.1.1.3.50
1.3.6.1.4.1.7501.1.1.1.16.1.3.49|4|NECE-E
1.3.6.1.4.1.7501.1.2.116.1.2.1.2.50|4|KOA32165
1.3.6.1.4.1.7501.1.2.116.5.1.1.1.50|2|-250
1.3.6.1.4.1.7501.1.2.116.5.1.1.2.50|2|-200
1.3.6.1.4.1.7501.1.2.116.5.1.1.3.50|2|360
1.3.6.1.4.1.7501.1.2.116.5.1.1.4.50|2|700
1.3.6.1.4.1.7501.1.2.116.5.1.1.5.50|2|750
1.3.6.1.4.1.7501.1.2.116.5.1.1.6.50|2|-50
1.3.6.1.4.1.7501.1.2.116.5.1.1.7.50|2|-30
1.3.6.1.4.1.7501.1.2.116.5.1.1.8.50|2|65
1.3.6.1.4.1.7501.1.2.116.5.1.1.9.50|2|95
1.3.6.1.4.1.7501.1.2.116.5.1.1.10.50|2|100
1.3.6.1.4.1.7501.1.2.116.5.1.1.11.50|2|135
1.3.6.1.4.1.7501.1.2.116.5.1.1.12.50|2|155
1.3.6.1.4.1.7501.1.2.116.5.1.1.13.50|2|165
1.3.6.1.4.1.7501.1.2.116.5.1.1.14.50|2|175
1.3.6.1.4.1.7501.1.2.116.5.1.1.15.50|2|195
1.3.6.1.4.1.7501.1.2.116.5.1.1.16.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.17.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.18.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.19.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.20.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.21.50|2|200
1.3.6.1.4.1.7501.1.2.116.5.1.1.22.50|2|210
1.3.6.1.4.1.7501.1.2.116.5.1.1.23.50|2|240
1.3.6.1.4.1.7501.1.2.116.5.1.1.24.50|2|270
1.3.6.1.4.1.7501.1.2.116.5.1.1.25.50|2|280
1.3.6.1.4.1.7501.1.2.116.5.1.1.46.50|2|30
1.3.6.1.4.1.7501.1.2.116.5.1.1.47.50|2|31
1.3.6.1.4.1.7501.1.2.116.5.1.1.48.50|2|33
1.3.6.1.4.1.7501.1.2.116.5.1.1.49.50|2|35
1.3.6.1.4.1.7501.1.2.116.5.1.1.50.50|2|36
1.3.6.1.4.1.7501.1.2.116.5.1.1.51.50|2|45
1.3.6.1.4.1.7501.1.2.116.5.1.1.52.50|2|46
1.3.6.1.4.1.7501.1.2.116.5.1.1.53.50|2|50
1.3.6.1.4.1.7501.1.2.116.5.1.1.54.50|2|54
1.3.6.1.4.1.7501.1.2.116.5.1.1.55.50|2|55
1.3.6.1.4.1.7501.1.2.116.5.1.1.56.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.57.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.58.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.59.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.60.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.86.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.87.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.88.50|2|993
1.3.6.1.4.1.7501.1.2.116.5.1.1.89.50|2|1400
1.3.6.1.4.1.7501.1.2.116.5.1.1.90.50|2|2000
1.3.6.1.4.1.7501.1.2.116.5.1.1.91.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.92.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.93.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.94.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.95.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.96.50|2|50
1.3.6.1.4.1.7501.1.2.116.5.1.1.97.50|2|100
1.3.6.1.4.1.7501.1.2.116.5.1.1.98.50|2|250
1.3.6.1.4.1.7501.1.2.116.5.1.1.99.50|2|300
1.3.6.1.4.1.7501.1.2.116.5.1.1.100.50|2|350
1.3.6.1.4.1.7501.1.2.116.5.1.1.101.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.102.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.103.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.104.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.105.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.111.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.112.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.113.50|2|729
1.3.6.1.4.1.7501.1.2.116.5.1.1.114.50|2|1400
1.3.6.1.4.1.7501.1.2.116.5.1.1.115.50|2|2000
1.3.6.1.4.1.7501.1.2.116.5.1.1.116.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.117.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.118.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.119.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.120.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.121.50|2|-300
1.3.6.1.4.1.7501.1.2.116.5.1.1.122.50|2|-250
1.3.6.1.4.1.7501.1.2.116.5.1.1.123.50|2|362
1.3.6.1.4.1.7501.1.2.116.5.1.1.124.50|2|750
1.3.6.1.4.1.7501.1.2.116.5.1.1.125.50|2|800
1.3.6.1.4.1.7501.1.2.116.5.1.1.126.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.127.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.128.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.129.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.130.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.136.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.137.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.138.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.139.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.140.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.141.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.142.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.143.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.144.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.145.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.146.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.147.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.148.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.149.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.150.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.151.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.152.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.153.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.154.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.155.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.161.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.162.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.163.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.164.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.165.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.166.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.167.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.168.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.169.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.170.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.171.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.172.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.173.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.174.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.175.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.176.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.177.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.178.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.179.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.180.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.186.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.187.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.188.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.189.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.190.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.191.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.192.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.193.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.194.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.195.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.196.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.197.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.198.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.199.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.200.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.201.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.202.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.203.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.204.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.205.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.211.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.212.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.213.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.214.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.215.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.216.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.217.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.218.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.219.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.220.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.221.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.222.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.223.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.224.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.225.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.226.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.227.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.228.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.229.50|2|0
1.3.6.1.4.1.7501.1.2.116.5.1.1.230.50|2|0