Fixed Ubiquiti Airfiber LTU retrieval (#11844)

* Fixed Ubiquiti Airfiber LTU retrieval
* Fixed Rx/Tx modulation rate
* Fixed eth0 retrieval
* Fixed quality retrieval
* Fixed Tx/Rx rate
* Fixed distance retrieval
* Added Rx power chain0
* Added Rx power chain1
* Removed eth0 port status
* Removed duplicate Tx EIRP

* UBNT AF LTU: Remove the now useless eth0 port status sensor
eth0 is now logged by the port module, so we don't need a separate state sensor to log the status of the port.
This change was mentioned in the previous commit, but I forgot to include it...

* UBNT AF LTU: Updated test data

* UBNT AF LTU: Fix incorrect spaces

* UBNT AF LTU: Use getnext

* UBNT AF LTU: Add some type checks and fixes

* UBNT AF LTU: Passing sensor values to WirelessSensor calls

* UBNT AF LTU: Cast sensor value to int

* Revert changes made to the test data

* UBNT AF LTU: Add new test data

* UBNT AF LTU: Add discoverWirelessQuality function for quality discovery

* UBNT AF LTU: Use snmpwalk_cache_oid

* UBNT AF LTU: Remove blank line at start of control structure

* UBNT AF LTU: Fix RX Ideal Power Chain 1

* UBNT AF LTU: Fix distance sensor

* UBNT AF LTU: Update CPU usage OID

* UBNT AF LTU: Update test json

* UBNT AF LTU: Update test json 1.4.0
This commit is contained in:
Denny Friebe
2020-08-18 15:39:41 +02:00
committed by GitHub
parent 29b09c8845
commit 0f74406dbd
7 changed files with 3177 additions and 494 deletions

View File

@@ -6,6 +6,7 @@ use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessDistanceDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessQualityDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
use LibreNMS\OS;
@@ -13,6 +14,7 @@ class AirosAfLtu extends OS implements
WirelessDistanceDiscovery,
WirelessFrequencyDiscovery,
WirelessPowerDiscovery,
WirelessQualityDiscovery,
WirelessRateDiscovery
{
/**
@@ -37,10 +39,13 @@ class AirosAfLtu extends OS implements
*/
public function discoverWirelessDistance()
{
$oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.23.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaRemoteDistance.1
return array(
new WirelessSensor('distance', $this->getDeviceId(), $oid, 'airos-af-ltu', 1, 'Distance', null, 1, 1000),
);
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaRemoteDistance', array(), 'UBNT-AFLTU-MIB', null, '-OteQUsb');
foreach ($oids as $index => $entry) {
return array(
new WirelessSensor('distance', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.23.' . $index, 'airos-af-ltu', 1, 'Distance', $entry['afLTUStaRemoteDistance'], 1, 1000), //UBNT-AFLTU-MIB::afLTUStaRemoteDistance
);
}
}
/**
@@ -51,22 +56,47 @@ class AirosAfLtu extends OS implements
*/
public function discoverWirelessPower()
{
$rx_power0_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.5.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaRxPower0.1
$rx_power1_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.6.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaRxPower1.1
$rx_ideal_power0_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.7.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaIdealRxPower0.1
$rx_ideal_power1_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.8.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaIdealRxPower1.1
$rx_power0_level_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.9.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaRxPowerLevel0.1
$rx_power1_level_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.10.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaRxPowerLevel1.1
$sensors = array();
$tx_eirp_oid = '.1.3.6.1.4.1.41112.1.10.1.2.6.0'; //UBNT-AFLTU-MIB::afLTUTxEIRP
return array(
new WirelessSensor('power', $this->getDeviceId(), $rx_power0_oid, 'airos-af-ltu-tx-chain-0', 1, 'Tx Power Chain 0'),
new WirelessSensor('power', $this->getDeviceId(), $rx_power1_oid, 'airos-af-ltu-tx-chain-1', 1, 'Tx Power Chain 1'),
new WirelessSensor('power', $this->getDeviceId(), $rx_ideal_power0_oid, 'airos-af-ltu-ideal-tx-chain-0', 1, 'Tx Ideal Power Chain 0'),
new WirelessSensor('power', $this->getDeviceId(), $rx_ideal_power1_oid, 'airos-af-ltu-ideal-tx-chain-1', 1, 'Tx Ideal Power Chain 1'),
new WirelessSensor('quality', $this->getDeviceId(), $rx_power0_level_oid, 'airos-af-ltu-level-rx-chain-0', 1, 'Signal Level Chain 0'),
new WirelessSensor('quality', $this->getDeviceId(), $rx_power1_level_oid, 'airos-af-ltu-level-rx-chain-1', 1, 'Signal Level Chain 1'),
new WirelessSensor('power', $this->getDeviceId(), $tx_eirp_oid, 'airos-af-ltu-tx-eirp', 1, 'Tx EIRP'),
);
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaRxPower0', array(), 'UBNT-AFLTU-MIB', null, '-OteQUsb');
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaRxPower1', $oids, 'UBNT-AFLTU-MIB', null, '-OteQUsb');
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaIdealRxPower0', $oids, 'UBNT-AFLTU-MIB', null, '-OteQUsb');
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaIdealRxPower1', $oids, 'UBNT-AFLTU-MIB', null, '-OteQUsb');
foreach ($oids as $index => $entry) {
$sensors[] = new WirelessSensor('power', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.5.' . $index, 'airos-af-ltu-rx-chain-0', 1, 'RX Power Chain 0', $entry['afLTUStaRxPower0']); //UBNT-AFLTU-MIB::afLTUStaRxPower0
$sensors[] = new WirelessSensor('power', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.6.' . $index, 'airos-af-ltu-rx-chain-1', 1, 'RX Power Chain 1', $entry['afLTUStaRxPower1']); //UBNT-AFLTU-MIB::afLTUStaRxPower1
$sensors[] = new WirelessSensor('power', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.7.' . $index, 'airos-af-ltu-ideal-rx-chain-0', 1, 'RX Ideal Power Chain 0', $entry['afLTUStaIdealRxPower0']); //UBNT-AFLTU-MIB::afLTUStaIdealRxPower0
$sensors[] = new WirelessSensor('power', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.8.' . $index, 'airos-af-ltu-ideal-rx-chain-1', 1, 'RX Ideal Power Chain 1', $entry['afLTUStaIdealRxPower1']); //UBNT-AFLTU-MIB::afLTUStaIdealRxPower1
break;
}
$sensors[] = new WirelessSensor('power', $this->getDeviceId(), $tx_eirp_oid, 'airos-af-ltu-tx-eirp', 1, 'TX EIRP');
return $sensors;
}
/**
* Discover wireless quality. This is a percent. Type is quality.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessQuality()
{
$sensors = array();
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaRxPowerLevel0', array(), 'UBNT-AFLTU-MIB', null, '-OteQUsb');
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaRxPowerLevel1', $oids, 'UBNT-AFLTU-MIB', null, '-OteQUsb');
foreach ($oids as $index => $entry) {
$sensors[] = new WirelessSensor('quality', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.9.' . $index, 'airos-af-ltu-level-rx-chain-0', 1, 'Signal Level Chain 0', $entry['afLTUStaRxPower0']); //UBNT-AFLTU-MIB::afLTUStaRxPowerLevel0
$sensors[] = new WirelessSensor('quality', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.10.' . $index, 'airos-af-ltu-level-rx-chain-1', 1, 'Signal Level Chain 1', $entry['afLTUStaRxPower1']); //UBNT-AFLTU-MIB::afLTUStaRxPowerLevel1
break;
}
return $sensors;
}
/**
@@ -77,11 +107,17 @@ class AirosAfLtu extends OS implements
*/
public function discoverWirelessRate()
{
$tx_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.3.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaTxCapacity.1
$rx_oid = '.1.3.6.1.4.1.41112.1.10.1.4.1.4.24.232.41.30.48.222'; //UBNT-AFLTU-MIB::afLTUStaRxCapacity.1
return array(
new WirelessSensor('rate', $this->getDeviceId(), $tx_oid, 'airos-af-ltu-tx', 1, 'Tx Rate', null, 1000),
new WirelessSensor('rate', $this->getDeviceId(), $rx_oid, 'airos-af-ltu-rx', 1, 'Rx Rate', null, 1000),
);
$sensors = array();
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaTxCapacity', array(), 'UBNT-AFLTU-MIB', null, '-OteQUsb');
$oids = snmpwalk_cache_oid($this->getDevice(), 'afLTUStaRxCapacity', $oids, 'UBNT-AFLTU-MIB', null, '-OteQUsb');
foreach ($oids as $index => $entry) {
$sensors[] = new WirelessSensor('rate', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.3.' . $index, 'airos-af-ltu-tx', 1, 'TX Rate', $entry['afLTUStaTxCapacity'], 1000); //UBNT-AFLTU-MIB::afLTUStaTxCapacity
$sensors[] = new WirelessSensor('rate', $this->getDeviceId(), '.1.3.6.1.4.1.41112.1.10.1.4.1.4.' . $index, 'airos-af-ltu-rx', 1, 'RX Rate', $entry['afLTUStaRxCapacity'], 1000); //UBNT-AFLTU-MIB::afLTUStaRxCapacity
break;
}
return $sensors;
}
}

View File

@@ -4,49 +4,11 @@ modules:
data:
-
oid: ubntHostCpuLoad
num_oid: '.1.3.6.1.4.1.41112.1.4.8.3.{{ $index }}'
num_oid: '.1.3.6.1.4.1.41112.1.10.1.3.6'
precision: 100
sensors:
state:
data:
-
oid: afLTUStaTxRate
value: afLTUStaTxRate
num_oid: '.1.3.6.1.4.1.41112.1.10.1.4.1.1.24.232.41.30.48.222'
index: '1'
descr: Tx Modulation Rate
states:
- { value: 0, generic: 2, graph: 1, descr: 'qPSK-SISO-1-4x' }
- { value: 1, generic: 2, graph: 1, descr: 'qPSK-SISO-1x' }
- { value: 2, generic: 2, graph: 1, descr: 'qPSK-MIMO-2x' }
- { value: 3, generic: 1, graph: 1, descr: 'qAM8-MIMO-3x' }
- { value: 4, generic: 1, graph: 1, descr: 'qAM16-MIMO-4x' }
- { value: 5, generic: 1, graph: 1, descr: 'qAM32-MIMO-5x' }
- { value: 6, generic: 0, graph: 1, descr: 'qAM64-MIMO-6x' }
- { value: 7, generic: 0, graph: 1, descr: 'qAM128-MIMO-7x' }
- { value: 8, generic: 0, graph: 1, descr: 'qAM256-MIMO-8x' }
- { value: 9, generic: 0, graph: 1, descr: 'qAM256-MIMO-9x' }
- { value: 10, generic: 0, graph: 1, descr: 'qAM1024-MIMO-10x' }
- { value: 11, generic: 0, graph: 1, descr: 'qAM2048-MIMO-11x' }
-
oid: afLTUStaRxRate
value: afLTUStaRxRate
num_oid: '.1.3.6.1.4.1.41112.1.10.1.4.1.2.24.232.41.30.48.222'
index: '2'
descr: Rx Modulation Rate
states:
- { value: 0, generic: 2, graph: 1, descr: 'qPSK-SISO-1-4x' }
- { value: 1, generic: 2, graph: 1, descr: 'qPSK-SISO-1x' }
- { value: 2, generic: 2, graph: 1, descr: 'qPSK-MIMO-2x' }
- { value: 3, generic: 1, graph: 1, descr: 'qAM8-MIMO-3x' }
- { value: 4, generic: 1, graph: 1, descr: 'qAM16-MIMO-4x' }
- { value: 5, generic: 1, graph: 1, descr: 'qAM32-MIMO-5x' }
- { value: 6, generic: 0, graph: 1, descr: 'qAM64-MIMO-6x' }
- { value: 7, generic: 0, graph: 1, descr: 'qAM128-MIMO-7x' }
- { value: 8, generic: 0, graph: 1, descr: 'qAM256-MIMO-8x' }
- { value: 9, generic: 0, graph: 1, descr: 'qAM256-MIMO-9x' }
- { value: 10, generic: 0, graph: 1, descr: 'qAM1024-MIMO-10x' }
- { value: 11, generic: 0, graph: 1, descr: 'qAM2048-MIMO-11x' }
-
oid: afLTURole
num_oid: '.1.3.6.1.4.1.41112.1.10.1.2.1.{{ $index }}'
@@ -75,15 +37,6 @@ modules:
- { value: 1, generic: 1, graph: 0, descr: Nofix }
- { value: 2, generic: 0, graph: 0, descr: Fix2d }
- { value: 3, generic: 0, graph: 0, descr: Fix3d }
-
oid: afLTUethConnected
num_oid: '.1.3.6.1.4.1.41112.1.10.1.6.5.{{ $index }}'
index: afLTUethConnected
descr: Ethernet port
state_name: afLTUethConnected
states:
- { value: 0, generic: 2, graph: 0, descr: Disconnected }
- { value: 1, generic: 0, graph: 0, descr: Connected }
count:
data:
-
@@ -96,10 +49,3 @@ modules:
num_oid: '.1.3.6.1.4.1.41112.1.10.1.7.8.{{ $index }}'
index: afLTUgpsSatsTracked
descr: Sat tracked
dbm:
data:
-
oid: afLTUTxEIRP
num_oid: '.1.3.6.1.4.1.41112.1.10.1.2.6.{{ $index }}'
index: afLTUTxEIRP
descr: Tx EIRP

View File

@@ -0,0 +1,65 @@
<?php
/**
* airos-af-ltu.inc.php
*
* LibreNMS state discovery module for Ubiquiti airFiber 5XHD
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2020 Denny Friebe
* @author Denny Friebe <denny.friebe@icera-network.de>
*/
$oids = snmpwalk_cache_oid($device, 'afLTUStaTxRate', array(), 'UBNT-AFLTU-MIB', null, '-OteQUsb'); //UBNT-AFLTU-MIB::afLTUStaTxRate
$oids = snmpwalk_cache_oid($device, 'afLTUStaRxRate', $oids, 'UBNT-AFLTU-MIB', null, '-OteQUsb'); //UBNT-AFLTU-MIB::afLTUStaRxRate
foreach ($oids as $index => $entry) {
//Create State Index
$txrate_state_name = 'afLTUStaTxRate';
$rxrate_state_name = 'afLTUStaRxRate';
$rate_states = [
['value' => 1, 'generic' => 2, 'graph' => 1, 'descr' => '1X (QPSK+SFBC)'],
['value' => 2, 'generic' => 2, 'graph' => 1, 'descr' => '2X (QPSK)'],
['value' => 4, 'generic' => 1, 'graph' => 1, 'descr' => '4X (16QAM)'],
['value' => 6, 'generic' => 1, 'graph' => 1, 'descr' => '6X (64QAM)'],
['value' => 8, 'generic' => 0, 'graph' => 1, 'descr' => '8X (256QAM)'],
['value' => 10, 'generic' => 0, 'graph' => 1, 'descr' => '10X (1024QAM)'],
['value' => 12, 'generic' => 0, 'graph' => 1, 'descr' => '12X (4096QAM)'],
];
create_state_index($txrate_state_name, $rate_states);
create_state_index($rxrate_state_name, $rate_states);
//Discover Sensors
discover_sensor($valid['sensor'], 'state', $device, '.1.3.6.1.4.1.41112.1.10.1.4.1.1.' . $index, 1, $txrate_state_name, 'TX Modulation Rate', '1', '1', null, null, null, null, $entry['afLTUStaTxRate']);
discover_sensor($valid['sensor'], 'state', $device, '.1.3.6.1.4.1.41112.1.10.1.4.1.2.' . $index, 2, $rxrate_state_name, 'RX Modulation Rate', '1', '1', null, null, null, null, $entry['afLTUStaRxRate']);
//Create Sensor To State Index
create_sensor_to_state_index($device, $txrate_state_name, 1);
create_sensor_to_state_index($device, $rxrate_state_name, 2);
break;
}
unset(
$oids,
$index,
$entry,
$rate_states,
$txrate_state_name,
$rxrate_state_name
);

View File

@@ -0,0 +1,43 @@
<?php
/**
* airos-af-ltu.inc.php
*
* LibreNMS ports poller module for Ubiquiti airFiber 5XHD
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2020 Denny Friebe
* @author Denny Friebe <denny.friebe@icera-network.de>
*/
$airos_stats = snmpwalk_cache_oid($device, '.1.3.6.1.4.1.41112.1.10.1.6', array(), 'UBNT-AFLTU-MIB');
if (isset($airos_stats[0]['afLTUethConnected'])) {
foreach ($port_stats as $index => $afport_stats) {
if ($afport_stats['ifDescr'] == 'eth0') {
$port_stats[$index]['ifOperStatus'] = ($airos_stats[0]['afLTUethConnected'] == "connected" ? "up" : "down");
$port_stats[$index]['ifHCInOctets'] = $airos_stats[0]['afLTUethRxBytes'];
$port_stats[$index]['ifHCOutOctets'] = $airos_stats[0]['afLTUethTxBytes'];
$port_stats[$index]['ifHCInUcastPkts'] = $airos_stats[0]['afLTUethRxPps'];
$port_stats[$index]['ifHCOutUcastPkts'] = $airos_stats[0]['afLTUethTxPps'];
$port_stats[$index]['ifHighSpeed'] = '1000';
break;
}
}
}
unset($airos_stats);

View File

@@ -1124,13 +1124,13 @@
"ifName": "eth0",
"portName": null,
"ifIndex": 2,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifSpeed": 1000000000,
"ifSpeed_prev": null,
"ifConnectorPresent": "true",
"ifPromiscuousMode": "false",
"ifHighSpeed": 0,
"ifHighSpeed": 1000,
"ifHighSpeed_prev": null,
"ifOperStatus": "down",
"ifOperStatus": "up",
"ifOperStatus_prev": "down",
"ifAdminStatus": "up",
"ifAdminStatus_prev": null,
@@ -1163,7 +1163,7 @@
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 6,
"ifOutUcastPkts": 0,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
@@ -1179,7 +1179,7 @@
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 540,
"ifOutOctets": 0,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
@@ -2159,54 +2159,6 @@
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "dbm",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.41112.1.10.1.2.6.0",
"sensor_index": "afLTUTxEIRP",
"sensor_type": "airos-af-ltu",
"sensor_descr": "Tx EIRP",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 28,
"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.41112.1.10.1.6.5.0",
"sensor_index": "afLTUethConnected",
"sensor_type": "afLTUethConnected",
"sensor_descr": "Ethernet port",
"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": "afLTUethConnected"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
@@ -2286,7 +2238,7 @@
"sensor_oid": ".1.3.6.1.4.1.41112.1.10.1.4.1.2.24.232.41.30.48.222",
"sensor_index": "2",
"sensor_type": "afLTUStaRxRate",
"sensor_descr": "Rx Modulation Rate",
"sensor_descr": "RX Modulation Rate",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
@@ -2310,7 +2262,7 @@
"sensor_oid": ".1.3.6.1.4.1.41112.1.10.1.4.1.1.24.232.41.30.48.222",
"sensor_index": "1",
"sensor_type": "afLTUStaTxRate",
"sensor_descr": "Tx Modulation Rate",
"sensor_descr": "TX Modulation Rate",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
@@ -2329,20 +2281,6 @@
}
],
"state_indexes": [
{
"state_name": "afLTUethConnected",
"state_descr": "Disconnected",
"state_draw_graph": 0,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "afLTUethConnected",
"state_descr": "Connected",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "afLTUgpsDimensions",
"state_descr": "Unknown",
@@ -2408,170 +2346,100 @@
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qPSK-SISO-1-4x",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qPSK-SISO-1x",
"state_descr": "1X (QPSK+SFBC)",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qPSK-MIMO-2x",
"state_descr": "2X (QPSK)",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM8-MIMO-3x",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM16-MIMO-4x",
"state_descr": "4X (16QAM)",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 1
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM32-MIMO-5x",
"state_descr": "6X (64QAM)",
"state_draw_graph": 1,
"state_value": 5,
"state_value": 6,
"state_generic_value": 1
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM64-MIMO-6x",
"state_draw_graph": 1,
"state_value": 6,
"state_generic_value": 0
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM128-MIMO-7x",
"state_draw_graph": 1,
"state_value": 7,
"state_generic_value": 0
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM256-MIMO-8x",
"state_descr": "8X (256QAM)",
"state_draw_graph": 1,
"state_value": 8,
"state_generic_value": 0
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM256-MIMO-9x",
"state_draw_graph": 1,
"state_value": 9,
"state_generic_value": 0
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM1024-MIMO-10x",
"state_descr": "10X (1024QAM)",
"state_draw_graph": 1,
"state_value": 10,
"state_generic_value": 0
},
{
"state_name": "afLTUStaRxRate",
"state_descr": "qAM2048-MIMO-11x",
"state_descr": "12X (4096QAM)",
"state_draw_graph": 1,
"state_value": 11,
"state_value": 12,
"state_generic_value": 0
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qPSK-SISO-1-4x",
"state_draw_graph": 1,
"state_value": 0,
"state_generic_value": 2
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qPSK-SISO-1x",
"state_descr": "1X (QPSK+SFBC)",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qPSK-MIMO-2x",
"state_descr": "2X (QPSK)",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM8-MIMO-3x",
"state_draw_graph": 1,
"state_value": 3,
"state_generic_value": 1
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM16-MIMO-4x",
"state_descr": "4X (16QAM)",
"state_draw_graph": 1,
"state_value": 4,
"state_generic_value": 1
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM32-MIMO-5x",
"state_descr": "6X (64QAM)",
"state_draw_graph": 1,
"state_value": 5,
"state_value": 6,
"state_generic_value": 1
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM64-MIMO-6x",
"state_draw_graph": 1,
"state_value": 6,
"state_generic_value": 0
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM128-MIMO-7x",
"state_draw_graph": 1,
"state_value": 7,
"state_generic_value": 0
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM256-MIMO-8x",
"state_descr": "8X (256QAM)",
"state_draw_graph": 1,
"state_value": 8,
"state_generic_value": 0
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM256-MIMO-9x",
"state_draw_graph": 1,
"state_value": 9,
"state_generic_value": 0
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM1024-MIMO-10x",
"state_descr": "10X (1024QAM)",
"state_draw_graph": 1,
"state_value": 10,
"state_generic_value": 0
},
{
"state_name": "afLTUStaTxRate",
"state_descr": "qAM2048-MIMO-11x",
"state_descr": "12X (4096QAM)",
"state_draw_graph": 1,
"state_value": 11,
"state_value": 12,
"state_generic_value": 0
}
]
@@ -2581,132 +2449,6 @@
"wireless": {
"discovery": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx",
"sensor_descr": "Tx Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 63488000,
"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.41112.1.10.1.4.1.3.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx",
"sensor_descr": "Rx Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 161280000,
"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.41112.1.10.1.4.1.4.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx-chain-0",
"sensor_descr": "Tx Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -47,
"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.41112.1.10.1.4.1.5.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx-chain-1",
"sensor_descr": "Tx Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -48,
"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.41112.1.10.1.4.1.6.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-tx-chain-0",
"sensor_descr": "Tx Ideal Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"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.41112.1.10.1.4.1.7.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-tx-chain-1",
"sensor_descr": "Tx Ideal Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"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.41112.1.10.1.4.1.8.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "quality",
@@ -2749,12 +2491,138 @@
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.41112.1.10.1.4.1.10.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx",
"sensor_descr": "TX Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 63488,
"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.41112.1.10.1.4.1.3.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx",
"sensor_descr": "RX Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 161280,
"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.41112.1.10.1.4.1.4.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx-chain-0",
"sensor_descr": "RX Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -47,
"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.41112.1.10.1.4.1.5.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx-chain-1",
"sensor_descr": "RX Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -48,
"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.41112.1.10.1.4.1.6.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-rx-chain-0",
"sensor_descr": "RX Ideal Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"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.41112.1.10.1.4.1.7.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-rx-chain-1",
"sensor_descr": "RX Ideal Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"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.41112.1.10.1.4.1.8.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx-eirp",
"sensor_descr": "Tx EIRP",
"sensor_descr": "TX EIRP",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2800,7 +2668,7 @@
"sensor_divisor": 1000,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10.955,
"sensor_current": 10955,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
@@ -2816,132 +2684,6 @@
},
"poller": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx",
"sensor_descr": "Tx Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 63488000,
"sensor_prev": 63488000,
"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.41112.1.10.1.4.1.3.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx",
"sensor_descr": "Rx Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 161280000,
"sensor_prev": 161280000,
"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.41112.1.10.1.4.1.4.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx-chain-0",
"sensor_descr": "Tx Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -47,
"sensor_prev": -47,
"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.41112.1.10.1.4.1.5.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx-chain-1",
"sensor_descr": "Tx Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -48,
"sensor_prev": -48,
"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.41112.1.10.1.4.1.6.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-tx-chain-0",
"sensor_descr": "Tx Ideal Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"sensor_prev": -51,
"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.41112.1.10.1.4.1.7.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-tx-chain-1",
"sensor_descr": "Tx Ideal Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"sensor_prev": -51,
"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.41112.1.10.1.4.1.8.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "quality",
@@ -2984,12 +2726,138 @@
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.41112.1.10.1.4.1.10.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx",
"sensor_descr": "TX Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 63488000,
"sensor_prev": 63488,
"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.41112.1.10.1.4.1.3.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx",
"sensor_descr": "RX Rate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 161280000,
"sensor_prev": 161280,
"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.41112.1.10.1.4.1.4.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx-chain-0",
"sensor_descr": "RX Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -47,
"sensor_prev": -47,
"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.41112.1.10.1.4.1.5.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-rx-chain-1",
"sensor_descr": "RX Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -48,
"sensor_prev": -48,
"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.41112.1.10.1.4.1.6.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-rx-chain-0",
"sensor_descr": "RX Ideal Power Chain 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"sensor_prev": -51,
"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.41112.1.10.1.4.1.7.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-ideal-rx-chain-1",
"sensor_descr": "RX Ideal Power Chain 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -51,
"sensor_prev": -51,
"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.41112.1.10.1.4.1.8.24.232.41.30.48.222\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "airos-af-ltu-tx-eirp",
"sensor_descr": "Tx EIRP",
"sensor_descr": "TX EIRP",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -3036,7 +2904,7 @@
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10.955,
"sensor_prev": 10.955,
"sensor_prev": 10955,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,

View File

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,338 @@
1.3.6.1.2.1.1.1.0|4|Linux PRIVATE 3.14.65 #1 SMP PREEMPT RT Wed May 13 13:37:04 UTC 2020 armv7l
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|11325578
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.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|eth0
1.3.6.1.2.1.2.2.1.2.4|4|ath0
1.3.6.1.2.1.2.2.1.2.5|4|ath0.2
1.3.6.1.2.1.2.2.1.2.6|4|br0
1.3.6.1.2.1.2.2.1.2.7|4|br2
1.3.6.1.2.1.2.2.1.2.8|4|br-mvlan
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|1500
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|1AE8291E4622
1.3.6.1.2.1.2.2.1.6.4|4x|18E8291E4622
1.3.6.1.2.1.2.2.1.6.5|4x|18E8291E4622
1.3.6.1.2.1.2.2.1.6.6|4x|18E8291E4622
1.3.6.1.2.1.2.2.1.6.7|4x|1AE8291E4622
1.3.6.1.2.1.2.2.1.6.8|4x|18E8291E4622
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.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|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|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|2
1.3.6.1.2.1.2.2.1.8.8|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.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|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.13.4|65|4
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|1002
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|41
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.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|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.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|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.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.4.20.1.2.10.15.5.232|2|8
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.192.168.2.20|2|7
1.3.6.1.2.1.4.20.1.3.10.15.5.232|64|255.255.0.0
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.2.20|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.8.10.15.1.11|4x|D6F4CBF76817
1.3.6.1.2.1.4.22.1.2.8.10.15.1.33|4x|26CAC38AA52E
1.3.6.1.2.1.4.22.1.2.8.10.15.109.1|4x|00032D3BC162
1.3.6.1.2.1.4.22.1.2.8.10.15.109.19|4x|00155D9B408B
1.3.6.1.2.1.25.1.1.0|67|236970390
1.3.6.1.2.1.25.1.4.0|4|boot_part=1 ver_boot_part0=af5xhd.amesoc3.v1.1.2.00057.1901 ver_boot_part1=af5xhd.amesoc3.v1.4.0.00043.2005 console=ttyAMA0,1152
1.3.6.1.2.1.25.1.5.0|66|0
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.769|2|769
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
1.3.6.1.2.1.25.3.2.1.1.1028|2|1028
1.3.6.1.2.1.25.3.2.1.1.1029|2|1029
1.3.6.1.2.1.25.3.2.1.1.1030|2|1030
1.3.6.1.2.1.25.3.2.1.1.1031|2|1031
1.3.6.1.2.1.25.3.2.1.1.1032|2|1032
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.769|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1028|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1029|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1030|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1031|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1032|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.3.768|4|
1.3.6.1.2.1.25.3.2.1.3.769|4|
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.1028|4|network interface ath0
1.3.6.1.2.1.25.3.2.1.3.1029|4|network interface ath0.2
1.3.6.1.2.1.25.3.2.1.3.1030|4|network interface br0
1.3.6.1.2.1.25.3.2.1.3.1031|4|network interface br2
1.3.6.1.2.1.25.3.2.1.3.1032|4|network interface br-mvlan
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
1.3.6.1.2.1.25.3.2.1.4.769|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1028|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1029|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1030|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1031|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1032|6|0.0
1.3.6.1.2.1.25.3.2.1.5.768|2|2
1.3.6.1.2.1.25.3.2.1.5.769|2|2
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
1.3.6.1.2.1.25.3.2.1.5.1026|2|2
1.3.6.1.2.1.25.3.2.1.5.1028|2|2
1.3.6.1.2.1.25.3.2.1.5.1029|2|2
1.3.6.1.2.1.25.3.2.1.5.1030|2|2
1.3.6.1.2.1.25.3.2.1.5.1031|2|2
1.3.6.1.2.1.25.3.2.1.5.1032|2|2
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
1.3.6.1.2.1.25.3.2.1.6.1028|65|0
1.3.6.1.2.1.25.3.2.1.6.1029|65|0
1.3.6.1.2.1.25.3.2.1.6.1030|65|0
1.3.6.1.2.1.25.3.2.1.6.1031|65|0
1.3.6.1.2.1.25.3.2.1.6.1032|65|0
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.1.769|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|91
1.3.6.1.2.1.25.3.3.1.2.769|2|22
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|eth0
1.3.6.1.2.1.31.1.1.1.1.4|4|ath0
1.3.6.1.2.1.31.1.1.1.1.5|4|ath0.2
1.3.6.1.2.1.31.1.1.1.1.6|4|br0
1.3.6.1.2.1.31.1.1.1.1.7|4|br2
1.3.6.1.2.1.31.1.1.1.1.8|4|br-mvlan
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|0
1.3.6.1.2.1.31.1.1.1.2.5|65|0
1.3.6.1.2.1.31.1.1.1.2.6|65|0
1.3.6.1.2.1.31.1.1.1.2.7|65|0
1.3.6.1.2.1.31.1.1.1.2.8|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|0
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|0
1.3.6.1.2.1.31.1.1.1.3.5|65|0
1.3.6.1.2.1.31.1.1.1.3.6|65|0
1.3.6.1.2.1.31.1.1.1.3.7|65|0
1.3.6.1.2.1.31.1.1.1.3.8|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|0
1.3.6.1.2.1.31.1.1.1.4.5|65|0
1.3.6.1.2.1.31.1.1.1.4.6|65|0
1.3.6.1.2.1.31.1.1.1.4.7|65|0
1.3.6.1.2.1.31.1.1.1.4.8|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|0
1.3.6.1.2.1.31.1.1.1.5.5|65|0
1.3.6.1.2.1.31.1.1.1.5.6|65|0
1.3.6.1.2.1.31.1.1.1.5.7|65|0
1.3.6.1.2.1.31.1.1.1.5.8|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|113097024
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.4|70|2078195879
1.3.6.1.2.1.31.1.1.1.6.5|70|1378728416
1.3.6.1.2.1.31.1.1.1.6.6|70|7488308384
1.3.6.1.2.1.31.1.1.1.6.7|70|0
1.3.6.1.2.1.31.1.1.1.6.8|70|1378728250
1.3.6.1.2.1.31.1.1.1.7.1|70|3949
1.3.6.1.2.1.31.1.1.1.7.2|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|102689312
1.3.6.1.2.1.31.1.1.1.7.5|70|16686889
1.3.6.1.2.1.31.1.1.1.7.6|70|85923977
1.3.6.1.2.1.31.1.1.1.7.7|70|0
1.3.6.1.2.1.31.1.1.1.7.8|70|16686886
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|0
1.3.6.1.2.1.31.1.1.1.8.5|70|0
1.3.6.1.2.1.31.1.1.1.8.6|70|0
1.3.6.1.2.1.31.1.1.1.8.7|70|0
1.3.6.1.2.1.31.1.1.1.8.8|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|0
1.3.6.1.2.1.31.1.1.1.9.5|70|0
1.3.6.1.2.1.31.1.1.1.9.6|70|0
1.3.6.1.2.1.31.1.1.1.9.7|70|0
1.3.6.1.2.1.31.1.1.1.9.8|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|113097024
1.3.6.1.2.1.31.1.1.1.10.2|70|540
1.3.6.1.2.1.31.1.1.1.10.4|70|1333238548
1.3.6.1.2.1.31.1.1.1.10.5|70|883257545
1.3.6.1.2.1.31.1.1.1.10.6|70|425204316
1.3.6.1.2.1.31.1.1.1.10.7|70|418
1.3.6.1.2.1.31.1.1.1.10.8|70|883260268
1.3.6.1.2.1.31.1.1.1.11.1|70|3949
1.3.6.1.2.1.31.1.1.1.11.2|70|6
1.3.6.1.2.1.31.1.1.1.11.4|70|6365103
1.3.6.1.2.1.31.1.1.1.11.5|70|5349611
1.3.6.1.2.1.31.1.1.1.11.6|70|976009
1.3.6.1.2.1.31.1.1.1.11.7|70|5
1.3.6.1.2.1.31.1.1.1.11.8|70|5349618
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|0
1.3.6.1.2.1.31.1.1.1.12.5|70|0
1.3.6.1.2.1.31.1.1.1.12.6|70|0
1.3.6.1.2.1.31.1.1.1.12.7|70|0
1.3.6.1.2.1.31.1.1.1.12.8|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|0
1.3.6.1.2.1.31.1.1.1.13.5|70|0
1.3.6.1.2.1.31.1.1.1.13.6|70|0
1.3.6.1.2.1.31.1.1.1.13.7|70|0
1.3.6.1.2.1.31.1.1.1.13.8|70|0
1.3.6.1.2.1.31.1.1.1.15.1|66|10
1.3.6.1.2.1.31.1.1.1.15.2|66|0
1.3.6.1.2.1.31.1.1.1.15.4|66|1000
1.3.6.1.2.1.31.1.1.1.15.5|66|1000
1.3.6.1.2.1.31.1.1.1.15.6|66|0
1.3.6.1.2.1.31.1.1.1.15.7|66|0
1.3.6.1.2.1.31.1.1.1.15.8|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.2|2|2
1.3.6.1.2.1.31.1.1.1.16.4|2|2
1.3.6.1.2.1.31.1.1.1.16.5|2|2
1.3.6.1.2.1.31.1.1.1.16.6|2|2
1.3.6.1.2.1.31.1.1.1.16.7|2|2
1.3.6.1.2.1.31.1.1.1.16.8|2|2
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.17.4|2|1
1.3.6.1.2.1.31.1.1.1.17.5|2|1
1.3.6.1.2.1.31.1.1.1.17.6|2|1
1.3.6.1.2.1.31.1.1.1.17.7|2|1
1.3.6.1.2.1.31.1.1.1.17.8|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.18.4|4|
1.3.6.1.2.1.31.1.1.1.18.5|4|
1.3.6.1.2.1.31.1.1.1.18.6|4|
1.3.6.1.2.1.31.1.1.1.18.7|4|
1.3.6.1.2.1.31.1.1.1.18.8|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.1.1.19.4|67|0
1.3.6.1.2.1.31.1.1.1.19.5|67|0
1.3.6.1.2.1.31.1.1.1.19.6|67|0
1.3.6.1.2.1.31.1.1.1.19.7|67|0
1.3.6.1.2.1.31.1.1.1.19.8|67|0
1.3.6.1.4.1.2021.4.3.0|2|0
1.3.6.1.4.1.2021.4.4.0|2|0
1.3.6.1.4.1.2021.4.5.0|2|247768
1.3.6.1.4.1.2021.4.6.0|2|51148
1.3.6.1.4.1.2021.4.11.0|2|51148
1.3.6.1.4.1.2021.4.13.0|2|0
1.3.6.1.4.1.2021.4.14.0|2|6228
1.3.6.1.4.1.2021.4.15.0|2|17224
1.3.6.1.4.1.2021.10.1.5.1|2|455
1.3.6.1.4.1.2021.10.1.5.2|2|440
1.3.6.1.4.1.2021.10.1.5.3|2|441
1.3.6.1.4.1.2021.11.1.0|2|1
1.3.6.1.4.1.2021.11.2.0|4|systemStats
1.3.6.1.4.1.2021.11.3.0|2|0
1.3.6.1.4.1.2021.11.4.0|2|0
1.3.6.1.4.1.2021.11.5.0|2|0
1.3.6.1.4.1.2021.11.6.0|2|0
1.3.6.1.4.1.2021.11.7.0|2|4067
1.3.6.1.4.1.2021.11.8.0|2|10923
1.3.6.1.4.1.2021.11.9.0|2|4
1.3.6.1.4.1.2021.11.10.0|2|51
1.3.6.1.4.1.2021.11.11.0|2|43
1.3.6.1.4.1.2021.11.50.0|65|24577449
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|54768819
1.3.6.1.4.1.2021.11.53.0|65|394319940
1.3.6.1.4.1.2021.11.54.0|65|3989
1.3.6.1.4.1.2021.11.55.0|65|0
1.3.6.1.4.1.2021.11.56.0|65|0
1.3.6.1.4.1.2021.11.57.0|65|0
1.3.6.1.4.1.2021.11.58.0|65|112850
1.3.6.1.4.1.2021.11.59.0|65|2153744724
1.3.6.1.4.1.2021.11.60.0|65|3711432041
1.3.6.1.4.1.2021.11.61.0|65|270007
1.3.6.1.4.1.2021.11.62.0|65|0
1.3.6.1.4.1.2021.11.63.0|65|0
1.3.6.1.4.1.41112.1.10.1.2.1.0|2|0
1.3.6.1.4.1.41112.1.10.1.2.2.0|2|5795
1.3.6.1.4.1.41112.1.10.1.2.6.0|2|18
1.3.6.1.4.1.41112.1.10.1.3.2.0|4|airFiber 5XHD
1.3.6.1.4.1.41112.1.10.1.3.4.0|4|v1.4.0
1.3.6.1.4.1.41112.1.10.1.4.1.1.24.232.41.30.56.214|2|10
1.3.6.1.4.1.41112.1.10.1.4.1.2.24.232.41.30.56.214|2|10
1.3.6.1.4.1.41112.1.10.1.4.1.3.24.232.41.30.56.214|2|140800
1.3.6.1.4.1.41112.1.10.1.4.1.4.24.232.41.30.56.214|2|444800
1.3.6.1.4.1.41112.1.10.1.4.1.5.24.232.41.30.56.214|2|-57
1.3.6.1.4.1.41112.1.10.1.4.1.6.24.232.41.30.56.214|2|-48
1.3.6.1.4.1.41112.1.10.1.4.1.7.24.232.41.30.56.214|2|-99
1.3.6.1.4.1.41112.1.10.1.4.1.8.24.232.41.30.56.214|2|-99
1.3.6.1.4.1.41112.1.10.1.4.1.9.24.232.41.30.56.214|2|0
1.3.6.1.4.1.41112.1.10.1.4.1.10.24.232.41.30.56.214|2|0
1.3.6.1.4.1.41112.1.10.1.4.1.23.24.232.41.30.56.214|2|3844
1.3.6.1.4.1.41112.1.10.1.6.1.0|70|1386480001277
1.3.6.1.4.1.41112.1.10.1.6.2.0|2|2292
1.3.6.1.4.1.41112.1.10.1.6.3.0|70|22098571397723
1.3.6.1.4.1.41112.1.10.1.6.4.0|2|4631
1.3.6.1.4.1.41112.1.10.1.6.5.0|2|1
1.3.6.1.4.1.41112.1.10.1.7.1.0|2|2
1.3.6.1.4.1.41112.1.10.1.7.2.0|2|3
1.3.6.1.4.1.41112.1.10.1.7.7.0|2|12
1.3.6.1.4.1.41112.1.10.1.7.8.0|2|10