From 3690ca49281d483412f680e8c5f3561893203dab Mon Sep 17 00:00:00 2001 From: Adam Bishop Date: Sun, 26 Apr 2020 12:11:49 +0100 Subject: [PATCH] Add OS detection for Greenbone appliances (#11464) * Add OS detection for Greenbone appliances They don't expose anything fancy over SNMP, but this makes them display interface names correctly. Under the hood they're unix-y. Greenbone logo is from the AGPLv3 gsa, which is GPL compatible: https://github.com/greenbone/gsa/blob/master/gsa/public/img/greenbone.svg The mib is included for completeness, but it doesn't expose any graphable values. * Fix the vendor's logo --- html/images/os/gos.svg | 172 ++ includes/definitions/gos.yaml | 28 + mibs/greenbone/GREENBONE-PRODUCT-MIB | 148 ++ tests/data/gos.json | 3119 ++++++++++++++++++++++++++ tests/snmpsim/gos.snmprec | 1299 +++++++++++ 5 files changed, 4766 insertions(+) create mode 100644 html/images/os/gos.svg create mode 100644 includes/definitions/gos.yaml create mode 100644 mibs/greenbone/GREENBONE-PRODUCT-MIB create mode 100644 tests/data/gos.json create mode 100644 tests/snmpsim/gos.snmprec diff --git a/html/images/os/gos.svg b/html/images/os/gos.svg new file mode 100644 index 0000000000..1fa8e8e84e --- /dev/null +++ b/html/images/os/gos.svg @@ -0,0 +1,172 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/includes/definitions/gos.yaml b/includes/definitions/gos.yaml new file mode 100644 index 0000000000..0530820562 --- /dev/null +++ b/includes/definitions/gos.yaml @@ -0,0 +1,28 @@ +os: gos +type: appliance +group: greenbone +text: 'Greenbone OS' +ifXmcbc: true +ifname: true +mib_dir: + - greenbone +over: + - { graph: device_processor, text: 'Processor Usage' } + - { graph: device_ucd_memory, text: 'Memory Usage' } + - { graph: device_storage, text: 'Storage Usage' } +poller_modules: + applications: false + bgp-peers: false + mpls: false + ospf: false + stp: false + wireless: false +discovery_modules: + applications: false + bgp-peers: false + mpls: false + stp: false + wireless: false +processor_stacked: true +discovery: + - sysObjectID: .1.3.6.1.4.1.35847.1.1 diff --git a/mibs/greenbone/GREENBONE-PRODUCT-MIB b/mibs/greenbone/GREENBONE-PRODUCT-MIB new file mode 100644 index 0000000000..e240456410 --- /dev/null +++ b/mibs/greenbone/GREENBONE-PRODUCT-MIB @@ -0,0 +1,148 @@ +-- Copyright (c) 2010,2012,2014,2015,2017 Greenbone Networks GmbH +-- This document is free software: you can redistribute it and/or modify +-- it under the terms of the GNU Lesser General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. + +GREENBONE-PRODUCT-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32, enterprises + FROM SNMPv2-SMI + DisplayString + FROM SNMPv2-TC + OBJECT-GROUP + FROM SNMPv2-CONF + ; + +greenboneProduct MODULE-IDENTITY + LAST-UPDATED "201705150001Z" -- May 15, 2017 + ORGANIZATION + "Greenbone Networks GmbH" + CONTACT-INFO + "Customer Support + + Greenbone Networks GmbH + Neumarkt 12 + 49074 Osnabrueck + Germany + + Tel: +49-541-760278-0 + E-mail: support@greenbone.net + HTTPS://support.greenbone.net" + DESCRIPTION + "Information on the running Greenbone Product." + REVISION "201705150001Z" -- May 15, 2017 + DESCRIPTION + "Updated CONTACT-INFO" + REVISION "201501060001Z" -- January 06, 2015 + DESCRIPTION + "Updated CONTACT-INFO" + REVISION "201412310001Z" -- December 31, 2014 + DESCRIPTION + "Adjustments to IMPORTS and MODULE-IDENTITY" + REVISION "201203260001Z" -- March 26, 2012 + DESCRIPTION + "First Draft" + ::= { enterprises 35847 1 } + +productName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the Greenbone Product." + ::= { greenboneProduct 1 } + +productHardware OBJECT IDENTIFIER ::= { greenboneProduct 2 } +productSoftware OBJECT IDENTIFIER ::= { greenboneProduct 3 } +productGroups OBJECT IDENTIFIER ::= { greenboneProduct 4 } + +hwName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the Greenbone Product Hardware." + ::= { productHardware 1 } + +swName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the Greenbone Product Software." + ::= { productSoftware 1 } + +swVersion OBJECT IDENTIFIER ::= { productSoftware 2 } + +swVersionString OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version String for the Greenbone Product Software." + ::= { swVersion 1 } + +swVersionMajor OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Major Version of the Greenbone Product Software." + ::= { swVersion 2 } + +swVersionMinor OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Minor Version of the Greenbone Product Software." + ::= { swVersion 3 } + +swVersionPatch OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Patchlevel Version of the Greenbone Product Software." + ::= { swVersion 4 } + +swVersionRevision OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Revision of the Greenbone Product Software." + ::= { swVersion 5 } + +greenboneProductGroup OBJECT-GROUP + OBJECTS { + productName, hwName, swName, swVersionString, swVersionMajor, + swVersionMinor, swVersionPatch, swVersionRevision + } + STATUS current + DESCRIPTION + "All objects relating to the Greenbone Product." + ::= { productGroups 1 } + +greenboneProductHWGroup OBJECT-GROUP + OBJECTS { + hwName + } + STATUS current + DESCRIPTION + "Objects relating to the Greenbone Product Hardware." + ::= { productGroups 2 } + +greenboneProductSWGroup OBJECT-GROUP + OBJECTS { + swName, swVersionString, swVersionMajor, swVersionMinor, + swVersionPatch, swVersionRevision + } + STATUS current + DESCRIPTION + "Objects relating to the Greenbone Product Software." + ::= { productGroups 3 } + +END diff --git a/tests/data/gos.json b/tests/data/gos.json new file mode 100644 index 0000000000..7ad5303b7c --- /dev/null +++ b/tests/data/gos.json @@ -0,0 +1,3119 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.35847.1.1", + "sysDescr": "Greenbone Security Manager", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "gos", + "type": "appliance", + "serial": null, + "icon": "gos.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.35847.1.1", + "sysDescr": "Greenbone Security Manager", + "sysContact": "", + "version": null, + "hardware": null, + "features": null, + "os": "gos", + "type": "appliance", + "serial": null, + "icon": "gos.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "bond0", + "ifName": "bond0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "bond0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82574L Gigabit Network Connection", + "ifName": "mgmt0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82574L Gigabit Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_1", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_2", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_3", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_4", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_5", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_6", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_7", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "veth0", + "ifName": "veth0", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "veth0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 65536, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 133775266, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 133775266, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 28366531461, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 28366531461, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "bond0", + "ifName": "bond0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "bond0", + "ifPhysAddress": "6ea1e5f2cdc9", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82574L Gigabit Network Connection", + "ifName": "mgmt0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82574L Gigabit Network Connection", + "ifPhysAddress": "bfc4de424726", + "ifHardType": null, + "ifLastChange": 2106, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1298887, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 84613388, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 13026, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_1", + "portName": null, + "ifIndex": 5, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "64e6b0f4d2bf", + "ifHardType": null, + "ifLastChange": 2106, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 5265431, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6190839, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2632256041, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4710634741, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 4161, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 53972, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_2", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "5502fd87ef23", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_3", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "2f29023170f1", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_4", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "6962885d3ccd", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_5", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "0ebc220694a6", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_6", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "1fb72ab2ba5b", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifName": "eth0_7", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Intel Corporation 82580 Gigabit Fiber Network Connection", + "ifPhysAddress": "c7fc8cfc4a75", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "veth0", + "ifName": "veth0", + "portName": null, + "ifIndex": 13, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "veth0", + "ifPhysAddress": "6407a5be87e4", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 41360, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 40311, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 3516676, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3677071, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196608, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196608", + "processor_index": "196608", + "processor_type": "hr", + "processor_usage": 10, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196609, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196609", + "processor_index": "196609", + "processor_type": "hr", + "processor_usage": 6, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196610, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196610", + "processor_index": "196610", + "processor_type": "hr", + "processor_usage": 3, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196611, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196611", + "processor_index": "196611", + "processor_type": "hr", + "processor_usage": 7, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196612, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196612", + "processor_index": "196612", + "processor_type": "hr", + "processor_usage": 5, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196613, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196613", + "processor_index": "196613", + "processor_type": "hr", + "processor_usage": 6, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196614, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196614", + "processor_index": "196614", + "processor_type": "hr", + "processor_usage": 6, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196615, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196615", + "processor_index": "196615", + "processor_type": "hr", + "processor_usage": 5, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196616, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196616", + "processor_index": "196616", + "processor_type": "hr", + "processor_usage": 6, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196617, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196617", + "processor_index": "196617", + "processor_type": "hr", + "processor_usage": 4, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196618, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196618", + "processor_index": "196618", + "processor_type": "hr", + "processor_usage": 6, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196619, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196619", + "processor_index": "196619", + "processor_type": "hr", + "processor_usage": 4, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196620, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196620", + "processor_index": "196620", + "processor_type": "hr", + "processor_usage": 5, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196621, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196621", + "processor_index": "196621", + "processor_type": "hr", + "processor_usage": 5, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196622, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196622", + "processor_index": "196622", + "processor_type": "hr", + "processor_usage": 6, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196623, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196623", + "processor_index": "196623", + "processor_type": "hr", + "processor_usage": 4, + "processor_descr": "Intel Xeon E5620 @ 2.40GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Physical 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": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Virtual 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": 90 + }, + { + "mempool_index": "10", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Swap space", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Physical memory", + "mempool_perc": 90, + "mempool_used": 21840949248, + "mempool_free": 2363482112, + "mempool_total": 24204431360, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Virtual memory", + "mempool_perc": 67, + "mempool_used": 21843578880, + "mempool_free": 10950782976, + "mempool_total": 32794361856, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "10", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Swap space", + "mempool_perc": 0, + "mempool_used": 2629632, + "mempool_free": 8587300864, + "mempool_total": 8589930496, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 21003583488, + "storage_units": 4096, + "storage_used": 1545662464, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 2420445184, + "storage_units": 4096, + "storage_used": 4296704, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "39", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 12102213632, + "storage_units": 4096, + "storage_used": 1769472, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "40", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/lock", + "storage_size": 5242880, + "storage_units": 4096, + "storage_used": 4096, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "41", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/sys/fs/cgroup", + "storage_size": 12102213632, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "55", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/share/gvm/gsad/usr/share/zoneinfo", + "storage_size": 21003583488, + "storage_units": 4096, + "storage_used": 1545662464, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "56", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/share/gvm/gsad/etc/localtime", + "storage_size": 21003583488, + "storage_units": 4096, + "storage_used": 1545662464, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "57", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/share/gvm/gsad/dev/log", + "storage_size": 2420445184, + "storage_units": 4096, + "storage_used": 4296704, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "58", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/boot", + "storage_size": 397457408, + "storage_units": 1024, + "storage_used": 26330112, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "59", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/boot/efi", + "storage_size": 104568832, + "storage_units": 2048, + "storage_used": 10936320, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "60", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/var/log", + "storage_size": 2046640128, + "storage_units": 4096, + "storage_used": 1509945344, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "61", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/opt/greenbone/valuable", + "storage_size": 31572529152, + "storage_units": 4096, + "storage_used": 2705956864, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "62", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/opt/greenbone/feed", + "storage_size": 6274220032, + "storage_units": 4096, + "storage_used": 2505699328, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "63", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/var/lib/postgresql", + "storage_size": 31572529152, + "storage_units": 4096, + "storage_used": 5432770560, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "64", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/opt/greenbone/backups", + "storage_size": 42007232512, + "storage_units": 4096, + "storage_used": 8074596352, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "65", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/netns", + "storage_size": 2420445184, + "storage_units": 4096, + "storage_used": 4296704, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 21003583488, + "storage_units": 4096, + "storage_used": 1545662464, + "storage_free": 19457921024, + "storage_perc": 7, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 2420445184, + "storage_units": 4096, + "storage_used": 4296704, + "storage_free": 2416148480, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "39", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 12102213632, + "storage_units": 4096, + "storage_used": 1769472, + "storage_free": 12100444160, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "40", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/lock", + "storage_size": 5242880, + "storage_units": 4096, + "storage_used": 4096, + "storage_free": 5238784, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "41", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/sys/fs/cgroup", + "storage_size": 12102213632, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 12102213632, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "55", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/share/gvm/gsad/usr/share/zoneinfo", + "storage_size": 21003583488, + "storage_units": 4096, + "storage_used": 1545662464, + "storage_free": 19457921024, + "storage_perc": 7, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "56", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/share/gvm/gsad/etc/localtime", + "storage_size": 21003583488, + "storage_units": 4096, + "storage_used": 1545662464, + "storage_free": 19457921024, + "storage_perc": 7, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "57", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/share/gvm/gsad/dev/log", + "storage_size": 2420445184, + "storage_units": 4096, + "storage_used": 4296704, + "storage_free": 2416148480, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "58", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/boot", + "storage_size": 397457408, + "storage_units": 1024, + "storage_used": 26330112, + "storage_free": 371127296, + "storage_perc": 7, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "59", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/boot/efi", + "storage_size": 104568832, + "storage_units": 2048, + "storage_used": 10936320, + "storage_free": 93632512, + "storage_perc": 10, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "60", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/var/log", + "storage_size": 2046640128, + "storage_units": 4096, + "storage_used": 1509945344, + "storage_free": 536694784, + "storage_perc": 74, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "61", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/opt/greenbone/valuable", + "storage_size": 31572529152, + "storage_units": 4096, + "storage_used": 2705956864, + "storage_free": 28866572288, + "storage_perc": 9, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "62", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/opt/greenbone/feed", + "storage_size": 6274220032, + "storage_units": 4096, + "storage_used": 2505699328, + "storage_free": 3768520704, + "storage_perc": 40, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "63", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/var/lib/postgresql", + "storage_size": 31572529152, + "storage_units": 4096, + "storage_used": 5432770560, + "storage_free": 26139758592, + "storage_perc": 17, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "64", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/opt/greenbone/backups", + "storage_size": 42007232512, + "storage_units": 4096, + "storage_used": 8074596352, + "storage_free": 33932636160, + "storage_perc": 19, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "65", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/netns", + "storage_size": 2420445184, + "storage_units": 4096, + "storage_used": 4296704, + "storage_free": 2416148480, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/gos.snmprec b/tests/snmpsim/gos.snmprec new file mode 100644 index 0000000000..2a5b5107be --- /dev/null +++ b/tests/snmpsim/gos.snmprec @@ -0,0 +1,1299 @@ +1.3.6.1.2.1.1.1.0|4|Greenbone Security Manager +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.35847.1.1 +1.3.6.1.2.1.1.3.0|67|382024280 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.1|4|lo +1.3.6.1.2.1.2.2.1.2.2|4|bond0 +1.3.6.1.2.1.2.2.1.2.3|4|Intel Corporation 82574L Gigabit Network Connection +1.3.6.1.2.1.2.2.1.2.5|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.6|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.7|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.8|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.9|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.10|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.11|4|Intel Corporation 82580 Gigabit Fiber Network Connection +1.3.6.1.2.1.2.2.1.2.13|4|veth0 +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|6 +1.3.6.1.2.1.2.2.1.3.9|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.13|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|65536 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4x|6EA1E5F2CDC9 +1.3.6.1.2.1.2.2.1.6.3|4x|BFC4DE424726 +1.3.6.1.2.1.2.2.1.6.5|4x|64E6B0F4D2BF +1.3.6.1.2.1.2.2.1.6.6|4x|5502FD87EF23 +1.3.6.1.2.1.2.2.1.6.7|4x|2F29023170F1 +1.3.6.1.2.1.2.2.1.6.8|4x|6962885D3CCD +1.3.6.1.2.1.2.2.1.6.9|4x|0EBC220694A6 +1.3.6.1.2.1.2.2.1.6.10|4x|1FB72AB2BA5B +1.3.6.1.2.1.2.2.1.6.11|4x|C7FC8CFC4A75 +1.3.6.1.2.1.2.2.1.6.13|4x|6407A5BE87E4 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|2 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|2 +1.3.6.1.2.1.2.2.1.7.7|2|2 +1.3.6.1.2.1.2.2.1.7.8|2|2 +1.3.6.1.2.1.2.2.1.7.9|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|2 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|2 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|2 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|2106 +1.3.6.1.2.1.2.2.1.9.5|67|2106 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +1.3.6.1.2.1.2.2.1.9.8|67|0 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|4161 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.4.3.0|65|138210635 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|138210635 +1.3.6.1.2.1.4.10.0|65|137830744 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|163 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.10.0.0.37|2|5 +1.3.6.1.2.1.4.20.1.2.198.18.0.1|2|13 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.20.1.3.10.0.0.37|64|255.255.255.240 +1.3.6.1.2.1.4.20.1.3.198.18.0.1|64|255.255.255.252 +1.3.6.1.2.1.4.22.1.2.5.10.0.0.33|4x|D5FD7484D5C9 +1.3.6.1.2.1.4.22.1.2.13.198.18.0.2|4x|89B7D2B4A442 +1.3.6.1.2.1.4.31.1.1.3.1|65|138210619 +1.3.6.1.2.1.4.31.1.1.3.2|65|90475 +1.3.6.1.2.1.4.31.1.1.4.1|70|138210619 +1.3.6.1.2.1.4.31.1.1.4.2|70|90475 +1.3.6.1.2.1.4.31.1.1.5.1|65|812974525 +1.3.6.1.2.1.4.31.1.1.5.2|65|6849685 +1.3.6.1.2.1.4.31.1.1.6.1|70|30877745597 +1.3.6.1.2.1.4.31.1.1.6.2|70|6849685 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|77285 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|77285 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|77285 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|13198 +1.3.6.1.2.1.4.31.1.1.18.1|65|138210619 +1.3.6.1.2.1.4.31.1.1.18.2|65|23305 +1.3.6.1.2.1.4.31.1.1.19.1|70|138210619 +1.3.6.1.2.1.4.31.1.1.19.2|70|23305 +1.3.6.1.2.1.4.31.1.1.20.1|65|137830716 +1.3.6.1.2.1.4.31.1.1.20.2|65|26852 +1.3.6.1.2.1.4.31.1.1.21.1|70|137830716 +1.3.6.1.2.1.4.31.1.1.21.2|70|26852 +1.3.6.1.2.1.4.31.1.1.22.1|65|163 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|8 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|0 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|0 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|137830553 +1.3.6.1.2.1.4.31.1.1.30.2|65|26844 +1.3.6.1.2.1.4.31.1.1.31.1|70|137830553 +1.3.6.1.2.1.4.31.1.1.31.2|70|26844 +1.3.6.1.2.1.4.31.1.1.32.1|65|2818908340 +1.3.6.1.2.1.4.31.1.1.32.2|65|2033957 +1.3.6.1.2.1.4.31.1.1.33.1|70|32883679412 +1.3.6.1.2.1.4.31.1.1.33.2|70|2033957 +1.3.6.1.2.1.4.31.1.1.34.1|65|0 +1.3.6.1.2.1.4.31.1.1.34.2|65|53972 +1.3.6.1.2.1.4.31.1.1.35.1|70|0 +1.3.6.1.2.1.4.31.1.1.35.2|70|53972 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|3885984 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|3885984 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|36 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|36 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|3192 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|3192 +1.3.6.1.2.1.4.31.1.1.42.1|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|60000 +1.3.6.1.2.1.4.31.1.1.47.2|66|60000 +1.3.6.1.2.1.4.34.1.3.2.16.32.2.5.48.1.61.38.28.0.0.0.0.0.0.0.55|2|5 +1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.16.0.174.254.84.247.116|2|5 +1.3.6.1.2.1.4.34.1.5.2.16.32.2.5.48.1.61.38.28.0.0.0.0.0.0.0.55|6|1.3.6.1.2.1.4.32.1.5.5.2.16.32.2.5.48.1.61.38.28.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.16.0.174.254.84.247.116|6|1.3.6.1.2.1.4.32.1.5.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.6.2.16.32.2.5.48.1.61.38.28.0.0.0.0.0.0.0.55|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.16.0.174.254.84.247.116|2|5 +1.3.6.1.2.1.4.35.1.4.5.1.4.10.0.0.33|4x|D5FD7484D5C9 +1.3.6.1.2.1.4.35.1.4.5.2.16.32.2.5.48.1.61.38.28.0.0.0.0.0.0.0.1|4x|D5FD7484D5C9 +1.3.6.1.2.1.4.35.1.4.5.2.16.254.128.0.0.0.0.0.0.34.78.112.111.18.4.123.0|4x|D5FD7484D5C9 +1.3.6.1.2.1.4.35.1.4.13.1.4.198.18.0.2|4x|89B7D2B4A442 +1.3.6.1.2.1.5.1.0|65|101293 +1.3.6.1.2.1.5.2.0|65|6 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|2712 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|0 +1.3.6.1.2.1.5.9.0|65|98581 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|0 +1.3.6.1.2.1.5.15.0|65|98671 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|87 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|3 +1.3.6.1.2.1.5.23.0|65|98581 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|101293 +1.3.6.1.2.1.5.29.1.2.2|65|19577 +1.3.6.1.2.1.5.29.1.3.1|65|6 +1.3.6.1.2.1.5.29.1.3.2|65|2 +1.3.6.1.2.1.5.29.1.4.1|65|0 +1.3.6.1.2.1.5.29.1.4.2|65|20652 +1.3.6.1.2.1.5.29.1.5.1|65|98671 +1.3.6.1.2.1.5.29.1.5.2|65|1050 +1.3.6.1.2.1.5.30.1.3.1.3|65|2712 +1.3.6.1.2.1.5.30.1.3.1.8|65|98581 +1.3.6.1.2.1.5.30.1.3.2.1|65|2 +1.3.6.1.2.1.5.30.1.3.2.135|65|9538 +1.3.6.1.2.1.5.30.1.3.2.136|65|10037 +1.3.6.1.2.1.5.30.1.4.1.0|65|98581 +1.3.6.1.2.1.5.30.1.4.1.3|65|87 +1.3.6.1.2.1.5.30.1.4.1.8|65|3 +1.3.6.1.2.1.5.30.1.4.2.1|65|1050 +1.3.6.1.2.1.5.30.1.4.2.135|65|10047 +1.3.6.1.2.1.5.30.1.4.2.136|65|9538 +1.3.6.1.2.1.5.30.1.4.2.143|65|17 +1.3.6.1.2.1.6.5.0|65|3180 +1.3.6.1.2.1.6.6.0|65|684 +1.3.6.1.2.1.6.7.0|65|415 +1.3.6.1.2.1.6.8.0|65|8 +1.3.6.1.2.1.6.9.0|66|22 +1.3.6.1.2.1.6.10.0|65|101291742 +1.3.6.1.2.1.6.11.0|65|103016390 +1.3.6.1.2.1.6.12.0|65|4298 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|93 +1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.13666.1.4.127.0.0.1.59910|2|5 +1.3.6.1.2.1.7.1.0|65|36820389 +1.3.6.1.2.1.7.2.0|65|1133 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|36842611 +1.3.6.1.2.1.10.7.2.1.19.3|2|3 +1.3.6.1.2.1.10.7.2.1.19.5|2|3 +1.3.6.1.2.1.10.7.2.1.19.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.7|2|1 +1.3.6.1.2.1.10.7.2.1.19.8|2|1 +1.3.6.1.2.1.10.7.2.1.19.9|2|1 +1.3.6.1.2.1.10.7.2.1.19.10|2|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.10.7.2.1.19.13|2|3 +1.3.6.1.2.1.11.1.0|65|2188277 +1.3.6.1.2.1.11.2.0|65|1664485 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|15330254 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|310557 +1.3.6.1.2.1.11.16.0|65|51052 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|1664487 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.25.1.1.0|67|587497415 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|263 +1.3.6.1.2.1.25.2.2.0|2|23637140 +1.3.6.1.2.1.25.2.3.1.1.1|2|1 +1.3.6.1.2.1.25.2.3.1.1.3|2|3 +1.3.6.1.2.1.25.2.3.1.1.6|2|6 +1.3.6.1.2.1.25.2.3.1.1.7|2|7 +1.3.6.1.2.1.25.2.3.1.1.8|2|8 +1.3.6.1.2.1.25.2.3.1.1.10|2|10 +1.3.6.1.2.1.25.2.3.1.1.31|2|31 +1.3.6.1.2.1.25.2.3.1.1.37|2|37 +1.3.6.1.2.1.25.2.3.1.1.39|2|39 +1.3.6.1.2.1.25.2.3.1.1.40|2|40 +1.3.6.1.2.1.25.2.3.1.1.41|2|41 +1.3.6.1.2.1.25.2.3.1.1.55|2|55 +1.3.6.1.2.1.25.2.3.1.1.56|2|56 +1.3.6.1.2.1.25.2.3.1.1.57|2|57 +1.3.6.1.2.1.25.2.3.1.1.58|2|58 +1.3.6.1.2.1.25.2.3.1.1.59|2|59 +1.3.6.1.2.1.25.2.3.1.1.60|2|60 +1.3.6.1.2.1.25.2.3.1.1.61|2|61 +1.3.6.1.2.1.25.2.3.1.1.62|2|62 +1.3.6.1.2.1.25.2.3.1.1.63|2|63 +1.3.6.1.2.1.25.2.3.1.1.64|2|64 +1.3.6.1.2.1.25.2.3.1.1.65|2|65 +1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2 +1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.39|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.40|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.41|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.55|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.56|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.57|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.58|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.59|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.60|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.61|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.62|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.63|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.64|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.65|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory +1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory +1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers +1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory +1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory +1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space +1.3.6.1.2.1.25.2.3.1.3.31|4|/ +1.3.6.1.2.1.25.2.3.1.3.37|4|/run +1.3.6.1.2.1.25.2.3.1.3.39|4|/dev/shm +1.3.6.1.2.1.25.2.3.1.3.40|4|/run/lock +1.3.6.1.2.1.25.2.3.1.3.41|4|/sys/fs/cgroup +1.3.6.1.2.1.25.2.3.1.3.55|4|/usr/share/gvm/gsad/usr/share/zoneinfo +1.3.6.1.2.1.25.2.3.1.3.56|4|/usr/share/gvm/gsad/etc/localtime +1.3.6.1.2.1.25.2.3.1.3.57|4|/usr/share/gvm/gsad/dev/log +1.3.6.1.2.1.25.2.3.1.3.58|4|/boot +1.3.6.1.2.1.25.2.3.1.3.59|4|/boot/efi +1.3.6.1.2.1.25.2.3.1.3.60|4|/var/log +1.3.6.1.2.1.25.2.3.1.3.61|4|/opt/greenbone/valuable +1.3.6.1.2.1.25.2.3.1.3.62|4|/opt/greenbone/feed +1.3.6.1.2.1.25.2.3.1.3.63|4|/var/lib/postgresql +1.3.6.1.2.1.25.2.3.1.3.64|4|/opt/greenbone/backups +1.3.6.1.2.1.25.2.3.1.3.65|4|/run/netns +1.3.6.1.2.1.25.2.3.1.4.1|2|1024 +1.3.6.1.2.1.25.2.3.1.4.3|2|1024 +1.3.6.1.2.1.25.2.3.1.4.6|2|1024 +1.3.6.1.2.1.25.2.3.1.4.7|2|1024 +1.3.6.1.2.1.25.2.3.1.4.8|2|1024 +1.3.6.1.2.1.25.2.3.1.4.10|2|1024 +1.3.6.1.2.1.25.2.3.1.4.31|2|4096 +1.3.6.1.2.1.25.2.3.1.4.37|2|4096 +1.3.6.1.2.1.25.2.3.1.4.39|2|4096 +1.3.6.1.2.1.25.2.3.1.4.40|2|4096 +1.3.6.1.2.1.25.2.3.1.4.41|2|4096 +1.3.6.1.2.1.25.2.3.1.4.55|2|4096 +1.3.6.1.2.1.25.2.3.1.4.56|2|4096 +1.3.6.1.2.1.25.2.3.1.4.57|2|4096 +1.3.6.1.2.1.25.2.3.1.4.58|2|1024 +1.3.6.1.2.1.25.2.3.1.4.59|2|2048 +1.3.6.1.2.1.25.2.3.1.4.60|2|4096 +1.3.6.1.2.1.25.2.3.1.4.61|2|4096 +1.3.6.1.2.1.25.2.3.1.4.62|2|4096 +1.3.6.1.2.1.25.2.3.1.4.63|2|4096 +1.3.6.1.2.1.25.2.3.1.4.64|2|4096 +1.3.6.1.2.1.25.2.3.1.4.65|2|4096 +1.3.6.1.2.1.25.2.3.1.5.1|2|23637140 +1.3.6.1.2.1.25.2.3.1.5.3|2|32025744 +1.3.6.1.2.1.25.2.3.1.5.6|2|23637140 +1.3.6.1.2.1.25.2.3.1.5.7|2|13578032 +1.3.6.1.2.1.25.2.3.1.5.8|2|4180176 +1.3.6.1.2.1.25.2.3.1.5.10|2|8388604 +1.3.6.1.2.1.25.2.3.1.5.31|2|5127828 +1.3.6.1.2.1.25.2.3.1.5.37|2|590929 +1.3.6.1.2.1.25.2.3.1.5.39|2|2954642 +1.3.6.1.2.1.25.2.3.1.5.40|2|1280 +1.3.6.1.2.1.25.2.3.1.5.41|2|2954642 +1.3.6.1.2.1.25.2.3.1.5.55|2|5127828 +1.3.6.1.2.1.25.2.3.1.5.56|2|5127828 +1.3.6.1.2.1.25.2.3.1.5.57|2|590929 +1.3.6.1.2.1.25.2.3.1.5.58|2|388142 +1.3.6.1.2.1.25.2.3.1.5.59|2|51059 +1.3.6.1.2.1.25.2.3.1.5.60|2|499668 +1.3.6.1.2.1.25.2.3.1.5.61|2|7708137 +1.3.6.1.2.1.25.2.3.1.5.62|2|1531792 +1.3.6.1.2.1.25.2.3.1.5.63|2|7708137 +1.3.6.1.2.1.25.2.3.1.5.64|2|10255672 +1.3.6.1.2.1.25.2.3.1.5.65|2|590929 +1.3.6.1.2.1.25.2.3.1.6.1|2|21329052 +1.3.6.1.2.1.25.2.3.1.6.3|2|21331620 +1.3.6.1.2.1.25.2.3.1.6.6|2|479316 +1.3.6.1.2.1.25.2.3.1.6.7|2|13578032 +1.3.6.1.2.1.25.2.3.1.6.8|2|4180176 +1.3.6.1.2.1.25.2.3.1.6.10|2|2568 +1.3.6.1.2.1.25.2.3.1.6.31|2|377359 +1.3.6.1.2.1.25.2.3.1.6.37|2|1049 +1.3.6.1.2.1.25.2.3.1.6.39|2|432 +1.3.6.1.2.1.25.2.3.1.6.40|2|1 +1.3.6.1.2.1.25.2.3.1.6.41|2|0 +1.3.6.1.2.1.25.2.3.1.6.55|2|377359 +1.3.6.1.2.1.25.2.3.1.6.56|2|377359 +1.3.6.1.2.1.25.2.3.1.6.57|2|1049 +1.3.6.1.2.1.25.2.3.1.6.58|2|25713 +1.3.6.1.2.1.25.2.3.1.6.59|2|5340 +1.3.6.1.2.1.25.2.3.1.6.60|2|368639 +1.3.6.1.2.1.25.2.3.1.6.61|2|660634 +1.3.6.1.2.1.25.2.3.1.6.62|2|611743 +1.3.6.1.2.1.25.2.3.1.6.63|2|1326360 +1.3.6.1.2.1.25.2.3.1.6.64|2|1971337 +1.3.6.1.2.1.25.2.3.1.6.65|2|1049 +1.3.6.1.2.1.25.3.2.1.3.196608|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196609|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196610|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196611|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196612|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196613|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196614|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196615|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196616|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196617|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196618|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196619|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196620|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196621|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196622|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.196623|4|GenuineIntel: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz +1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface bond0 +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface mgmt0 +1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface eth0_1 +1.3.6.1.2.1.25.3.2.1.3.262150|4|network interface eth0_2 +1.3.6.1.2.1.25.3.2.1.3.262151|4|network interface eth0_3 +1.3.6.1.2.1.25.3.2.1.3.262152|4|network interface eth0_4 +1.3.6.1.2.1.25.3.2.1.3.262153|4|network interface eth0_5 +1.3.6.1.2.1.25.3.2.1.3.262154|4|network interface eth0_6 +1.3.6.1.2.1.25.3.2.1.3.262155|4|network interface eth0_7 +1.3.6.1.2.1.25.3.2.1.3.262157|4|network interface veth0 +1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196610|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196611|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196612|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196613|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196614|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196615|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196616|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196617|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196618|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196619|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196620|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196621|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196622|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196623|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|10 +1.3.6.1.2.1.25.3.3.1.2.196609|2|6 +1.3.6.1.2.1.25.3.3.1.2.196610|2|3 +1.3.6.1.2.1.25.3.3.1.2.196611|2|7 +1.3.6.1.2.1.25.3.3.1.2.196612|2|5 +1.3.6.1.2.1.25.3.3.1.2.196613|2|6 +1.3.6.1.2.1.25.3.3.1.2.196614|2|6 +1.3.6.1.2.1.25.3.3.1.2.196615|2|5 +1.3.6.1.2.1.25.3.3.1.2.196616|2|6 +1.3.6.1.2.1.25.3.3.1.2.196617|2|4 +1.3.6.1.2.1.25.3.3.1.2.196618|2|6 +1.3.6.1.2.1.25.3.3.1.2.196619|2|4 +1.3.6.1.2.1.25.3.3.1.2.196620|2|5 +1.3.6.1.2.1.25.3.3.1.2.196621|2|5 +1.3.6.1.2.1.25.3.3.1.2.196622|2|6 +1.3.6.1.2.1.25.3.3.1.2.196623|2|4 +1.3.6.1.2.1.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.2|4|bond0 +1.3.6.1.2.1.31.1.1.1.1.3|4|mgmt0 +1.3.6.1.2.1.31.1.1.1.1.5|4|eth0_1 +1.3.6.1.2.1.31.1.1.1.1.6|4|eth0_2 +1.3.6.1.2.1.31.1.1.1.1.7|4|eth0_3 +1.3.6.1.2.1.31.1.1.1.1.8|4|eth0_4 +1.3.6.1.2.1.31.1.1.1.1.9|4|eth0_5 +1.3.6.1.2.1.31.1.1.1.1.10|4|eth0_6 +1.3.6.1.2.1.31.1.1.1.1.11|4|eth0_7 +1.3.6.1.2.1.31.1.1.1.1.13|4|veth0 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|13026 +1.3.6.1.2.1.31.1.1.1.2.5|65|53972 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|28366531461 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|84613388 +1.3.6.1.2.1.31.1.1.1.6.5|70|2632256041 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|3516676 +1.3.6.1.2.1.31.1.1.1.7.1|70|133775266 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|1298887 +1.3.6.1.2.1.31.1.1.1.7.5|70|5265431 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|41360 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|13026 +1.3.6.1.2.1.31.1.1.1.8.5|70|53972 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|28366531461 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|4710634741 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|3677071 +1.3.6.1.2.1.31.1.1.1.11.1|70|133775266 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|6190839 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|40311 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|10 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|1000 +1.3.6.1.2.1.31.1.1.1.15.5|66|1000 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|0 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.13|66|10000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|1 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.17.6|2|1 +1.3.6.1.2.1.31.1.1.1.17.7|2|1 +1.3.6.1.2.1.31.1.1.1.17.8|2|1 +1.3.6.1.2.1.31.1.1.1.17.9|2|1 +1.3.6.1.2.1.31.1.1.1.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.4.1.2021.4.3.0|2|8388604 +1.3.6.1.4.1.2021.4.4.0|2|8386036 +1.3.6.1.4.1.2021.4.5.0|2|23637140 +1.3.6.1.4.1.2021.4.6.0|2|2312372 +1.3.6.1.4.1.2021.4.11.0|2|10698408 +1.3.6.1.4.1.2021.4.13.0|2|4180176 +1.3.6.1.4.1.2021.4.14.0|2|479316 +1.3.6.1.4.1.2021.4.15.0|2|13578580 +1.3.6.1.4.1.2021.10.1.5.1|2|77 +1.3.6.1.4.1.2021.10.1.5.2|2|52 +1.3.6.1.4.1.2021.10.1.5.3|2|36 +1.3.6.1.4.1.2021.11.1.0|2|1 +1.3.6.1.4.1.2021.11.2.0|4|systemStats +1.3.6.1.4.1.2021.11.3.0|2|0 +1.3.6.1.4.1.2021.11.4.0|2|0 +1.3.6.1.4.1.2021.11.5.0|2|1593 +1.3.6.1.4.1.2021.11.6.0|2|0 +1.3.6.1.4.1.2021.11.7.0|2|1788 +1.3.6.1.4.1.2021.11.8.0|2|2346 +1.3.6.1.4.1.2021.11.9.0|2|3 +1.3.6.1.4.1.2021.11.10.0|2|0 +1.3.6.1.4.1.2021.11.11.0|2|94 +1.3.6.1.4.1.2021.11.50.0|65|31049089 +1.3.6.1.4.1.2021.11.51.0|65|6482450 +1.3.6.1.4.1.2021.11.52.0|65|20228062 +1.3.6.1.4.1.2021.11.53.0|65|719546379 +1.3.6.1.4.1.2021.11.54.0|65|30606727 +1.3.6.1.4.1.2021.11.55.0|65|0 +1.3.6.1.4.1.2021.11.56.0|65|0 +1.3.6.1.4.1.2021.11.57.0|65|2889673208 +1.3.6.1.4.1.2021.11.58.0|65|15936332 +1.3.6.1.4.1.2021.11.59.0|65|1981232544 +1.3.6.1.4.1.2021.11.60.0|65|576483853 +1.3.6.1.4.1.2021.11.61.0|65|3688309 +1.3.6.1.4.1.2021.11.62.0|65|0 +1.3.6.1.4.1.2021.11.63.0|65|81 +1.3.6.1.4.1.2021.11.64.0|65|0 +1.3.6.1.4.1.2021.11.65.0|65|0 +1.3.6.1.4.1.2021.11.66.0|65|0 +1.3.6.1.4.1.2021.11.67.0|2|16 +1.3.6.1.4.1.2021.13.15.1.1.1.1|2|1 +1.3.6.1.4.1.2021.13.15.1.1.1.2|2|2 +1.3.6.1.4.1.2021.13.15.1.1.1.3|2|3 +1.3.6.1.4.1.2021.13.15.1.1.1.4|2|4 +1.3.6.1.4.1.2021.13.15.1.1.1.5|2|5 +1.3.6.1.4.1.2021.13.15.1.1.1.6|2|6 +1.3.6.1.4.1.2021.13.15.1.1.1.7|2|7 +1.3.6.1.4.1.2021.13.15.1.1.1.8|2|8 +1.3.6.1.4.1.2021.13.15.1.1.1.9|2|9 +1.3.6.1.4.1.2021.13.15.1.1.1.10|2|10 +1.3.6.1.4.1.2021.13.15.1.1.1.11|2|11 +1.3.6.1.4.1.2021.13.15.1.1.1.12|2|12 +1.3.6.1.4.1.2021.13.15.1.1.1.13|2|13 +1.3.6.1.4.1.2021.13.15.1.1.1.14|2|14 +1.3.6.1.4.1.2021.13.15.1.1.1.15|2|15 +1.3.6.1.4.1.2021.13.15.1.1.1.16|2|16 +1.3.6.1.4.1.2021.13.15.1.1.1.17|2|17 +1.3.6.1.4.1.2021.13.15.1.1.1.18|2|18 +1.3.6.1.4.1.2021.13.15.1.1.1.19|2|19 +1.3.6.1.4.1.2021.13.15.1.1.1.20|2|20 +1.3.6.1.4.1.2021.13.15.1.1.1.21|2|21 +1.3.6.1.4.1.2021.13.15.1.1.1.22|2|22 +1.3.6.1.4.1.2021.13.15.1.1.1.23|2|23 +1.3.6.1.4.1.2021.13.15.1.1.1.24|2|24 +1.3.6.1.4.1.2021.13.15.1.1.1.25|2|25 +1.3.6.1.4.1.2021.13.15.1.1.1.26|2|26 +1.3.6.1.4.1.2021.13.15.1.1.1.27|2|27 +1.3.6.1.4.1.2021.13.15.1.1.1.28|2|28 +1.3.6.1.4.1.2021.13.15.1.1.1.29|2|29 +1.3.6.1.4.1.2021.13.15.1.1.1.30|2|30 +1.3.6.1.4.1.2021.13.15.1.1.1.31|2|31 +1.3.6.1.4.1.2021.13.15.1.1.1.32|2|32 +1.3.6.1.4.1.2021.13.15.1.1.1.33|2|33 +1.3.6.1.4.1.2021.13.15.1.1.1.34|2|34 +1.3.6.1.4.1.2021.13.15.1.1.1.35|2|35 +1.3.6.1.4.1.2021.13.15.1.1.1.36|2|36 +1.3.6.1.4.1.2021.13.15.1.1.1.37|2|37 +1.3.6.1.4.1.2021.13.15.1.1.1.38|2|38 +1.3.6.1.4.1.2021.13.15.1.1.1.39|2|39 +1.3.6.1.4.1.2021.13.15.1.1.1.40|2|40 +1.3.6.1.4.1.2021.13.15.1.1.1.41|2|41 +1.3.6.1.4.1.2021.13.15.1.1.1.42|2|42 +1.3.6.1.4.1.2021.13.15.1.1.1.43|2|43 +1.3.6.1.4.1.2021.13.15.1.1.1.44|2|44 +1.3.6.1.4.1.2021.13.15.1.1.1.45|2|45 +1.3.6.1.4.1.2021.13.15.1.1.1.46|2|46 +1.3.6.1.4.1.2021.13.15.1.1.1.47|2|47 +1.3.6.1.4.1.2021.13.15.1.1.2.1|4|ram0 +1.3.6.1.4.1.2021.13.15.1.1.2.2|4|ram1 +1.3.6.1.4.1.2021.13.15.1.1.2.3|4|ram2 +1.3.6.1.4.1.2021.13.15.1.1.2.4|4|ram3 +1.3.6.1.4.1.2021.13.15.1.1.2.5|4|ram4 +1.3.6.1.4.1.2021.13.15.1.1.2.6|4|ram5 +1.3.6.1.4.1.2021.13.15.1.1.2.7|4|ram6 +1.3.6.1.4.1.2021.13.15.1.1.2.8|4|ram7 +1.3.6.1.4.1.2021.13.15.1.1.2.9|4|ram8 +1.3.6.1.4.1.2021.13.15.1.1.2.10|4|ram9 +1.3.6.1.4.1.2021.13.15.1.1.2.11|4|ram10 +1.3.6.1.4.1.2021.13.15.1.1.2.12|4|ram11 +1.3.6.1.4.1.2021.13.15.1.1.2.13|4|ram12 +1.3.6.1.4.1.2021.13.15.1.1.2.14|4|ram13 +1.3.6.1.4.1.2021.13.15.1.1.2.15|4|ram14 +1.3.6.1.4.1.2021.13.15.1.1.2.16|4|ram15 +1.3.6.1.4.1.2021.13.15.1.1.2.17|4|sda +1.3.6.1.4.1.2021.13.15.1.1.2.18|4|sda1 +1.3.6.1.4.1.2021.13.15.1.1.2.19|4|sda2 +1.3.6.1.4.1.2021.13.15.1.1.2.20|4|sda3 +1.3.6.1.4.1.2021.13.15.1.1.2.21|4|sdb +1.3.6.1.4.1.2021.13.15.1.1.2.22|4|sdb1 +1.3.6.1.4.1.2021.13.15.1.1.2.23|4|sdb2 +1.3.6.1.4.1.2021.13.15.1.1.2.24|4|sdb3 +1.3.6.1.4.1.2021.13.15.1.1.2.25|4|sdc +1.3.6.1.4.1.2021.13.15.1.1.2.26|4|sdc1 +1.3.6.1.4.1.2021.13.15.1.1.2.27|4|sdc2 +1.3.6.1.4.1.2021.13.15.1.1.2.28|4|sdc3 +1.3.6.1.4.1.2021.13.15.1.1.2.29|4|sdd +1.3.6.1.4.1.2021.13.15.1.1.2.30|4|sdd1 +1.3.6.1.4.1.2021.13.15.1.1.2.31|4|sdd2 +1.3.6.1.4.1.2021.13.15.1.1.2.32|4|sdd3 +1.3.6.1.4.1.2021.13.15.1.1.2.33|4|sde +1.3.6.1.4.1.2021.13.15.1.1.2.34|4|sde1 +1.3.6.1.4.1.2021.13.15.1.1.2.35|4|sde2 +1.3.6.1.4.1.2021.13.15.1.1.2.36|4|sde3 +1.3.6.1.4.1.2021.13.15.1.1.2.37|4|md1 +1.3.6.1.4.1.2021.13.15.1.1.2.38|4|md3 +1.3.6.1.4.1.2021.13.15.1.1.2.39|4|md2 +1.3.6.1.4.1.2021.13.15.1.1.2.40|4|dm-0 +1.3.6.1.4.1.2021.13.15.1.1.2.41|4|dm-1 +1.3.6.1.4.1.2021.13.15.1.1.2.42|4|dm-2 +1.3.6.1.4.1.2021.13.15.1.1.2.43|4|dm-3 +1.3.6.1.4.1.2021.13.15.1.1.2.44|4|dm-4 +1.3.6.1.4.1.2021.13.15.1.1.2.45|4|dm-5 +1.3.6.1.4.1.2021.13.15.1.1.2.46|4|dm-6 +1.3.6.1.4.1.2021.13.15.1.1.2.47|4|dm-7 +1.3.6.1.4.1.2021.13.15.1.1.3.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.17|65|2766214144 +1.3.6.1.4.1.2021.13.15.1.1.3.18|65|211284480 +1.3.6.1.4.1.2021.13.15.1.1.3.19|65|841430016 +1.3.6.1.4.1.2021.13.15.1.1.3.20|65|1712369152 +1.3.6.1.4.1.2021.13.15.1.1.3.21|65|2669493248 +1.3.6.1.4.1.2021.13.15.1.1.3.22|65|210456576 +1.3.6.1.4.1.2021.13.15.1.1.3.23|65|838998016 +1.3.6.1.4.1.2021.13.15.1.1.3.24|65|1618908160 +1.3.6.1.4.1.2021.13.15.1.1.3.25|65|2959872 +1.3.6.1.4.1.2021.13.15.1.1.3.26|65|209887232 +1.3.6.1.4.1.2021.13.15.1.1.3.27|65|838779904 +1.3.6.1.4.1.2021.13.15.1.1.3.28|65|3248129536 +1.3.6.1.4.1.2021.13.15.1.1.3.29|65|158567936 +1.3.6.1.4.1.2021.13.15.1.1.3.30|65|209883136 +1.3.6.1.4.1.2021.13.15.1.1.3.31|65|838623232 +1.3.6.1.4.1.2021.13.15.1.1.3.32|65|3403898368 +1.3.6.1.4.1.2021.13.15.1.1.3.33|65|7352320 +1.3.6.1.4.1.2021.13.15.1.1.3.34|65|4038656 +1.3.6.1.4.1.2021.13.15.1.1.3.35|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.36|65|2203648 +1.3.6.1.4.1.2021.13.15.1.1.3.37|65|2437632 +1.3.6.1.4.1.2021.13.15.1.1.3.38|65|2089270784 +1.3.6.1.4.1.2021.13.15.1.1.3.39|65|4075520 +1.3.6.1.4.1.2021.13.15.1.1.3.40|65|3836045312 +1.3.6.1.4.1.2021.13.15.1.1.3.41|65|404718592 +1.3.6.1.4.1.2021.13.15.1.1.3.42|65|2112185344 +1.3.6.1.4.1.2021.13.15.1.1.3.43|65|17880064 +1.3.6.1.4.1.2021.13.15.1.1.3.44|65|357446656 +1.3.6.1.4.1.2021.13.15.1.1.3.45|65|973870080 +1.3.6.1.4.1.2021.13.15.1.1.3.46|65|4261909504 +1.3.6.1.4.1.2021.13.15.1.1.3.47|65|2461696 +1.3.6.1.4.1.2021.13.15.1.1.4.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.17|65|3422675968 +1.3.6.1.4.1.2021.13.15.1.1.4.18|65|18944 +1.3.6.1.4.1.2021.13.15.1.1.4.19|65|47104 +1.3.6.1.4.1.2021.13.15.1.1.4.20|65|3422609920 +1.3.6.1.4.1.2021.13.15.1.1.4.21|65|74507264 +1.3.6.1.4.1.2021.13.15.1.1.4.22|65|18944 +1.3.6.1.4.1.2021.13.15.1.1.4.23|65|47104 +1.3.6.1.4.1.2021.13.15.1.1.4.24|65|74441216 +1.3.6.1.4.1.2021.13.15.1.1.4.25|65|3754542080 +1.3.6.1.4.1.2021.13.15.1.1.4.26|65|18944 +1.3.6.1.4.1.2021.13.15.1.1.4.27|65|47104 +1.3.6.1.4.1.2021.13.15.1.1.4.28|65|3754476032 +1.3.6.1.4.1.2021.13.15.1.1.4.29|65|2061894656 +1.3.6.1.4.1.2021.13.15.1.1.4.30|65|18944 +1.3.6.1.4.1.2021.13.15.1.1.4.31|65|47104 +1.3.6.1.4.1.2021.13.15.1.1.4.32|65|2061828608 +1.3.6.1.4.1.2021.13.15.1.1.4.33|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.34|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.35|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.36|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.37|65|512 +1.3.6.1.4.1.2021.13.15.1.1.4.38|65|4253892608 +1.3.6.1.4.1.2021.13.15.1.1.4.39|65|26624 +1.3.6.1.4.1.2021.13.15.1.1.4.40|65|4253892608 +1.3.6.1.4.1.2021.13.15.1.1.4.41|65|4174528512 +1.3.6.1.4.1.2021.13.15.1.1.4.42|65|1229778944 +1.3.6.1.4.1.2021.13.15.1.1.4.43|65|4108984320 +1.3.6.1.4.1.2021.13.15.1.1.4.44|65|1440862208 +1.3.6.1.4.1.2021.13.15.1.1.4.45|65|4294082560 +1.3.6.1.4.1.2021.13.15.1.1.4.46|65|3788165120 +1.3.6.1.4.1.2021.13.15.1.1.4.47|65|331776 +1.3.6.1.4.1.2021.13.15.1.1.5.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.17|65|4276532 +1.3.6.1.4.1.2021.13.15.1.1.5.18|65|2162 +1.3.6.1.4.1.2021.13.15.1.1.5.19|65|9991 +1.3.6.1.4.1.2021.13.15.1.1.5.20|65|4264341 +1.3.6.1.4.1.2021.13.15.1.1.5.21|65|4153816 +1.3.6.1.4.1.2021.13.15.1.1.5.22|65|2051 +1.3.6.1.4.1.2021.13.15.1.1.5.23|65|10122 +1.3.6.1.4.1.2021.13.15.1.1.5.24|65|4141605 +1.3.6.1.4.1.2021.13.15.1.1.5.25|65|4209469 +1.3.6.1.4.1.2021.13.15.1.1.5.26|65|2047 +1.3.6.1.4.1.2021.13.15.1.1.5.27|65|10007 +1.3.6.1.4.1.2021.13.15.1.1.5.28|65|4197377 +1.3.6.1.4.1.2021.13.15.1.1.5.29|65|4128845 +1.3.6.1.4.1.2021.13.15.1.1.5.30|65|2023 +1.3.6.1.4.1.2021.13.15.1.1.5.31|65|10004 +1.3.6.1.4.1.2021.13.15.1.1.5.32|65|4116780 +1.3.6.1.4.1.2021.13.15.1.1.5.33|65|311 +1.3.6.1.4.1.2021.13.15.1.1.5.34|65|178 +1.3.6.1.4.1.2021.13.15.1.1.5.35|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.36|65|78 +1.3.6.1.4.1.2021.13.15.1.1.5.37|65|355 +1.3.6.1.4.1.2021.13.15.1.1.5.38|65|260407 +1.3.6.1.4.1.2021.13.15.1.1.5.39|65|213 +1.3.6.1.4.1.2021.13.15.1.1.5.40|65|248603 +1.3.6.1.4.1.2021.13.15.1.1.5.41|65|25999 +1.3.6.1.4.1.2021.13.15.1.1.5.42|65|95675 +1.3.6.1.4.1.2021.13.15.1.1.5.43|65|442 +1.3.6.1.4.1.2021.13.15.1.1.5.44|65|29674 +1.3.6.1.4.1.2021.13.15.1.1.5.45|65|4162 +1.3.6.1.4.1.2021.13.15.1.1.5.46|65|92427 +1.3.6.1.4.1.2021.13.15.1.1.5.47|65|103 +1.3.6.1.4.1.2021.13.15.1.1.6.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.17|65|426954695 +1.3.6.1.4.1.2021.13.15.1.1.6.18|65|37 +1.3.6.1.4.1.2021.13.15.1.1.6.19|65|49 +1.3.6.1.4.1.2021.13.15.1.1.6.20|65|420722391 +1.3.6.1.4.1.2021.13.15.1.1.6.21|65|440579132 +1.3.6.1.4.1.2021.13.15.1.1.6.22|65|37 +1.3.6.1.4.1.2021.13.15.1.1.6.23|65|49 +1.3.6.1.4.1.2021.13.15.1.1.6.24|65|434346828 +1.3.6.1.4.1.2021.13.15.1.1.6.25|65|439773442 +1.3.6.1.4.1.2021.13.15.1.1.6.26|65|37 +1.3.6.1.4.1.2021.13.15.1.1.6.27|65|49 +1.3.6.1.4.1.2021.13.15.1.1.6.28|65|433541138 +1.3.6.1.4.1.2021.13.15.1.1.6.29|65|450458409 +1.3.6.1.4.1.2021.13.15.1.1.6.30|65|37 +1.3.6.1.4.1.2021.13.15.1.1.6.31|65|49 +1.3.6.1.4.1.2021.13.15.1.1.6.32|65|444226105 +1.3.6.1.4.1.2021.13.15.1.1.6.33|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.34|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.35|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.36|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.37|65|1 +1.3.6.1.4.1.2021.13.15.1.1.6.38|65|679145586 +1.3.6.1.4.1.2021.13.15.1.1.6.39|65|16 +1.3.6.1.4.1.2021.13.15.1.1.6.40|65|679145586 +1.3.6.1.4.1.2021.13.15.1.1.6.41|65|636367589 +1.3.6.1.4.1.2021.13.15.1.1.6.42|65|1355124 +1.3.6.1.4.1.2021.13.15.1.1.6.43|65|230190 +1.3.6.1.4.1.2021.13.15.1.1.6.44|65|241622 +1.3.6.1.4.1.2021.13.15.1.1.6.45|65|2852804 +1.3.6.1.4.1.2021.13.15.1.1.6.46|65|38098176 +1.3.6.1.4.1.2021.13.15.1.1.6.47|65|81 +1.3.6.1.4.1.2021.13.15.1.1.9.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.17|2|3 +1.3.6.1.4.1.2021.13.15.1.1.9.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.20|2|3 +1.3.6.1.4.1.2021.13.15.1.1.9.21|2|3 +1.3.6.1.4.1.2021.13.15.1.1.9.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.24|2|3 +1.3.6.1.4.1.2021.13.15.1.1.9.25|2|3 +1.3.6.1.4.1.2021.13.15.1.1.9.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.28|2|3 +1.3.6.1.4.1.2021.13.15.1.1.9.29|2|4 +1.3.6.1.4.1.2021.13.15.1.1.9.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.31|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.32|2|4 +1.3.6.1.4.1.2021.13.15.1.1.9.33|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.34|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.35|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.36|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.37|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.38|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.39|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.40|2|9 +1.3.6.1.4.1.2021.13.15.1.1.9.41|2|6 +1.3.6.1.4.1.2021.13.15.1.1.9.42|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.43|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.44|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.45|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.46|2|4 +1.3.6.1.4.1.2021.13.15.1.1.9.47|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.17|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.20|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.21|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.24|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.25|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.28|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.29|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.31|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.32|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.33|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.34|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.35|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.36|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.37|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.38|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.39|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.40|2|8 +1.3.6.1.4.1.2021.13.15.1.1.10.41|2|5 +1.3.6.1.4.1.2021.13.15.1.1.10.42|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.43|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.44|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.45|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.46|2|3 +1.3.6.1.4.1.2021.13.15.1.1.10.47|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.17|2|2 +1.3.6.1.4.1.2021.13.15.1.1.11.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.20|2|3 +1.3.6.1.4.1.2021.13.15.1.1.11.21|2|2 +1.3.6.1.4.1.2021.13.15.1.1.11.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.24|2|2 +1.3.6.1.4.1.2021.13.15.1.1.11.25|2|2 +1.3.6.1.4.1.2021.13.15.1.1.11.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.28|2|2 +1.3.6.1.4.1.2021.13.15.1.1.11.29|2|3 +1.3.6.1.4.1.2021.13.15.1.1.11.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.31|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.32|2|3 +1.3.6.1.4.1.2021.13.15.1.1.11.33|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.34|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.35|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.36|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.37|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.38|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.39|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.40|2|7 +1.3.6.1.4.1.2021.13.15.1.1.11.41|2|4 +1.3.6.1.4.1.2021.13.15.1.1.11.42|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.43|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.44|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.45|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.46|2|3 +1.3.6.1.4.1.2021.13.15.1.1.11.47|2|0 +1.3.6.1.4.1.2021.13.15.1.1.12.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.17|70|1050738234368 +1.3.6.1.4.1.2021.13.15.1.1.12.18|70|211284480 +1.3.6.1.4.1.2021.13.15.1.1.12.19|70|841430016 +1.3.6.1.4.1.2021.13.15.1.1.12.20|70|1049684389376 +1.3.6.1.4.1.2021.13.15.1.1.12.21|70|1050641513472 +1.3.6.1.4.1.2021.13.15.1.1.12.22|70|210456576 +1.3.6.1.4.1.2021.13.15.1.1.12.23|70|838998016 +1.3.6.1.4.1.2021.13.15.1.1.12.24|70|1049590928384 +1.3.6.1.4.1.2021.13.15.1.1.12.25|70|1052269947392 +1.3.6.1.4.1.2021.13.15.1.1.12.26|70|209887232 +1.3.6.1.4.1.2021.13.15.1.1.12.27|70|838779904 +1.3.6.1.4.1.2021.13.15.1.1.12.28|70|1051220149760 +1.3.6.1.4.1.2021.13.15.1.1.12.29|70|1052425555456 +1.3.6.1.4.1.2021.13.15.1.1.12.30|70|209883136 +1.3.6.1.4.1.2021.13.15.1.1.12.31|70|838623232 +1.3.6.1.4.1.2021.13.15.1.1.12.32|70|1051375918592 +1.3.6.1.4.1.2021.13.15.1.1.12.33|70|7352320 +1.3.6.1.4.1.2021.13.15.1.1.12.34|70|4038656 +1.3.6.1.4.1.2021.13.15.1.1.12.35|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.36|70|2203648 +1.3.6.1.4.1.2021.13.15.1.1.12.37|70|2437632 +1.3.6.1.4.1.2021.13.15.1.1.12.38|70|10679205376 +1.3.6.1.4.1.2021.13.15.1.1.12.39|70|4075520 +1.3.6.1.4.1.2021.13.15.1.1.12.40|70|8131012608 +1.3.6.1.4.1.2021.13.15.1.1.12.41|70|404718592 +1.3.6.1.4.1.2021.13.15.1.1.12.42|70|2112185344 +1.3.6.1.4.1.2021.13.15.1.1.12.43|70|17880064 +1.3.6.1.4.1.2021.13.15.1.1.12.44|70|357446656 +1.3.6.1.4.1.2021.13.15.1.1.12.45|70|973870080 +1.3.6.1.4.1.2021.13.15.1.1.12.46|70|4261909504 +1.3.6.1.4.1.2021.13.15.1.1.12.47|70|2461696 +1.3.6.1.4.1.2021.13.15.1.1.13.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.17|70|2580403053568 +1.3.6.1.4.1.2021.13.15.1.1.13.18|70|18944 +1.3.6.1.4.1.2021.13.15.1.1.13.19|70|47104 +1.3.6.1.4.1.2021.13.15.1.1.13.20|70|2580402987520 +1.3.6.1.4.1.2021.13.15.1.1.13.21|70|2658659263488 +1.3.6.1.4.1.2021.13.15.1.1.13.22|70|18944 +1.3.6.1.4.1.2021.13.15.1.1.13.23|70|47104 +1.3.6.1.4.1.2021.13.15.1.1.13.24|70|2658659197440 +1.3.6.1.4.1.2021.13.15.1.1.13.25|70|2636569494528 +1.3.6.1.4.1.2021.13.15.1.1.13.26|70|18944 +1.3.6.1.4.1.2021.13.15.1.1.13.27|70|47104 +1.3.6.1.4.1.2021.13.15.1.1.13.28|70|2636569428480 +1.3.6.1.4.1.2021.13.15.1.1.13.29|70|2703596323840 +1.3.6.1.4.1.2021.13.15.1.1.13.30|70|18944 +1.3.6.1.4.1.2021.13.15.1.1.13.31|70|47104 +1.3.6.1.4.1.2021.13.15.1.1.13.32|70|2703596257792 +1.3.6.1.4.1.2021.13.15.1.1.13.33|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.34|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.35|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.36|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.37|70|512 +1.3.6.1.4.1.2021.13.15.1.1.13.38|70|3612026421248 +1.3.6.1.4.1.2021.13.15.1.1.13.39|70|26624 +1.3.6.1.4.1.2021.13.15.1.1.13.40|70|3612026421248 +1.3.6.1.4.1.2021.13.15.1.1.13.41|70|2967701962752 +1.3.6.1.4.1.2021.13.15.1.1.13.42|70|26999582720 +1.3.6.1.4.1.2021.13.15.1.1.13.43|70|115778134016 +1.3.6.1.4.1.2021.13.15.1.1.13.44|70|14325764096 +1.3.6.1.4.1.2021.13.15.1.1.13.45|70|12884017152 +1.3.6.1.4.1.2021.13.15.1.1.13.46|70|480529534976 +1.3.6.1.4.1.2021.13.15.1.1.13.47|70|331776 +1.3.6.1.6.3.10.2.1.3.0|2|3820243 \ No newline at end of file