From e5f7969dc6d387ac5e678edb1e64f6f5dec90728 Mon Sep 17 00:00:00 2001 From: takenalias Date: Sun, 21 Oct 2018 06:12:29 +1030 Subject: [PATCH] Added support for Mirkrotik Wireless Wire (wAP 60G) (#9318) DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [x ] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply `, i.e `./scripts/github-apply 5926` After you are done testing, you can remove the changes with `./scripts/github-remove`. If there are schema changes, you can ask on discord how to revert. Fixes: #8933 --- LibreNMS/OS/Routeros.php | 94 +- includes/definitions/discovery/routeros.yaml | 20 + includes/definitions/routeros.yaml | 5 +- tests/data/routeros.json | 1735 +++++++++--------- tests/snmpsim/routeros.snmprec | 631 +++++++ 5 files changed, 1632 insertions(+), 853 deletions(-) diff --git a/LibreNMS/OS/Routeros.php b/LibreNMS/OS/Routeros.php index 5364f8a71d..70ec1ed7a2 100644 --- a/LibreNMS/OS/Routeros.php +++ b/LibreNMS/OS/Routeros.php @@ -31,6 +31,7 @@ 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\WirelessRssiDiscovery; use LibreNMS\OS; class Routeros extends OS implements @@ -38,7 +39,8 @@ class Routeros extends OS implements WirelessClientsDiscovery, WirelessFrequencyDiscovery, WirelessNoiseFloorDiscovery, - WirelessRateDiscovery + WirelessRateDiscovery, + WirelessRssiDiscovery { private $data; @@ -50,7 +52,6 @@ class Routeros extends OS implements public function discoverWirelessCcq() { $data = $this->fetchData(); - $sensors = array(); foreach ($data as $index => $entry) { // skip sensors with no data (nv2 should report 1 client, but doesn't report ccq) @@ -68,10 +69,8 @@ class Routeros extends OS implements $entry['mtxrWlApOverallTxCCQ'] ); } - return $sensors; } - /** * Returns an array of LibreNMS\Device\Sensor objects that have been discovered * @@ -85,7 +84,6 @@ class Routeros extends OS implements '.1.3.6.1.4.1.14988.1.1.1.3.1.6.' ); } - /** * Discover wireless frequency. This is in MHz. Type is frequency. * Returns an array of LibreNMS\Device\Sensor objects that have been discovered @@ -93,14 +91,40 @@ class Routeros extends OS implements * @return array Sensors */ public function discoverWirelessFrequency() + { + $data = $this->fetchData(); + + $sensors = array(); + foreach ($data as $index => $entry) { + if ($entry['mtxrWlApFreq'] == null) { + return $this->discoverSensor( + 'frequency', + 'mtxrWl60GFreq', + '.1.3.6.1.4.1.14988.1.1.1.8.1.6.' + ); + } else { + return $this->discoverSensor( + 'frequency', + 'mtxrWlApFreq', + '.1.3.6.1.4.1.14988.1.1.1.3.1.7.' + ); + } + } + } + /** + * Discover wireless Rssi. This is in Dbm. Type is Dbm. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array Sensors + */ + public function discoverWirelessRssi() { return $this->discoverSensor( - 'frequency', - 'mtxrWlApFreq', - '.1.3.6.1.4.1.14988.1.1.1.3.1.7.' + 'rssi', + 'mtxrWl60GRssi', + '.1.3.6.1.4.1.14988.1.1.1.8.1.12.' ); } - /** * Returns an array of LibreNMS\Device\Sensor objects that have been discovered * @@ -114,7 +138,6 @@ class Routeros extends OS implements '.1.3.6.1.4.1.14988.1.1.1.3.1.9.' ); } - /** * Discover wireless rate. This is in bps. Type is rate. * Returns an array of LibreNMS\Device\Sensor objects that have been discovered @@ -124,7 +147,6 @@ class Routeros extends OS implements public function discoverWirelessRate() { $data = $this->fetchData(); - $sensors = array(); foreach ($data as $index => $entry) { $sensors[] = new WirelessSensor( @@ -145,37 +167,55 @@ class Routeros extends OS implements 'SSID: ' . $entry['mtxrWlApSsid'] . ' Rx', $entry['mtxrWlApRxRate'] ); + $sensors[] = new WirelessSensor( + 'rate', + $this->getDeviceId(), + '.1.3.6.1.4.1.14988.1.1.1.8.1.13.' . $index, + 'mikrotik-rate', + $index, + 'SSID: ' . $entry['mtxrWl60GSsid'], + $entry['mtxrWl60G'], + $multiplier = 1000000 + ); } - return $sensors; } - private function fetchData() { if (is_null($this->data)) { - $this->data = snmpwalk_cache_oid($this->getDevice(), 'mtxrWlApTable', array(), 'MIKROTIK-MIB'); + $wl60 = snmpwalk_cache_oid($this->getDevice(), 'mtxrWl60GTable', array(), 'MIKROTIK-MIB'); + $wlap = snmpwalk_cache_oid($this->getDevice(), 'mtxrWlApTable', array(), 'MIKROTIK-MIB'); + $this->data = $wl60+$wlap; } - return $this->data; } - private function discoverSensor($type, $oid, $num_oid_base) { $data = $this->fetchData(); - $sensors = array(); foreach ($data as $index => $entry) { - $sensors[] = new WirelessSensor( - $type, - $this->getDeviceId(), - $num_oid_base . $index, - 'mikrotik', - $index, - 'SSID: ' . $entry['mtxrWlApSsid'], - $entry[$oid] - ); + if (($entry['mtxrWlApSsid'] !== null)) { + $sensors[] = new WirelessSensor( + $type, + $this->getDeviceId(), + $num_oid_base . $index, + 'mikrotik', + $index, + 'SSID: ' . $entry['mtxrWlApSsid'], + $entry[$oid] + ); + } else { + $sensors[] = new WirelessSensor( + $type, + $this->getDeviceId(), + $num_oid_base . $index, + 'mikrotik', + $index, + 'SSID: ' . $entry['mtxrWl60GSsid'], + $entry[$oid] + ); + } } - return $sensors; } } diff --git a/includes/definitions/discovery/routeros.yaml b/includes/definitions/discovery/routeros.yaml index 7cb9019566..f534ada6c3 100644 --- a/includes/definitions/discovery/routeros.yaml +++ b/includes/definitions/discovery/routeros.yaml @@ -168,6 +168,26 @@ modules: states: - { value: 0, generic: 2, graph: 1, descr: 'false' } - { value: 1, generic: 0, graph: 1, descr: 'true' } + - + oid: mtxrWl60GConnected + num_oid: .1.3.6.1.4.1.14988.1.1.1.8.1.4. + descr: Station Connected + index: 'mtxrWl60GConnected.{{ $index ]]' + state_name: mtxrWl60GConnected + states: + - { value: 0, generic: 2, graph: 1, descr: 'disconnected' } + - { value: 1, generic: 0, graph: 1, descr: 'connected' } + - + oid: mtxrWl60GMode + num_oid: .1.3.6.1.4.1.14988.1.1.1.8.1.2. + descr: Mode + index: 'mtxrWl60GMode.{{ $index }}' + state_name: mtxrWl60GMode + states: + - { value: 0, generic: 0, graph: 1, descr: 'AP Bridge' } + - { value: 1, generic: 0, graph: 1, descr: 'Station Bridge' } + - { value: 2, generic: 0, graph: 1, descr: 'Sniff' } + - { value: 3, generic: 0, graph: 1, descr: 'Bridge' } power: data: - diff --git a/includes/definitions/routeros.yaml b/includes/definitions/routeros.yaml index b809a6a72b..7f65915962 100644 --- a/includes/definitions/routeros.yaml +++ b/includes/definitions/routeros.yaml @@ -1,6 +1,7 @@ os: routeros text: 'Mikrotik RouterOS' icon: mikrotik +group: mikrotik type: network mib_dir: - mikrotik @@ -12,4 +13,6 @@ over: register_mibs: ciscoAAASessionMIB: CISCO-AAA-SESSION-MIB discovery: - - sysObjectID: .1.3.6.1.4.1.14988.1 + - + sysObjectID: + - .1.3.6.1.4.1.14988.1 diff --git a/tests/data/routeros.json b/tests/data/routeros.json index 6a9b73a837..73ccb65d0e 100644 --- a/tests/data/routeros.json +++ b/tests/data/routeros.json @@ -1,124 +1,38 @@ { - "arp-table": { + "os": { "discovery": { - "ipv4_mac": [ + "devices": [ { - "mac_address": "9c5c8ea4a477", - "ipv4_address": "192.168.11.110", - "context_name": null - }, - { - "mac_address": "088c2c156eb9", - "ipv4_address": "192.168.11.111", - "context_name": null - }, - { - "mac_address": "382c4a4023c5", - "ipv4_address": "192.168.11.112", - "context_name": null - }, - { - "mac_address": "a4e4b84ad5ca", - "ipv4_address": "192.168.11.115", - "context_name": null - }, - { - "mac_address": "305a3a3dbb4c", - "ipv4_address": "192.168.11.119", - "context_name": null - }, - { - "mac_address": "14b48403affa", - "ipv4_address": "192.168.11.122", - "context_name": null - }, - { - "mac_address": "508f4cf50548", - "ipv4_address": "192.168.11.123", - "context_name": null - }, - { - "mac_address": "742344e240b4", - "ipv4_address": "192.168.11.124", - "context_name": null - }, - { - "mac_address": "0066652de42e", - "ipv4_address": "192.168.11.126", - "context_name": null - }, - { - "mac_address": "b0e23535d799", - "ipv4_address": "192.168.11.127", - "context_name": null - }, - { - "mac_address": "f40e222b347b", - "ipv4_address": "192.168.11.130", - "context_name": null - }, - { - "mac_address": "c0eefb36029f", - "ipv4_address": "192.168.11.238", - "context_name": null - }, - { - "mac_address": "c8d779dc4625", - "ipv4_address": "192.168.11.244", - "context_name": null - }, - { - "mac_address": "4ea3be8d52fd", - "ipv4_address": "192.168.11.252", - "context_name": null - }, - { - "mac_address": "00271032ed60", - "ipv4_address": "192.168.11.253", - "context_name": null - } - ] - }, - "poller": null - }, - "mempools": { - "discovery": { - "mempools": [ - { - "mempool_index": "65536", - "entPhysicalIndex": null, - "hrDeviceIndex": null, - "mempool_type": "hrstorage", - "mempool_precision": "1024", - "mempool_descr": "main memory", - "mempool_perc": "0", - "mempool_used": "0", - "mempool_free": "0", - "mempool_total": "0", - "mempool_largestfree": null, - "mempool_lowestfree": null, - "mempool_deleted": "0", - "mempool_perc_warn": "75" + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.14988.1", + "sysDescr": "router", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "location": null, + "os": "routeros", + "type": "network", + "serial": null, + "icon": "mikrotik.svg" } ] }, "poller": { - "mempools": [ + "devices": [ { - "mempool_index": "65536", - "entPhysicalIndex": null, - "hrDeviceIndex": null, - "mempool_type": "hrstorage", - "mempool_precision": "1024", - "mempool_descr": "main memory", - "mempool_perc": "42", - "mempool_used": "27848704", - "mempool_free": "39260160", - "mempool_total": "67108864", - "mempool_largestfree": null, - "mempool_lowestfree": null, - "mempool_deleted": "0", - "mempool_perc_warn": "75" + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.14988.1", + "sysDescr": "router", + "sysContact": "", + "version": "6.40.5", + "hardware": null, + "features": "Level 1", + "location": "", + "os": "routeros", + "type": "network", + "serial": "71B1060EE89D", + "icon": "mikrotik.svg" } ] } @@ -135,7 +49,7 @@ "ifDescr": "wlan1", "ifName": "wlan1", "portName": null, - "ifIndex": "1", + "ifIndex": 1, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -150,15 +64,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -240,7 +154,7 @@ "ifDescr": "wlan2", "ifName": "wlan2", "portName": null, - "ifIndex": "2", + "ifIndex": 2, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -255,15 +169,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -345,7 +259,7 @@ "ifDescr": "WAN", "ifName": "WAN", "portName": null, - "ifIndex": "3", + "ifIndex": 3, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -360,15 +274,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -450,7 +364,7 @@ "ifDescr": "ether2", "ifName": "ether2", "portName": null, - "ifIndex": "4", + "ifIndex": 4, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -465,15 +379,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -555,7 +469,7 @@ "ifDescr": "ether3", "ifName": "ether3", "portName": null, - "ifIndex": "5", + "ifIndex": 5, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -570,15 +484,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -660,7 +574,7 @@ "ifDescr": "ether4", "ifName": "ether4", "portName": null, - "ifIndex": "6", + "ifIndex": 6, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -675,15 +589,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -765,7 +679,7 @@ "ifDescr": "ether5", "ifName": "ether5", "portName": null, - "ifIndex": "7", + "ifIndex": 7, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -780,15 +694,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -870,7 +784,7 @@ "ifDescr": "wlan3", "ifName": "wlan3", "portName": null, - "ifIndex": "8", + "ifIndex": 8, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -885,15 +799,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -975,7 +889,7 @@ "ifDescr": "wlan4", "ifName": "wlan4", "portName": null, - "ifIndex": "9", + "ifIndex": 9, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -990,15 +904,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1080,7 +994,7 @@ "ifDescr": "bridge-local", "ifName": "bridge-local", "portName": null, - "ifIndex": "10", + "ifIndex": 10, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -1095,15 +1009,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1185,7 +1099,7 @@ "ifDescr": "bridge-admin", "ifName": "bridge-admin", "portName": null, - "ifIndex": "12", + "ifIndex": 12, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -1200,15 +1114,15 @@ "ifAlias": "", "ifPhysAddress": null, "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1294,30 +1208,30 @@ "ifDescr": "wlan1", "ifName": "wlan1", "portName": null, - "ifIndex": "1", - "ifSpeed": "50000000", + "ifIndex": 1, + "ifSpeed": 50000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "50", + "ifHighSpeed": 50, "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ieee80211", "ifAlias": "wlan1", "ifPhysAddress": "6c3b6ba200fc", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1328,65 +1242,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "1914187", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 1914187, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "2763965", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 2763965, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "235098478", - "ifInOctets_prev": "0", + "ifInOctets": 235098478, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "3592473100", - "ifOutOctets_prev": "0", + "ifOutOctets": 3592473100, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -1399,30 +1313,30 @@ "ifDescr": "wlan2", "ifName": "wlan2", "portName": null, - "ifIndex": "2", - "ifSpeed": "50000000", + "ifIndex": 2, + "ifSpeed": 50000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "50", + "ifHighSpeed": 50, "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ieee80211", "ifAlias": "wlan2", "ifPhysAddress": "6c3b6ba200fb", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1433,65 +1347,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "577", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 577, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "857", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 857, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "70946", - "ifInOctets_prev": "0", + "ifInOctets": 70946, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "124247", - "ifOutOctets_prev": "0", + "ifOutOctets": 124247, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -1504,30 +1418,30 @@ "ifDescr": "WAN", "ifName": "WAN", "portName": null, - "ifIndex": "3", - "ifSpeed": "100000000", + "ifIndex": 3, + "ifSpeed": 100000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "100", + "ifHighSpeed": 100, "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "WAN", "ifPhysAddress": "6c3b6ba200f6", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1538,65 +1452,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "4714115", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 4714115, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "2768802", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 2768802, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "6422347895", - "ifInOctets_prev": "0", + "ifInOctets": 6422347895, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "358657426", - "ifOutOctets_prev": "0", + "ifOutOctets": 358657426, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -1609,30 +1523,30 @@ "ifDescr": "ether2", "ifName": "ether2", "portName": null, - "ifIndex": "4", - "ifSpeed": "100000000", + "ifIndex": 4, + "ifSpeed": 100000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "100", + "ifHighSpeed": 100, "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "ether2", "ifPhysAddress": "6c3b6ba200f7", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1643,65 +1557,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "34877", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 34877, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "52700", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 52700, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "4759651", - "ifInOctets_prev": "0", + "ifInOctets": 4759651, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "6867265", - "ifOutOctets_prev": "0", + "ifOutOctets": 6867265, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -1714,30 +1628,30 @@ "ifDescr": "ether3", "ifName": "ether3", "portName": null, - "ifIndex": "5", + "ifIndex": 5, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "0", + "ifHighSpeed": 0, "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "ether3", "ifPhysAddress": "6c3b6ba200f8", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1748,65 +1662,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "0", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "0", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "0", - "ifInOctets_prev": "0", + "ifInOctets": 0, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "0", - "ifOutOctets_prev": "0", + "ifOutOctets": 0, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -1819,30 +1733,30 @@ "ifDescr": "ether4", "ifName": "ether4", "portName": null, - "ifIndex": "6", + "ifIndex": 6, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "0", + "ifHighSpeed": 0, "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "ether4", "ifPhysAddress": "6c3b6ba200f9", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1853,65 +1767,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "0", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "0", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "0", - "ifInOctets_prev": "0", + "ifInOctets": 0, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "0", - "ifOutOctets_prev": "0", + "ifOutOctets": 0, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -1924,30 +1838,30 @@ "ifDescr": "ether5", "ifName": "ether5", "portName": null, - "ifIndex": "7", + "ifIndex": 7, "ifSpeed": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "0", + "ifHighSpeed": 0, "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": "down", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ethernetCsmacd", "ifAlias": "ether5", "ifPhysAddress": "6c3b6ba200fa", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -1958,65 +1872,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "0", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "0", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "0", - "ifInOctets_prev": "0", + "ifInOctets": 0, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "0", - "ifOutOctets_prev": "0", + "ifOutOctets": 0, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -2029,30 +1943,30 @@ "ifDescr": "wlan3", "ifName": "wlan3", "portName": null, - "ifIndex": "8", - "ifSpeed": "50000000", + "ifIndex": 8, + "ifSpeed": 50000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "50", + "ifHighSpeed": 50, "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ieee80211", "ifAlias": "wlan3", "ifPhysAddress": "6e3b6ba200fb", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -2063,65 +1977,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "41705", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 41705, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "47895", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 47895, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "3810656", - "ifInOctets_prev": "0", + "ifInOctets": 3810656, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "44655542", - "ifOutOctets_prev": "0", + "ifOutOctets": 44655542, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -2134,30 +2048,30 @@ "ifDescr": "wlan4", "ifName": "wlan4", "portName": null, - "ifIndex": "9", - "ifSpeed": "50000000", + "ifIndex": 9, + "ifSpeed": 50000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "50", + "ifHighSpeed": 50, "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "ieee80211", "ifAlias": "wlan4", "ifPhysAddress": "6e3b6ba200fc", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -2168,65 +2082,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "1081209", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 1081209, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "1759827", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 1759827, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "119484267", - "ifInOctets_prev": "0", + "ifInOctets": 119484267, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "2280733313", - "ifOutOctets_prev": "0", + "ifOutOctets": 2280733313, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -2239,30 +2153,30 @@ "ifDescr": "bridge-local", "ifName": "bridge-local", "portName": null, - "ifIndex": "10", - "ifSpeed": "100000000", + "ifIndex": 10, + "ifSpeed": 100000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "100", + "ifHighSpeed": 100, "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "bridge", "ifAlias": "bridge-local", "ifPhysAddress": "6c3b6ba200fc", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -2273,65 +2187,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "3072537", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 3072537, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "4589331", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 4589331, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "320065583", - "ifInOctets_prev": "0", + "ifInOctets": 320065583, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "5924793339", - "ifOutOctets_prev": "0", + "ifOutOctets": 5924793339, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null }, @@ -2344,30 +2258,30 @@ "ifDescr": "bridge-admin", "ifName": "bridge-admin", "portName": null, - "ifIndex": "12", - "ifSpeed": "100000000", + "ifIndex": 12, + "ifSpeed": 100000000, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifHighSpeed": "100", + "ifHighSpeed": 100, "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, - "ifMtu": "1500", + "ifMtu": 1500, "ifType": "bridge", "ifAlias": "bridge-admin", "ifPhysAddress": "000000000000", "ifHardType": null, - "ifLastChange": "0", + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, - "ignore": "0", - "disabled": "0", - "detailed": "0", - "deleted": "0", + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, "pagpOperationMode": null, "pagpPortState": null, "pagpPartnerDeviceId": null, @@ -2378,65 +2292,65 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "0", - "ifInUcastPkts_prev": "0", + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "1008", - "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts": 1008, + "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": "0", - "ifInErrors_prev": "0", + "ifInErrors": 0, + "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": "0", - "ifOutErrors_prev": "0", + "ifOutErrors": 0, + "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "0", - "ifInOctets_prev": "0", + "ifInOctets": 0, + "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": "119280", - "ifOutOctets_prev": "0", + "ifOutOctets": 119280, + "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": "0", - "ifInNUcastPkts_prev": "0", + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": "0", - "ifOutNUcastPkts_prev": "0", + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": "0", - "ifInDiscards_prev": "0", + "ifInDiscards": 0, + "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": "0", - "ifOutDiscards_prev": "0", + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, - "ifInUnknownProtos": "0", - "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, "ifInUnknownProtos_delta": null, "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": "0", - "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, "ifInBroadcastPkts_delta": null, "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": "0", - "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": "0", - "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": "0", - "ifOutMulticastPkts_prev": "0", + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null } @@ -2447,20 +2361,95 @@ "discovery": { "processors": [ { - "entPhysicalIndex": "0", - "hrDeviceIndex": "1", + "entPhysicalIndex": 0, + "hrDeviceIndex": 1, "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.1", "processor_index": "1", "processor_type": "hr", - "processor_usage": "21", + "processor_usage": 21, "processor_descr": "Processor", - "processor_precision": "1", - "processor_perc_warn": "75" + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 2, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.2", + "processor_index": "2", + "processor_type": "hr", + "processor_usage": 0, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 3, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.3", + "processor_index": "3", + "processor_type": "hr", + "processor_usage": 0, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 4, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.4", + "processor_index": "4", + "processor_type": "hr", + "processor_usage": 0, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 } ] }, "poller": "matches discovery" }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "65536", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "main memory", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "65536", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "main memory", + "mempool_perc": 42, + "mempool_used": 27848704, + "mempool_free": 39260160, + "mempool_total": 67108864, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + } + }, "sensors": { "discovery": { "sensors": [ @@ -2474,8 +2463,8 @@ "sensor_descr": "sfp1 Tx", "sensor_divisor": 1000, "sensor_multiplier": 1, - "sensor_current": 0.007, - "sensor_limit": 0.0105, + "sensor_current": 0.0070000000000000001, + "sensor_limit": 0.010500000000000001, "sensor_limit_warn": null, "sensor_limit_low": null, "sensor_limit_low_warn": null, @@ -2521,9 +2510,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": -5.673, - "sensor_limit": -5.38935, + "sensor_limit": -5.3893500000000003, "sensor_limit_warn": null, - "sensor_limit_low": -5.95665, + "sensor_limit_low": -5.9566499999999998, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2543,10 +2532,10 @@ "sensor_descr": "sfp1 Tx", "sensor_divisor": 1000, "sensor_multiplier": 1, - "sensor_current": -4.879, - "sensor_limit": -4.63505, + "sensor_current": -4.8789999999999996, + "sensor_limit": -4.6350499999999997, "sensor_limit_warn": null, - "sensor_limit_low": -5.12295, + "sensor_limit_low": -5.1229500000000003, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2671,6 +2660,52 @@ "user_func": null, "state_name": "mtxrOpticalTxFault" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.8.1.4.1", + "sensor_index": "mtxrWl60GConnected.{{ $index ]]", + "sensor_type": "mtxrWl60GConnected", + "sensor_descr": "Station Connected", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrWl60GConnected" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.8.1.2.1", + "sensor_index": "mtxrWl60GMode.1", + "sensor_type": "mtxrWl60GMode", + "sensor_descr": "Mode", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrWl60GMode" + }, { "sensor_deleted": 0, "sensor_class": "temperature", @@ -2728,7 +2763,7 @@ "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 15.4, - "sensor_limit": 17.71, + "sensor_limit": 17.710000000000001, "sensor_limit_warn": null, "sensor_limit_low": 13.09, "sensor_limit_low_warn": null, @@ -2751,9 +2786,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 3.302, - "sensor_limit": 3.7973, + "sensor_limit": 3.7972999999999999, "sensor_limit_warn": null, - "sensor_limit_low": 2.8067, + "sensor_limit_low": 2.8067000000000002, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2829,6 +2864,48 @@ "state_draw_graph": 1, "state_value": 2, "state_generic_value": 3 + }, + { + "state_name": "mtxrWl60GConnected", + "state_descr": "disconnected", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "mtxrWl60GConnected", + "state_descr": "connected", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "AP Bridge", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "Station Bridge", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "Sniff", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "Bridge", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 } ] }, @@ -2844,8 +2921,8 @@ "sensor_descr": "sfp1 Tx", "sensor_divisor": 1000, "sensor_multiplier": 1, - "sensor_current": 0.007, - "sensor_limit": 0.0105, + "sensor_current": 0.0070000000000000001, + "sensor_limit": 0.010500000000000001, "sensor_limit_warn": null, "sensor_limit_low": null, "sensor_limit_low_warn": null, @@ -2891,9 +2968,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": -5.673, - "sensor_limit": -5.38935, + "sensor_limit": -5.3893500000000003, "sensor_limit_warn": null, - "sensor_limit_low": -5.95665, + "sensor_limit_low": -5.9566499999999998, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2913,10 +2990,10 @@ "sensor_descr": "sfp1 Tx", "sensor_divisor": 1000, "sensor_multiplier": 1, - "sensor_current": -4.879, - "sensor_limit": -4.63505, + "sensor_current": -4.8789999999999996, + "sensor_limit": -4.6350499999999997, "sensor_limit_warn": null, - "sensor_limit_low": -5.12295, + "sensor_limit_low": -5.1229500000000003, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -3041,6 +3118,52 @@ "user_func": null, "state_name": "mtxrOpticalTxFault" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.8.1.4.1", + "sensor_index": "mtxrWl60GConnected.{{ $index ]]", + "sensor_type": "mtxrWl60GConnected", + "sensor_descr": "Station Connected", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrWl60GConnected" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.1.8.1.2.1", + "sensor_index": "mtxrWl60GMode.1", + "sensor_type": "mtxrWl60GMode", + "sensor_descr": "Mode", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrWl60GMode" + }, { "sensor_deleted": 0, "sensor_class": "temperature", @@ -3098,7 +3221,7 @@ "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 15.4, - "sensor_limit": 17.71, + "sensor_limit": 17.710000000000001, "sensor_limit_warn": null, "sensor_limit_low": 13.09, "sensor_limit_low_warn": null, @@ -3121,9 +3244,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 3.302, - "sensor_limit": 3.7973, + "sensor_limit": 3.7972999999999999, "sensor_limit_warn": null, - "sensor_limit_low": 2.8067, + "sensor_limit_low": 2.8067000000000002, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -3199,6 +3322,48 @@ "state_draw_graph": 1, "state_value": 2, "state_generic_value": 3 + }, + { + "state_name": "mtxrWl60GConnected", + "state_descr": "disconnected", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "mtxrWl60GConnected", + "state_descr": "connected", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "AP Bridge", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "Station Bridge", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "Sniff", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "mtxrWl60GMode", + "state_descr": "Bridge", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 } ] } @@ -3211,13 +3376,13 @@ "storage_index": "131072", "storage_type": "hrStorageFixedDisk", "storage_descr": "system disk", - "storage_size": "16777216", - "storage_units": "1024", - "storage_used": "11845632", - "storage_free": "0", - "storage_perc": "0", - "storage_perc_warn": "60", - "storage_deleted": "0" + "storage_size": 16777216, + "storage_units": 1024, + "storage_used": 11845632, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 } ] }, @@ -3228,13 +3393,13 @@ "storage_index": "131072", "storage_type": "hrStorageFixedDisk", "storage_descr": "system disk", - "storage_size": "16777216", - "storage_units": "1024", - "storage_used": "11845632", - "storage_free": "4931584", - "storage_perc": "71", - "storage_perc_warn": "60", - "storage_deleted": "0" + "storage_size": 16777216, + "storage_units": 1024, + "storage_used": 11845632, + "storage_free": 4931584, + "storage_perc": 71, + "storage_perc_warn": 60, + "storage_deleted": 0 } ] } @@ -3247,7 +3412,7 @@ "sensor_class": "clients", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: MikroTik-e2f1fc", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3331,7 +3496,7 @@ "sensor_class": "rate", "sensor_index": "1", "sensor_type": "mikrotik-tx", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B Tx", + "sensor_descr": "SSID: Tx", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3352,7 +3517,7 @@ "sensor_class": "rate", "sensor_index": "1", "sensor_type": "mikrotik-rx", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B Rx", + "sensor_descr": "SSID: Rx", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3368,6 +3533,27 @@ "entPhysicalIndex_measured": null, "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.3.1\"]" }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "1", + "sensor_type": "mikrotik-rate", + "sensor_descr": "SSID: MikroTik-e2f1fc", + "sensor_divisor": 1, + "sensor_multiplier": 1000000, + "sensor_aggregator": "sum", + "sensor_current": 2310000000, + "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.14988.1.1.1.8.1.13.1\"]" + }, { "sensor_deleted": 0, "sensor_class": "rate", @@ -3499,7 +3685,7 @@ "sensor_class": "ccq", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: ", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3557,12 +3743,33 @@ "entPhysicalIndex_measured": null, "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.10.8\"]" }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "1", + "sensor_type": "mikrotik", + "sensor_descr": "SSID: MikroTik-e2f1fc", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -55, + "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.14988.1.1.1.8.1.12.1\"]" + }, { "sensor_deleted": 0, "sensor_class": "noise-floor", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: MikroTik-e2f1fc", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3646,11 +3853,11 @@ "sensor_class": "frequency", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: MikroTik-e2f1fc", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", - "sensor_current": 2412, + "sensor_current": 58320, "sensor_prev": null, "sensor_limit": null, "sensor_limit_warn": null, @@ -3660,70 +3867,7 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.7.1\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "2", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-A", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 5805, - "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.14988.1.1.1.3.1.7.2\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "8", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS", - "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.14988.1.1.1.3.1.7.8\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "9", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS", - "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.14988.1.1.1.3.1.7.9\"]" + "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.8.1.6.1\"]" } ] }, @@ -3734,7 +3878,7 @@ "sensor_class": "clients", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: MikroTik-e2f1fc", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3818,7 +3962,7 @@ "sensor_class": "rate", "sensor_index": "1", "sensor_type": "mikrotik-tx", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B Tx", + "sensor_descr": "SSID: Tx", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3839,7 +3983,7 @@ "sensor_class": "rate", "sensor_index": "1", "sensor_type": "mikrotik-rx", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B Rx", + "sensor_descr": "SSID: Rx", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -3855,6 +3999,27 @@ "entPhysicalIndex_measured": null, "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.3.1\"]" }, + { + "sensor_deleted": 0, + "sensor_class": "rate", + "sensor_index": "1", + "sensor_type": "mikrotik-rate", + "sensor_descr": "SSID: MikroTik-e2f1fc", + "sensor_divisor": 1, + "sensor_multiplier": 1000000, + "sensor_aggregator": "sum", + "sensor_current": 2310000000, + "sensor_prev": 2310000000, + "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.14988.1.1.1.8.1.13.1\"]" + }, { "sensor_deleted": 0, "sensor_class": "rate", @@ -3986,7 +4151,7 @@ "sensor_class": "ccq", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: ", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -4044,12 +4209,33 @@ "entPhysicalIndex_measured": null, "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.10.8\"]" }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "1", + "sensor_type": "mikrotik", + "sensor_descr": "SSID: MikroTik-e2f1fc", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -55, + "sensor_prev": -55, + "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.14988.1.1.1.8.1.12.1\"]" + }, { "sensor_deleted": 0, "sensor_class": "noise-floor", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: MikroTik-e2f1fc", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", @@ -4133,12 +4319,12 @@ "sensor_class": "frequency", "sensor_index": "1", "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-B", + "sensor_descr": "SSID: MikroTik-e2f1fc", "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_aggregator": "sum", - "sensor_current": 2412, - "sensor_prev": 2412, + "sensor_current": 58320, + "sensor_prev": 58320, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -4147,108 +4333,7 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.7.1\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "2", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS-A", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 5805, - "sensor_prev": 5805, - "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.14988.1.1.1.3.1.7.2\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "8", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS", - "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.14988.1.1.1.3.1.7.8\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "9", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: WARKOP-KOPIBOSS", - "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.14988.1.1.1.3.1.7.9\"]" - } - ] - } - }, - "os": { - "discovery": { - "devices": [ - { - "sysName": "", - "sysObjectID": ".1.3.6.1.4.1.14988.1", - "sysDescr": "router", - "sysContact": null, - "version": null, - "hardware": "", - "features": null, - "location": null, - "os": "routeros", - "type": "network", - "serial": null, - "icon": "mikrotik.svg" - } - ] - }, - "poller": { - "devices": [ - { - "sysName": "", - "sysObjectID": ".1.3.6.1.4.1.14988.1", - "sysDescr": "router", - "sysContact": "", - "version": "6.40.5", - "hardware": "", - "features": "Level 1", - "location": "", - "os": "routeros", - "type": "network", - "serial": "71B1060EE89D", - "icon": "mikrotik.svg" + "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.8.1.6.1\"]" } ] } diff --git a/tests/snmpsim/routeros.snmprec b/tests/snmpsim/routeros.snmprec index cde572ecae..ef881881fb 100644 --- a/tests/snmpsim/routeros.snmprec +++ b/tests/snmpsim/routeros.snmprec @@ -1,3 +1,67 @@ +1.0.8802.1.1.2.1.4.1.1.4.2|2|4 +1.0.8802.1.1.2.1.4.1.1.4.3|2|4 +1.0.8802.1.1.2.1.4.1.1.4.11|2|4 +1.0.8802.1.1.2.1.4.1.1.4.12|2|4 +1.0.8802.1.1.2.1.4.1.1.4.13|2|4 +1.0.8802.1.1.2.1.4.1.1.4.14|2|4 +1.0.8802.1.1.2.1.4.1.1.4.25|2|4 +1.0.8802.1.1.2.1.4.1.1.4.26|2|4 +1.0.8802.1.1.2.1.4.1.1.5.2|4|3C:E5:A6:37:DF:DA +1.0.8802.1.1.2.1.4.1.1.5.3|4|20:67:7C:97:A3:48 +1.0.8802.1.1.2.1.4.1.1.5.11|4|6C:3B:6B:E4:21:3E +1.0.8802.1.1.2.1.4.1.1.5.12|4|6C:3B:6B:E4:21:3E +1.0.8802.1.1.2.1.4.1.1.5.13|4|CC:2D:E0:E2:F1:FC +1.0.8802.1.1.2.1.4.1.1.5.14|4|CC:2D:E0:E2:F1:FC +1.0.8802.1.1.2.1.4.1.1.5.25|4|00:00:00:00:00:00 +1.0.8802.1.1.2.1.4.1.1.5.26|4|00:00:00:00:00:00 +1.0.8802.1.1.2.1.4.1.1.6.2|2|5 +1.0.8802.1.1.2.1.4.1.1.6.3|2|5 +1.0.8802.1.1.2.1.4.1.1.6.11|2|5 +1.0.8802.1.1.2.1.4.1.1.6.12|2|5 +1.0.8802.1.1.2.1.4.1.1.6.13|2|5 +1.0.8802.1.1.2.1.4.1.1.6.14|2|5 +1.0.8802.1.1.2.1.4.1.1.6.25|2|5 +1.0.8802.1.1.2.1.4.1.1.6.26|2|5 +1.0.8802.1.1.2.1.4.1.1.7.2|4|GigabitEthernet1/0/17 +1.0.8802.1.1.2.1.4.1.1.7.3|4|8 +1.0.8802.1.1.2.1.4.1.1.7.11|4|1 managment +1.0.8802.1.1.2.1.4.1.1.7.12|4|200 curric +1.0.8802.1.1.2.1.4.1.1.7.13|4|vlan200 +1.0.8802.1.1.2.1.4.1.1.7.14|4|vlan200 +1.0.8802.1.1.2.1.4.1.1.7.25|4| +1.0.8802.1.1.2.1.4.1.1.7.26|4| +1.0.8802.1.1.2.1.4.1.1.9.2|4|S5120-Tech +1.0.8802.1.1.2.1.4.1.1.9.3|4|2530-blue_shed +1.0.8802.1.1.2.1.4.1.1.9.11|4|MikroTik +1.0.8802.1.1.2.1.4.1.1.9.12|4|MikroTik +1.0.8802.1.1.2.1.4.1.1.9.13|4|Tech-wirelesswire +1.0.8802.1.1.2.1.4.1.1.9.14|4|Tech-wirelesswire +1.0.8802.1.1.2.1.4.1.1.9.25|4| +1.0.8802.1.1.2.1.4.1.1.9.26|4| +1.0.8802.1.1.2.1.4.1.1.10.2|4x|48334320436f6d7761726520506c6174666f726d20536f6674776172652c20536f6674776172652056657273696f6e20352e32302052656c6561736520323232315030342d55530a4833432053353132302d3238432d5057522d45490d0a436f707972696768742028632920323030342d323031342048616e677a686f752048334320546563682e20436f2e2c204c74642e20416c6c207269676874732072657365727665642e +1.0.8802.1.1.2.1.4.1.1.10.3|4|HP J9774A 2530-8G-PoEP Switch, revision YA.16.04.0008, ROM YA.15.19 (/ws/swbuildm/rel_ukiah_qaoff/code/build/lakes(swbuildm_rel_ukiah_qaoff_rel_ukiah)) +1.0.8802.1.1.2.1.4.1.1.10.11|4| +1.0.8802.1.1.2.1.4.1.1.10.12|4| +1.0.8802.1.1.2.1.4.1.1.10.13|4|MikroTik RouterOS 6.43.2 (stable) RBwAPG-60ad +1.0.8802.1.1.2.1.4.1.1.10.14|4| +1.0.8802.1.1.2.1.4.1.1.10.25|4| +1.0.8802.1.1.2.1.4.1.1.10.26|4| +1.0.8802.1.1.2.1.4.1.1.11.2|2|5120 +1.0.8802.1.1.2.1.4.1.1.11.3|2|1024 +1.0.8802.1.1.2.1.4.1.1.11.11|2|0 +1.0.8802.1.1.2.1.4.1.1.11.12|2|0 +1.0.8802.1.1.2.1.4.1.1.11.13|2|5120 +1.0.8802.1.1.2.1.4.1.1.11.14|2|0 +1.0.8802.1.1.2.1.4.1.1.11.25|2|0 +1.0.8802.1.1.2.1.4.1.1.11.26|2|0 +1.0.8802.1.1.2.1.4.1.1.12.2|2|5120 +1.0.8802.1.1.2.1.4.1.1.12.3|2|1024 +1.0.8802.1.1.2.1.4.1.1.12.11|2|0 +1.0.8802.1.1.2.1.4.1.1.12.12|2|0 +1.0.8802.1.1.2.1.4.1.1.12.13|2|5120 +1.0.8802.1.1.2.1.4.1.1.12.14|2|0 +1.0.8802.1.1.2.1.4.1.1.12.25|2|0 +1.0.8802.1.1.2.1.4.1.1.12.26|2|0 1.3.6.1.2.1.1.1.0|4|router 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14988.1 1.3.6.1.2.1.1.3.0|67|2020400 @@ -136,12 +200,22 @@ 1.3.6.1.2.1.2.2.1.20.10|65|0 1.3.6.1.2.1.2.2.1.20.11|65|0 1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.4.20.1.2.10.60.41.95|2|4 +1.3.6.1.2.1.4.20.1.2.10.101.49.19|2|3 1.3.6.1.2.1.4.20.1.2.36.76.98.105|2|11 1.3.6.1.2.1.4.20.1.2.192.168.11.1|2|10 1.3.6.1.2.1.4.20.1.2.192.168.100.110|2|3 +1.3.6.1.2.1.4.20.1.3.10.60.41.95|64|255.255.248.0 +1.3.6.1.2.1.4.20.1.3.10.101.49.19|64|255.255.255.224 1.3.6.1.2.1.4.20.1.3.36.76.98.105|64|255.255.255.255 1.3.6.1.2.1.4.20.1.3.192.168.11.1|64|255.255.255.0 1.3.6.1.2.1.4.20.1.3.192.168.100.110|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.3.10.101.49.1|4x|00FD45282700 +1.3.6.1.2.1.4.22.1.2.4.10.60.40.1|4x|00FD45282700 +1.3.6.1.2.1.4.22.1.2.4.10.60.40.30|4x|00505691D0D6 +1.3.6.1.2.1.4.22.1.2.4.10.60.40.50|4x|005056912179 +1.3.6.1.2.1.4.22.1.2.4.10.60.40.57|4x|00505691B8EB +1.3.6.1.2.1.4.22.1.2.4.10.60.43.166|4x|9CEBE84B3C6E 1.3.6.1.2.1.4.22.1.2.10.192.168.11.110|4x|9C5C8EA4A477 1.3.6.1.2.1.4.22.1.2.10.192.168.11.111|4x|088C2C156EB9 1.3.6.1.2.1.4.22.1.2.10.192.168.11.112|4x|382C4A4023C5 @@ -161,6 +235,503 @@ 1.3.6.1.2.1.17.1.1.0|4x|000000000000 1.3.6.1.2.1.17.2.1.0|2|3 1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.4.3.1.2.0.1.230.159.62.52|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.12.21.1.18.193|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.115.168.77|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.116.20.174|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.117.54.194|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.135.99.221|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.231.152|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.231.227|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.232.26|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.233.35|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.233.75|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.233.140|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.233.165|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.233.255|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.234.44|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.237.56|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.237.86|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.238.5|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.238.140|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.241.42|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.241.142|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.243.235|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.244.89|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.245.188|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.246.207|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.249.164|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.250.28|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.137.250.143|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.24.93|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.25.172|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.25.252|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.26.126|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.27.95|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.32.35|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.33.64|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.33.149|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.33.249|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.35.147|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.39.23|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.41.201|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.138.43.49|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.20.179|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.28.161|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.29.65|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.33.76|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.33.91|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.33.126|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.34.45|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.22.235.146.34.180|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.23.200.0.113.109|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.23.200.28.249.134|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.23.200.37.15.247|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.23.200.37.243.216|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.23.200.75.16.51|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.23.200.79.181.3|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.26.232.93.95.77|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.30.79.171.247.251|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.30.79.175.24.145|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.30.193.230.234.0|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.30.193.230.234.1|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.146.205.184|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.24.237|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.24.247|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.11|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.16|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.81|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.131|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.166|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.171|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.181|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.196|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.201|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.206|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.25.241|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.20|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.30|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.50|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.55|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.60|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.75|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.80|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.85|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.115|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.160|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.175|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.180|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.205|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.235|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.26.250|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.27.24|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.27.29|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.27.59|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.27.74|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.27.84|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.40.248.199.27.139|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.105.170.101|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.107.16.66|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.109.219.222|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.110.207.71|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.1.110|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.33.121|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.66.115|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.83.32|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.127.83|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.182.60|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.184.235|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.208.214|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.215.79|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.223.94|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.226.202|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.228.8|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.145.238.152|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.148.26.148|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.0.5|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.0.11|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.92.99|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.106.27|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.177.15.1|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.177.28.108|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.177.137.73|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.80.96.2.37.213|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.179.98.6.138.184|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.190.117.120.86.161|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.63.203.212|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.105.69.224|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.134.37.78|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.140.91.176|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.142.211.18|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.142.241.170|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.164.226.34|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.178.19.243|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.184.24.73|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.219.35.154|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.192.238.219.40.239|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.219.112.233.228.234|2|1 +1.3.6.1.2.1.17.4.3.1.2.0.253.69.40.39.0|2|1 +1.3.6.1.2.1.17.4.3.1.2.4.214.170.168.14.211|2|1 +1.3.6.1.2.1.17.4.3.1.2.4.214.170.168.15.137|2|1 +1.3.6.1.2.1.17.4.3.1.2.4.219.86.58.64.88|2|1 +1.3.6.1.2.1.17.4.3.1.2.8.0.27.255.221.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.12.139.253.113.125.22|2|1 +1.3.6.1.2.1.17.4.3.1.2.12.139.253.114.23.198|2|1 +1.3.6.1.2.1.17.4.3.1.2.12.139.253.114.110.166|2|1 +1.3.6.1.2.1.17.4.3.1.2.12.139.253.114.115.91|2|1 +1.3.6.1.2.1.17.4.3.1.2.16.2.181.114.122.99|2|1 +1.3.6.1.2.1.17.4.3.1.2.16.2.181.114.122.174|2|1 +1.3.6.1.2.1.17.4.3.1.2.16.2.181.114.123.138|2|1 +1.3.6.1.2.1.17.4.3.1.2.16.2.181.123.187.95|2|1 +1.3.6.1.2.1.17.4.3.1.2.16.2.181.123.191.51|2|1 +1.3.6.1.2.1.17.4.3.1.2.24.104.203.13.6.150|2|1 +1.3.6.1.2.1.17.4.3.1.2.24.104.203.13.7.46|2|1 +1.3.6.1.2.1.17.4.3.1.2.24.104.203.36.39.111|2|1 +1.3.6.1.2.1.17.4.3.1.2.24.104.203.114.223.68|2|1 +1.3.6.1.2.1.17.4.3.1.2.24.104.203.114.223.94|2|1 +1.3.6.1.2.1.17.4.3.1.2.28.77.112.157.54.79|2|1 +1.3.6.1.2.1.17.4.3.1.2.32.45.7.95.196.168|2|1 +1.3.6.1.2.1.17.4.3.1.2.32.103.124.151.163.64|2|2 +1.3.6.1.2.1.17.4.3.1.2.32.103.124.151.163.72|2|2 +1.3.6.1.2.1.17.4.3.1.2.32.169.14.123.101.84|2|1 +1.3.6.1.2.1.17.4.3.1.2.36.24.29.103.122.72|2|1 +1.3.6.1.2.1.17.4.3.1.2.36.94.190.42.83.233|2|1 +1.3.6.1.2.1.17.4.3.1.2.44.14.61.143.28.59|2|1 +1.3.6.1.2.1.17.4.3.1.2.44.14.61.151.43.234|2|1 +1.3.6.1.2.1.17.4.3.1.2.44.14.61.158.95.90|2|1 +1.3.6.1.2.1.17.4.3.1.2.44.14.61.193.166.246|2|1 +1.3.6.1.2.1.17.4.3.1.2.44.138.114.179.122.66|2|1 +1.3.6.1.2.1.17.4.3.1.2.48.13.67.44.252.132|2|1 +1.3.6.1.2.1.17.4.3.1.2.48.16.179.231.69.179|2|1 +1.3.6.1.2.1.17.4.3.1.2.48.227.122.20.127.18|2|1 +1.3.6.1.2.1.17.4.3.1.2.48.227.122.176.65.159|2|1 +1.3.6.1.2.1.17.4.3.1.2.56.15.74.189.199.11|2|1 +1.3.6.1.2.1.17.4.3.1.2.56.113.222.30.208.115|2|1 +1.3.6.1.2.1.17.4.3.1.2.56.113.222.101.8.127|2|1 +1.3.6.1.2.1.17.4.3.1.2.56.177.219.231.204.247|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.149.9.71.11.243|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.160.103.176.107.43|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.169.244.35.66.20|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.55.223.194|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.55.223.218|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.92.200.148|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.92.205.148|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.121.179.129|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.121.179.130|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.121.200.193|2|1 +1.3.6.1.2.1.17.4.3.1.2.60.229.166.121.203.145|2|1 +1.3.6.1.2.1.17.4.3.1.2.68.28.168.87.155.73|2|1 +1.3.6.1.2.1.17.4.3.1.2.68.120.62.190.56.121|2|1 +1.3.6.1.2.1.17.4.3.1.2.72.67.124.55.199.34|2|1 +1.3.6.1.2.1.17.4.3.1.2.72.75.170.17.109.24|2|1 +1.3.6.1.2.1.17.4.3.1.2.72.77.126.234.138.115|2|1 +1.3.6.1.2.1.17.4.3.1.2.74.165.152.225.49.98|2|1 +1.3.6.1.2.1.17.4.3.1.2.76.24.154.129.221.109|2|1 +1.3.6.1.2.1.17.4.3.1.2.80.166.127.119.193.124|2|1 +1.3.6.1.2.1.17.4.3.1.2.84.196.21.36.246.124|2|1 +1.3.6.1.2.1.17.4.3.1.2.84.196.21.36.246.125|2|1 +1.3.6.1.2.1.17.4.3.1.2.84.196.21.86.0.212|2|1 +1.3.6.1.2.1.17.4.3.1.2.84.196.21.122.237.8|2|1 +1.3.6.1.2.1.17.4.3.1.2.88.0.227.86.178.51|2|1 +1.3.6.1.2.1.17.4.3.1.2.88.0.227.223.27.179|2|1 +1.3.6.1.2.1.17.4.3.1.2.88.3.251.72.83.227|2|2 +1.3.6.1.2.1.17.4.3.1.2.88.3.251.72.84.198|2|2 +1.3.6.1.2.1.17.4.3.1.2.88.3.251.72.85.190|2|2 +1.3.6.1.2.1.17.4.3.1.2.88.148.107.171.74.248|2|1 +1.3.6.1.2.1.17.4.3.1.2.88.226.143.21.171.239|2|1 +1.3.6.1.2.1.17.4.3.1.2.88.226.143.189.143.178|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.197.212.7.167.166|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.197.212.8.37.150|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.197.212.8.39.73|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.197.212.8.39.108|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.197.212.8.54.78|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.197.212.8.54.93|2|1 +1.3.6.1.2.1.17.4.3.1.2.92.234.29.69.117.17|2|1 +1.3.6.1.2.1.17.4.3.1.2.96.48.212.91.175.146|2|1 +1.3.6.1.2.1.17.4.3.1.2.96.87.24.146.175.144|2|1 +1.3.6.1.2.1.17.4.3.1.2.96.87.24.146.182.157|2|1 +1.3.6.1.2.1.17.4.3.1.2.96.87.24.146.182.182|2|1 +1.3.6.1.2.1.17.4.3.1.2.96.87.24.146.183.86|2|1 +1.3.6.1.2.1.17.4.3.1.2.96.244.69.222.77.135|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.0.106.135.250.128|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.0.106.135.250.147|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.108.207|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.108.224|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.108.231|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.109.10|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.109.63|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.109.80|2|1 +1.3.6.1.2.1.17.4.3.1.2.100.219.139.40.109.91|2|1 +1.3.6.1.2.1.17.4.3.1.2.104.7.21.92.102.171|2|1 +1.3.6.1.2.1.17.4.3.1.2.104.239.67.51.134.66|2|1 +1.3.6.1.2.1.17.4.3.1.2.108.59.107.228.33.62|2|1 +1.3.6.1.2.1.17.4.3.1.2.108.92.20.59.110.60|2|1 +1.3.6.1.2.1.17.4.3.1.2.108.98.109.193.37.158|2|1 +1.3.6.1.2.1.17.4.3.1.2.112.58.14.193.205.210|2|1 +1.3.6.1.2.1.17.4.3.1.2.112.62.172.209.180.170|2|1 +1.3.6.1.2.1.17.4.3.1.2.112.129.235.29.39.3|2|1 +1.3.6.1.2.1.17.4.3.1.2.112.201.78.143.221.193|2|1 +1.3.6.1.2.1.17.4.3.1.2.120.12.184.239.23.48|2|1 +1.3.6.1.2.1.17.4.3.1.2.124.1.145.130.82.235|2|1 +1.3.6.1.2.1.17.4.3.1.2.124.176.194.252.132.171|2|1 +1.3.6.1.2.1.17.4.3.1.2.124.176.194.252.132.186|2|1 +1.3.6.1.2.1.17.4.3.1.2.132.41.153.210.184.44|2|1 +1.3.6.1.2.1.17.4.3.1.2.132.41.153.210.184.77|2|1 +1.3.6.1.2.1.17.4.3.1.2.132.41.153.212.7.122|2|1 +1.3.6.1.2.1.17.4.3.1.2.132.239.24.73.30.112|2|1 +1.3.6.1.2.1.17.4.3.1.2.136.25.8.134.85.7|2|1 +1.3.6.1.2.1.17.4.3.1.2.136.174.7.141.22.4|2|1 +1.3.6.1.2.1.17.4.3.1.2.136.174.7.219.92.86|2|1 +1.3.6.1.2.1.17.4.3.1.2.140.231.72.152.87.255|2|1 +1.3.6.1.2.1.17.4.3.1.2.140.231.72.152.88.0|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.96.241.160.31.123|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.185.138.87|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.196.41|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.196.221|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.197.35|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.197.130|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.197.210|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.197.230|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.200.187|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.202.70|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.202.150|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.203.64|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.203.84|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.203.99|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.203.139|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.203.249|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.204.68|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.204.248|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.206.61|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.238.206.126|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.4.242|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.5.56|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.5.101|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.5.181|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.5.206|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.6.25|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.6.30|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.6.95|2|1 +1.3.6.1.2.1.17.4.3.1.2.144.97.174.239.6.165|2|1 +1.3.6.1.2.1.17.4.3.1.2.148.101.156.187.83.190|2|1 +1.3.6.1.2.1.17.4.3.1.2.148.225.172.17.224.4|2|1 +1.3.6.1.2.1.17.4.3.1.2.148.225.172.17.224.6|2|1 +1.3.6.1.2.1.17.4.3.1.2.148.225.172.17.224.12|2|1 +1.3.6.1.2.1.17.4.3.1.2.148.254.34.78.61.188|2|1 +1.3.6.1.2.1.17.4.3.1.2.156.4.235.82.204.154|2|1 +1.3.6.1.2.1.17.4.3.1.2.156.127.239.207.56.83|2|1 +1.3.6.1.2.1.17.4.3.1.2.156.218.62.170.195.220|2|1 +1.3.6.1.2.1.17.4.3.1.2.156.235.232.75.60.110|2|1 +1.3.6.1.2.1.17.4.3.1.2.156.243.135.160.156.82|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.44.54.238.0.9|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.148.234.233|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.148.253.76|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.156.178.74|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.158.182.165|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.163.92.18|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.163.94.198|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.163.94.206|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.163.94.208|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.165.19.68|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.72.28.165.19.70|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.153.155.124.26.170|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.179.204.234.38.188|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.211.193.13.176.135|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.211.193.14.30.42|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.211.193.15.232.183|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.211.193.23.128.42|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.211.193.23.193.79|2|1 +1.3.6.1.2.1.17.4.3.1.2.160.211.193.23.193.83|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.17.3.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.50.72.88|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.58.82.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.58.89.143|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.60.23.72|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.85.98.227|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.2.185.198.101.206|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.20.55.246.199.124|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.184.5.187.38.236|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.145.57|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.145.72|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.145.77|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.145.187|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.146.1|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.146.6|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.146.11|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.164.163|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.244.88|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.244.178|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.148.244.223|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.13.83|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.13.123|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.13.128|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.13.193|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.78.93|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.78.118|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.78.143|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.78.183|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.78.213|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.9|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.89|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.104|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.109|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.119|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.124|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.169|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.204|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.214|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.127.224|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.196.148.149.128.48|2|1 +1.3.6.1.2.1.17.4.3.1.2.164.241.232.122.160.195|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.108.106|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.108.204|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.111.80|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.102|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.124|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.126|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.132|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.176|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.206|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.212|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.214|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.216|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.218|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.220|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.222|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.224|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.228|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.230|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.234|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.240|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.246|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.248|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.250|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.252|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.112.254|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.113.4|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.113.10|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.113.22|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.193.113.24|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.104.172|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.104.242|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.20|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.52|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.76|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.88|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.102|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.122|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.136|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.105.226|2|1 +1.3.6.1.2.1.17.4.3.1.2.168.189.39.203.106.114|2|1 +1.3.6.1.2.1.17.4.3.1.2.172.55.67.70.94.229|2|1 +1.3.6.1.2.1.17.4.3.1.2.172.95.62.152.95.31|2|1 +1.3.6.1.2.1.17.4.3.1.2.172.181.125.190.46.175|2|1 +1.3.6.1.2.1.17.4.3.1.2.176.53.159.106.246.178|2|1 +1.3.6.1.2.1.17.4.3.1.2.176.193.158.244.122.60|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.156.223.42.204.147|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.85.161|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.96.215|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.96.235|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.100.86|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.125.121|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.125.136|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.204.138.128|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.213.219.3|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.213.219.8|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.214.33.163|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.182.118.214.77.79|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.246.28.160.96.106|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.246.28.212.167.230|2|1 +1.3.6.1.2.1.17.4.3.1.2.180.246.28.214.194.148|2|1 +1.3.6.1.2.1.17.4.3.1.2.184.39.235.106.94.230|2|1 +1.3.6.1.2.1.17.4.3.1.2.184.129.152.180.234.91|2|1 +1.3.6.1.2.1.17.4.3.1.2.192.51.94.9.96.39|2|1 +1.3.6.1.2.1.17.4.3.1.2.192.189.209.124.35.29|2|1 +1.3.6.1.2.1.17.4.3.1.2.192.189.209.193.19.162|2|1 +1.3.6.1.2.1.17.4.3.1.2.200.203.184.201.149.120|2|1 +1.3.6.1.2.1.17.4.3.1.2.200.247.51.220.224.211|2|1 +1.3.6.1.2.1.17.4.3.1.2.200.247.51.234.221.245|2|1 +1.3.6.1.2.1.17.4.3.1.2.200.255.40.8.140.217|2|1 +1.3.6.1.2.1.17.4.3.1.2.204.45.183.110.152.43|2|1 +1.3.6.1.2.1.17.4.3.1.2.204.45.224.226.240.158|2|3 +1.3.6.1.2.1.17.4.3.1.2.204.45.224.226.241.252|2|1 +1.3.6.1.2.1.17.4.3.1.2.204.176.218.248.98.193|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.19.26.170|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.20.6.194|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.21.149.130|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.34.226.240|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.50.176.9|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.50.184.16|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.50.211.244|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.51.30.244|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.51.45.19|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.87.123.51.96.113|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.129.122.158.182.48|2|1 +1.3.6.1.2.1.17.4.3.1.2.208.129.122.158.185.66|2|1 +1.3.6.1.2.1.17.4.3.1.2.212.40.213.18.190.72|2|1 +1.3.6.1.2.1.17.4.3.1.2.212.220.205.139.111.124|2|1 +1.3.6.1.2.1.17.4.3.1.2.212.220.205.194.124.240|2|1 +1.3.6.1.2.1.17.4.3.1.2.216.157.103.27.66.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.216.196.106.200.137.232|2|1 +1.3.6.1.2.1.17.4.3.1.2.220.169.4.29.162.105|2|1 +1.3.6.1.2.1.17.4.3.1.2.224.95.69.89.147.59|2|1 +1.3.6.1.2.1.17.4.3.1.2.224.219.85.233.242.55|2|1 +1.3.6.1.2.1.17.4.3.1.2.228.154.220.109.191.47|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.139.202.254|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.139.205.56|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.32.132|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.33.131|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.46.18|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.168.216|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.169.145|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.178.131|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.181.148|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.227.17|2|1 +1.3.6.1.2.1.17.4.3.1.2.232.177.252.241.246.83|2|1 +1.3.6.1.2.1.17.4.3.1.2.236.243.66.240.65.191|2|1 +1.3.6.1.2.1.17.4.3.1.2.240.109.120.168.251.39|2|1 +1.3.6.1.2.1.17.4.3.1.2.240.118.111.144.193.137|2|1 +1.3.6.1.2.1.17.4.3.1.2.240.121.96.22.222.142|2|1 +1.3.6.1.2.1.17.4.3.1.2.240.153.191.95.154.87|2|1 +1.3.6.1.2.1.17.4.3.1.2.240.193.241.25.113.185|2|1 +1.3.6.1.2.1.17.4.3.1.2.240.238.16.179.92.42|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.14.34.119.54.89|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.140.80.88.241.171|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.3|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.28|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.33|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.113|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.128|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.218|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.223|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.35.243|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.36.27|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.36.87|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.36.167|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.36.207|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.37.91|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.38.65|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.38.85|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.38.100|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.38.175|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.39.224|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.40.183|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.43.230|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.44.19|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.70.13|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.70.178|2|1 +1.3.6.1.2.1.17.4.3.1.2.244.150.52.112.70.193|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.177.86.198.97.76|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.177.86.198.102.243|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.188.18.56.243.222|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.199.25.11.0.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.199.25.166.0.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.199.26.80.0.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.199.26.115.0.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.199.27.139.0.40|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.218.12.72.133.109|2|1 +1.3.6.1.2.1.17.4.3.1.2.248.218.12.72.133.135|2|1 +1.3.6.1.2.1.17.4.3.1.2.252.45.94.247.27.10|2|1 1.3.6.1.2.1.25.1.1.0|67|2020500 1.3.6.1.2.1.25.2.3.1.1.65536|2|65536 1.3.6.1.2.1.25.2.3.1.1.131072|2|131072 @@ -177,13 +748,37 @@ 1.3.6.1.2.1.25.2.3.1.7.65536|65|0 1.3.6.1.2.1.25.2.3.1.7.131072|65|0 1.3.6.1.2.1.25.3.2.1.1.1|2|1 +1.3.6.1.2.1.25.3.2.1.1.2|2|2 +1.3.6.1.2.1.25.3.2.1.1.3|2|3 +1.3.6.1.2.1.25.3.2.1.1.4|2|4 1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.3|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.4|6|1.3.6.1.2.1.25.3.1.3 1.3.6.1.2.1.25.3.2.1.3.1|4| +1.3.6.1.2.1.25.3.2.1.3.2|4| +1.3.6.1.2.1.25.3.2.1.3.3|4| +1.3.6.1.2.1.25.3.2.1.3.4|4| 1.3.6.1.2.1.25.3.2.1.4.1|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.2|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.3|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.4|6|0.0 1.3.6.1.2.1.25.3.2.1.5.1|2|2 +1.3.6.1.2.1.25.3.2.1.5.2|2|2 +1.3.6.1.2.1.25.3.2.1.5.3|2|2 +1.3.6.1.2.1.25.3.2.1.5.4|2|2 1.3.6.1.2.1.25.3.2.1.6.1|65|0 +1.3.6.1.2.1.25.3.2.1.6.2|65|0 +1.3.6.1.2.1.25.3.2.1.6.3|65|0 +1.3.6.1.2.1.25.3.2.1.6.4|65|0 1.3.6.1.2.1.25.3.3.1.1.1|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.2|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.3|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.4|6|0.0 1.3.6.1.2.1.25.3.3.1.2.1|2|21 +1.3.6.1.2.1.25.3.3.1.2.2|2|0 +1.3.6.1.2.1.25.3.3.1.2.3|2|0 +1.3.6.1.2.1.25.3.3.1.2.4|2|0 1.3.6.1.2.1.31.1.1.1.1.1|4|wlan1 1.3.6.1.2.1.31.1.1.1.1.2|4|wlan2 1.3.6.1.2.1.31.1.1.1.1.3|4|WAN @@ -366,50 +961,66 @@ 1.3.6.1.2.1.31.1.1.1.18.12|4| 1.3.6.1.2.1.47.1.1.1.1.1.65536|2|65536 1.3.6.1.2.1.47.1.1.1.1.1.131073|2|131073 +1.3.6.1.2.1.47.1.1.1.1.1.131074|2|131074 1.3.6.1.2.1.47.1.1.1.1.2.65536|4|RouterOS 6.40.5 (stable) on RB952Ui-5ac2nD 1.3.6.1.2.1.47.1.1.1.1.2.131073|4|Atheros Communications Inc. unknown device (rev: 0) +1.3.6.1.2.1.47.1.1.1.1.2.131074|4|Airgo Networks Inc unknown device (rev: 0) 1.3.6.1.2.1.47.1.1.1.1.2.262145|4|Linux 3.3.5 ehci_hcd RB400 EHCI 1.3.6.1.2.1.47.1.1.1.1.3.65536|6|0.0 1.3.6.1.2.1.47.1.1.1.1.3.131073|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.131074|6|0.0 1.3.6.1.2.1.47.1.1.1.1.3.262145|6|0.0 1.3.6.1.2.1.47.1.1.1.1.4.65536|2|0 1.3.6.1.2.1.47.1.1.1.1.4.131073|2|65536 +1.3.6.1.2.1.47.1.1.1.1.4.131074|2|65536 1.3.6.1.2.1.47.1.1.1.1.4.262145|2|65536 1.3.6.1.2.1.47.1.1.1.1.5.65536|2|3 1.3.6.1.2.1.47.1.1.1.1.5.131073|2|2 +1.3.6.1.2.1.47.1.1.1.1.5.131074|2|2 1.3.6.1.2.1.47.1.1.1.1.5.262145|2|2 1.3.6.1.2.1.47.1.1.1.1.6.65536|2|-1 1.3.6.1.2.1.47.1.1.1.1.6.131073|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.131074|2|-1 1.3.6.1.2.1.47.1.1.1.1.6.262145|2|-1 1.3.6.1.2.1.47.1.1.1.1.7.65536|4|MIPS 24Kc V7.4 1.3.6.1.2.1.47.1.1.1.1.7.131073|4|00:00.0 +1.3.6.1.2.1.47.1.1.1.1.7.131074|4|00:00.0 1.3.6.1.2.1.47.1.1.1.1.7.262145|4|1:1 1.3.6.1.2.1.47.1.1.1.1.8.65536|4| 1.3.6.1.2.1.47.1.1.1.1.8.131073|4| +1.3.6.1.2.1.47.1.1.1.1.8.131074|4| 1.3.6.1.2.1.47.1.1.1.1.8.262145|4| 1.3.6.1.2.1.47.1.1.1.1.9.65536|4| 1.3.6.1.2.1.47.1.1.1.1.9.131073|4| +1.3.6.1.2.1.47.1.1.1.1.9.131074|4| 1.3.6.1.2.1.47.1.1.1.1.9.262145|4| 1.3.6.1.2.1.47.1.1.1.1.10.65536|4| 1.3.6.1.2.1.47.1.1.1.1.10.131073|4| +1.3.6.1.2.1.47.1.1.1.1.10.131074|4| 1.3.6.1.2.1.47.1.1.1.1.10.262145|4| 1.3.6.1.2.1.47.1.1.1.1.11.65536|4| 1.3.6.1.2.1.47.1.1.1.1.11.131073|4| +1.3.6.1.2.1.47.1.1.1.1.11.131074|4| 1.3.6.1.2.1.47.1.1.1.1.11.262145|4|rb400_usb 1.3.6.1.2.1.47.1.1.1.1.12.65536|4| 1.3.6.1.2.1.47.1.1.1.1.12.131073|4|0x168c +1.3.6.1.2.1.47.1.1.1.1.12.131074|4|0x17cb 1.3.6.1.2.1.47.1.1.1.1.12.262145|4|0x1d6b 1.3.6.1.2.1.47.1.1.1.1.13.65536|4| 1.3.6.1.2.1.47.1.1.1.1.13.131073|4|0x0050 +1.3.6.1.2.1.47.1.1.1.1.13.131074|4|0x1001 1.3.6.1.2.1.47.1.1.1.1.13.262145|4|0x0002 1.3.6.1.2.1.47.1.1.1.1.14.65536|4| 1.3.6.1.2.1.47.1.1.1.1.14.131073|4| +1.3.6.1.2.1.47.1.1.1.1.14.131074|4| 1.3.6.1.2.1.47.1.1.1.1.14.262145|4| 1.3.6.1.2.1.47.1.1.1.1.15.65536|4| 1.3.6.1.2.1.47.1.1.1.1.15.131073|4| +1.3.6.1.2.1.47.1.1.1.1.15.131074|4| 1.3.6.1.2.1.47.1.1.1.1.15.262145|4| 1.3.6.1.2.1.47.1.1.1.1.16.65536|2|2 1.3.6.1.2.1.47.1.1.1.1.16.131073|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.131074|2|2 1.3.6.1.2.1.47.1.1.1.1.16.262145|2|2 1.3.6.1.4.1.2021.11.10.0|2|22 1.3.6.1.4.1.14988.1.1.1.2.1.3.0.39.16.50.237.96.9|2|-63 @@ -463,12 +1074,32 @@ 1.3.6.1.4.1.14988.1.1.1.3.1.11.2|65|0 1.3.6.1.4.1.14988.1.1.1.3.1.11.8|65|0 1.3.6.1.4.1.14988.1.1.1.3.1.11.9|65|4 +1.3.6.1.4.1.14988.1.1.1.8.1.2.1|2|1 +1.3.6.1.4.1.14988.1.1.1.8.1.3.1|4|MikroTik-e2f1fc +1.3.6.1.4.1.14988.1.1.1.8.1.4.1|2|1 +1.3.6.1.4.1.14988.1.1.1.8.1.5.1|4x|04D6AAA80ED3 +1.3.6.1.4.1.14988.1.1.1.8.1.6.1|2|58320 +1.3.6.1.4.1.14988.1.1.1.8.1.7.1|2|8 +1.3.6.1.4.1.14988.1.1.1.8.1.8.1|2|80 +1.3.6.1.4.1.14988.1.1.1.8.1.9.1|2|34 +1.3.6.1.4.1.14988.1.1.1.8.1.10.1|2|96 +1.3.6.1.4.1.14988.1.1.1.8.1.11.1|4|right 11.4 degrees, up 3.8 degrees +1.3.6.1.4.1.14988.1.1.1.8.1.12.1|2|-55 +1.3.6.1.4.1.14988.1.1.1.8.1.13.1|66|2310 1.3.6.1.4.1.14988.1.1.3.8.0|2|154 1.3.6.1.4.1.14988.1.1.3.10.0|2|330 1.3.6.1.4.1.14988.1.1.4.3.0|2|1 1.3.6.1.4.1.14988.1.1.4.4.0|4|6.40.5 1.3.6.1.4.1.14988.1.1.6.1.0|66|33 1.3.6.1.4.1.14988.1.1.7.3.0|4|71B1060EE89D +1.3.6.1.4.1.14988.1.1.11.1.1.8.2|2|3 +1.3.6.1.4.1.14988.1.1.11.1.1.8.3|2|3 +1.3.6.1.4.1.14988.1.1.11.1.1.8.11|2|1 +1.3.6.1.4.1.14988.1.1.11.1.1.8.12|2|4 +1.3.6.1.4.1.14988.1.1.11.1.1.8.13|2|1 +1.3.6.1.4.1.14988.1.1.11.1.1.8.14|2|4 +1.3.6.1.4.1.14988.1.1.11.1.1.8.25|2|1 +1.3.6.1.4.1.14988.1.1.11.1.1.8.26|2|4 1.3.6.1.4.1.14988.1.1.14.1.1.2.1|4|wlan1 1.3.6.1.4.1.14988.1.1.14.1.1.2.2|4|ether2 1.3.6.1.4.1.14988.1.1.14.1.1.2.3|4|ether3