From 54e5dc3df7d70592626ba4b73d32db391a41e7cc Mon Sep 17 00:00:00 2001 From: arrmo Date: Wed, 5 Aug 2020 14:24:55 -0500 Subject: [PATCH] Wireless support for Asuswrt-Merlin (the same as Openwrt) (#11964) --- LibreNMS/OS/AsuswrtMerlin.php | 170 +++ doc/Support/Device-Notes/AsuswrtMerlin.md | 128 +++ includes/polling/os/asuswrt-merlin.inc.php | 28 - tests/data/asuswrt-merlin.json | 1168 +++++++++++++++++++- tests/snmpsim/asuswrt-merlin.snmprec | 269 +++-- 5 files changed, 1560 insertions(+), 203 deletions(-) create mode 100644 LibreNMS/OS/AsuswrtMerlin.php create mode 100644 doc/Support/Device-Notes/AsuswrtMerlin.md delete mode 100644 includes/polling/os/asuswrt-merlin.inc.php diff --git a/LibreNMS/OS/AsuswrtMerlin.php b/LibreNMS/OS/AsuswrtMerlin.php new file mode 100644 index 0000000000..1a4a760e21 --- /dev/null +++ b/LibreNMS/OS/AsuswrtMerlin.php @@ -0,0 +1,170 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2017 Tony Murray + * @author Tony Murray + */ + +namespace LibreNMS\OS; + +use LibreNMS\Device\WirelessSensor; +use LibreNMS\Interfaces\Discovery\OSDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessNoiseFloorDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery; +use LibreNMS\OS; + +class AsuswrtMerlin extends OS implements + OSDiscovery, + WirelessClientsDiscovery, + WirelessFrequencyDiscovery, + WirelessNoiseFloorDiscovery, + WirelessRateDiscovery, + WirelessSnrDiscovery +{ + /** + * Retrieve basic information about the OS / device + */ + public function discoverOS(): void + { + $device = $this->getDeviceModel(); + $info = explode(' ', trim(snmp_get($this->getDevice(), '.1.3.6.1.4.1.2021.7890.1.101.1', '-Osqnv'), '"')); + $device->hardware = $info[1]; + $device->version = $info[2]; + } + + /** + * Retrieve (and explode to array) list of network interfaces, and desired display name in LibreNMS. + * This information is returned from the wireless device (router / AP) - as SNMP extend, with the name "interfaces". + * + * @return array Interfaces + */ + private function getInterfaces() + { + // Need to use PHP_EOL, found newline (\n) not near as reliable / consistent! And this is as PHP says it should be done. + $interfaces = explode(PHP_EOL, snmp_get($this->getDevice(), 'NET-SNMP-EXTEND-MIB::nsExtendOutputFull."interfaces"', '-Osqnv')); + $arrIfaces = array(); + foreach ($interfaces as $interface) { + list($k, $v) = explode(',', $interface); + $arrIfaces[$k] = $v; + } + return $arrIfaces; + } + + /** + * Generic (common / shared) routine, to create new Wireless Sensors, of the sensor Type passed as the call argument. + * type - string, matching to LibreNMS documentation => https://docs.librenms.org/Developing/os/Wireless-Sensors/ + * query - string, query to be used at client (appends to type string, e.g. -tx, -rx) + * system - boolean, flag to indicate that a combined ("system level") sensor (and OID) is to be added + * stats - boolean, flag denoting that statistics are to be retrieved (min, max, avg) + * NOTE: system and stats are assumed to be mutually exclusive (at least for now!) + * + * @return array Sensors + */ + private function getSensorData($type, $query = '', $system = false, $stats = false) + { + // Initialize needed variables, and get interfaces (actual network name, and LibreNMS name) + $sensors = array(); + $interfaces = $this->getInterfaces(); + $count = 1; + + // Build array for stats - if desired + $statstr = ['']; + if ($stats) { + $statstr = ['-min', '-max', '-avg']; + } + + // Loop over interfaces, adding sensors + foreach ($interfaces as $index => $interface) { + // Loop over stats, appending to sensors as needed (only a single, blank, addition if no stats) + foreach ($statstr as $stat) { + $oid = "NET-SNMP-EXTEND-MIB::nsExtendOutput1Line.\"$type$query-$index$stat\""; + $sensors[] = new WirelessSensor($type, $this->getDeviceId(), snmp_translate($oid), "openwrt$query", $count, "$interface$query$stat"); + $count += 1; + } + } + // If system level (i.e. overall) sensor desired, add that one as well + if ($system and (count($interfaces) > 1)) { + $oid = "NET-SNMP-EXTEND-MIB::nsExtendOutput1Line.\"$type$query-wlan\""; + $sensors[] = new WirelessSensor($type, $this->getDeviceId(), snmp_translate($oid), "openwrt$query", $count, 'wlan'); + } + + // And, return all the sensors that have been created above (i.e. the array of sensors) + return $sensors; + } + + /** + * Discover wireless client counts. Type is clients. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array Sensors + */ + public function discoverWirelessClients() + { + return $this->getSensorData('clients', '', true, false); + } + + /** + * Discover wireless frequency. This is in MHz. Type is frequency. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array Sensors + */ + public function discoverWirelessFrequency() + { + return $this->getSensorData('frequency', '', false, false); + } + + /** + * Discover wireless noise floor. This is in dBm. Type is noise-floor. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array Sensors + */ + public function discoverWirelessNoiseFloor() + { + return $this->getSensorData('noise-floor', '', false, false); + } + + /** + * Discover wireless rate. This is in bps. Type is rate. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessRate() + { + $txrate = $this->getSensorData('rate', '-tx', false, true); + $rxrate = $this->getSensorData('rate', '-rx', false, true); + return array_merge($txrate, $rxrate); + } + + /** + * Discover wireless snr. This is in dB. Type is snr. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessSNR() + { + return $this->getSensorData('snr', '', false, true); + } +} diff --git a/doc/Support/Device-Notes/AsuswrtMerlin.md b/doc/Support/Device-Notes/AsuswrtMerlin.md new file mode 100644 index 0000000000..6c9fa9a924 --- /dev/null +++ b/doc/Support/Device-Notes/AsuswrtMerlin.md @@ -0,0 +1,128 @@ +source: doc/Support/Device-Notes/AsuswrtMerlin.md +path: blob/master/doc/ + +To use Wireless Sensors on AsuswrtMerlin, an agent of sorts is required. The +purpose of the agent is to execute on the client (AsuswrtMerlin) side, to ensure +that the needed Wireless Sensor information is returned for SNMP queries (from LibreNMS). + +# Installation + +## AsuswrtMerlin + +Two items are required on the AsuswrtMerlin side - scripts to generate the necessary information (for +SNMP replies), and an SNMP extend configuration update (to return the information vs. the expected +query). + +1: Install the scripts: + +Copy the scripts from librenms-agent/snmp/Openwrt - preferably inside /etc/librenms on AsuswrtMerlin (and add this +directory to /etc/sysupgrade.conf, to survive firmware updates). + +The only file that needs to be edited is wlInterfaces.txt, which is a mapping from the wireless interfaces, to +the desired display name in LibreNMS. For example, +``` +wlan0,wl-2.4G +wlan1,wl-5.0G +``` + +2: Update the AsuswrtMerlin SNMP configuration, adding extend support for the Wireless Sensor queries: + +`vi /etc/config/snmpd`, adding the following entries (assuming the scripts are installed in /etc/librenms, and are executable), +and update the network interfaces as needed to match the hardware, + +``` +config extend + option name interfaces + option prog "/bin/cat /etc/librenms/wlInterfaces.txt" +config extend + option name clients-wlan0 + option prog "/etc/librenms/wlClients.sh wlan0" +config extend + option name clients-wlan1 + option prog "/etc/librenms/wlClients.sh wlan1" +config extend + option name clients-wlan + option prog "/etc/librenms/wlClients.sh" +config extend + option name frequency-wlan0 + option prog "/etc/librenms/wlFrequency.sh wlan0" +config extend + option name frequency-wlan1 + option prog "/etc/librenms/wlFrequency.sh wlan1" +config extend + option name rate-tx-wlan0-min + option prog "/etc/librenms/wlRate.sh wlan0 tx min" +config extend + option name rate-tx-wlan0-avg + option prog "/etc/librenms/wlRate.sh wlan0 tx avg" +config extend + option name rate-tx-wlan0-max + option prog "/etc/librenms/wlRate.sh wlan0 tx max" +config extend + option name rate-tx-wlan1-min + option prog "/etc/librenms/wlRate.sh wlan1 tx min" +config extend + option name rate-tx-wlan1-avg + option prog "/etc/librenms/wlRate.sh wlan1 tx avg" +config extend + option name rate-tx-wlan1-max + option prog "/etc/librenms/wlRate.sh wlan1 tx max" +config extend + option name rate-rx-wlan0-min + option prog "/etc/librenms/wlRate.sh wlan0 rx min" +config extend + option name rate-rx-wlan0-avg + option prog "/etc/librenms/wlRate.sh wlan0 rx avg" +config extend + option name rate-rx-wlan0-max + option prog "/etc/librenms/wlRate.sh wlan0 rx max" +config extend + option name rate-rx-wlan1-min + option prog "/etc/librenms/wlRate.sh wlan1 rx min" +config extend + option name rate-rx-wlan1-avg + option prog "/etc/librenms/wlRate.sh wlan1 rx avg" +config extend + option name rate-rx-wlan1-max + option prog "/etc/librenms/wlRate.sh wlan1 rx max" +config extend + option name noise-floor-wlan0 + option prog "/etc/librenms/wlNoiseFloor.sh wlan0" +config extend + option name noise-floor-wlan1 + option prog "/etc/librenms/wlNoiseFloor.sh wlan1" +config extend + option name snr-wlan0-min + option prog "/etc/librenms/wlSNR.sh wlan0 min" +config extend + option name snr-wlan0-avg + option prog "/etc/librenms/wlSNR.sh wlan0 avg" +config extend + option name snr-wlan0-max + option prog "/etc/librenms/wlSNR.sh wlan0 max" +config extend + option name snr-wlan1-min + option prog "/etc/librenms/wlSNR.sh wlan1 min" +config extend + option name snr-wlan1-avg + option prog "/etc/librenms/wlSNR.sh wlan1 avg" +config extend + option name snr-wlan1-max + option prog "/etc/librenms/wlSNR.sh wlan1 max" +``` + +NOTE, any of the scripts above can be tested simply by running the corresponding command. + +NOTE, to check the output data from any of these extensions, on the LibreNMS machine, run (for example), + +`snmpwalk -v 2c -c public -Osqnv 'NET-SNMP-EXTEND-MIB::nsExtendOutputFull."frequency-wlan0"'` + +NOTE, on the LibreNMS machine, ensure that snmp-mibs-downloader is installed. + +NOTE, on the AsuswrtMerlin machine, ensure that distro is installed (i.e. that the OS is correctly detected!). + +3: Restart the snmp service on AsuswrtMerlin: + +`service snmpd restart` + +And then wait for discovery and polling on LibreNMS! diff --git a/includes/polling/os/asuswrt-merlin.inc.php b/includes/polling/os/asuswrt-merlin.inc.php deleted file mode 100644 index e236d507b7..0000000000 --- a/includes/polling/os/asuswrt-merlin.inc.php +++ /dev/null @@ -1,28 +0,0 @@ -. - * - * @package LibreNMS - * @link http://librenms.org - * @copyright 2016 Neil Lathwood - * @author Neil Lathwood - */ - -list($ignore, $hardware, $version) = explode(' ', trim(snmp_get($device, '.1.3.6.1.4.1.2021.7890.1.101.1', '-Osqnv'), '"')); - -unset($ignore); diff --git a/tests/data/asuswrt-merlin.json b/tests/data/asuswrt-merlin.json index ba467f9525..d108d2ac08 100644 --- a/tests/data/asuswrt-merlin.json +++ b/tests/data/asuswrt-merlin.json @@ -5,10 +5,10 @@ { "sysName": "", "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", - "sysDescr": "Linux wap-livingroom 2.6.36.4brcmarm #1 SMP PREEMPT Sun Apr 5 13:44:06 EDT 2020 armv7l", + "sysDescr": "Linux wap-familyroom 2.6.36.4brcmarm #1 SMP PREEMPT Sat Apr 25 22:35:50 EDT 2020 armv7l", "sysContact": null, - "version": null, - "hardware": null, + "version": "384.17_0", + "hardware": "RT-AC68U", "features": null, "os": "asuswrt-merlin", "type": "network", @@ -23,9 +23,9 @@ { "sysName": "", "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", - "sysDescr": "Linux wap-livingroom 2.6.36.4brcmarm #1 SMP PREEMPT Sun Apr 5 13:44:06 EDT 2020 armv7l", + "sysDescr": "Linux wap-familyroom 2.6.36.4brcmarm #1 SMP PREEMPT Sat Apr 25 22:35:50 EDT 2020 armv7l", "sysContact": "", - "version": "384.16_0", + "version": "384.17_0", "hardware": "RT-AC68U", "features": null, "os": "asuswrt-merlin", @@ -1159,11 +1159,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 858987, + "ifInUcastPkts": 28493024, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 858987, + "ifOutUcastPkts": 28493024, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -1175,11 +1175,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 205258713, + "ifInOctets": 15512145815, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 205258713, + "ifOutOctets": 15512145815, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1245,7 +1245,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "ifb0", - "ifPhysAddress": "ca97d241b6de", + "ifPhysAddress": "521e24b815be", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -1352,7 +1352,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "ifb1", - "ifPhysAddress": "aa7272698f48", + "ifPhysAddress": "fea008daa94f", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -1459,7 +1459,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "eth0", - "ifPhysAddress": "54a050cf95d0", + "ifPhysAddress": "7824afd36da8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -1480,11 +1480,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 7766530, + "ifInUcastPkts": 724046719, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 4323602, + "ifOutUcastPkts": 351626938, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -1492,15 +1492,15 @@ "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": 0, + "ifOutErrors": 50138, "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1630399952, + "ifInOctets": 1067791273, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 928503584, + "ifOutOctets": 2411010965, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1673,7 +1673,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "eth1", - "ifPhysAddress": "54a050cf95d0", + "ifPhysAddress": "7824afd36da8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -1694,27 +1694,27 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1952875, + "ifInUcastPkts": 12705849, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 5137251, + "ifOutUcastPkts": 42322680, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": 0, + "ifInErrors": 9, "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": 181, + "ifOutErrors": 2993, "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 336870161, + "ifInOctets": 2288743077, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 3338930160, + "ifOutOctets": 3798171249, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1780,7 +1780,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "eth2", - "ifPhysAddress": "54a050cf95d4", + "ifPhysAddress": "7824afd36dac", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -1801,11 +1801,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1956821, + "ifInUcastPkts": 339358288, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 4650242, + "ifOutUcastPkts": 382517817, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -1813,15 +1813,15 @@ "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": 270, + "ifOutErrors": 1849, "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 329935693, + "ifInOctets": 3097051362, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 3181201949, + "ifOutOctets": 3998720963, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1887,7 +1887,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "vlan1", - "ifPhysAddress": "54a050cf95d0", + "ifPhysAddress": "7824afd36da8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -1908,11 +1908,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 5617691, + "ifInUcastPkts": 706958314, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 4323602, + "ifOutUcastPkts": 351626938, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -1924,11 +1924,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 5785567944, + "ifInOctets": 1023121412241, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 928503584, + "ifOutOctets": 36770749333, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1961,7 +1961,7 @@ "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": 2148821, + "ifInMulticastPkts": 17086500, "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, @@ -1994,7 +1994,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "vlan2", - "ifPhysAddress": "54a050cf95d0", + "ifPhysAddress": "7824afd36da8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -2101,7 +2101,7 @@ "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "br0", - "ifPhysAddress": "54a050cf95d0", + "ifPhysAddress": "7824afd36da8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -2122,11 +2122,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 3432037, + "ifInUcastPkts": 27695117, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 389326, + "ifOutUcastPkts": 782124, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -2138,11 +2138,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 595569856, + "ifInOctets": 6367802617, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 240435122, + "ifOutOctets": 173472242, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -2196,7 +2196,7 @@ "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196608", "processor_index": "196608", "processor_type": "hr", - "processor_usage": 7, + "processor_usage": 28, "processor_descr": "Processor", "processor_precision": 1, "processor_perc_warn": 75 @@ -2207,7 +2207,7 @@ "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196609", "processor_index": "196609", "processor_type": "hr", - "processor_usage": 5, + "processor_usage": 30, "processor_descr": "Processor", "processor_precision": 1, "processor_perc_warn": 75 @@ -2278,9 +2278,9 @@ "mempool_type": "hrstorage", "mempool_precision": 1024, "mempool_descr": "Physical memory", - "mempool_perc": 19, - "mempool_used": 48947200, - "mempool_free": 212865024, + "mempool_perc": 24, + "mempool_used": 61698048, + "mempool_free": 200114176, "mempool_total": 261812224, "mempool_largestfree": null, "mempool_lowestfree": null, @@ -2294,9 +2294,9 @@ "mempool_type": "hrstorage", "mempool_precision": 1024, "mempool_descr": "Virtual memory", - "mempool_perc": 19, - "mempool_used": 48947200, - "mempool_free": 212865024, + "mempool_perc": 24, + "mempool_used": 61698048, + "mempool_free": 200114176, "mempool_total": 261812224, "mempool_largestfree": null, "mempool_lowestfree": null, @@ -2345,7 +2345,7 @@ "storage_descr": "/jffs", "storage_size": 65798144, "storage_units": 4096, - "storage_used": 1769472, + "storage_used": 2625536, "storage_free": 0, "storage_perc": 0, "storage_perc_warn": 60, @@ -2375,13 +2375,1073 @@ "storage_descr": "/jffs", "storage_size": 65798144, "storage_units": 4096, - "storage_used": 1769472, - "storage_free": 64028672, - "storage_perc": 3, + "storage_used": 2625536, + "storage_free": 63172608, + "storage_perc": 4, "storage_perc_warn": 60, "storage_deleted": 0 } ] } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 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.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.101.116.104.49\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1, + "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.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.101.116.104.50\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "3", + "sensor_type": "openwrt", + "sensor_descr": "wlan", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 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.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.119.108.97.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "1", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-2.4G-tx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1000000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "2", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-2.4G-tx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 144400000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "3", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-2.4G-tx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 80400000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "4", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-5.0G-tx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "5", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-5.0G-tx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "6", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-5.0G-tx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "1", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-2.4G-rx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1000000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "2", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-2.4G-rx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 130000000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "3", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-2.4G-rx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 51050000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "4", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-5.0G-rx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "5", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-5.0G-rx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "6", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-5.0G-rx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 16, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 44, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "3", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 33, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "4", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 37, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "5", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 37, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "6", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 37, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -85, + "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.8072.1.3.2.3.1.1.16.110.111.105.115.101.45.102.108.111.111.114.45.101.116.104.49\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -92, + "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.8072.1.3.2.3.1.1.16.110.111.105.115.101.45.102.108.111.111.114.45.101.116.104.50\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 2447, + "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.8072.1.3.2.3.1.1.14.102.114.101.113.117.101.110.99.121.45.101.116.104.49\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5745, + "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.8072.1.3.2.3.1.1.14.102.114.101.113.117.101.110.99.121.45.101.116.104.50\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 4, + "sensor_prev": 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.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.101.116.104.49\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1, + "sensor_prev": 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_oids": "[\".1.3.6.1.4.1.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.101.116.104.50\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "3", + "sensor_type": "openwrt", + "sensor_descr": "wlan", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5, + "sensor_prev": 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.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.119.108.97.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "1", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-2.4G-tx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1000000, + "sensor_prev": 1000000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "2", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-2.4G-tx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 144400000, + "sensor_prev": 144400000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "3", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-2.4G-tx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 80400000, + "sensor_prev": 80400000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "4", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-5.0G-tx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "sensor_prev": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "5", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-5.0G-tx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "sensor_prev": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "6", + "sensor_type": "openwrt-tx", + "sensor_descr": "wl-5.0G-tx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "sensor_prev": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "1", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-2.4G-rx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1000000, + "sensor_prev": 1000000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "2", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-2.4G-rx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 130000000, + "sensor_prev": 130000000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "3", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-2.4G-rx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 51050000, + "sensor_prev": 51050000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "4", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-5.0G-rx-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "sensor_prev": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "5", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-5.0G-rx-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "sensor_prev": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "6", + "sensor_type": "openwrt-rx", + "sensor_descr": "wl-5.0G-rx-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 433300000, + "sensor_prev": 433300000, + "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.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 16, + "sensor_prev": 16, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 44, + "sensor_prev": 44, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "3", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 33, + "sensor_prev": 33, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "4", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G-min", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 37, + "sensor_prev": 37, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.109.105.110\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "5", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G-max", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 37, + "sensor_prev": 37, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.109.97.120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "6", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G-avg", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 37, + "sensor_prev": 37, + "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.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.97.118.103\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -85, + "sensor_prev": -85, + "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.8072.1.3.2.3.1.1.16.110.111.105.115.101.45.102.108.111.111.114.45.101.116.104.49\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -92, + "sensor_prev": -92, + "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.8072.1.3.2.3.1.1.16.110.111.105.115.101.45.102.108.111.111.114.45.101.116.104.50\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "1", + "sensor_type": "openwrt", + "sensor_descr": "wl-2.4G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 2447, + "sensor_prev": 2447, + "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.8072.1.3.2.3.1.1.14.102.114.101.113.117.101.110.99.121.45.101.116.104.49\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "2", + "sensor_type": "openwrt", + "sensor_descr": "wl-5.0G", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5745, + "sensor_prev": 5745, + "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.8072.1.3.2.3.1.1.14.102.114.101.113.117.101.110.99.121.45.101.116.104.50\"]" + } + ] + } } } diff --git a/tests/snmpsim/asuswrt-merlin.snmprec b/tests/snmpsim/asuswrt-merlin.snmprec index 2a22ae773c..0d12607969 100644 --- a/tests/snmpsim/asuswrt-merlin.snmprec +++ b/tests/snmpsim/asuswrt-merlin.snmprec @@ -1,6 +1,6 @@ -1.3.6.1.2.1.1.1.0|4|Linux wap-livingroom 2.6.36.4brcmarm #1 SMP PREEMPT Sun Apr 5 13:44:06 EDT 2020 armv7l +1.3.6.1.2.1.1.1.0|4|Linux wap-familyroom 2.6.36.4brcmarm #1 SMP PREEMPT Sat Apr 25 22:35:50 EDT 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|37844059 +1.3.6.1.2.1.1.3.0|67|183954566 1.3.6.1.2.1.1.4.0|4| 1.3.6.1.2.1.1.5.0|4| 1.3.6.1.2.1.1.6.0|4| @@ -35,15 +35,15 @@ 1.3.6.1.2.1.2.2.1.4.9|2|1500 1.3.6.1.2.1.2.2.1.4.10|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|CA97D241B6DE -1.3.6.1.2.1.2.2.1.6.3|4x|AA7272698F48 -1.3.6.1.2.1.2.2.1.6.4|4x|54A050CF95D0 +1.3.6.1.2.1.2.2.1.6.2|4x|521E24B815BE +1.3.6.1.2.1.2.2.1.6.3|4x|FEA008DAA94F +1.3.6.1.2.1.2.2.1.6.4|4x|7824AFD36DA8 1.3.6.1.2.1.2.2.1.6.5|4| -1.3.6.1.2.1.2.2.1.6.6|4x|54A050CF95D0 -1.3.6.1.2.1.2.2.1.6.7|4x|54A050CF95D4 -1.3.6.1.2.1.2.2.1.6.8|4x|54A050CF95D0 -1.3.6.1.2.1.2.2.1.6.9|4x|54A050CF95D0 -1.3.6.1.2.1.2.2.1.6.10|4x|54A050CF95D0 +1.3.6.1.2.1.2.2.1.6.6|4x|7824AFD36DA8 +1.3.6.1.2.1.2.2.1.6.7|4x|7824AFD36DAC +1.3.6.1.2.1.2.2.1.6.8|4x|7824AFD36DA8 +1.3.6.1.2.1.2.2.1.6.9|4x|7824AFD36DA8 +1.3.6.1.2.1.2.2.1.6.10|4x|7824AFD36DA8 1.3.6.1.2.1.2.2.1.7.1|2|1 1.3.6.1.2.1.2.2.1.7.2|2|2 1.3.6.1.2.1.2.2.1.7.3|2|2 @@ -89,7 +89,7 @@ 1.3.6.1.2.1.2.2.1.14.3|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.6|65|9 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.14.9|65|0 @@ -107,75 +107,76 @@ 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.3|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.4|65|50138 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|181 -1.3.6.1.2.1.2.2.1.20.7|65|270 +1.3.6.1.2.1.2.2.1.20.6|65|2993 +1.3.6.1.2.1.2.2.1.20.7|65|1849 1.3.6.1.2.1.2.2.1.20.8|65|0 1.3.6.1.2.1.2.2.1.20.9|65|0 1.3.6.1.2.1.2.2.1.20.10|65|0 -1.3.6.1.2.1.4.3.0|65|3247896 -1.3.6.1.2.1.4.4.0|65|1 -1.3.6.1.2.1.4.5.0|65|61 +1.3.6.1.2.1.4.3.0|65|46941405 +1.3.6.1.2.1.4.4.0|65|88 +1.3.6.1.2.1.4.5.0|65|635 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|3072634 -1.3.6.1.2.1.4.10.0|65|1227409 -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.9.0|65|46008641 +1.3.6.1.2.1.4.10.0|65|29242093 +1.3.6.1.2.1.4.11.0|65|2 +1.3.6.1.2.1.4.12.0|65|6544 +1.3.6.1.2.1.4.14.0|65|4 +1.3.6.1.2.1.4.15.0|65|2 1.3.6.1.2.1.4.16.0|65|0 1.3.6.1.2.1.4.17.0|65|0 1.3.6.1.2.1.4.18.0|65|0 1.3.6.1.2.1.4.19.0|65|0 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.127.0.1.1|2|1 -1.3.6.1.2.1.4.20.1.2.192.168.2.193|2|10 +1.3.6.1.2.1.4.20.1.2.192.168.2.192|2|10 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.127.0.1.1|64|255.0.0.0 -1.3.6.1.2.1.4.20.1.3.192.168.2.193|64|255.255.255.0 -1.3.6.1.2.1.4.22.1.2.10.192.168.2.64|4x|7085C2FC2198 -1.3.6.1.2.1.5.1.0|65|288475 -1.3.6.1.2.1.5.2.0|65|0 -1.3.6.1.2.1.5.3.0|65|284599 +1.3.6.1.2.1.4.20.1.3.192.168.2.192|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.10.192.168.2.1|4x|DC0EA12E0A70 +1.3.6.1.2.1.4.22.1.2.10.192.168.2.64|4x|001B21110531 +1.3.6.1.2.1.5.1.0|65|57636 +1.3.6.1.2.1.5.2.0|65|3 +1.3.6.1.2.1.5.3.0|65|40083 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|3876 +1.3.6.1.2.1.5.8.0|65|17553 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|288475 +1.3.6.1.2.1.5.14.0|65|17571 1.3.6.1.2.1.5.15.0|65|0 -1.3.6.1.2.1.5.16.0|65|284599 +1.3.6.1.2.1.5.16.0|65|18 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|3876 +1.3.6.1.2.1.5.22.0|65|17553 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.5.29.1.2.1|65|288475 +1.3.6.1.2.1.5.29.1.2.1|65|57636 1.3.6.1.2.1.5.29.1.2.2|65|0 -1.3.6.1.2.1.5.29.1.3.1|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|3 1.3.6.1.2.1.5.29.1.3.2|65|0 -1.3.6.1.2.1.5.29.1.4.1|65|288475 +1.3.6.1.2.1.5.29.1.4.1|65|17571 1.3.6.1.2.1.5.29.1.4.2|65|0 1.3.6.1.2.1.5.29.1.5.1|65|0 1.3.6.1.2.1.5.29.1.5.2|65|0 1.3.6.1.2.1.5.30.1.3.1.0|65|0 -1.3.6.1.2.1.5.30.1.3.1.3|65|284599 +1.3.6.1.2.1.5.30.1.3.1.3|65|40083 1.3.6.1.2.1.5.30.1.3.1.4|65|0 1.3.6.1.2.1.5.30.1.3.1.5|65|0 -1.3.6.1.2.1.5.30.1.3.1.8|65|3876 +1.3.6.1.2.1.5.30.1.3.1.8|65|17553 1.3.6.1.2.1.5.30.1.3.1.11|65|0 1.3.6.1.2.1.5.30.1.3.1.12|65|0 1.3.6.1.2.1.5.30.1.3.1.13|65|0 @@ -196,8 +197,8 @@ 1.3.6.1.2.1.5.30.1.3.2.135|65|0 1.3.6.1.2.1.5.30.1.3.2.136|65|0 1.3.6.1.2.1.5.30.1.3.2.137|65|0 -1.3.6.1.2.1.5.30.1.4.1.0|65|3876 -1.3.6.1.2.1.5.30.1.4.1.3|65|284599 +1.3.6.1.2.1.5.30.1.4.1.0|65|17553 +1.3.6.1.2.1.5.30.1.4.1.3|65|18 1.3.6.1.2.1.5.30.1.4.1.4|65|0 1.3.6.1.2.1.5.30.1.4.1.5|65|0 1.3.6.1.2.1.5.30.1.4.1.8|65|0 @@ -219,24 +220,24 @@ 1.3.6.1.2.1.5.30.1.4.2.135|65|0 1.3.6.1.2.1.5.30.1.4.2.136|65|0 1.3.6.1.2.1.5.30.1.4.2.137|65|0 -1.3.6.1.2.1.6.5.0|65|6 -1.3.6.1.2.1.6.6.0|65|3257 +1.3.6.1.2.1.6.5.0|65|147343 +1.3.6.1.2.1.6.6.0|65|147175 1.3.6.1.2.1.6.7.0|65|0 -1.3.6.1.2.1.6.8.0|65|1 -1.3.6.1.2.1.6.9.0|66|0 -1.3.6.1.2.1.6.10.0|65|121966 -1.3.6.1.2.1.6.11.0|65|230396 -1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.8.0|65|3 +1.3.6.1.2.1.6.9.0|66|2 +1.3.6.1.2.1.6.10.0|65|18076251 +1.3.6.1.2.1.6.11.0|65|18120879 +1.3.6.1.2.1.6.12.0|65|118 1.3.6.1.2.1.6.14.0|65|0 -1.3.6.1.2.1.6.15.0|65|2 -1.3.6.1.2.1.7.1.0|65|1807197 -1.3.6.1.2.1.7.2.0|65|286030 -1.3.6.1.2.1.7.3.0|65|0 -1.3.6.1.2.1.7.4.0|65|718811 -1.3.6.1.2.1.11.1.0|65|132419 -1.3.6.1.2.1.11.2.0|65|132351 +1.3.6.1.2.1.6.15.0|65|1444 +1.3.6.1.2.1.7.1.0|65|24991461 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|161 +1.3.6.1.2.1.7.4.0|65|11108287 +1.3.6.1.2.1.11.1.0|65|633158 +1.3.6.1.2.1.11.2.0|65|633153 1.3.6.1.2.1.11.3.0|65|0 -1.3.6.1.2.1.11.4.0|65|66 +1.3.6.1.2.1.11.4.0|65|4 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 @@ -244,10 +245,10 @@ 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|1062202 +1.3.6.1.2.1.11.13.0|65|5185654 1.3.6.1.2.1.11.14.0|65|0 -1.3.6.1.2.1.11.15.0|65|30245 -1.3.6.1.2.1.11.16.0|65|5343 +1.3.6.1.2.1.11.15.0|65|186411 +1.3.6.1.2.1.11.16.0|65|23181 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 @@ -258,12 +259,12 @@ 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|132353 +1.3.6.1.2.1.11.28.0|65|633155 1.3.6.1.2.1.11.29.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.25.1.1.0|67|37846886 +1.3.6.1.2.1.25.1.1.0|67|183957520 1.3.6.1.2.1.25.1.5.0|66|0 1.3.6.1.2.1.25.2.2.0|2|255676 1.3.6.1.2.1.25.2.3.1.1.1|2|1 @@ -305,21 +306,21 @@ 1.3.6.1.2.1.25.2.3.1.5.1|2|255676 1.3.6.1.2.1.25.2.3.1.5.3|2|255676 1.3.6.1.2.1.25.2.3.1.5.6|2|255676 -1.3.6.1.2.1.25.2.3.1.5.7|2|7748 -1.3.6.1.2.1.25.2.3.1.5.8|2|824 +1.3.6.1.2.1.25.2.3.1.5.7|2|13244 +1.3.6.1.2.1.25.2.3.1.5.8|2|1100 1.3.6.1.2.1.25.2.3.1.5.10|2|0 1.3.6.1.2.1.25.2.3.1.5.31|2|262 1.3.6.1.2.1.25.2.3.1.5.32|2|31933 1.3.6.1.2.1.25.2.3.1.5.33|2|16064 -1.3.6.1.2.1.25.2.3.1.6.1|2|47800 -1.3.6.1.2.1.25.2.3.1.6.3|2|47800 -1.3.6.1.2.1.25.2.3.1.6.6|2|388 -1.3.6.1.2.1.25.2.3.1.6.7|2|7748 -1.3.6.1.2.1.25.2.3.1.6.8|2|824 +1.3.6.1.2.1.25.2.3.1.6.1|2|60252 +1.3.6.1.2.1.25.2.3.1.6.3|2|60252 +1.3.6.1.2.1.25.2.3.1.6.6|2|1312 +1.3.6.1.2.1.25.2.3.1.6.7|2|13244 +1.3.6.1.2.1.25.2.3.1.6.8|2|1100 1.3.6.1.2.1.25.2.3.1.6.10|2|0 1.3.6.1.2.1.25.2.3.1.6.31|2|262 1.3.6.1.2.1.25.2.3.1.6.32|2|0 -1.3.6.1.2.1.25.2.3.1.6.33|2|432 +1.3.6.1.2.1.25.2.3.1.6.33|2|641 1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 1.3.6.1.2.1.25.3.2.1.1.196609|2|196609 1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 @@ -383,17 +384,17 @@ 1.3.6.1.2.1.25.3.2.1.6.262145|65|0 1.3.6.1.2.1.25.3.2.1.6.262146|65|0 1.3.6.1.2.1.25.3.2.1.6.262147|65|0 -1.3.6.1.2.1.25.3.2.1.6.262148|65|0 +1.3.6.1.2.1.25.3.2.1.6.262148|65|50138 1.3.6.1.2.1.25.3.2.1.6.262149|65|0 -1.3.6.1.2.1.25.3.2.1.6.262150|65|181 -1.3.6.1.2.1.25.3.2.1.6.262151|65|270 +1.3.6.1.2.1.25.3.2.1.6.262150|65|3002 +1.3.6.1.2.1.25.3.2.1.6.262151|65|1849 1.3.6.1.2.1.25.3.2.1.6.262152|65|0 1.3.6.1.2.1.25.3.2.1.6.262153|65|0 1.3.6.1.2.1.25.3.2.1.6.262154|65|0 1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0 -1.3.6.1.2.1.25.3.3.1.2.196608|2|7 -1.3.6.1.2.1.25.3.3.1.2.196609|2|5 +1.3.6.1.2.1.25.3.3.1.2.196608|2|28 +1.3.6.1.2.1.25.3.3.1.2.196609|2|30 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|ifb0 1.3.6.1.2.1.31.1.1.1.1.3|4|ifb1 @@ -411,7 +412,7 @@ 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|2148821 +1.3.6.1.2.1.31.1.1.1.2.8|65|17086500 1.3.6.1.2.1.31.1.1.1.2.9|65|0 1.3.6.1.2.1.31.1.1.1.2.10|65|0 1.3.6.1.2.1.31.1.1.1.3.1|65|0 @@ -444,26 +445,26 @@ 1.3.6.1.2.1.31.1.1.1.5.8|65|0 1.3.6.1.2.1.31.1.1.1.5.9|65|0 1.3.6.1.2.1.31.1.1.1.5.10|65|0 -1.3.6.1.2.1.31.1.1.1.6.1|70|205258713 +1.3.6.1.2.1.31.1.1.1.6.1|70|15512145815 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.3|70|0 -1.3.6.1.2.1.31.1.1.1.6.4|70|1630399952 +1.3.6.1.2.1.31.1.1.1.6.4|70|1067791273 1.3.6.1.2.1.31.1.1.1.6.5|70|0 -1.3.6.1.2.1.31.1.1.1.6.6|70|336870161 -1.3.6.1.2.1.31.1.1.1.6.7|70|329935693 -1.3.6.1.2.1.31.1.1.1.6.8|70|5785567944 +1.3.6.1.2.1.31.1.1.1.6.6|70|2288743077 +1.3.6.1.2.1.31.1.1.1.6.7|70|3097051362 +1.3.6.1.2.1.31.1.1.1.6.8|70|1023121412241 1.3.6.1.2.1.31.1.1.1.6.9|70|0 -1.3.6.1.2.1.31.1.1.1.6.10|70|595569856 -1.3.6.1.2.1.31.1.1.1.7.1|70|858987 +1.3.6.1.2.1.31.1.1.1.6.10|70|6367802617 +1.3.6.1.2.1.31.1.1.1.7.1|70|28493024 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.3|70|0 -1.3.6.1.2.1.31.1.1.1.7.4|70|7766530 +1.3.6.1.2.1.31.1.1.1.7.4|70|724046719 1.3.6.1.2.1.31.1.1.1.7.5|70|0 -1.3.6.1.2.1.31.1.1.1.7.6|70|1952875 -1.3.6.1.2.1.31.1.1.1.7.7|70|1956821 -1.3.6.1.2.1.31.1.1.1.7.8|70|5617691 +1.3.6.1.2.1.31.1.1.1.7.6|70|12705849 +1.3.6.1.2.1.31.1.1.1.7.7|70|339358288 +1.3.6.1.2.1.31.1.1.1.7.8|70|706958314 1.3.6.1.2.1.31.1.1.1.7.9|70|0 -1.3.6.1.2.1.31.1.1.1.7.10|70|3432037 +1.3.6.1.2.1.31.1.1.1.7.10|70|27695117 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.3|70|0 @@ -471,7 +472,7 @@ 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|2148821 +1.3.6.1.2.1.31.1.1.1.8.8|70|17086500 1.3.6.1.2.1.31.1.1.1.8.9|70|0 1.3.6.1.2.1.31.1.1.1.8.10|70|0 1.3.6.1.2.1.31.1.1.1.9.1|70|0 @@ -484,26 +485,26 @@ 1.3.6.1.2.1.31.1.1.1.9.8|70|0 1.3.6.1.2.1.31.1.1.1.9.9|70|0 1.3.6.1.2.1.31.1.1.1.9.10|70|0 -1.3.6.1.2.1.31.1.1.1.10.1|70|205258713 +1.3.6.1.2.1.31.1.1.1.10.1|70|15512145815 1.3.6.1.2.1.31.1.1.1.10.2|70|0 1.3.6.1.2.1.31.1.1.1.10.3|70|0 -1.3.6.1.2.1.31.1.1.1.10.4|70|928503584 +1.3.6.1.2.1.31.1.1.1.10.4|70|2411010965 1.3.6.1.2.1.31.1.1.1.10.5|70|0 -1.3.6.1.2.1.31.1.1.1.10.6|70|3338930160 -1.3.6.1.2.1.31.1.1.1.10.7|70|3181201949 -1.3.6.1.2.1.31.1.1.1.10.8|70|928503584 +1.3.6.1.2.1.31.1.1.1.10.6|70|3798171249 +1.3.6.1.2.1.31.1.1.1.10.7|70|3998720963 +1.3.6.1.2.1.31.1.1.1.10.8|70|36770749333 1.3.6.1.2.1.31.1.1.1.10.9|70|0 -1.3.6.1.2.1.31.1.1.1.10.10|70|240435122 -1.3.6.1.2.1.31.1.1.1.11.1|70|858987 +1.3.6.1.2.1.31.1.1.1.10.10|70|173472242 +1.3.6.1.2.1.31.1.1.1.11.1|70|28493024 1.3.6.1.2.1.31.1.1.1.11.2|70|0 1.3.6.1.2.1.31.1.1.1.11.3|70|0 -1.3.6.1.2.1.31.1.1.1.11.4|70|4323602 +1.3.6.1.2.1.31.1.1.1.11.4|70|351626938 1.3.6.1.2.1.31.1.1.1.11.5|70|0 -1.3.6.1.2.1.31.1.1.1.11.6|70|5137251 -1.3.6.1.2.1.31.1.1.1.11.7|70|4650242 -1.3.6.1.2.1.31.1.1.1.11.8|70|4323602 +1.3.6.1.2.1.31.1.1.1.11.6|70|42322680 +1.3.6.1.2.1.31.1.1.1.11.7|70|382517817 +1.3.6.1.2.1.31.1.1.1.11.8|70|351626938 1.3.6.1.2.1.31.1.1.1.11.9|70|0 -1.3.6.1.2.1.31.1.1.1.11.10|70|389326 +1.3.6.1.2.1.31.1.1.1.11.10|70|782124 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.3|70|0 @@ -577,42 +578,68 @@ 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|255676 -1.3.6.1.4.1.2021.4.6.0|2|207876 -1.3.6.1.4.1.2021.4.11.0|2|207876 -1.3.6.1.4.1.2021.4.13.0|2|824 -1.3.6.1.4.1.2021.4.14.0|2|388 -1.3.6.1.4.1.2021.4.15.0|2|7748 -1.3.6.1.4.1.2021.10.1.5.1|2|9 -1.3.6.1.4.1.2021.10.1.5.2|2|6 -1.3.6.1.4.1.2021.10.1.5.3|2|10 +1.3.6.1.4.1.2021.4.6.0|2|195464 +1.3.6.1.4.1.2021.4.11.0|2|195464 +1.3.6.1.4.1.2021.4.13.0|2|1100 +1.3.6.1.4.1.2021.4.14.0|2|1312 +1.3.6.1.4.1.2021.4.15.0|2|13244 +1.3.6.1.4.1.2021.10.1.5.1|2|72 +1.3.6.1.4.1.2021.10.1.5.2|2|38 +1.3.6.1.4.1.2021.10.1.5.3|2|27 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|123 -1.3.6.1.4.1.2021.11.8.0|2|2010 -1.3.6.1.4.1.2021.11.9.0|2|1 -1.3.6.1.4.1.2021.11.10.0|2|3 -1.3.6.1.4.1.2021.11.11.0|2|94 -1.3.6.1.4.1.2021.11.50.0|65|825949 +1.3.6.1.4.1.2021.11.7.0|2|146 +1.3.6.1.4.1.2021.11.8.0|2|16249 +1.3.6.1.4.1.2021.11.9.0|2|14 +1.3.6.1.4.1.2021.11.10.0|2|12 +1.3.6.1.4.1.2021.11.11.0|2|71 +1.3.6.1.4.1.2021.11.50.0|65|11063336 1.3.6.1.4.1.2021.11.51.0|65|0 -1.3.6.1.4.1.2021.11.52.0|65|2282236 -1.3.6.1.4.1.2021.11.53.0|65|71780499 -1.3.6.1.4.1.2021.11.54.0|65|492280 +1.3.6.1.4.1.2021.11.52.0|65|14549986 +1.3.6.1.4.1.2021.11.53.0|65|335787631 +1.3.6.1.4.1.2021.11.54.0|65|284945 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|0 -1.3.6.1.4.1.2021.11.59.0|65|63640721 -1.3.6.1.4.1.2021.11.60.0|65|833215012 -1.3.6.1.4.1.2021.11.61.0|65|312251 +1.3.6.1.4.1.2021.11.59.0|65|606598639 +1.3.6.1.4.1.2021.11.60.0|65|814584039 +1.3.6.1.4.1.2021.11.61.0|65|6228892 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.2021.11.64.0|65|0 1.3.6.1.4.1.2021.11.65.0|65|0 1.3.6.1.4.1.2021.11.66.0|65|0 1.3.6.1.4.1.2021.11.67.0|2|2 -1.3.6.1.4.1.2021.7890.1.101.1|4|ASUSWRT-Merlin RT-AC68U 384.16_0 -1.3.6.1.6.3.10.2.1.3.0|2|378441 +1.3.6.1.4.1.2021.7890.1.101.1|4|ASUSWRT-Merlin RT-AC68U 384.17_0 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.101.116.104.49|4|4 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.101.116.104.50|4|1 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.99.108.105.101.110.116.115.45.119.108.97.110|4|5 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.97.118.103|4|33 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.109.97.120|4|44 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.49.45.109.105.110|4|16 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.97.118.103|4|37 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.109.97.120|4|37 +1.3.6.1.4.1.8072.1.3.2.3.1.1.12.115.110.114.45.101.116.104.50.45.109.105.110|4|37 +1.3.6.1.4.1.8072.1.3.2.3.1.1.14.102.114.101.113.117.101.110.99.121.45.101.116.104.49|4|2447 +1.3.6.1.4.1.8072.1.3.2.3.1.1.14.102.114.101.113.117.101.110.99.121.45.101.116.104.50|4|5745 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.110.111.105.115.101.45.102.108.111.111.114.45.101.116.104.49|4|-85 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.110.111.105.115.101.45.102.108.111.111.114.45.101.116.104.50|4|-92 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.97.118.103|4|51050000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.109.97.120|4|130000000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.49.45.109.105.110|4|1000000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.97.118.103|4|433300000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.109.97.120|4|433300000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.114.120.45.101.116.104.50.45.109.105.110|4|433300000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.97.118.103|4|80400000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.109.97.120|4|144400000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.49.45.109.105.110|4|1000000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.97.118.103|4|433300000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.109.97.120|4|433300000 +1.3.6.1.4.1.8072.1.3.2.3.1.1.16.114.97.116.101.45.116.120.45.101.116.104.50.45.109.105.110|4|433300000 +1.3.6.1.4.1.8072.1.3.2.3.1.2.10.105.110.116.101.114.102.97.99.101.115|4x|657468312c776c2d322e34470a657468322c776c2d352e3047 +1.3.6.1.6.3.10.2.1.3.0|2|1839546