diff --git a/LibreNMS/Device/WirelessSensor.php b/LibreNMS/Device/WirelessSensor.php index 13519ade5f..e32886ddd3 100644 --- a/LibreNMS/Device/WirelessSensor.php +++ b/LibreNMS/Device/WirelessSensor.php @@ -324,6 +324,7 @@ class WirelessSensor extends Sensor 153 => 5765, 157 => 5785, 161 => 5805, + 165 => 5825, ); return $channels[$channel]; diff --git a/LibreNMS/OS/HiveosWireless.php b/LibreNMS/OS/HiveosWireless.php new file mode 100644 index 0000000000..41631967fe --- /dev/null +++ b/LibreNMS/OS/HiveosWireless.php @@ -0,0 +1,152 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2018 Ryan Finney + * @author https://github.com/theherodied/ + */ + +namespace LibreNMS\OS; + +use LibreNMS\Device\Processor; +use LibreNMS\Device\WirelessSensor; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessNoiseFloorDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery; +use LibreNMS\Interfaces\Discovery\ProcessorDiscovery; +use LibreNMS\Interfaces\Polling\Sensors\WirelessFrequencyPolling; +use LibreNMS\OS; + +class HiveosWireless extends OS implements + WirelessClientsDiscovery, + WirelessFrequencyDiscovery, + WirelessFrequencyPolling, + WirelessNoiseFloorDiscovery, + WirelessPowerDiscovery, + ProcessorDiscovery +{ + /** + * Discover processors. + * Returns an array of LibreNMS\Device\Processor objects that have been discovered + * + * @return array Processors + */ + public function discoverProcessors() + { + $device = $this->getDevice(); + return array( + Processor::discover( + $this->getName(), + $this->getDeviceId(), + '1.3.6.1.4.1.26928.1.2.3.0', // AH-SYSTEM-MIB::ahCpuUtilization + 0 + ) + ); + } + + /** + * 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() + { + $oid = '.1.3.6.1.4.1.26928.1.2.9.0'; // AH-SYSTEM-MIB::ahClientCount + return array( + new WirelessSensor('clients', $this->getDeviceId(), $oid, 'HiveosWireless', 1, 'Clients') + ); + } + + /** + * Discover wireless frequency. This is in GHz. Type is frequency. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array Sensors + */ + public function pollWirelessFrequency(array $sensors) + { + return $this->pollWirelessChannelAsFrequency($sensors); + } + + public function discoverWirelessFrequency() + { + $ahRadioName = $this->getCacheByIndex('ahIfName', 'AH-INTERFACE-MIB'); + $data = snmpwalk_group($this->getDevice(), 'ahRadioChannel', 'AH-INTERFACE-MIB'); + foreach ($data as $index => $frequency) { + $sensors[] = new WirelessSensor( + 'frequency', + $this->getDeviceId(), + '.1.3.6.1.4.1.26928.1.1.1.2.1.5.1.1.' . $index, + 'hiveos-wireless', + $index, + $ahRadioName[$index], + WirelessSensor::channelToFrequency($frequency['ahRadioChannel']) + ); + } + return $sensors; + } + + /** + * Discover wireless tx power. This is in dBm. Type is power. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessPower() + { + $sensors = array(); + + $ahRadioName = $this->getCacheByIndex('ahIfName', 'AH-INTERFACE-MIB'); + $ahTxPow = snmpwalk_group($this->getDevice(), 'ahRadioTxPower', 'AH-INTERFACE-MIB'); + foreach ($ahTxPow as $index => $entry) { + $sensors[] = new WirelessSensor( + 'power', + $this->getDeviceId(), + '.1.3.6.1.4.1.26928.1.1.1.2.1.5.1.2.' . $index, + 'hiveos-wireless', + $index, + 'Tx Power: ' . $ahRadioName[$index], + $entry['ahRadioTxPower'] + ); + } + return $sensors; + } + + public function discoverWirelessNoiseFloor() + { + $ahRadioName = $this->getCacheByIndex('ahIfName', 'AH-INTERFACE-MIB'); + $ahRxNoise = snmpwalk_group($this->getDevice(), 'ahRadioNoiseFloor', 'AH-INTERFACE-MIB'); + $sensors = array(); + foreach ($ahRxNoise as $index => $entry) { + $sensors[] = new WirelessSensor( + 'noise-floor', + $this->getDeviceId(), + '.1.3.6.1.4.1.26928.1.1.1.2.1.5.1.3.' . $index, + 'hiveos-wireless', + $index, + 'Noise floor ' . $ahRadioName[$index], + $entry['ahRxNoise'] + ); + } + return $sensors; + } +} diff --git a/includes/discovery/mempools/hiveos-wireless.inc.php b/includes/discovery/mempools/hiveos-wireless.inc.php new file mode 100644 index 0000000000..2cf31eda1c --- /dev/null +++ b/includes/discovery/mempools/hiveos-wireless.inc.php @@ -0,0 +1,32 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2018 Ryan Finney + * @author https://github.com/theherodied/ + */ +if ($device['os'] == 'hiveos-wireless') { + echo 'Hiveos-Wireless : '; + $memory_oid = '1.3.6.1.4.1.26928.1.2.4.0'; + $usage = snmp_get($device, $memory_oid, '-Ovq'); + if (is_numeric($usage)) { + discover_mempool($valid_mempool, $device, '0', 'hiveos-wireless', 'Memory'); + } +} diff --git a/includes/polling/mempools/hiveos-wireless.inc.php b/includes/polling/mempools/hiveos-wireless.inc.php new file mode 100644 index 0000000000..fdd77bfeba --- /dev/null +++ b/includes/polling/mempools/hiveos-wireless.inc.php @@ -0,0 +1,33 @@ + +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2018 Ryan Finney + * @author https://github.com/theherodied/ + */ +d_echo('Hiveos-Wireless'); +$memory_oid = '1.3.6.1.4.1.26928.1.2.4.0'; +$perc = snmp_get($device, $memory_oid, '-OvQ'); +if (is_numeric($perc)) { + $mempool['used'] = $perc; + $mempool['total'] = 100; + $mempool['free'] = 100 - $perc; +} diff --git a/includes/polling/os/hiveos-wireless.inc.php b/includes/polling/os/hiveos-wireless.inc.php index 9ece3676eb..b42f096fde 100644 --- a/includes/polling/os/hiveos-wireless.inc.php +++ b/includes/polling/os/hiveos-wireless.inc.php @@ -1,17 +1,41 @@ - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. Please see LICENSE.txt at the top level of - * the source code distribution for details. + * 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 . + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2015 Søren Friis Rosiak + * @author sorenrosiak@gmail.com + * @copyright 2018 Ryan Finney + * @author https://github.com/theherodied/ */ + if (preg_match('/^(.+?),/', $device['sysDescr'], $hardware)) { $hardware = $store[1]; } $hardware = trim(snmp_get($device, '.1.3.6.1.4.1.4413.1.1.1.1.1.3.0', '-Ovq'), '"'); $version = trim(snmp_get($device, '.1.3.6.1.4.1.4413.1.1.1.1.1.13.0', '-Ovq'), '"'); $serial = trim(snmp_get($device, '.1.3.6.1.4.1.4413.1.1.1.1.1.4.0', '-Ovq'), '"'); + +$apmodel = snmp_get($device, 'ahDeviceMode.0', '-Ovq', 'AH-SYSTEM-MIB'); +if ($apmodel == 'AP250' || $apmodel == 'AP550') { + $data = snmp_get_multi_oid($device, 'ahSystemSerial.0 ahDeviceMode.0 ahFirmwareVersion.0', '-OQUs', 'AH-SYSTEM-MIB'); + $hardware = $data['ahDeviceMode.0']; + $version2 = $data['ahFirmwareVersion.0']; + // Version has 'HiveOS ' included. We want to remove it so OS doesn't show HiveOS twice. + $version = preg_replace('/^HiveOS /', '', $version2); + $serial = $data['ahSystemSerial.0']; +} diff --git a/mibs/aerohive/AH-SMI-MIB b/mibs/aerohive/AH-SMI-MIB index 20e0c0bc6e..9c645c0bec 100644 --- a/mibs/aerohive/AH-SMI-MIB +++ b/mibs/aerohive/AH-SMI-MIB @@ -21,7 +21,9 @@ aerohive MODULE-IDENTITY LAST-UPDATED "201608310000Z" -- Aug 31, 2016 ORGANIZATION "Aerohive Networks, Inc" CONTACT-INFO "info@aerohive.com - 1011 McCarthy Boulevard Milpitas, CA 95035" + 1011 McCarthy Boulevard + + Milpitas, CA 95035" DESCRIPTION "This is the MIB module for object type definitions that are used throughout the Aerohive Networks enterprise MIBs." @@ -39,10 +41,10 @@ ahAPInterface OBJECT IDENTIFIER ::= { ahAPCommon 2 } ahAPMRP OBJECT IDENTIFIER ::= { ahAPCommon 3 } ahAPIDP OBJECT IDENTIFIER ::= { ahAPCommon 4 } -ahAPHiveAP020_ag OBJECT IDENTIFIER ::= { ahAP 2 } -ahAPHiveAP028_ag OBJECT IDENTIFIER ::= { ahAP 3 } -ahAPHiveAP320_n OBJECT IDENTIFIER ::= { ahAP 4 } -ahAPHiveAP340_n OBJECT IDENTIFIER ::= { ahAP 5 } +ahAPHiveAP020-ag OBJECT IDENTIFIER ::= { ahAP 2 } +ahAPHiveAP028-ag OBJECT IDENTIFIER ::= { ahAP 3 } +ahAPHiveAP320-n OBJECT IDENTIFIER ::= { ahAP 4 } +ahAPHiveAP340-n OBJECT IDENTIFIER ::= { ahAP 5 } AhString ::= TEXTUAL-CONVENTION STATUS current diff --git a/tests/data/hiveos-wireless.json b/tests/data/hiveos-wireless.json new file mode 100644 index 0000000000..85117c6f68 --- /dev/null +++ b/tests/data/hiveos-wireless.json @@ -0,0 +1,344 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.26928.1", + "sysDescr": "AP230, HiveOS 8.1r2a build-178408", + "sysContact": null, + "version": null, + "hardware": "", + "features": null, + "location": null, + "os": "hiveos-wireless", + "type": "wireless", + "serial": null, + "icon": "aerohive.svg" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.26928.1", + "sysDescr": "AP230, HiveOS 8.1r2a build-178408", + "sysContact": "", + "version": "8.1r2a build-178408", + "hardware": "AP250", + "features": null, + "location": "", + "os": "hiveos-wireless", + "type": "wireless", + "serial": "02501608254257", + "icon": "aerohive.svg" + } + ] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": "0", + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "HiveosWireless", + "sensor_descr": "Clients", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "0", + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.26928.1.2.9.0\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "power", + "sensor_index": "7", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Tx Power: wifi0", + "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.26928.1.1.1.2.1.5.1.2.7\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "power", + "sensor_index": "8", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Tx Power: wifi1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "19", + "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.26928.1.1.1.2.1.5.1.2.8\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "noise-floor", + "sensor_index": "7", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Noise floor wifi0", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "161", + "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.26928.1.1.1.2.1.5.1.3.7\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "noise-floor", + "sensor_index": "8", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Noise floor wifi1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "161", + "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.26928.1.1.1.2.1.5.1.3.8\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "frequency", + "sensor_index": "7", + "sensor_type": "hiveos-wireless", + "sensor_descr": "wifi0", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "2437", + "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.26928.1.1.1.2.1.5.1.1.7\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "frequency", + "sensor_index": "8", + "sensor_type": "hiveos-wireless", + "sensor_descr": "wifi1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "5825", + "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.26928.1.1.1.2.1.5.1.1.8\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": "0", + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "HiveosWireless", + "sensor_descr": "Clients", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "0", + "sensor_prev": "0", + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.26928.1.2.9.0\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "power", + "sensor_index": "7", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Tx Power: wifi0", + "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.26928.1.1.1.2.1.5.1.2.7\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "power", + "sensor_index": "8", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Tx Power: wifi1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "19", + "sensor_prev": "19", + "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.26928.1.1.1.2.1.5.1.2.8\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "noise-floor", + "sensor_index": "7", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Noise floor wifi0", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "161", + "sensor_prev": "161", + "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.26928.1.1.1.2.1.5.1.3.7\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "noise-floor", + "sensor_index": "8", + "sensor_type": "hiveos-wireless", + "sensor_descr": "Noise floor wifi1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "161", + "sensor_prev": "161", + "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.26928.1.1.1.2.1.5.1.3.8\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "frequency", + "sensor_index": "7", + "sensor_type": "hiveos-wireless", + "sensor_descr": "wifi0", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "2437", + "sensor_prev": "2437", + "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.26928.1.1.1.2.1.5.1.1.7\"]" + }, + { + "sensor_deleted": "0", + "sensor_class": "frequency", + "sensor_index": "8", + "sensor_type": "hiveos-wireless", + "sensor_descr": "wifi1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_aggregator": "sum", + "sensor_current": "5825", + "sensor_prev": "5825", + "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.26928.1.1.1.2.1.5.1.1.8\"]" + } + ] + } + } +} diff --git a/tests/snmpsim/hiveos-wireless.snmprec b/tests/snmpsim/hiveos-wireless.snmprec index 59fc9d3a1d..24f4e11638 100644 --- a/tests/snmpsim/hiveos-wireless.snmprec +++ b/tests/snmpsim/hiveos-wireless.snmprec @@ -1,2 +1,28 @@ 1.3.6.1.2.1.1.1.0|4|AP230, HiveOS 8.1r2a build-178408 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.26928.1 +1.3.6.1.2.1.1.3.0|67|19843935 +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| +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.3|4|eth0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.5|4|eth1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.7|4|wifi0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.8|4|wifi1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.11|4|mgt0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.12|4|red0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.13|4|agg0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.14|4|wifi0.1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.16|4|wifi1.1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.17|4|wifi1.2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.18|4|wifi1.3 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.1.7|2|6 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.1.8|2|165 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.2.7|2|5 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.2.8|2|19 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.3.7|2|161 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.3.8|2|161 +1.3.6.1.4.1.26928.1.2.5.0|4|02501608254257 +1.3.6.1.4.1.26928.1.2.6.0|4|AP250 +1.3.6.1.4.1.26928.1.2.9.0|2|0 +1.3.6.1.4.1.26928.1.2.12.0|4|HiveOS 8.1r2a build-178408 +1.3.6.1.6.3.10.2.1.3.0|2|198397 diff --git a/tests/snmpsim/hiveos-wireless_2.snmprec b/tests/snmpsim/hiveos-wireless_2.snmprec new file mode 100644 index 0000000000..33afb53bd8 --- /dev/null +++ b/tests/snmpsim/hiveos-wireless_2.snmprec @@ -0,0 +1,1282 @@ +1.2.840.10036.1.1.1.1.14|4x|C413E2290CD4 +1.2.840.10036.1.1.1.1.16|4x|C413E2290CE4 +1.2.840.10036.1.1.1.1.17|4x|C413E2290CE5 +1.2.840.10036.1.1.1.1.18|4x|C413E2290CE6 +1.2.840.10036.1.1.1.2.14|2|5 +1.2.840.10036.1.1.1.2.16|2|5 +1.2.840.10036.1.1.1.2.17|2|5 +1.2.840.10036.1.1.1.2.18|2|5 +1.2.840.10036.1.1.1.3.14|2|0 +1.2.840.10036.1.1.1.3.16|2|0 +1.2.840.10036.1.1.1.3.17|2|0 +1.2.840.10036.1.1.1.3.18|2|0 +1.2.840.10036.1.1.1.4.14|2|0 +1.2.840.10036.1.1.1.4.16|2|0 +1.2.840.10036.1.1.1.4.17|2|0 +1.2.840.10036.1.1.1.4.18|2|0 +1.2.840.10036.1.1.1.5.14|2|0 +1.2.840.10036.1.1.1.5.16|2|0 +1.2.840.10036.1.1.1.5.17|2|0 +1.2.840.10036.1.1.1.5.18|2|0 +1.2.840.10036.1.1.1.6.14|2|0 +1.2.840.10036.1.1.1.6.16|2|0 +1.2.840.10036.1.1.1.6.17|2|0 +1.2.840.10036.1.1.1.6.18|2|0 +1.2.840.10036.1.1.1.7.14|2|1 +1.2.840.10036.1.1.1.7.16|2|1 +1.2.840.10036.1.1.1.7.17|2|1 +1.2.840.10036.1.1.1.7.18|2|1 +1.2.840.10036.1.1.1.8.14|2|0 +1.2.840.10036.1.1.1.8.16|2|0 +1.2.840.10036.1.1.1.8.17|2|0 +1.2.840.10036.1.1.1.8.18|2|0 +1.2.840.10036.1.1.1.9.14|4|AH-Guest +1.2.840.10036.1.1.1.9.16|4|AH-Air +1.2.840.10036.1.1.1.9.17|4|AH-employee +1.2.840.10036.1.1.1.9.18|4|AH-Guest +1.2.840.10036.1.1.1.10.14|2|1 +1.2.840.10036.1.1.1.10.16|2|1 +1.2.840.10036.1.1.1.10.17|2|1 +1.2.840.10036.1.1.1.10.18|2|1 +1.2.840.10036.1.1.1.11.14|4x|00 +1.2.840.10036.1.1.1.11.16|4x|00 +1.2.840.10036.1.1.1.11.17|4x|00 +1.2.840.10036.1.1.1.11.18|4x|00 +1.2.840.10036.1.1.1.12.14|2|100 +1.2.840.10036.1.1.1.12.16|2|100 +1.2.840.10036.1.1.1.12.17|2|100 +1.2.840.10036.1.1.1.12.18|2|100 +1.2.840.10036.1.1.1.13.14|2|1 +1.2.840.10036.1.1.1.13.16|2|1 +1.2.840.10036.1.1.1.13.17|2|1 +1.2.840.10036.1.1.1.13.18|2|1 +1.2.840.10036.1.1.1.14.14|2|0 +1.2.840.10036.1.1.1.14.16|2|0 +1.2.840.10036.1.1.1.14.17|2|0 +1.2.840.10036.1.1.1.14.18|2|0 +1.2.840.10036.1.1.1.15.14|2|0 +1.2.840.10036.1.1.1.15.16|2|0 +1.2.840.10036.1.1.1.15.17|2|0 +1.2.840.10036.1.1.1.15.18|2|0 +1.2.840.10036.1.1.1.16.14|4x|00 +1.2.840.10036.1.1.1.16.16|4x|00 +1.2.840.10036.1.1.1.16.17|4x|00 +1.2.840.10036.1.1.1.16.18|4x|00 +1.2.840.10036.1.1.1.17.14|2|0 +1.2.840.10036.1.1.1.17.16|2|0 +1.2.840.10036.1.1.1.17.17|2|0 +1.2.840.10036.1.1.1.17.18|2|0 +1.2.840.10036.1.1.1.18.14|4x|00 +1.2.840.10036.1.1.1.18.16|4x|00 +1.2.840.10036.1.1.1.18.17|4x|00 +1.2.840.10036.1.1.1.18.18|4x|00 +1.2.840.10036.1.1.1.19.14|2|0 +1.2.840.10036.1.1.1.19.16|2|0 +1.2.840.10036.1.1.1.19.17|2|0 +1.2.840.10036.1.1.1.19.18|2|0 +1.2.840.10036.1.1.1.20.14|4x|00 +1.2.840.10036.1.1.1.20.16|4x|00 +1.2.840.10036.1.1.1.20.17|4x|00 +1.2.840.10036.1.1.1.20.18|4x|00 +1.2.840.10036.2.1.1.1.14|4x|C413E2290CD4 +1.2.840.10036.2.1.1.1.16|4x|C413E2290CE4 +1.2.840.10036.2.1.1.1.17|4x|C413E2290CE5 +1.2.840.10036.2.1.1.1.18|4x|C413E2290CE6 +1.2.840.10036.2.1.1.2.14|2|2346 +1.2.840.10036.2.1.1.2.16|2|2346 +1.2.840.10036.2.1.1.2.17|2|2346 +1.2.840.10036.2.1.1.2.18|2|2346 +1.2.840.10036.2.1.1.3.14|2|7 +1.2.840.10036.2.1.1.3.16|2|7 +1.2.840.10036.2.1.1.3.17|2|7 +1.2.840.10036.2.1.1.3.18|2|7 +1.2.840.10036.2.1.1.4.14|2|6 +1.2.840.10036.2.1.1.4.16|2|6 +1.2.840.10036.2.1.1.4.17|2|6 +1.2.840.10036.2.1.1.4.18|2|6 +1.2.840.10036.2.1.1.5.14|2|2346 +1.2.840.10036.2.1.1.5.16|2|2346 +1.2.840.10036.2.1.1.5.17|2|2346 +1.2.840.10036.2.1.1.5.18|2|2346 +1.2.840.10036.2.1.1.6.14|2|204 +1.2.840.10036.2.1.1.6.16|2|204 +1.2.840.10036.2.1.1.6.17|2|204 +1.2.840.10036.2.1.1.6.18|2|204 +1.2.840.10036.2.1.1.7.14|2|0 +1.2.840.10036.2.1.1.7.16|2|0 +1.2.840.10036.2.1.1.7.17|2|0 +1.2.840.10036.2.1.1.7.18|2|0 +1.2.840.10036.2.1.1.8.14|4x|4165726F68697665204E6574776F726B7300 +1.2.840.10036.2.1.1.8.16|4x|4165726F68697665204E6574776F726B7300 +1.2.840.10036.2.1.1.8.17|4x|4165726F68697665204E6574776F726B7300 +1.2.840.10036.2.1.1.8.18|4x|4165726F68697665204E6574776F726B7300 +1.2.840.10036.2.1.1.9.14|4x|4869766541503032305F616700 +1.2.840.10036.2.1.1.9.16|4x|4869766541503032305F616700 +1.2.840.10036.2.1.1.9.17|4x|4869766541503032305F616700 +1.2.840.10036.2.1.1.9.18|4x|4869766541503032305F616700 +1.2.840.10036.2.2.1.1.7|65|3061486296 +1.2.840.10036.2.2.1.1.8|65|2454416 +1.2.840.10036.2.2.1.2.7|65|58636 +1.2.840.10036.2.2.1.2.8|65|0 +1.2.840.10036.2.2.1.3.7|65|2346 +1.2.840.10036.2.2.1.3.8|65|0 +1.2.840.10036.2.2.1.4.7|65|7 +1.2.840.10036.2.2.1.4.8|65|0 +1.2.840.10036.2.2.1.5.7|65|6 +1.2.840.10036.2.2.1.5.8|65|0 +1.2.840.10036.2.2.1.6.7|65|2346 +1.2.840.10036.2.2.1.6.8|65|0 +1.2.840.10036.2.2.1.7.7|65|204 +1.2.840.10036.2.2.1.7.8|65|0 +1.2.840.10036.2.2.1.8.7|65|0 +1.2.840.10036.2.2.1.8.8|65|0 +1.2.840.10036.2.2.1.9.7|65|1869768001 +1.2.840.10036.2.2.1.9.8|65|0 +1.2.840.10036.2.2.1.10.7|65|1702259048 +1.2.840.10036.2.2.1.10.8|65|0 +1.2.840.10036.2.2.1.11.7|65|1952796192 +1.2.840.10036.2.2.1.11.8|65|0 +1.2.840.10036.2.2.1.12.7|65|1802661751 +1.2.840.10036.2.2.1.12.8|65|0 +1.2.840.10036.2.2.1.13.7|65|115 +1.2.840.10036.2.2.1.13.8|65|0 +1.2.840.10036.2.2.1.14.7|65|16 +1.2.840.10036.2.2.1.14.8|65|0 +1.2.840.10036.3.1.1.0|4x|5254494400 +1.3.6.1.2.1.1.1.0|4|AP250, HiveOS 8.1r2a build-178408 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.26928.1 +1.3.6.1.2.1.1.3.0|67|762055 +1.3.6.1.2.1.1.4.0|4|\"Peter Griffin\ +1.3.6.1.2.1.1.5.0|4|rm10-ap250 +1.3.6.1.2.1.1.6.0|4|change_me +1.3.6.1.2.1.1.8.0|67|4 +1.3.6.1.2.1.1.9.1.2.1|6|1.3.6.1.6.3.1 +1.3.6.1.2.1.1.9.1.2.2|6|1.3.6.1.6.3.16.2.2.1 +1.3.6.1.2.1.1.9.1.2.3|6|1.3.6.1.6.3.10.3.1.1 +1.3.6.1.2.1.1.9.1.2.4|6|1.3.6.1.6.3.11.3.1.1 +1.3.6.1.2.1.1.9.1.2.5|6|1.3.6.1.6.3.15.2.1.1 +1.3.6.1.2.1.1.9.1.2.6|6|1.3.6.1.2.1.49 +1.3.6.1.2.1.1.9.1.2.7|6|1.3.6.1.2.1.4 +1.3.6.1.2.1.1.9.1.2.8|6|1.3.6.1.2.1.50 +1.3.6.1.2.1.1.9.1.3.1|4|The MIB module for SNMPv2 entities +1.3.6.1.2.1.1.9.1.3.2|4|View-based Access Control Model for SNMP. +1.3.6.1.2.1.1.9.1.3.3|4|The SNMP Management Architecture MIB. +1.3.6.1.2.1.1.9.1.3.4|4|The MIB for Message Processing and Dispatching. +1.3.6.1.2.1.1.9.1.3.5|4|The management information definitions for the SNMP User-based Security Model. +1.3.6.1.2.1.1.9.1.3.6|4|The MIB module for managing TCP implementations +1.3.6.1.2.1.1.9.1.3.7|4|The MIB module for managing IP and ICMP implementations +1.3.6.1.2.1.1.9.1.3.8|4|The MIB module for managing UDP implementations +1.3.6.1.2.1.1.9.1.4.1|67|3 +1.3.6.1.2.1.1.9.1.4.2|67|3 +1.3.6.1.2.1.1.9.1.4.3|67|3 +1.3.6.1.2.1.1.9.1.4.4|67|3 +1.3.6.1.2.1.1.9.1.4.5|67|3 +1.3.6.1.2.1.1.9.1.4.6|67|4 +1.3.6.1.2.1.1.9.1.4.7|67|4 +1.3.6.1.2.1.1.9.1.4.8|67|4 +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.1.3|2|3 +1.3.6.1.2.1.2.2.1.1.5|2|5 +1.3.6.1.2.1.2.2.1.1.7|2|7 +1.3.6.1.2.1.2.2.1.1.8|2|8 +1.3.6.1.2.1.2.2.1.1.11|2|11 +1.3.6.1.2.1.2.2.1.1.14|2|14 +1.3.6.1.2.1.2.2.1.1.16|2|16 +1.3.6.1.2.1.2.2.1.1.17|2|17 +1.3.6.1.2.1.2.2.1.1.18|2|18 +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|tunl0 +1.3.6.1.2.1.2.2.1.2.3|4|eth0 +1.3.6.1.2.1.2.2.1.2.5|4|eth1 +1.3.6.1.2.1.2.2.1.2.7|4|wifi0 +1.3.6.1.2.1.2.2.1.2.8|4|wifi1 +1.3.6.1.2.1.2.2.1.2.11|4|mgt0 +1.3.6.1.2.1.2.2.1.2.14|4|wifi0.1 +1.3.6.1.2.1.2.2.1.2.16|4|wifi1.1 +1.3.6.1.2.1.2.2.1.2.17|4|wifi1.2 +1.3.6.1.2.1.2.2.1.2.18|4|wifi1.3 +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|131 +1.3.6.1.2.1.2.2.1.3.3|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.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.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.14|2|6 +1.3.6.1.2.1.2.2.1.3.16|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|6 +1.3.6.1.2.1.2.2.1.3.18|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|1480 +1.3.6.1.2.1.2.2.1.4.3|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.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.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|10000000 +1.3.6.1.2.1.2.2.1.5.2|66|0 +1.3.6.1.2.1.2.2.1.5.3|66|1000000000 +1.3.6.1.2.1.2.2.1.5.5|66|10000000 +1.3.6.1.2.1.2.2.1.5.7|66|10000000 +1.3.6.1.2.1.2.2.1.5.8|66|10000000 +1.3.6.1.2.1.2.2.1.5.11|66|10000000 +1.3.6.1.2.1.2.2.1.5.14|66|10000000 +1.3.6.1.2.1.2.2.1.5.16|66|10000000 +1.3.6.1.2.1.2.2.1.5.17|66|10000000 +1.3.6.1.2.1.2.2.1.5.18|66|10000000 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4| +1.3.6.1.2.1.2.2.1.6.3|4|c4:13:e2:29:c:c0 +1.3.6.1.2.1.2.2.1.6.5|4|c4:13:e2:29:c:c1 +1.3.6.1.2.1.2.2.1.6.7|4|c4:13:e2:29:c:d4 +1.3.6.1.2.1.2.2.1.6.8|4|c4:13:e2:29:c:e4 +1.3.6.1.2.1.2.2.1.6.11|4|c4:13:e2:29:c:c0 +1.3.6.1.2.1.2.2.1.6.14|4|c4:13:e2:29:c:d4 +1.3.6.1.2.1.2.2.1.6.16|4|c4:13:e2:29:c:e4 +1.3.6.1.2.1.2.2.1.6.17|4|c4:13:e2:29:c:e5 +1.3.6.1.2.1.2.2.1.6.18|4|c4:13:e2:29:c:e6 +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|1 +1.3.6.1.2.1.2.2.1.7.5|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.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|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.3|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.14|2|1 +1.3.6.1.2.1.2.2.1.8.16|2|1 +1.3.6.1.2.1.2.2.1.8.17|2|1 +1.3.6.1.2.1.2.2.1.8.18|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|760164 +1.3.6.1.2.1.2.2.1.9.2|67|760164 +1.3.6.1.2.1.2.2.1.9.3|67|760164 +1.3.6.1.2.1.2.2.1.9.5|67|760164 +1.3.6.1.2.1.2.2.1.9.7|67|760164 +1.3.6.1.2.1.2.2.1.9.8|67|760164 +1.3.6.1.2.1.2.2.1.9.11|67|760164 +1.3.6.1.2.1.2.2.1.9.14|67|760164 +1.3.6.1.2.1.2.2.1.9.16|67|760164 +1.3.6.1.2.1.2.2.1.9.17|67|760164 +1.3.6.1.2.1.2.2.1.9.18|67|760164 +1.3.6.1.2.1.2.2.1.10.1|65|11704 +1.3.6.1.2.1.2.2.1.10.2|65|0 +1.3.6.1.2.1.2.2.1.10.3|65|43322959 +1.3.6.1.2.1.2.2.1.10.5|65|0 +1.3.6.1.2.1.2.2.1.10.7|65|199484621 +1.3.6.1.2.1.2.2.1.10.8|65|4855754 +1.3.6.1.2.1.2.2.1.10.11|65|38578089 +1.3.6.1.2.1.2.2.1.10.14|65|0 +1.3.6.1.2.1.2.2.1.10.16|65|0 +1.3.6.1.2.1.2.2.1.10.17|65|0 +1.3.6.1.2.1.2.2.1.10.18|65|0 +1.3.6.1.2.1.2.2.1.11.1|65|154 +1.3.6.1.2.1.2.2.1.11.2|65|0 +1.3.6.1.2.1.2.2.1.11.3|65|180852 +1.3.6.1.2.1.2.2.1.11.5|65|0 +1.3.6.1.2.1.2.2.1.11.7|65|762250 +1.3.6.1.2.1.2.2.1.11.8|65|17637 +1.3.6.1.2.1.2.2.1.11.11|65|165420 +1.3.6.1.2.1.2.2.1.11.14|65|0 +1.3.6.1.2.1.2.2.1.11.16|65|0 +1.3.6.1.2.1.2.2.1.11.17|65|0 +1.3.6.1.2.1.2.2.1.11.18|65|0 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|0 +1.3.6.1.2.1.2.2.1.12.3|65|0 +1.3.6.1.2.1.2.2.1.12.5|65|0 +1.3.6.1.2.1.2.2.1.12.7|65|0 +1.3.6.1.2.1.2.2.1.12.8|65|0 +1.3.6.1.2.1.2.2.1.12.11|65|0 +1.3.6.1.2.1.2.2.1.12.14|65|0 +1.3.6.1.2.1.2.2.1.12.16|65|0 +1.3.6.1.2.1.2.2.1.12.17|65|0 +1.3.6.1.2.1.2.2.1.12.18|65|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +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|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|429 +1.3.6.1.2.1.2.2.1.13.16|65|136 +1.3.6.1.2.1.2.2.1.13.17|65|135 +1.3.6.1.2.1.2.2.1.13.18|65|133 +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.3|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.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.11|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.15.3|65|0 +1.3.6.1.2.1.2.2.1.15.5|65|0 +1.3.6.1.2.1.2.2.1.15.7|65|0 +1.3.6.1.2.1.2.2.1.15.8|65|0 +1.3.6.1.2.1.2.2.1.15.11|65|0 +1.3.6.1.2.1.2.2.1.15.14|65|0 +1.3.6.1.2.1.2.2.1.15.16|65|0 +1.3.6.1.2.1.2.2.1.15.17|65|0 +1.3.6.1.2.1.2.2.1.15.18|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|11704 +1.3.6.1.2.1.2.2.1.16.2|65|0 +1.3.6.1.2.1.2.2.1.16.3|65|2417908 +1.3.6.1.2.1.2.2.1.16.5|65|858 +1.3.6.1.2.1.2.2.1.16.7|65|0 +1.3.6.1.2.1.2.2.1.16.8|65|0 +1.3.6.1.2.1.2.2.1.16.11|65|1104151 +1.3.6.1.2.1.2.2.1.16.14|65|0 +1.3.6.1.2.1.2.2.1.16.16|65|0 +1.3.6.1.2.1.2.2.1.16.17|65|0 +1.3.6.1.2.1.2.2.1.16.18|65|0 +1.3.6.1.2.1.2.2.1.17.1|65|154 +1.3.6.1.2.1.2.2.1.17.2|65|0 +1.3.6.1.2.1.2.2.1.17.3|65|22414 +1.3.6.1.2.1.2.2.1.17.5|65|4 +1.3.6.1.2.1.2.2.1.17.7|65|0 +1.3.6.1.2.1.2.2.1.17.8|65|0 +1.3.6.1.2.1.2.2.1.17.11|65|8743 +1.3.6.1.2.1.2.2.1.17.14|65|0 +1.3.6.1.2.1.2.2.1.17.16|65|0 +1.3.6.1.2.1.2.2.1.17.17|65|0 +1.3.6.1.2.1.2.2.1.17.18|65|0 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|0 +1.3.6.1.2.1.2.2.1.18.3|65|0 +1.3.6.1.2.1.2.2.1.18.5|65|0 +1.3.6.1.2.1.2.2.1.18.7|65|0 +1.3.6.1.2.1.2.2.1.18.8|65|0 +1.3.6.1.2.1.2.2.1.18.11|65|0 +1.3.6.1.2.1.2.2.1.18.14|65|0 +1.3.6.1.2.1.2.2.1.18.16|65|0 +1.3.6.1.2.1.2.2.1.18.17|65|0 +1.3.6.1.2.1.2.2.1.18.18|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.3|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.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.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|156487 +1.3.6.1.2.1.2.2.1.19.16|65|156695 +1.3.6.1.2.1.2.2.1.19.17|65|156698 +1.3.6.1.2.1.2.2.1.19.18|65|156701 +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.5|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|1 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|0 +1.3.6.1.2.1.2.2.1.21.3|66|0 +1.3.6.1.2.1.2.2.1.21.5|66|0 +1.3.6.1.2.1.2.2.1.21.7|66|0 +1.3.6.1.2.1.2.2.1.21.8|66|0 +1.3.6.1.2.1.2.2.1.21.11|66|0 +1.3.6.1.2.1.2.2.1.21.14|66|0 +1.3.6.1.2.1.2.2.1.21.16|66|0 +1.3.6.1.2.1.2.2.1.21.17|66|0 +1.3.6.1.2.1.2.2.1.21.18|66|0 +1.3.6.1.2.1.2.2.1.22.1|6|0.0 +1.3.6.1.2.1.2.2.1.22.2|6|0.0 +1.3.6.1.2.1.2.2.1.22.3|6|0.0 +1.3.6.1.2.1.2.2.1.22.5|6|0.0 +1.3.6.1.2.1.2.2.1.22.7|6|0.0 +1.3.6.1.2.1.2.2.1.22.8|6|0.0 +1.3.6.1.2.1.2.2.1.22.11|6|0.0 +1.3.6.1.2.1.2.2.1.22.14|6|0.0 +1.3.6.1.2.1.2.2.1.22.16|6|0.0 +1.3.6.1.2.1.2.2.1.22.17|6|0.0 +1.3.6.1.2.1.2.2.1.22.18|6|0.0 +1.3.6.1.2.1.3.1.1.1.11.1.192.168.1.1|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.192.168.1.4|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.192.168.1.220|2|11 +1.3.6.1.2.1.3.1.1.2.11.1.192.168.1.1|4x|00000C07AC05 +1.3.6.1.2.1.3.1.1.2.11.1.192.168.1.4|4x|00077D4D92BF +1.3.6.1.2.1.3.1.1.2.11.1.192.168.1.220|4x|C413E2123180 +1.3.6.1.2.1.3.1.1.3.11.1.192.168.1.1|64|192.168.1.1 +1.3.6.1.2.1.3.1.1.3.11.1.192.168.1.4|64|192.168.1.4 +1.3.6.1.2.1.3.1.1.3.11.1.192.168.1.220|64|192.168.1.220 +1.3.6.1.2.1.4.1.0|2|2 +1.3.6.1.2.1.4.2.0|2|64 +1.3.6.1.2.1.4.3.0|65|123060 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|2 +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|7713 +1.3.6.1.2.1.4.10.0|65|8329 +1.3.6.1.2.1.4.11.0|65|76 +1.3.6.1.2.1.4.12.0|65|409 +1.3.6.1.2.1.4.13.0|2|0 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|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.1.127.0.0.1|64|127.0.0.1 +1.3.6.1.2.1.4.20.1.1.192.168.1.225|64|192.168.1.225 +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.1.225|2|11 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.20.1.3.192.168.1.225|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.4.127.0.0.1|2|0 +1.3.6.1.2.1.4.20.1.4.192.168.1.225|2|1 +1.3.6.1.2.1.4.21.1.1.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.1.127.0.0.0|64|127.0.0.0 +1.3.6.1.2.1.4.21.1.1.192.168.1.0|64|192.168.1.0 +1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|11 +1.3.6.1.2.1.4.21.1.2.127.0.0.0|2|1 +1.3.6.1.2.1.4.21.1.2.192.168.1.0|2|11 +1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|1 +1.3.6.1.2.1.4.21.1.3.127.0.0.0|2|0 +1.3.6.1.2.1.4.21.1.3.192.168.1.0|2|0 +1.3.6.1.2.1.4.21.1.7.0.0.0.0|64|192.168.1.1 +1.3.6.1.2.1.4.21.1.7.127.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.7.192.168.1.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4 +1.3.6.1.2.1.4.21.1.8.127.0.0.0|2|3 +1.3.6.1.2.1.4.21.1.8.192.168.1.0|2|3 +1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|2 +1.3.6.1.2.1.4.21.1.9.127.0.0.0|2|2 +1.3.6.1.2.1.4.21.1.9.192.168.1.0|2|2 +1.3.6.1.2.1.4.21.1.11.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.11.127.0.0.0|64|255.255.255.0 +1.3.6.1.2.1.4.21.1.11.192.168.1.0|64|255.255.255.0 +1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.21.1.13.127.0.0.0|6|0.0 +1.3.6.1.2.1.4.21.1.13.192.168.1.0|6|0.0 +1.3.6.1.2.1.4.23.0|65|0 +1.3.6.1.2.1.4.22.1.1.11.192.168.1.1|2|11 +1.3.6.1.2.1.4.22.1.1.11.192.168.1.4|2|11 +1.3.6.1.2.1.4.22.1.1.11.192.168.1.220|2|11 +1.3.6.1.2.1.4.22.1.2.11.192.168.1.1|4|0:0:c:7:ac:5 +1.3.6.1.2.1.4.22.1.2.11.192.168.1.4|4|0:7:7d:4d:92:bf +1.3.6.1.2.1.4.22.1.2.11.192.168.1.220|4|c4:13:e2:12:31:80 +1.3.6.1.2.1.4.22.1.3.11.192.168.1.1|64|192.168.1.1 +1.3.6.1.2.1.4.22.1.3.11.192.168.1.4|64|192.168.1.4 +1.3.6.1.2.1.4.22.1.3.11.192.168.1.220|64|192.168.1.220 +1.3.6.1.2.1.4.22.1.4.11.192.168.1.1|2|3 +1.3.6.1.2.1.4.22.1.4.11.192.168.1.4|2|3 +1.3.6.1.2.1.4.22.1.4.11.192.168.1.220|2|3 +1.3.6.1.2.1.4.23.0|65|0 +1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.192.168.1.1|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.0.255.255.255.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.1.192.168.1.0.0.255.255.255.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.192.168.1.1|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.0.255.255.255.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.2.192.168.1.0.0.255.255.255.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.192.168.1.1|2|0 +1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.3.192.168.1.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.192.168.1.1|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.0.255.255.255.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.4.192.168.1.0.0.255.255.255.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.192.168.1.1|2|11 +1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.0.255.255.255.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.4.1.5.192.168.1.0.0.255.255.255.0.0.0.0.0|2|11 +1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.192.168.1.1|2|4 +1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.0.255.255.255.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.6.192.168.1.0.0.255.255.255.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.192.168.1.1|2|2 +1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.0.255.255.255.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.7.192.168.1.0.0.255.255.255.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.192.168.1.1|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.0.255.255.255.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.192.168.1.0.0.255.255.255.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.192.168.1.1|2|0 +1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.10.192.168.1.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.192.168.1.1|2|0 +1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.192.168.1.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.12.192.168.1.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.192.168.1.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.192.168.1.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.192.168.1.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.192.168.1.1|2|1 +1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.0.255.255.255.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.4.1.16.192.168.1.0.0.255.255.255.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|11 +1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|11 +1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|4 +1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.1|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.24.1.1.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.1.0.24.1.11.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.25.0|2|2 +1.3.6.1.2.1.4.26.0|2|64 +1.3.6.1.2.1.4.31.1.1.3.1|65|121181 +1.3.6.1.2.1.4.31.1.1.4.1|70|121181 +1.3.6.1.2.1.4.31.1.1.6.1|70|0 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|2 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|7213 +1.3.6.1.2.1.4.31.1.1.19.1|70|7213 +1.3.6.1.2.1.4.31.1.1.20.1|65|7559 +1.3.6.1.2.1.4.31.1.1.21.1|70|7559 +1.3.6.1.2.1.4.31.1.1.22.1|65|409 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|76 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|30000 +1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.3.1.4.192.168.1.225|2|11 +1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.4.1.4.192.168.1.225|2|1 +1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.1.4.49.55.49.48.0 +1.3.6.1.2.1.4.34.1.5.1.4.192.168.1.225|6|1.3.6.1.2.1.4.32.1.5.11.1.4.49.55.49.48.0 +1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.1.4.192.168.1.225|2|2 +1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.7.1.4.192.168.1.225|2|1 +1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1|67|0 +1.3.6.1.2.1.4.34.1.8.1.4.192.168.1.225|67|7046 +1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1|67|0 +1.3.6.1.2.1.4.34.1.9.1.4.192.168.1.225|67|7046 +1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.10.1.4.192.168.1.225|2|1 +1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.11.1.4.192.168.1.225|2|2 +1.3.6.1.2.1.4.35.1.4.11.1.4.192.168.1.1|4|0:0:c:7:ac:5 +1.3.6.1.2.1.4.35.1.4.11.1.4.192.168.1.4|4|0:7:7d:4d:92:bf +1.3.6.1.2.1.4.35.1.4.11.1.4.192.168.1.220|4|c4:13:e2:12:31:80 +1.3.6.1.2.1.4.35.1.6.11.1.4.192.168.1.1|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.192.168.1.4|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.192.168.1.220|2|3 +1.3.6.1.2.1.4.35.1.7.11.1.4.192.168.1.1|2|1 +1.3.6.1.2.1.4.35.1.7.11.1.4.192.168.1.4|2|1 +1.3.6.1.2.1.4.35.1.7.11.1.4.192.168.1.220|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.192.168.1.1|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.192.168.1.4|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.192.168.1.220|2|1 +1.3.6.1.2.1.5.1.0|65|196 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|95 +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|0 +1.3.6.1.2.1.5.9.0|65|101 +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|0 +1.3.6.1.2.1.5.15.0|65|179 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|78 +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|0 +1.3.6.1.2.1.5.23.0|65|101 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.1.0|2|1 +1.3.6.1.2.1.6.2.0|2|200 +1.3.6.1.2.1.6.3.0|2|120000 +1.3.6.1.2.1.6.4.0|2|-1 +1.3.6.1.2.1.6.5.0|65|2 +1.3.6.1.2.1.6.6.0|65|0 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|0 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|20 +1.3.6.1.2.1.6.11.0|65|20 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.3007.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.5916.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.38182.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.127.0.0.1.2008.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.127.0.0.1.2010.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.192.168.1.225.80.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.192.168.1.225.443.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.3007.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.5916.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.38182.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.2.127.0.0.1.2008.0.0.0.0.0|64|127.0.0.1 +1.3.6.1.2.1.6.13.1.2.127.0.0.1.2010.0.0.0.0.0|64|127.0.0.1 +1.3.6.1.2.1.6.13.1.2.192.168.1.225.80.0.0.0.0.0|64|192.168.1.225 +1.3.6.1.2.1.6.13.1.2.192.168.1.225.443.0.0.0.0.0|64|192.168.1.225 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0|2|22 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.3007.0.0.0.0.0|2|3007 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.5916.0.0.0.0.0|2|5916 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.38182.0.0.0.0.0|2|38182 +1.3.6.1.2.1.6.13.1.3.127.0.0.1.2008.0.0.0.0.0|2|2008 +1.3.6.1.2.1.6.13.1.3.127.0.0.1.2010.0.0.0.0.0|2|2010 +1.3.6.1.2.1.6.13.1.3.192.168.1.225.80.0.0.0.0.0|2|80 +1.3.6.1.2.1.6.13.1.3.192.168.1.225.443.0.0.0.0.0|2|443 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.3007.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.5916.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.38182.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.127.0.0.1.2008.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.127.0.0.1.2010.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.192.168.1.225.80.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.4.192.168.1.225.443.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.3007.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.5916.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.38182.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.127.0.0.1.2008.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.127.0.0.1.2010.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.192.168.1.225.80.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.192.168.1.225.443.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|0 +1.3.6.1.2.1.7.1.0|65|7123 +1.3.6.1.2.1.7.2.0|65|78 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|8158 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.161|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.500|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3001|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3002|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3003|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3004|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3008|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3009|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.3010|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.4500|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.5555|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.6666|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.38184|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.38577|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.42032|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.42216|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.42437|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.43664|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.43826|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.43924|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.47153|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.48694|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.49345|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.56104|64|0.0.0.0 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.161|2|161 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.500|2|500 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3001|2|3001 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3002|2|3002 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3003|2|3003 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3004|2|3004 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3008|2|3008 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3009|2|3009 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.3010|2|3010 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.4500|2|4500 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.5555|2|5555 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.6666|2|6666 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.38184|2|38184 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.38577|2|38577 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.42032|2|42032 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.42216|2|42216 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.42437|2|42437 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.43664|2|43664 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.43826|2|43826 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.43924|2|43924 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.47153|2|47153 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.48694|2|48694 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.49345|2|49345 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.56104|2|56104 +1.3.6.1.2.1.11.1.0|65|2194 +1.3.6.1.2.1.11.2.0|65|2193 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|17279 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|647 +1.3.6.1.2.1.11.16.0|65|5 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|2196 +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.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.2|4|tunl0 +1.3.6.1.2.1.31.1.1.1.1.3|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.5|4|eth1 +1.3.6.1.2.1.31.1.1.1.1.7|4|wifi0 +1.3.6.1.2.1.31.1.1.1.1.8|4|wifi1 +1.3.6.1.2.1.31.1.1.1.1.11|4|mgt0 +1.3.6.1.2.1.31.1.1.1.1.14|4|wifi0.1 +1.3.6.1.2.1.31.1.1.1.1.16|4|wifi1.1 +1.3.6.1.2.1.31.1.1.1.1.17|4|wifi1.2 +1.3.6.1.2.1.31.1.1.1.1.18|4|wifi1.3 +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.3|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.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.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|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.3|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.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.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|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.3|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.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.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|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.3|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.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.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.14|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|0 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|11704 +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|43322959 +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.7|70|199484621 +1.3.6.1.2.1.31.1.1.1.6.8|70|4855754 +1.3.6.1.2.1.31.1.1.1.6.11|70|38578089 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|154 +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|180852 +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.7|70|762250 +1.3.6.1.2.1.31.1.1.1.7.8|70|17637 +1.3.6.1.2.1.31.1.1.1.7.11|70|165420 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +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 +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.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.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|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.3|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.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.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|11704 +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|2417908 +1.3.6.1.2.1.31.1.1.1.10.5|70|858 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|1104151 +1.3.6.1.2.1.31.1.1.1.10.14|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|0 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|154 +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|22414 +1.3.6.1.2.1.31.1.1.1.11.5|70|4 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|8743 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +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 +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.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.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|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.3|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.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.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.14|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|0 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|0 +1.3.6.1.2.1.31.1.1.1.14.2|2|0 +1.3.6.1.2.1.31.1.1.1.14.3|2|0 +1.3.6.1.2.1.31.1.1.1.14.5|2|0 +1.3.6.1.2.1.31.1.1.1.14.7|2|0 +1.3.6.1.2.1.31.1.1.1.14.8|2|0 +1.3.6.1.2.1.31.1.1.1.14.11|2|0 +1.3.6.1.2.1.31.1.1.1.14.14|2|0 +1.3.6.1.2.1.31.1.1.1.14.16|2|0 +1.3.6.1.2.1.31.1.1.1.14.17|2|0 +1.3.6.1.2.1.31.1.1.1.14.18|2|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +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.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|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.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.14|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.17|66|0 +1.3.6.1.2.1.31.1.1.1.15.18|66|0 +1.3.6.1.2.1.31.1.1.1.16.1|2|0 +1.3.6.1.2.1.31.1.1.1.16.2|2|0 +1.3.6.1.2.1.31.1.1.1.16.3|2|0 +1.3.6.1.2.1.31.1.1.1.16.5|2|0 +1.3.6.1.2.1.31.1.1.1.16.7|2|0 +1.3.6.1.2.1.31.1.1.1.16.8|2|0 +1.3.6.1.2.1.31.1.1.1.16.11|2|0 +1.3.6.1.2.1.31.1.1.1.16.14|2|0 +1.3.6.1.2.1.31.1.1.1.16.16|2|0 +1.3.6.1.2.1.31.1.1.1.16.17|2|0 +1.3.6.1.2.1.31.1.1.1.16.18|2|0 +1.3.6.1.2.1.31.1.1.1.17.1|2|0 +1.3.6.1.2.1.31.1.1.1.17.2|2|0 +1.3.6.1.2.1.31.1.1.1.17.3|2|0 +1.3.6.1.2.1.31.1.1.1.17.5|2|0 +1.3.6.1.2.1.31.1.1.1.17.7|2|0 +1.3.6.1.2.1.31.1.1.1.17.8|2|0 +1.3.6.1.2.1.31.1.1.1.17.11|2|0 +1.3.6.1.2.1.31.1.1.1.17.14|2|0 +1.3.6.1.2.1.31.1.1.1.17.16|2|0 +1.3.6.1.2.1.31.1.1.1.17.17|2|0 +1.3.6.1.2.1.31.1.1.1.17.18|2|0 +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.3|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.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.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.2.1.31.1.1.1.18.18|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.3|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.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.5.0|67|760164 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.3|4|eth0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.5|4|eth1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.7|4|wifi0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.8|4|wifi1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.11|4|mgt0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.12|4|red0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.13|4|agg0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.14|4|wifi0.1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.16|4|wifi1.1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.17|4|wifi1.2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.1.18|4|wifi1.3 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.3|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.5|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.7|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.8|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.11|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.12|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.13|4|N/A +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.14|4|AH-Guest +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.16|4|AH-Air +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.17|4|AH-employee +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.2.18|4|AH-Guest +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.3|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.5|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.7|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.8|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.11|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.12|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.13|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.14|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.16|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.17|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.3.18|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.3|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.5|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.7|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.8|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.11|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.12|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.13|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.14|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.16|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.17|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.4.18|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.3|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.5|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.7|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.8|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.11|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.12|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.13|2|2 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.14|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.16|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.17|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.5.18|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.3|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.5|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.7|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.8|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.11|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.12|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.13|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.14|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.16|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.17|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.1.1.6.18|2|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.1.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.1.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.2.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.2.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.3.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.3.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.4.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.4.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.5.7|65|23914 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.5.8|65|8198 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.6.7|65|70577 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.6.8|65|216972 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.7.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.7.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.8.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.8.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.9.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.9.8|65|1 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.10.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.10.8|65|1 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.11.7|65|764451 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.11.8|65|17662 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.12.7|65|764453 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.12.8|65|17662 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.13.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.13.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.14.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.14.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.15.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.15.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.16.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.16.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.17.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.17.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.18.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.18.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.19.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.19.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.20.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.20.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.21.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.21.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.22.7|65|25113792 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.22.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.23.7|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.3.1.23.8|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.1.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.1.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.1.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.1.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.2.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.2.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.2.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.2.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.3.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.3.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.3.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.3.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.4.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.4.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.4.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.4.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.5.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.5.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.5.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.5.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.6.14|65|429 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.6.16|65|136 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.6.17|65|135 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.6.18|65|133 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.7.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.7.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.7.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.7.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.8.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.8.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.8.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.8.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.9.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.9.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.9.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.9.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.10.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.10.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.10.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.10.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.11.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.11.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.11.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.11.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.12.14|65|156634 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.12.16|65|156842 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.12.17|65|156845 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.12.18|65|156848 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.13.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.13.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.13.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.13.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.14.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.14.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.14.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.14.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.15.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.15.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.15.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.15.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.16.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.16.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.16.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.16.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.17.14|65|25113792 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.17.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.17.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.17.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.18.14|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.18.16|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.18.17|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.4.1.18.18|65|0 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.1.7|2|1 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.1.8|2|153 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.2.7|2|5 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.2.8|2|20 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.3.7|2|161 +1.3.6.1.4.1.26928.1.1.1.2.1.5.1.3.8|2|161 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.1.3.6.196.19.226.18.49.128|4x|C413E2123180 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.2.3.6.196.19.226.18.49.128|65|1 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.3.3.6.196.19.226.18.49.128|2|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.4.3.6.196.19.226.18.49.128|65|7566 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.5.3.6.196.19.226.18.49.128|2|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.6.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.7.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.8.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.9.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.10.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.11.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.12.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.13.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.14.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.15.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.16.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.17.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.18.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.19.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.20.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.1.1.3.1.1.1.21.3.6.196.19.226.18.49.128|65|0 +1.3.6.1.4.1.26928.1.2.1.0|4|rm10-ap250 +1.3.6.1.4.1.26928.1.2.2.0|4|Product:AP250, HWVersion:01, SoftWareVersion:HiveOS 8.1r2a build-178408 +1.3.6.1.4.1.26928.1.2.3.0|2|1 +1.3.6.1.4.1.26928.1.2.4.0|2|26 +1.3.6.1.4.1.26928.1.2.5.0|4|02501608254257 +1.3.6.1.4.1.26928.1.2.6.0|4|AP250 +1.3.6.1.4.1.26928.1.2.7.0|4|0 weeks, 0 days, 2 hours, 7 minutes, 2 seconds +1.3.6.1.4.1.26928.1.2.8.0|4|01 +1.3.6.1.4.1.26928.1.2.9.0|2|0 +1.3.6.1.4.1.26928.1.2.10.0|2|47 +1.3.6.1.4.1.26928.1.2.11.0|2|0 +1.3.6.1.4.1.26928.1.2.12.0|4|HiveOS 8.1r2a build-178408 +1.3.6.1.4.1.26928.1.3.1.0|4|wifi0:-95 dBm,wifi1:-95 dBm +1.3.6.1.4.1.26928.1.3.2.0|4|c413:e229:0cc0 +1.3.6.1.4.1.26928.1.3.3.0|4|192.168.1.225 +1.3.6.1.6.3.1.1.6.1.0|2|380731425 +1.3.6.1.6.3.10.2.1.1.0|4x|8000693003C413E2290CC0 +1.3.6.1.6.3.10.2.1.2.0|2|1 +1.3.6.1.6.3.10.2.1.3.0|2|7581 +1.3.6.1.6.3.10.2.1.4.0|2|1500 +1.3.6.1.6.3.11.2.1.1.0|65|0 +1.3.6.1.6.3.11.2.1.2.0|65|0 +1.3.6.1.6.3.11.2.1.3.0|65|0 +1.3.6.1.6.3.15.1.1.1.0|65|0 +1.3.6.1.6.3.15.1.1.2.0|65|0 +1.3.6.1.6.3.15.1.1.3.0|65|0 +1.3.6.1.6.3.15.1.1.4.0|65|0 +1.3.6.1.6.3.15.1.1.5.0|65|0 +1.3.6.1.6.3.15.1.1.6.0|65|0 +1.3.6.1.6.3.15.1.2.1.0|2|0 +1.3.6.1.6.3.16.1.1.1.1.0|4| +1.3.6.1.6.3.16.1.2.1.3.2.5.99.111.109.109.53|4|grpcomm5 +1.3.6.1.6.3.16.1.2.1.3.2.5.99.111.109.109.54|4|grpcomm6 +1.3.6.1.6.3.16.1.2.1.4.2.5.99.111.109.109.53|2|4 +1.3.6.1.6.3.16.1.2.1.4.2.5.99.111.109.109.54|2|4 +1.3.6.1.6.3.16.1.2.1.5.2.5.99.111.109.109.53|2|1 +1.3.6.1.6.3.16.1.2.1.5.2.5.99.111.109.109.54|2|1 +1.3.6.1.6.3.16.1.4.1.4.8.103.114.112.99.111.109.109.53.0.2.1|2|2 +1.3.6.1.6.3.16.1.4.1.4.8.103.114.112.99.111.109.109.54.0.2.1|2|2 +1.3.6.1.6.3.16.1.4.1.5.8.103.114.112.99.111.109.109.53.0.2.1|4|_all_ +1.3.6.1.6.3.16.1.4.1.5.8.103.114.112.99.111.109.109.54.0.2.1|4|_all_ +1.3.6.1.6.3.16.1.4.1.6.8.103.114.112.99.111.109.109.53.0.2.1|4|_all_ +1.3.6.1.6.3.16.1.4.1.6.8.103.114.112.99.111.109.109.54.0.2.1|4|_all_ +1.3.6.1.6.3.16.1.4.1.7.8.103.114.112.99.111.109.109.53.0.2.1|4|_all_ +1.3.6.1.6.3.16.1.4.1.7.8.103.114.112.99.111.109.109.54.0.2.1|4|_all_ +1.3.6.1.6.3.16.1.4.1.8.8.103.114.112.99.111.109.109.53.0.2.1|2|4 +1.3.6.1.6.3.16.1.4.1.8.8.103.114.112.99.111.109.109.54.0.2.1|2|4 +1.3.6.1.6.3.16.1.4.1.9.8.103.114.112.99.111.109.109.53.0.2.1|2|1 +1.3.6.1.6.3.16.1.4.1.9.8.103.114.112.99.111.109.109.54.0.2.1|2|1 +1.3.6.1.6.3.16.1.5.1.0|2|0 +1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.0|4| +1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.1|4| +1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.2|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.0|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.1|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.2|4| +1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.0|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.2|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.0|2|2 +1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.1|2|2 +1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.2|2|2 +1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.0|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.1|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.2|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.0|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.1|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.2|2|4 +1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.0|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.2|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.0|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.2|2|1