Updated OS Support: Dragonwave Horizon (#13193)

* Removed older Horizon definitions

* Added Horizon Compact definitions via YAML.

* Added Horizon Duo definitions via YAML.

* Added Horizon Compact Plus definitions via YAML.

* Fixed issue with OID name casing for Horizon Duo EnetPort2CRC sensor

* Moved SNR/RSL/Tx Power to wireless sensor definitions.

* Reordered use statements to make StyleCI happy.
This commit is contained in:
Noah Roufus 2021-09-08 07:40:23 -06:00 committed by GitHub
parent 4bdc80d634
commit ebb582f0f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 20977 additions and 55 deletions

View File

@ -1,29 +0,0 @@
<?php
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\OS;
class Horizon extends OS implements WirelessSnrDiscovery, WirelessPowerDiscovery
{
public function discoverWirelessSnr()
{
$oid = '.1.3.6.1.4.1.7262.2.2.5.1.2.8.0';
return [
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'horizon', 0, 'SNR', null, 1, 10),
];
}
public function discoverWirelessPower()
{
$oid = '.1.3.6.1.4.1.7262.2.2.5.1.3.7.0';
return [
new WirelessSensor('power', $this->getDeviceId(), $oid, 'horizon', 0, 'Power', null, 1, 10),
];
}
}

View File

@ -0,0 +1,49 @@
<?php
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessErrorsDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\OS;
class HorizonCompact extends OS implements WirelessSnrDiscovery, WirelessPowerDiscovery, WirelessRssiDiscovery, WirelessErrorsDiscovery
{
public function discoverWirelessSnr()
{
$oid = '.1.3.6.1.4.1.7262.2.2.5.1.2.8.0';
return [
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'horizon-compact', 0, 'SNR', null, 1, 10),
];
}
public function discoverWirelessPower()
{
$oid = '.1.3.6.1.4.1.7262.2.2.5.1.3.2.0';
return [
new WirelessSensor('power', $this->getDeviceId(), $oid, 'horizon-compact', 0, 'Tx Power', null, 1, 10),
];
}
public function discoverWirelessRssi()
{
$oid = '.1.3.6.1.4.1.7262.2.2.5.1.2.4.0';
return [
new WirelessSensor('rssi', $this->getDeviceId(), $oid, 'horizon-compact', 0, 'RSL', null, 1, 10),
];
}
public function discoverWirelessErrors()
{
$oid = '.1.3.6.1.4.1.7262.2.2.5.1.2.15.3.0';
return [
new WirelessSensor('errors', $this->getDeviceId(), $oid, 'horizon-compact', 0, 'Rx Errors', null, 1, 10),
];
}
}

View File

@ -0,0 +1,49 @@
<?php
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessErrorsDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\OS;
class HorizonCompactplus extends OS implements WirelessSnrDiscovery, WirelessPowerDiscovery, WirelessRssiDiscovery, WirelessErrorsDiscovery
{
public function discoverWirelessSnr()
{
$oid = '.1.3.6.1.4.1.7262.2.5.4.2.1.1.8.1';
return [
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'horizon-compactplus', 0, 'SNR', null, 1, 10),
];
}
public function discoverWirelessPower()
{
$oid = '.1.3.6.1.4.1.7262.2.5.4.4.1.1.7.1';
return [
new WirelessSensor('power', $this->getDeviceId(), $oid, 'horizon-compactplus', 0, 'Tx Power', null, 1, 10),
];
}
public function discoverWirelessRssi()
{
$oid = '.1.3.6.1.4.1.7262.2.5.4.2.1.1.3.1';
return [
new WirelessSensor('rssi', $this->getDeviceId(), $oid, 'horizon-compactplus', 0, 'RSL', null, 1, 10),
];
}
public function discoverWirelessErrors()
{
$oid = '.1.3.6.1.4.1.7262.2.5.4.2.2.1.4.1';
return [
new WirelessSensor('errors', $this->getDeviceId(), $oid, 'horizon-compactplus', 0, 'Rx Errors'),
];
}
}

View File

@ -0,0 +1,49 @@
<?php
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessErrorsDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\OS;
class HorizonDuo extends OS implements WirelessSnrDiscovery, WirelessPowerDiscovery, WirelessRssiDiscovery, WirelessErrorsDiscovery
{
public function discoverWirelessSnr()
{
$oid = '.1.3.6.1.4.1.7262.2.3.5.2.2.1.9.1';
return [
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'horizon-duo', 0, 'SNR', null, 1, 10),
];
}
public function discoverWirelessPower()
{
$oid = '.1.3.6.1.4.1.7262.2.3.5.4.1.1.10.1';
return [
new WirelessSensor('power', $this->getDeviceId(), $oid, 'horizon-duo', 0, 'Tx Power', null, 1, 10),
];
}
public function discoverWirelessRssi()
{
$oid = '.1.3.6.1.4.1.7262.2.3.5.2.2.1.4.1';
return [
new WirelessSensor('rssi', $this->getDeviceId(), $oid, 'horizon-duo', 0, 'RSL', null, 1, 10),
];
}
public function discoverWirelessErrors()
{
$oid = '.1.3.6.1.4.1.7262.2.3.5.2.3.1.4.1';
return [
new WirelessSensor('errors', $this->getDeviceId(), $oid, 'horizon-duo', 0, 'Rx Errors'),
];
}
}

View File

@ -0,0 +1,105 @@
mib: HORIZON-ODU-MIB
modules:
os:
version: HORIZON-ODU-MIB::hzOduSystemOmniVersionNo.0
serial: HORIZON-ODU-MIB::hzOduUnitSerialNo.0
hardware: HORIZON-ODU-MIB::hzOduUnitAssemblylNo.0
sensors:
temperature:
data:
-
oid: hzOduRadio1Temperature
num_oid: '.1.3.6.1.4.1.7262.2.2.5.1.3.6.{{ $index }}'
index: 'hzOduRadio1Temperature.{{ $index }}'
divisor: 10
descr: 'Radio1 Temperature'
state:
data:
-
oid: hzOduModem1RxLossOfSignal
num_oid: '.1.3.6.1.4.1.7262.2.2.8.4.4.1.{{ $index }}'
index: 'hzOduModem1RxLossOfSignal.{{ $index }}'
descr: 'Modem1 Rx Loss of Signal'
states:
- { value: 1, generic: 0, graph: 0, descr: 'No' }
- { value: 2, generic: 2, graph: 0, descr: 'Yes' }
-
oid: hzOduEnetPort1EthernetLinkDown
num_oid: '.1.3.6.1.4.1.7262.2.2.8.3.1.9.{{ $index }}'
index: 'hzOduEnetPort1EthernetLinkDown.{{ $index }}'
descr: 'Enet Port1 Link State'
states:
- { value: 1, generic: 0, graph: 0, descr: 'Up' }
- { value: 2, generic: 2, graph: 0, descr: 'Down' }
-
oid: hzOduEnetPort2EthernetLinkDown
num_oid: '.1.3.6.1.4.1.7262.2.2.8.3.2.1.{{ $index }}'
index: 'hzOduEnetPort2EthernetLinkDown.{{ $index }}'
descr: 'Enet Port2 Link State'
states:
- { value: 1, generic: 0, graph: 0, descr: 'Up' }
- { value: 2, generic: 2, graph: 0, descr: 'Down' }
-
oid: hzOduRadio1TemperatureOutOfLimit
num_oid: '.1.3.6.1.4.1.7262.2.2.8.4.5.9.{{ $index }}'
index: 'hzOduRadio1TemperatureOutOfLimit.{{ $index }}'
descr: 'Radio1 Temp Out of Limit'
states:
- { value: 1, generic: 0, graph: 0, descr: 'No' }
- { value: 2, generic: 2, graph: 0, descr: 'Yes' }
-
oid: hzOduModem1ModulationType
num_oid: '.1.3.6.1.4.1.7262.2.2.5.1.2.5.{{ $index }}'
index: 'hzOduModem1ModulationType.{{ $index }}'
descr: 'Modem1 Modulation'
states:
- { value: 1, generic: 2, graph: 0, descr: 'qpsk' }
- { value: 2, generic: 2, graph: 0, descr: 'qam' }
- { value: 3, generic: 2, graph: 0, descr: 'qam16' }
- { value: 4, generic: 1, graph: 0, descr: 'qam32' }
- { value: 5, generic: 1, graph: 0, descr: 'qam64' }
- { value: 6, generic: 1, graph: 0, descr: 'qam128' }
- { value: 7, generic: 0, graph: 0, descr: 'qam256' }
- { value: 8, generic: 0, graph: 0, descr: 'x8psk' }
count:
data:
-
oid: hzOduModem1RxLossOfSignalCount
num_oid: '.1.3.6.1.4.1.7262.2.2.8.4.4.2.{{ $index }}'
index: 'hzOduModem1RxLossOfSignalCount.{{ $index }}'
descr: 'Modem1 Rx Loss of Signals'
-
oid: hzOduEnetPort1EthernetLinkDownActivatedCount
num_oid: '.1.3.6.1.4.1.7262.2.2.8.3.1.10.{{ $index }}'
index: 'hzOduEnetPort1EthernetLinkDownActivatedCount.{{ $index }}'
descr: 'Enet Port1 Link Downs'
-
oid: hzOduEnetPort2EthernetLinkDownActivatedCount
num_oid: '.1.3.6.1.4.1.7262.2.2.8.3.2.2.{{ $index }}'
index: 'hzOduEnetPort2EthernetLinkDownActivatedCount.{{ $index }}'
descr: 'Enet Port2 Link Downs'
-
oid: hzOduRadio1TemperatureOutOfLimitCount
num_oid: '.1.3.6.1.4.1.7262.2.2.8.4.5.10.{{ $index }}'
index: 'hzOduRadio1TemperatureOutOfLimitCount.{{ $index }}'
descr: 'Radio1 Temp Out Of Limits'
-
oid: hzOduEnetPort1RxFramesInError
num_oid: '.1.3.6.1.4.1.7262.2.2.4.1.4.5.{{ $index }}'
index: 'hzOduEnetPort1RxFramesInError.{{ $index }}'
descr: 'Enet Port1 Input Error'
-
oid: hzOduEnetPort1RxFramesCRCError
num_oid: '.1.3.6.1.4.1.7262.2.2.4.1.4.6.{{ $index }}'
index: 'hzOduEnetPort1RxFramesCRCError.{{ $index }}'
descr: 'Enet Port1 CRC Error'
-
oid: hzOduEnetPort2RxFramesInError
num_oid: '.1.3.6.1.4.1.7262.2.2.4.2.4.5.{{ $index }}'
index: 'hzOduEnetPort2RxFramesInError.{{ $index }}'
descr: 'Enet Port2 Input Error'
-
oid: hzOduEnetPort2RxFramesCRCError
num_oid: '.1.3.6.1.4.1.7262.2.2.4.2.4.6.{{ $index }}'
index: 'hzOduEnetPort2RxFramesCRCError.{{ $index }}'
descr: 'Enet Port2 CRC Error'

View File

@ -0,0 +1,75 @@
mib: DRAGONWAVE-HCP-MIB
modules:
os:
version: DRAGONWAVE-HCP-MIB::hzCpSwInvOmniRelease.bank-A
serial: DRAGONWAVE-HCP-MIB::hzCpUnitSerialNo.0
hardware: DRAGONWAVE-HCP-MIB::hzCpUnitAssemblyNo.0
sensors:
temperature:
data:
-
oid: hzCpRadioTemperature
num_oid: '.1.3.6.1.4.1.7262.2.5.4.4.1.1.11.{{ $index }}'
index: 'hzCpRadioTemperature.{{ $index }}'
divisor: 10
descr: 'Radio{{ $index }} Temp'
snmp_flags: ['-ObsQ']
state:
data:
-
oid: hzCpAlarmStatus.modemRxLossOfSignal.1
value: hzCpAlarmStatus
num_oid: '.1.3.6.1.4.1.7262.2.5.5.3.1.3.13.1'
index: 'hzCpAlarmStatus.modemRxLossOfSignal.1'
descr: 'Modem1 Rx Loss Of Signal'
states:
- { value: 1, generic: 0, graph: 0, descr: 'No' }
- { value: 2, generic: 2, graph: 0, descr: 'Yes' }
-
oid: hzCpEnetPortLinkStatus
num_oid: '.1.3.6.1.4.1.7262.2.5.3.1.2.1.2.{{ $index }}'
index: 'hzCpEnetPortLinkStatus.{{ $index }}'
descr: 'Enet Port{{ $index }} Link State'
states:
- { value: 1, generic: 2, graph: 0, descr: 'Down' }
- { value: 2, generic: 0, graph: 0, descr: 'Up' }
snmp_flags: ['-ObsQe']
-
oid: hzCpAlarmStatus.tempOutOfLimits.1
value: hzCpAlarmStatus
num_oid: '.1.3.6.1.4.1.7262.2.5.5.3.1.3.24.1'
index: 'hzCpAlarmStatus.tempOutOfLimits.1'
descr: 'Radio1 Temp Out of Limit'
states:
- { value: 1, generic: 0, graph: 0, descr: 'No' }
- { value: 2, generic: 2, graph: 0, descr: 'Yes' }
-
oid: hzCpModemModulationType
num_oid: '.1.3.6.1.4.1.7262.2.5.4.2.1.1.5.{{ $index }}'
index: 'hzCpModemModulationType.{{ $index }}'
descr: 'Modem{{ $index }} Modulation'
states:
- { value: 1, generic: 2, graph: 0, descr: 'qpsk' }
- { value: 2, generic: 2, graph: 0, descr: 'qam16' }
- { value: 3, generic: 2, graph: 0, descr: 'qam32' }
- { value: 4, generic: 1, graph: 0, descr: 'qam64' }
- { value: 5, generic: 1, graph: 0, descr: 'qam128' }
- { value: 6, generic: 1, graph: 0, descr: 'qam256' }
- { value: 7, generic: 0, graph: 0, descr: 'qam512' }
- { value: 8, generic: 0, graph: 0, descr: 'qam1024' }
- { value: 9, generic: 0, graph: 0, descr: 'qam2048' }
snmp_flags: ['-ObsQ']
count:
data:
-
oid: hzCpEnetPortRxFramesLengthErrors
num_oid: '.1.3.6.1.4.1.7262.2.5.3.1.3.1.6.{{ $index }}'
index: 'hzCpEnetPortRxFramesLengthErrors.{{ $index }}'
descr: 'Enet Port{{ $index }} Input Errors'
snmp_flags: ['-ObsQ']
-
oid: hzCpEnetPortRxFramesCRCErrors
num_oid: '.1.3.6.1.4.1.7262.2.5.3.1.3.1.7.{{ $index }}'
index: 'hzCpEnetPortRxFramesCRCErrors.{{ $index }}'
descr: 'Enet Port{{ $index }} CRC Errors'
snmp_flags: ['-ObsQ']

View File

@ -0,0 +1,87 @@
mib: DRAGONWAVE-HORIZON-IDU-MIB
modules:
os:
version: DRAGONWAVE-HORIZON-IDU-MIB::hzIduSwInvSystemOmniVersionNo.0
serial: DRAGONWAVE-HORIZON-IDU-MIB::hzIduUnitSerialNo.0
hardware: DRAGONWAVE-HORIZON-IDU-MIB::hzIduUnitAssemblylNo.0
sensors:
state:
data:
-
oid: hzIduModemRxLossOfSignal
index: 'hzIduModemRxLossOfSignal.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.7.4.1.1.1.2.{{ $index }}'
descr: 'Modem{{ $index }} Rx Loss of Signal'
states:
- { value: 1, generic: 0, graph: 0, descr: 'No' }
- { value: 2, generic: 2, graph: 0, descr: 'Yes' }
snmp_flags: ['-ObsQe']
-
oid: hzIduEnetPort1EthernetLinkDown
index: 'hzIduEnetPort1EthernetLinkDown.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.7.3.1.9.{{ $index }}'
descr: 'Enet Port1 Link State'
states:
- { value: 1, generic: 0, graph: 0, descr: 'Up' }
- { value: 2, generic: 2, graph: 0, descr: 'Down' }
-
oid: hzIduEnetPort2EthernetLinkDown
index: 'hzIduEnetPort2EthernetLinkDown.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.7.3.2.1.{{ $index }}'
descr: 'Enet Port2 Link State'
states:
- { value: 1, generic: 0, graph: 0, descr: 'Up' }
- { value: 2, generic: 2, graph: 0, descr: 'Down' }
-
oid: hzIduModemModulationType
num_oid: '.1.3.6.1.4.1.7262.2.3.5.2.2.1.6.{{ $index }}'
index: 'hzIduModemModulationType.{{ $index }}'
descr: 'Modem{{ $index }} Modulation'
states:
- { value: 1, generic: 2, graph: 0, descr: 'qpsk' }
- { value: 2, generic: 2, graph: 0, descr: 'qam' }
- { value: 3, generic: 2, graph: 0, descr: 'qam16' }
- { value: 4, generic: 1, graph: 0, descr: 'qam32' }
- { value: 5, generic: 1, graph: 0, descr: 'qam64' }
- { value: 6, generic: 1, graph: 0, descr: 'qam128' }
- { value: 7, generic: 0, graph: 0, descr: 'qam256' }
- { value: 8, generic: 0, graph: 0, descr: 'x8psk' }
snmp_flags: ['-ObsQ']
count:
data:
-
oid: hzIduModemRxLossOfSignalCounts
index: 'hzIduModemRxLossOfSignalCounts.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.7.4.1.1.1.3.{{ $index }}'
descr: 'Modem{{ $index }} Rx Loss of Signals'
snmp_flags: ['-ObsQ']
-
oid: hzIduEnetPort1EthernetLinkDownActivatedCounts
index: 'hzIduEnetPort1EthernetLinkDownActivatedCounts.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.7.3.1.10.{{ $index }}'
descr: 'Enet Port1 Link Downs'
-
oid: hzIduEnetPort2EthernetLinkDownActivatedCounts
index: 'hzIduEnetPort2EthernetLinkDownActivatedCounts.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.7.3.2.2.{{ $index }}'
descr: 'Enet Port2 Link Downs'
-
oid: hzIduEnetPort1RxFramesInErrors
index: 'hzIduEnetPort1RxFramesInErrors.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.4.1.4.5.{{ $index }}'
descr: 'Enet Port1 Input Error'
-
oid: hzIduEnetPort1RxFramesCRCErrors
index: 'hzIduEnetPort1RxFramesCRCErrors.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.4.1.4.6.{{ $index }}'
descr: 'Enet Port1 CRC Error'
-
oid: hzIduEnetPort2RxFramesInErrors
index: 'hzIduEnetPort2RxFramesInErrors.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.4.2.4.5.{{ $index }}'
descr: 'Enet Port2 Input Error'
-
oid: hzIduEnetPort2RxFramesCrcErrors
index: 'hzIduEnetPort2RxFramesCrcErrors.{{ $index }}'
num_oid: '.1.3.6.1.4.1.7262.2.3.4.2.4.6.{{ $index }}'
descr: 'Enet Port2 CRC Error'

View File

@ -0,0 +1,13 @@
os: horizon-compact
text: 'Dragonwave Horizon Compact'
type: wireless
icon: dragonwave
mib_dir: 'dragonwave'
over:
- { graph: device_temperature, text: 'Temperature' }
- { graph: device_wireless_snr, text: 'SNR' }
- { graph: device_wireless_rssi, text: 'RSL' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.7262.2.2

View File

@ -0,0 +1,13 @@
os: horizon-compactplus
text: 'Dragonwave Horizon Compact Plus'
type: wireless
icon: dragonwave
mib_dir: 'dragonwave'
over:
- { graph: device_temperature, text: 'Temperature' }
- { graph: device_wireless_snr, text: 'SNR' }
- { graph: device_wireless_rssi, text: 'RSL' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.7262.2.5

View File

@ -0,0 +1,12 @@
os: horizon-duo
text: 'Dragonwave Horizon Duo'
type: wireless
icon: dragonwave
mib_dir: 'dragonwave'
over:
- { graph: device_wireless_snr, text: 'SNR' }
- { graph: device_wireless_rssi, text: 'RSL' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.7262.2.3

View File

@ -1,11 +0,0 @@
os: horizon
text: 'Dragonwave Horizon Compact'
type: wireless
icon: dragonwave
over:
- { graph: device_wireless_snr, text: SNR }
- { graph: device_wireless_power, text: 'Tx Power' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.7262.2.

View File

@ -1,13 +0,0 @@
<?php
/*
* LibreNMS
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$version = trim(snmp_get($device, '.1.3.6.1.4.1.7262.2.2.1.3.2.1.0', '-Ovq'), '" ');
$serial = trim(snmp_get($device, '.1.3.6.1.4.1.7262.2.2.1.3.1.1.0', '-Ovq'), '" ');

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,654 @@
-- File Name : HorizonEquipmentLog_MIB_1.00.00.mib
-- Version : 1.00.00
-- Date : July 07, 2010
-- Author : DragonWave Inc.
HORIZON-EQUIPMENT-LOG-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, OBJECT-TYPE, MODULE-IDENTITY,NOTIFICATION-TYPE,
Unsigned32, TimeTicks, Counter32, Counter64,
IpAddress
-- Not supported : Opaque
FROM SNMPv2-SMI -- [RFC2578]
TEXTUAL-CONVENTION, RowStatus, TimeStamp, DateAndTime
FROM SNMPv2-TC -- [RFC2579]
horizon
FROM HORIZON-MIB;
--
-- Module Identity
--
horizonEquipmentLogMib MODULE-IDENTITY
LAST-UPDATED "200901210000Z"
ORGANIZATION
"DragonWave Inc."
CONTACT-INFO
""
DESCRIPTION
"This MIB Module defines a notification log mechanism and a current alarm list."
REVISION "200901210000Z"
DESCRIPTION
"Initial Revision"
::= { horizon 100 }
--
-- History of MIB Changes
--
--
--
-- Textual conventions
--
EnableType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enable/Disable"
SYNTAX INTEGER
{
disabled(0),
enabled(1)
}
--
-- Node definitions
--
horizonEquipmentLogMibObjects OBJECT IDENTIFIER ::= { horizonEquipmentLogMib 1 }
horizonEquipmentConfigLog OBJECT IDENTIFIER ::= { horizonEquipmentLogMibObjects 1 }
horizonEquipmentLog OBJECT IDENTIFIER ::= { horizonEquipmentLogMibObjects 2 }
horizonEquipmentAlarmList OBJECT IDENTIFIER ::= { horizonEquipmentLogMibObjects 3 }
horizonEquipmentSnmpTrap OBJECT IDENTIFIER ::= { horizonEquipmentLogMibObjects 4 }
horizonEquipmentPseudoEventsObjects OBJECT IDENTIFIER ::= { horizonEquipmentLogMib 2 }
horizonEquipmentMirrorObjects OBJECT IDENTIFIER ::= { horizonEquipmentLogMib 3 }
--
-- Object definitions: configuration section
--
horizonEquipmentEventLogEntryLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of notification entries that may be held
in EventLogTable."
DEFVAL { 4096 }
::= { horizonEquipmentConfigLog 1 }
--
-- Object definitions: event log section
--
horizonEquipmentEventLogLastEntry OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of horizonEquipmentEventLogIndex at the time of the last
creation of an entry in the horizonEquipmentEventLogTable."
::= { horizonEquipmentLog 1 }
--
-- Event Notification Log Table (inspired by RFC 3014)
--
horizonEquipmentEventLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF HorizonEquipmentEventLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Notification log entries."
::= { horizonEquipmentLog 2 }
horizonEquipmentEventLogEntry OBJECT-TYPE
SYNTAX HorizonEquipmentEventLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Notification log entry. Entries appear in this table
when Notifications occur. They are removed to make way
for new entries due to lack of resources or the values of
horizonEquipmentEventLogEntryLimit.If adding an entry would exceed
horizonEquipmentEventLogEntryLimit the oldest entry in that log SHOULD
be removed to make room for the new one."
INDEX { horizonEquipmentEventLogIndex }
::= { horizonEquipmentEventLogTable 1 }
HorizonEquipmentEventLogEntry ::=
SEQUENCE {
horizonEquipmentEventLogIndex Unsigned32,
horizonEquipmentEventLogTime TimeStamp,
horizonEquipmentEventLogDateAndTime DateAndTime,
horizonEquipmentEventLogNotificationID OBJECT IDENTIFIER,
horizonEquipmentEventLogVariables Unsigned32
}
horizonEquipmentEventLogIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A monotonically increasing integer for the sole purpose of
indexing entries within the log. When it reaches the
maximum value,the agent wraps the value back to 1.
This number should correspond to the number of notifications
sent by the agent."
::= { horizonEquipmentEventLogEntry 1 }
horizonEquipmentEventLogTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the entry was placed in the log."
::= { horizonEquipmentEventLogEntry 2 }
horizonEquipmentEventLogDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local date and time when the entry was logged, useful when browsing the MIB."
::= { horizonEquipmentEventLogEntry 3 }
horizonEquipmentEventLogNotificationID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NOTIFICATION-TYPE object identifier of the Notification that
occurred."
::= { horizonEquipmentEventLogEntry 4 }
horizonEquipmentEventLogVariables OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of variables in horizonEquipmentEventLogVariableTable for this
logged notification."
::= { horizonEquipmentEventLogEntry 5 }
--
-- Event Log variable Table
--
horizonEquipmentEventLogVariableTable OBJECT-TYPE
SYNTAX SEQUENCE OF HorizonEquipmentEventLogVariableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of variables to go with Notification log entries."
::= { horizonEquipmentLog 3 }
horizonEquipmentEventLogVariableEntry OBJECT-TYPE
SYNTAX HorizonEquipmentEventLogVariableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Notification log entry variable.
Entries appear in this table when there are variables in
the varbind list of a Notification in horizonEquipmentEventLogTable."
INDEX { horizonEquipmentEventLogIndex, horizonEquipmentEventLogVariableIndex }
::= { horizonEquipmentEventLogVariableTable 1 }
HorizonEquipmentEventLogVariableEntry ::=
SEQUENCE {
horizonEquipmentEventLogVariableIndex Unsigned32,
horizonEquipmentEventLogVariableID OBJECT IDENTIFIER,
horizonEquipmentEventLogVariableValueType INTEGER,
horizonEquipmentEventLogVariableCounter32Val Counter32,
horizonEquipmentEventLogVariableUnsigned32Val Unsigned32,
horizonEquipmentEventLogVariableTimeTicksVal TimeTicks,
horizonEquipmentEventLogVariableInteger32Val Integer32,
horizonEquipmentEventLogVariableOctetStringVal OCTET STRING,
horizonEquipmentEventLogVariableIpAddressVal IpAddress,
horizonEquipmentEventLogVariableOidVal OBJECT IDENTIFIER,
horizonEquipmentEventLogVariableCounter64Val Counter64
--horizonEquipmentEventLogVariableOpaqueVal Opaque
}
horizonEquipmentEventLogVariableIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A monotonically increasing integer, starting at 1 for a given
horizonEquipmentEventLogIndex, for indexing variables within the logged
Event Notification."
::= { horizonEquipmentEventLogVariableEntry 1 }
horizonEquipmentEventLogVariableID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The variable's object identifier."
::= { horizonEquipmentEventLogVariableEntry 2 }
horizonEquipmentEventLogVariableValueType OBJECT-TYPE
SYNTAX INTEGER { counter32(1), unsigned32(2), timeTicks(3),
integer32(4), ipAddress(5), octetString(6),
objectId(7), counter64(8) } -- Not supported: opaque(9)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the value. One and only one of the value
objects that follow must be instantiated, based on this type."
::= { horizonEquipmentEventLogVariableEntry 3 }
horizonEquipmentEventLogVariableCounter32Val OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'counter32'."
::= { horizonEquipmentEventLogVariableEntry 4 }
horizonEquipmentEventLogVariableUnsigned32Val OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'unsigned32'."
::= { horizonEquipmentEventLogVariableEntry 5 }
horizonEquipmentEventLogVariableTimeTicksVal OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'timeTicks'."
::= { horizonEquipmentEventLogVariableEntry 6 }
horizonEquipmentEventLogVariableInteger32Val OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'integer32'."
::= { horizonEquipmentEventLogVariableEntry 7 }
horizonEquipmentEventLogVariableOctetStringVal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'octetString'."
::= { horizonEquipmentEventLogVariableEntry 8 }
horizonEquipmentEventLogVariableIpAddressVal OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'ipAddress'.
Although this seems to be unfriendly for IPv6, we
have to recognize that there are a number of older
MIBs that do contain an IPv4 format address, known
as IpAddress.
IPv6 addresses are represented using TAddress or
InetAddress, and so the underlying datatype is
OCTET STRING, and their value would be stored in
the horizonEquipmentEventLogVariableOctetStringVal column."
::= { horizonEquipmentEventLogVariableEntry 9 }
horizonEquipmentEventLogVariableOidVal OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'objectId'."
::= { horizonEquipmentEventLogVariableEntry 10 }
horizonEquipmentEventLogVariableCounter64Val OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when horizonEquipmentEventLogVariableValueType is 'counter64'."
::= { horizonEquipmentEventLogVariableEntry 11 }
--
-- Opaque type not supported
--
-- horizonEquipmentEventLogVariableOpaqueVal OBJECT-TYPE
-- SYNTAX Opaque
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The value when horizonEquipmentEventLogVariableValueType is 'opaque'."
-- ::= { horizonEquipmentEventLogVariableEntry 12 }
--
-- Object definitions: active alarm list section
--
--
-- Active Alarm Table
--
horizonEquipmentAlarmActiveLastChanged OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time of the last
creation or deletion of an entry in the horizonEquipmentAlarmActiveTable.
Useful in case of polling (no traps mechanism used).
If the number of entries has been unchanged since the
last re-initialization, then this object contains a zero value."
::= { horizonEquipmentAlarmList 1 }
horizonEquipmentAlarmActiveRowCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of active alarms row in the table."
::= { horizonEquipmentAlarmList 2 }
horizonEquipmentAlarmActiveTable OBJECT-TYPE
SYNTAX SEQUENCE OF HorizonEquipmentAlarmActiveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Active Alarms entries."
::= { horizonEquipmentAlarmList 3 }
horizonEquipmentAlarmActiveEntry OBJECT-TYPE
SYNTAX HorizonEquipmentAlarmActiveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries appear in this table when alarms are raised. They
are removed when the alarm is cleared."
INDEX { horizonEquipmentAlarmActiveTime,
horizonEquipmentAlarmActiveIndex }
::= { horizonEquipmentAlarmActiveTable 1 }
HorizonEquipmentAlarmActiveEntry ::= SEQUENCE {
horizonEquipmentAlarmActiveIndex Unsigned32,
horizonEquipmentAlarmActiveTime TimeStamp,
horizonEquipmentAlarmActiveDateAndTime DateAndTime,
horizonEquipmentAlarmActiveSourceID OBJECT IDENTIFIER
--horizonEquipmentAlarmActiveSourceOpaqueVal Opaque
}
horizonEquipmentAlarmActiveIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A strictly monotonically increasing integer which
acts as the index of entries within the named alarm
list. It wraps back to 1 after it reaches its
maximum value."
::= { horizonEquipmentAlarmActiveEntry 1 }
horizonEquipmentAlarmActiveTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of sysUpTime when the entry was placed in the list.
This object facilitates retrieving all instances of
alarms that have been raised or have changed state
since a given point in time."
::= { horizonEquipmentAlarmActiveEntry 2 }
horizonEquipmentAlarmActiveDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local date and time when the error occurred.
This object facilitates retrieving all instances of
alarms that have been raised or have changed state
since a given point in time.
Implementations MUST include the offset from UTC,
if available. Implementation in environments in which
the UTC offset is not available is NOT RECOMMENDED."
::= { horizonEquipmentAlarmActiveEntry 3 }
horizonEquipmentAlarmActiveSourceID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MIB object identifier of the alarm (contained in an Alarm Notification
type object) that is occurring."
::= { horizonEquipmentAlarmActiveEntry 4 }
--
-- Opaque type not supported
--
-- horizonEquipmentAlarmActiveSourceOpaqueVal OBJECT-TYPE
-- SYNTAX Opaque
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The value when value type is 'opaque'.It is coded as follows:
-- code: OCTET STRING(SIZE(1)), fixed to 1 (structure identifier);
-- type: INTEGER, see horizonEquipmentEventLogVariableValueType values;
-- value: ASN.1 basic encoding rule"
-- ::= { horizonEquipmentAlarmActiveEntry 5 }
--
-- Object definitions: trap counter and timestamp
--
horizonEquipmentOutTrapsCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter of the output traps.
It increases by one every time a new trap is sent to all the managers configured
in the relevant table. In this way its value is the number of notification events
occurred since the last agent reset and every manager that reads this value can understand
whether some event has been lost or not.
(Note that in general this counter differs from the RFC1213 snmpOutTraps, that counts the
number of Trap PDUs sent). When the logging mechanism is enabled, it corresponds to the index in the eventlog table"
::= { horizonEquipmentSnmpTrap 1 }
horizonEquipmentLastOutTrapTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the last trap was sent."
::= { horizonEquipmentSnmpTrap 2 }
--
-- SNMP Management: managers destination table
--
horizonEquipmentTrapDestTable OBJECT-TYPE
SYNTAX SEQUENCE OF HorizonEquipmentTrapDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The trap destination table."
::= { horizonEquipmentSnmpTrap 4 }
horizonEquipmentTrapDestEntry OBJECT-TYPE
SYNTAX HorizonEquipmentTrapDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table. The table is indexed by the Manager IP Address."
INDEX { horizonEquipmentTrapDestAddress }
::= { horizonEquipmentTrapDestTable 1 }
HorizonEquipmentTrapDestEntry ::=
SEQUENCE {
horizonEquipmentTrapDestAddress
IpAddress,
horizonEquipmentTrapDestCommString
OCTET STRING,
horizonEquipmentTrapDestUdpPort
INTEGER,
horizonEquipmentTrapDestSnmpVer
INTEGER,
horizonEquipmentTrapDestEraseTime
TimeTicks,
horizonEquipmentTrapDestRowStatus
RowStatus
}
horizonEquipmentTrapDestAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Manager IP address.
STORAGE: volatile."
::= { horizonEquipmentTrapDestEntry 1 }
horizonEquipmentTrapDestCommString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..24))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Manager SNMP community string.
STORAGE: volatile."
::= { horizonEquipmentTrapDestEntry 2 }
horizonEquipmentTrapDestUdpPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination UDP port. Default: 162.
STORAGE: volatile."
DEFVAL { 162 }
::= { horizonEquipmentTrapDestEntry 3 }
horizonEquipmentTrapDestSnmpVer OBJECT-TYPE
SYNTAX INTEGER
{
v1(0),
v2(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"SMI version supported by the manager.
STORAGE: volatile."
DEFVAL { v2 }
::= { horizonEquipmentTrapDestEntry 4 }
horizonEquipmentTrapDestEraseTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time (in hundredths of a second) after which
the relevant row in horizonEquipmentTrapDestTable is erased.
1440000 (i.e. 4 hours) is the maximum value for this parameter.
STORAGE: volatile."
DEFVAL {1440000}
::= { horizonEquipmentTrapDestEntry 5 }
horizonEquipmentTrapDestRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to row creation and removal conventions."
::= { horizonEquipmentTrapDestEntry 6 }
--
-- Object definitions: pseudo-events support
--
horizonEquipmentConfChangeOid OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the last node changed. It is sent to the managers in order to
notify a configuration change."
::= { horizonEquipmentPseudoEventsObjects 1 }
--
-- Not Supported
--
-- horizonEquipmentConfChangeVal OBJECT-TYPE
-- SYNTAX Opaque
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The value of the last node changed. It is sent to the managers when meaningful."
-- ::= { horizonEquipmentPseudoEventsObjects 2 }
horizonEquipmentConfChangeMode OBJECT-TYPE
SYNTAX EnableType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable of sending ConfChange Trap.
STORAGE: permanent."
DEFVAL { enabled }
::= { horizonEquipmentPseudoEventsObjects 3 }
horizonEquipmentConfChangeNotification NOTIFICATION-TYPE
OBJECTS { horizonEquipmentConfChangeOid,
--horizonEquipmentConfChangeVal,
horizonEquipmentOutTrapsCounter }
STATUS current
DESCRIPTION
"Notification of configuration change."
::= { horizonEquipmentPseudoEventsObjects 4 }
--
-- Object definitions: mirror-traps support
--
horizonEquipmentMirrorFlag OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fixed to 1=mirror trap"
::= { horizonEquipmentMirrorObjects 1 }
horizonEquipmentMirrorColdStart NOTIFICATION-TYPE
OBJECTS { horizonEquipmentMirrorFlag, horizonEquipmentOutTrapsCounter }
STATUS current
DESCRIPTION
"A coldStart trap signifies that the SNMP entity,
supporting a notification originator application, is
reinitializing itself and that its configuration may
have been altered."
::= { horizonEquipmentMirrorObjects 2 }
END

View File

@ -0,0 +1,32 @@
-- File Name : horizon-MIB.mib
-- Version : 1.02.00
-- Date : July 13, 2011
-- Author : DragonWave Inc.
HORIZON-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE
FROM RFC-1212
enterprises
FROM RFC1155-SMI;
dragonwave OBJECT IDENTIFIER
::= { enterprises 7262 }
horizon OBJECT IDENTIFIER
::= { dragonwave 2 }
--
-- Node definitions
--
hzSystemType OBJECT-TYPE
SYNTAX INTEGER { odu( 1 ) , idu( 2 ) , quantum( 3 ), hcp(4)}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current type of the system. "
::= { horizon 1 }
END

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,634 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.7262.2.2",
"sysDescr": "hc50_364_256qam Omni: 1.04.08",
"sysContact": "<private>",
"version": "1.04.08",
"hardware": "CLHP28B1CR1",
"features": null,
"os": "horizon-compact",
"type": "wireless",
"serial": "DW0123456789",
"icon": "dragonwave.png",
"location": "<private>"
}
]
},
"poller": "matches discovery"
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.3.1.10.0",
"sensor_index": "hzOduEnetPort1EthernetLinkDownActivatedCount.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Enet Port1 Link Downs",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.4.1.4.6.0",
"sensor_index": "hzOduEnetPort1RxFramesCRCError.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Enet Port1 CRC Error",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.4.1.4.5.0",
"sensor_index": "hzOduEnetPort1RxFramesInError.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Enet Port1 Input Error",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.3.2.2.0",
"sensor_index": "hzOduEnetPort2EthernetLinkDownActivatedCount.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Enet Port2 Link Downs",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.4.2.4.5.0",
"sensor_index": "hzOduEnetPort2RxFramesInError.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Enet Port2 Input Error",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.4.4.2.0",
"sensor_index": "hzOduModem1RxLossOfSignalCount.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Modem1 Rx Loss of Signals",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 73,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.4.5.10.0",
"sensor_index": "hzOduRadio1TemperatureOutOfLimitCount.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Radio1 Temp Out Of Limits",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.3.1.9.0",
"sensor_index": "hzOduEnetPort1EthernetLinkDown.0",
"sensor_type": "hzOduEnetPort1EthernetLinkDown",
"sensor_descr": "Enet Port1 Link State",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzOduEnetPort1EthernetLinkDown"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.3.2.1.0",
"sensor_index": "hzOduEnetPort2EthernetLinkDown.0",
"sensor_type": "hzOduEnetPort2EthernetLinkDown",
"sensor_descr": "Enet Port2 Link State",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzOduEnetPort2EthernetLinkDown"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.5.1.2.5.0",
"sensor_index": "hzOduModem1ModulationType.0",
"sensor_type": "hzOduModem1ModulationType",
"sensor_descr": "Modem1 Modulation",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 7,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzOduModem1ModulationType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.4.4.1.0",
"sensor_index": "hzOduModem1RxLossOfSignal.0",
"sensor_type": "hzOduModem1RxLossOfSignal",
"sensor_descr": "Modem1 Rx Loss of Signal",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzOduModem1RxLossOfSignal"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.8.4.5.9.0",
"sensor_index": "hzOduRadio1TemperatureOutOfLimit.0",
"sensor_type": "hzOduRadio1TemperatureOutOfLimit",
"sensor_descr": "Radio1 Temp Out of Limit",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzOduRadio1TemperatureOutOfLimit"
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.2.5.1.3.6.0",
"sensor_index": "hzOduRadio1Temperature.0",
"sensor_type": "horizon-compact",
"sensor_descr": "Radio1 Temperature",
"group": null,
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 38.2,
"sensor_limit": 58.2,
"sensor_limit_warn": null,
"sensor_limit_low": 28.2,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
}
],
"state_indexes": [
{
"state_name": "hzOduEnetPort1EthernetLinkDown",
"state_descr": "Up",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "hzOduEnetPort1EthernetLinkDown",
"state_descr": "Down",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzOduEnetPort2EthernetLinkDown",
"state_descr": "Up",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "hzOduEnetPort2EthernetLinkDown",
"state_descr": "Down",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qpsk",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qam",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qam16",
"state_draw_graph": 0,
"state_value": 3,
"state_generic_value": 2
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qam32",
"state_draw_graph": 0,
"state_value": 4,
"state_generic_value": 1
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qam64",
"state_draw_graph": 0,
"state_value": 5,
"state_generic_value": 1
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qam128",
"state_draw_graph": 0,
"state_value": 6,
"state_generic_value": 1
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "qam256",
"state_draw_graph": 0,
"state_value": 7,
"state_generic_value": 0
},
{
"state_name": "hzOduModem1ModulationType",
"state_descr": "x8psk",
"state_draw_graph": 0,
"state_value": 8,
"state_generic_value": 0
},
{
"state_name": "hzOduModem1RxLossOfSignal",
"state_descr": "No",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "hzOduModem1RxLossOfSignal",
"state_descr": "Yes",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzOduRadio1TemperatureOutOfLimit",
"state_descr": "No",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "hzOduRadio1TemperatureOutOfLimit",
"state_descr": "Yes",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
}
]
},
"poller": "matches discovery"
},
"wireless": {
"discovery": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "SNR",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 37.3,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.2.8.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "RSL",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -44.5,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.2.4.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "Tx Power",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 19.4,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.3.2.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "errors",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "Rx Errors",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 34028,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.2.15.3.0\"]"
}
]
},
"poller": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "SNR",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 37.3,
"sensor_prev": 37.3,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.2.8.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "RSL",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -44.5,
"sensor_prev": -44.5,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.2.4.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "Tx Power",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 19.4,
"sensor_prev": 19.4,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.3.2.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "errors",
"sensor_index": "0",
"sensor_type": "horizon-compact",
"sensor_descr": "Rx Errors",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 34028,
"sensor_prev": 34028,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.2.5.1.2.15.3.0\"]"
}
]
}
}
}

View File

@ -0,0 +1,733 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.7262.2.5",
"sysDescr": "Mode: hy56_380_256qam Omni: 1.4.1",
"sysContact": "<private>",
"version": "1.4.1",
"hardware": "PLHP11B1SXR2",
"features": null,
"os": "horizon-compactplus",
"type": "wireless",
"serial": null,
"icon": "dragonwave.png",
"location": "<private>"
}
]
},
"poller": "matches discovery"
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.3.1.6.1",
"sensor_index": "hzCpEnetPortRxFramesLengthErrors.1",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Enet Port1 Input Errors",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.3.1.6.2",
"sensor_index": "hzCpEnetPortRxFramesLengthErrors.2",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Enet Port2 Input Errors",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.5.3.1.3.13.1",
"sensor_index": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"sensor_type": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"sensor_descr": "Modem1 Rx Loss Of Signal",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpAlarmStatus.modemRxLossOfSignal.1"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.2.1.2.1",
"sensor_index": "hzCpEnetPortLinkStatus.1",
"sensor_type": "hzCpEnetPortLinkStatus",
"sensor_descr": "Enet Port1 Link State",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpEnetPortLinkStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.2.1.2.2",
"sensor_index": "hzCpEnetPortLinkStatus.2",
"sensor_type": "hzCpEnetPortLinkStatus",
"sensor_descr": "Enet Port2 Link State",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpEnetPortLinkStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.4.2.1.1.5.1",
"sensor_index": "hzCpModemModulationType.1",
"sensor_type": "hzCpModemModulationType",
"sensor_descr": "Modem1 Modulation",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 256,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpModemModulationType"
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.4.4.1.1.11.1",
"sensor_index": "hzCpRadioTemperature.1",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Radio1 Temp",
"group": null,
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 37.2,
"sensor_limit": 57.2,
"sensor_limit_warn": null,
"sensor_limit_low": 27.2,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
}
],
"state_indexes": [
{
"state_name": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"state_descr": "No",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"state_descr": "Yes",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzCpEnetPortLinkStatus",
"state_descr": "Down",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "hzCpEnetPortLinkStatus",
"state_descr": "Up",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qpsk",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam16",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam32",
"state_draw_graph": 0,
"state_value": 3,
"state_generic_value": 2
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam64",
"state_draw_graph": 0,
"state_value": 4,
"state_generic_value": 1
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam128",
"state_draw_graph": 0,
"state_value": 5,
"state_generic_value": 1
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam256",
"state_draw_graph": 0,
"state_value": 6,
"state_generic_value": 1
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam512",
"state_draw_graph": 0,
"state_value": 7,
"state_generic_value": 0
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam1024",
"state_draw_graph": 0,
"state_value": 8,
"state_generic_value": 0
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam2048",
"state_draw_graph": 0,
"state_value": 9,
"state_generic_value": 0
}
]
},
"poller": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.3.1.6.1",
"sensor_index": "hzCpEnetPortRxFramesLengthErrors.1",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Enet Port1 Input Errors",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.3.1.6.2",
"sensor_index": "hzCpEnetPortRxFramesLengthErrors.2",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Enet Port2 Input Errors",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"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": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.5.3.1.3.13.1",
"sensor_index": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"sensor_type": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"sensor_descr": "Modem1 Rx Loss Of Signal",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpAlarmStatus.modemRxLossOfSignal.1"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.2.1.2.1",
"sensor_index": "hzCpEnetPortLinkStatus.1",
"sensor_type": "hzCpEnetPortLinkStatus",
"sensor_descr": "Enet Port1 Link State",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpEnetPortLinkStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.3.1.2.1.2.2",
"sensor_index": "hzCpEnetPortLinkStatus.2",
"sensor_type": "hzCpEnetPortLinkStatus",
"sensor_descr": "Enet Port2 Link State",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hzCpEnetPortLinkStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.4.2.1.1.5.1",
"sensor_index": "hzCpModemModulationType.1",
"sensor_type": "hzCpModemModulationType",
"sensor_descr": "Modem1 Modulation",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 6,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": 256,
"user_func": null,
"state_name": "hzCpModemModulationType"
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.7262.2.5.4.4.1.1.11.1",
"sensor_index": "hzCpRadioTemperature.1",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Radio1 Temp",
"group": null,
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 37.2,
"sensor_limit": 57.2,
"sensor_limit_warn": null,
"sensor_limit_low": 27.2,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
}
],
"state_indexes": [
{
"state_name": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"state_descr": "No",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "hzCpAlarmStatus.modemRxLossOfSignal.1",
"state_descr": "Yes",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzCpEnetPortLinkStatus",
"state_descr": "Down",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "hzCpEnetPortLinkStatus",
"state_descr": "Up",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qpsk",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam16",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam32",
"state_draw_graph": 0,
"state_value": 3,
"state_generic_value": 2
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam64",
"state_draw_graph": 0,
"state_value": 4,
"state_generic_value": 1
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam128",
"state_draw_graph": 0,
"state_value": 5,
"state_generic_value": 1
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam256",
"state_draw_graph": 0,
"state_value": 6,
"state_generic_value": 1
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam512",
"state_draw_graph": 0,
"state_value": 7,
"state_generic_value": 0
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam1024",
"state_draw_graph": 0,
"state_value": 8,
"state_generic_value": 0
},
{
"state_name": "hzCpModemModulationType",
"state_descr": "qam2048",
"state_draw_graph": 0,
"state_value": 9,
"state_generic_value": 0
}
]
}
},
"wireless": {
"discovery": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "SNR",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 38.4,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.2.1.1.8.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "RSL",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -43.3,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.2.1.1.3.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Tx Power",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 23,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.4.1.1.7.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "errors",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Rx Errors",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 0,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.2.2.1.4.1\"]"
}
]
},
"poller": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "SNR",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 38.4,
"sensor_prev": 38.4,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.2.1.1.8.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "RSL",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -43.3,
"sensor_prev": -43.3,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.2.1.1.3.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Tx Power",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 23,
"sensor_prev": 23,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.4.1.1.7.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "errors",
"sensor_index": "0",
"sensor_type": "horizon-compactplus",
"sensor_descr": "Rx Errors",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 0,
"sensor_prev": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.7262.2.5.4.2.2.1.4.1\"]"
}
]
}
}
}

1083
tests/data/horizon-duo.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,165 @@
1.3.6.1.2.1.1.1.0|4|hc50_364_256qam Omni: 1.04.08
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7262.2.2
1.3.6.1.2.1.1.3.0|67|309247157
1.3.6.1.2.1.1.4.0|4|<private>
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|
1.3.6.1.2.1.2.2.1.2.2|4|
1.3.6.1.2.1.2.2.1.3.1|2|62
1.3.6.1.2.1.2.2.1.3.2|2|24
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|65535
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|0
1.3.6.1.2.1.2.2.1.6.1|4x|123456ABCDEF
1.3.6.1.2.1.2.2.1.6.2|4|
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|1
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|1
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|11311040
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|130464
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|1
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|73472475
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|171133
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|11
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.2.1.4.3.0|65|84951
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|84950
1.3.6.1.2.1.4.10.0|65|85403
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|41130
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|914
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|2
1.3.6.1.2.1.4.20.1.2.192.168.1.2|2|1
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.20.1.3.192.168.1.2|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.1.192.168.1.1|4x|123456ABCDEF
1.3.6.1.2.1.5.1.0|65|38373
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|138
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|38235
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|39149
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|914
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|38235
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|0
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|0
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|0
1.3.6.1.2.1.6.11.0|65|2777
1.3.6.1.2.1.6.12.0|65|196
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|1
1.3.6.1.2.1.7.1.0|65|42794
1.3.6.1.2.1.7.2.0|65|914
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|43312
1.3.6.1.2.1.11.1.0|65|41066
1.3.6.1.2.1.11.2.0|65|39030
1.3.6.1.2.1.11.3.0|65|2084
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|37565
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|30451
1.3.6.1.2.1.11.16.0|65|5329
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|38983
1.3.6.1.2.1.11.29.0|65|49
1.3.6.1.2.1.11.30.0|2|1
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.158.1.1.1.1.1|2|2
1.3.6.1.4.1.7262.2.2.1.3.1.1.0|4|DW0123456789
1.3.6.1.4.1.7262.2.2.1.3.1.2.0|4|CLHP28B1CR1
1.3.6.1.4.1.7262.2.2.1.3.2.1.0|4|1.04.08
1.3.6.1.4.1.7262.2.2.4.1.4.5.0|65|0
1.3.6.1.4.1.7262.2.2.4.1.4.6.0|65|0
1.3.6.1.4.1.7262.2.2.4.2.4.5.0|65|0
1.3.6.1.4.1.7262.2.2.4.2.4.6.0|65|0
1.3.6.1.4.1.7262.2.2.5.1.2.4.0|2|-445
1.3.6.1.4.1.7262.2.2.5.1.2.5.0|2|7
1.3.6.1.4.1.7262.2.2.5.1.2.8.0|2|373
1.3.6.1.4.1.7262.2.2.5.1.2.15.3.0|65|340280
1.3.6.1.4.1.7262.2.2.5.1.2.15.7.0|65|23738900
1.3.6.1.4.1.7262.2.2.5.1.3.2.0|2|194
1.3.6.1.4.1.7262.2.2.5.1.3.6.0|2|382
1.3.6.1.4.1.7262.2.2.8.3.1.9.0|2|1
1.3.6.1.4.1.7262.2.2.8.3.1.10.0|65|1
1.3.6.1.4.1.7262.2.2.8.3.2.1.0|2|1
1.3.6.1.4.1.7262.2.2.8.3.2.2.0|65|0
1.3.6.1.4.1.7262.2.2.8.4.4.1.0|2|1
1.3.6.1.4.1.7262.2.2.8.4.4.2.0|65|73
1.3.6.1.4.1.7262.2.2.8.4.5.9.0|2|1
1.3.6.1.4.1.7262.2.2.8.4.5.10.0|65|0
1.3.6.1.6.3.10.2.1.3.0|2|41545496

View File

@ -0,0 +1,32 @@
1.3.6.1.2.1.1.1.0|4|Mode: hy56_380_256qam Omni: 1.4.1
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7262.2.5
1.3.6.1.2.1.1.3.0|67|148058357
1.3.6.1.2.1.1.4.0|4|<private>
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.11.1.0|65|103117
1.3.6.1.2.1.11.3.0|65|8356
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.158.1.1.1.1.1|2|2
1.3.6.1.4.1.7262.2.5.1.3.1.3.0|4|PLHP11B1SXR2
1.3.6.1.4.1.7262.2.5.1.3.2.1.1.3.1|4|1.4.1
1.3.6.1.4.1.7262.2.5.3.1.2.1.2.1|2|2
1.3.6.1.4.1.7262.2.5.3.1.2.1.2.2|2|1
1.3.6.1.4.1.7262.2.5.3.1.3.1.6.1|70|0
1.3.6.1.4.1.7262.2.5.3.1.3.1.6.2|70|0
1.3.6.1.4.1.7262.2.5.3.1.3.1.7.1|70|0
1.3.6.1.4.1.7262.2.5.3.1.3.1.7.2|70|0
1.3.6.1.4.1.7262.2.5.4.2.1.1.3.1|2|-433
1.3.6.1.4.1.7262.2.5.4.2.1.1.5.1|2|6
1.3.6.1.4.1.7262.2.5.4.2.1.1.8.1|2|384
1.3.6.1.4.1.7262.2.5.4.2.2.1.4.1|70|0
1.3.6.1.4.1.7262.2.5.4.4.1.1.7.1|2|230
1.3.6.1.4.1.7262.2.5.4.4.1.1.11.1|2|372
1.3.6.1.4.1.7262.2.5.5.3.1.3.13.1|2|1
1.3.6.1.4.1.7262.2.5.5.3.1.3.16.1|2|1
1.3.6.1.4.1.7262.2.5.5.3.1.3.24.1|2|1

View File

@ -0,0 +1,167 @@
1.3.6.1.2.1.1.1.0|4|hz40_277_256qam Omni: 1.02.02
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7262.2.3
1.3.6.1.2.1.1.3.0|67|125067711
1.3.6.1.2.1.1.4.0|4|<private>
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|
1.3.6.1.2.1.2.2.1.2.2|4|
1.3.6.1.2.1.2.2.1.3.1|2|62
1.3.6.1.2.1.2.2.1.3.2|2|24
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|65535
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|0
1.3.6.1.2.1.2.2.1.6.1|4x|123456ABCDEF
1.3.6.1.2.1.2.2.1.6.2|4|
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|1
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|1
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|91401923
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|640393
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|1208
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|159130248
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|683724
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|1206
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.2.1.4.3.0|65|639137
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|639136
1.3.6.1.2.1.4.10.0|65|637606
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|47115
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|1047
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|2
1.3.6.1.2.1.4.20.1.2.192.168.1.2|2|1
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.20.1.3.192.168.1.2|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.1.192.168.1.1|4x|123456ABCDEF
1.3.6.1.2.1.5.1.0|65|612908
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|128
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|612780
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|613827
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|1047
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|612780
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|0
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|0
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|0
1.3.6.1.2.1.6.11.0|65|514
1.3.6.1.2.1.6.12.0|65|19
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|1
1.3.6.1.2.1.7.1.0|65|24673
1.3.6.1.2.1.7.2.0|65|1047
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|23277
1.3.6.1.2.1.11.1.0|65|23625
1.3.6.1.2.1.11.2.0|65|21530
1.3.6.1.2.1.11.3.0|65|2094
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|32683
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|17278
1.3.6.1.2.1.11.16.0|65|2845
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|21532
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|1
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.4.1.7262.2.1.0|2|2
1.3.6.1.4.1.7262.2.3.1.6.1.2.0|4|DW0123456789
1.3.6.1.4.1.7262.2.3.1.6.1.3.0|4|60-000367-02
1.3.6.1.4.1.7262.2.3.1.6.2.1.0|4|1.02.02
1.3.6.1.4.1.7262.2.3.4.1.4.5.0|65|0
1.3.6.1.4.1.7262.2.3.4.1.4.6.0|65|0
1.3.6.1.4.1.7262.2.3.4.2.4.5.0|65|0
1.3.6.1.4.1.7262.2.3.4.2.4.6.0|65|0
1.3.6.1.4.1.7262.2.3.5.2.2.1.4.1|2|-416
1.3.6.1.4.1.7262.2.3.5.2.2.1.4.2|2|-441
1.3.6.1.4.1.7262.2.3.5.2.2.1.6.1|2|7
1.3.6.1.4.1.7262.2.3.5.2.2.1.6.2|2|7
1.3.6.1.4.1.7262.2.3.5.2.2.1.9.1|2|341
1.3.6.1.4.1.7262.2.3.5.2.2.1.9.2|2|385
1.3.6.1.4.1.7262.2.3.5.2.3.1.4.1|65|19998136
1.3.6.1.4.1.7262.2.3.5.2.3.1.4.2|65|20035591
1.3.6.1.4.1.7262.2.3.5.4.1.1.10.1|2|155
1.3.6.1.4.1.7262.2.3.7.3.1.9.0|2|1
1.3.6.1.4.1.7262.2.3.7.3.1.10.0|65|13
1.3.6.1.4.1.7262.2.3.7.3.2.1.0|2|1
1.3.6.1.4.1.7262.2.3.7.3.2.2.0|65|0
1.3.6.1.4.1.7262.2.3.7.4.1.1.1.2.1|2|1
1.3.6.1.4.1.7262.2.3.7.4.1.1.1.2.2|2|1
1.3.6.1.4.1.7262.2.3.7.4.1.1.1.3.1|65|42
1.3.6.1.4.1.7262.2.3.7.4.1.1.1.3.2|65|18
1.3.6.1.6.3.10.2.1.3.0|2|1296499

View File

@ -1,2 +0,0 @@
1.3.6.1.2.1.1.1.0|4|hc50_364_256qam Omni: 1.04.08
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7262.2.2