diff --git a/database/migrations/2022_02_21_073500_add_iface_field_to_bgp_peers.php b/database/migrations/2022_02_21_073500_add_iface_field_to_bgp_peers.php new file mode 100644 index 0000000000..bf409f1679 --- /dev/null +++ b/database/migrations/2022_02_21_073500_add_iface_field_to_bgp_peers.php @@ -0,0 +1,35 @@ +unsignedInteger('bgpPeerIface')->nullable()->after('bgpPeerLastErrorText'); + }); + } + + /** + * Reverse the migrations. + * + * + * + * + * + * @return void + */ + public function down() + { + Schema::table('bgpPeers', function (Blueprint $table) { + $table->dropColumn(['bgpPeerIface']); + }); + } +} diff --git a/includes/discovery/bgp-peers.inc.php b/includes/discovery/bgp-peers.inc.php index 91c9760f57..c0df1f3d93 100644 --- a/includes/discovery/bgp-peers.inc.php +++ b/includes/discovery/bgp-peers.inc.php @@ -35,6 +35,9 @@ if (Config::get('enable_bgp')) { } elseif ($device['os_group'] === 'cisco') { $peers_data = snmp_walk($device, 'cbgpPeer2RemoteAs', '-Oq', 'CISCO-BGP4-MIB'); $peer2 = ! empty($peers_data); + } elseif ($device['os'] === 'cumulus') { + $peers_data = snmp_walk($device, 'bgpPeerRemoteAs', '-Oq', 'CUMULUS-BGPUN-MIB'); + $peer2 = ! empty($peers_data); } if (empty($peers_data)) { diff --git a/includes/polling/bgp-peers.inc.php b/includes/polling/bgp-peers.inc.php index 0f9148fdce..dc899fef60 100644 --- a/includes/polling/bgp-peers.inc.php +++ b/includes/polling/bgp-peers.inc.php @@ -26,6 +26,8 @@ if (\LibreNMS\Config::get('enable_bgp')) { $peer_data_check = snmpwalk_cache_multi_oid($device, 'hwBgpPeerEntry', [], 'HUAWEI-BGP-VPN-MIB', 'huawei'); } elseif ($device['os_group'] == 'cisco') { $peer_data_check = snmpwalk_cache_oid($device, 'cbgpPeer2RemoteAs', [], 'CISCO-BGP4-MIB'); + } elseif ($device['os'] == 'cumulus') { + $peer_data_check = snmpwalk_cache_oid($device, 'bgpPeerRemoteAs', [], 'CUMULUS-BGPUN-MIB'); } else { $peer_data_check = snmpwalk_cache_oid($device, 'bgpPeerRemoteAs', [], 'BGP4-MIB'); } @@ -358,6 +360,22 @@ if (\LibreNMS\Config::get('enable_bgp')) { 'cbgpPeer2LastError' => 'bgpPeerLastErrorCode', 'cbgpPeer2LastErrorTxt' => 'bgpPeerLastErrorText', ]; + } elseif ($device['os'] == 'cumulus') { + $peer_identifier = $peer['bgpPeerIdentifier']; + $mib = 'CUMULUS-BGPUN-MIB'; + $oid_map = [ + 'bgpPeerState' => 'bgpPeerState', + 'bgpPeerAdminStatus' => 'bgpPeerAdminStatus', + 'bgpPeerInUpdates' => 'bgpPeerInUpdates', + 'bgpPeerOutUpdates' => 'bgpPeerOutUpdates', + 'bgpPeerInTotalMessages' => 'bgpPeerInTotalMessages', + 'bgpPeerOutTotalMessages' => 'bgpPeerOutTotalMessages', + 'bgpPeerFsmEstablishedTime' => 'bgpPeerFsmEstablishedTime', + 'bgpPeerInUpdateElapsedTime' => 'bgpPeerInUpdateElapsedTime', + 'bgpPeerLocalAddr' => 'bgpLocalAddr', + 'bgpPeerLastError' => 'bgpPeerLastErrorCode', + 'bgpPeerIface' => 'bgpPeerIface', + ]; } else { $peer_identifier = $peer['bgpPeerIdentifier']; $mib = 'BGP4-MIB'; @@ -409,6 +427,29 @@ if (\LibreNMS\Config::get('enable_bgp')) { $peer_data['bgpPeerLastErrorCode'] = $error_code; $peer_data['bgpPeerLastErrorSubCode'] = $error_subcode; } + + // --- Fill the bgpPeerIface column --- + $bgpPeerIfaceFilled = false; + if (isset($peer_data['bgpPeerIface'])) { + if (! (filter_var($peer_data['bgpPeerIface'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) && ! (filter_var($peer_data['bgpPeerIface'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6))) { + // The column is already filled with the ifName, we change it to ifIndex + $bgpPeerIface = DB::table('ports')->where('device_id', '=', $device['device_id'])->where('ifName', '=', $peer_data['bgpPeerIface'])->first()->ifIndex; + $bgpPeerIfaceFilled = true; + } + } + if (! ($bgpPeerIfaceFilled) && isset($peer_data['bgpLocalAddr'])) { + // else we use the bgpLocalAddr to find ifIndex + if (filter_var($peer_data['bgpLocalAddr'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) { + $ipv4 = IP::fromHexString($peer_data['bgpLocalAddr'])->uncompressed(); + $bgpPeerIface = DB::table('ports')->join('ipv4_addresses', 'ports.port_id', '=', 'ipv4_addresses.port_id')->where('ipv4_address', '=', $ipv4)->first()->ifIndex; + } elseif (filter_var($peer_data['bgpLocalAddr'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) { + $ipv6 = IP::fromHexString($peer_data['bgpLocalAddr'])->uncompressed(); + $bgpPeerIface = DB::table('ports')->join('ipv6_addresses', 'ports.port_id', '=', 'ipv6_addresses.port_id')->where('ipv6_address', '=', $ipv6)->first()->ifIndex; + } + } + if (isset($bgpPeerIface)) { + $peer_data['bgpPeerIface'] = $bgpPeerIface; + } } d_echo($peer_data); diff --git a/mibs/cumulus/CUMULUS-BGPUN-MIB b/mibs/cumulus/CUMULUS-BGPUN-MIB new file mode 100644 index 0000000000..af6aace49c --- /dev/null +++ b/mibs/cumulus/CUMULUS-BGPUN-MIB @@ -0,0 +1,737 @@ +CUMULUS-BGPUN-MIB DEFINITIONS ::= BEGIN + +-- +-- BGP Unnumbered attributes in the Cumulus enterprise MIB -- +-- + +IMPORTS + OBJECT-TYPE, MODULE-IDENTITY, + Integer32 FROM SNMPv2-SMI + ifIndex FROM IF-MIB + cumulusMib FROM CUMULUS-SNMP-MIB + DisplayString, + TEXTUAL-CONVENTION, TimeStamp FROM SNMPv2-TC + InetAddressIPv6, + InetAddress FROM INET-ADDRESS-MIB; + +bgp MODULE-IDENTITY + LAST-UPDATED "202010120000Z" + ORGANIZATION "Cumulus Networks/Nvidia" + CONTACT-INFO + "postal: Cumulus Networks + 185 E. Dana Street, + Mountain View, CA 94041 + web: http://www.cumulusnetworks.com" + DESCRIPTION + "" + REVISION "202010120000Z" + DESCRIPTION + "Initial version." + ::= { cumulusMib 4 } + + bgpVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vector of supported BGP protocol version + numbers. Each peer negotiates the version + from this vector. Versions are identified + via the string of bits contained within this + object. The first octet contains bits 0 to + 7, the second octet contains bits 8 to 15, + and so on, with the most significant bit + referring to the lowest bit number in the + octet (e.g., the MSB of the first octet + refers to bit 0). If a bit, i, is present + and set, then the version (i+1) of the BGP + is supported." + ::= { bgp 1 } + + bgpLocalAs OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local autonomous system number." + ::= { bgp 2 } + + bgpOuterTable OBJECT IDENTIFIER ::= {bgp 3} + -- BGP Peer table. This table contains, one entry per + -- BGP peer, information about the BGP peer. + + bgpPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF BgpPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "BGP peer table. This table contains, + one entry per BGP peer, information about + the connections with BGP peers." + ::= { bgpOuterTable 1 } + + bgpPeerEntry OBJECT-TYPE + SYNTAX BgpPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry containing information about the + connection with a BGP peer." + INDEX { bgpPeerRemoteAddr } + ::= { bgpPeerTable 1 } + + BgpPeerEntry ::= SEQUENCE { + bgpPeerIdentifier + IpAddress, + bgpPeerState + INTEGER, + bgpPeerAdminStatus + INTEGER, + bgpPeerNegotiatedVersion + Integer32, + bgpPeerLocalAddr + InetAddress, + bgpPeerLocalPort + INTEGER, + bgpPeerRemoteAddr + IpAddress, + bgpPeerRemotePort + INTEGER, + bgpPeerRemoteAs + INTEGER, + bgpPeerInUpdates + Counter32, + bgpPeerOutUpdates + Counter32, + bgpPeerInTotalMessages + Counter32, + bgpPeerOutTotalMessages + Counter32, + bgpPeerLastError + OCTET STRING, + bgpPeerFsmEstablishedTransitions + Counter32, + bgpPeerFsmEstablishedTime + Gauge32, + bgpPeerConnectRetryInterval + INTEGER, + bgpPeerHoldTime + INTEGER, + bgpPeerKeepAlive + INTEGER, + bgpPeerHoldTimeConfigured + INTEGER, + bgpPeerKeepAliveConfigured + INTEGER, + bgpPeerMinASOriginationInterval + INTEGER, + bgpPeerMinRouteAdvertisementInterval + INTEGER, + bgpPeerInUpdateElapsedTime + Gauge32, + bgpPeerIface + OCTET STRING, + bgpPeerDesc + OCTET STRING + } + + bgpPeerIdentifier OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The BGP Identifier of this entry's BGP + peer." + ::= { bgpPeerEntry 1 } + + bgpPeerState OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + connect(2), + active(3), + opensent(4), + openconfirm(5), + established(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The BGP peer connection state." + ::= { bgpPeerEntry 2 } + + bgpPeerAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + stop(1), + start(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired state of the BGP connection. + A transition from 'stop' to 'start' will + cause the BGP Start Event to be generated. + A transition from 'start' to 'stop' will + cause the BGP Stop Event to be generated. + This parameter can be used to restart BGP + peer connections. Care should be used in + providing write access to this object + without adequate authentication." + ::= { bgpPeerEntry 3 } + + bgpPeerNegotiatedVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The negotiated version of BGP running + between the two peers." + ::= { bgpPeerEntry 4 } + + bgpPeerLocalAddr OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local IP address of this entry's BGP + connection." + ::= { bgpPeerEntry 5 } + + bgpPeerLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local port for the TCP connection + between the BGP peers." + ::= { bgpPeerEntry 6 } + + bgpPeerRemoteAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote IP address of this entry's BGP + peer." + ::= { bgpPeerEntry 7 } + + bgpPeerRemotePort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote port for the TCP connection + between the BGP peers. Note that the + objects bgpPeerLocalAddr, + bgpPeerLocalPort, bgpPeerRemoteAddr and + bgpPeerRemotePort provide the appropriate + reference to the standard MIB TCP + connection table." + ::= { bgpPeerEntry 8 } + + bgpPeerRemoteAs OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote autonomous system number." + ::= { bgpPeerEntry 9 } + + bgpPeerInUpdates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of BGP UPDATE messages + received on this connection. This object + should be initialized to zero (0) when the + connection is established." + ::= { bgpPeerEntry 10 } + + bgpPeerOutUpdates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of BGP UPDATE messages + transmitted on this connection. This + object should be initialized to zero (0) + when the connection is established." + ::= { bgpPeerEntry 11 } + + bgpPeerInTotalMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages received + from the remote peer on this connection. + This object should be initialized to zero + when the connection is established." + ::= { bgpPeerEntry 12 } + + bgpPeerOutTotalMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages transmitted to + the remote peer on this connection. This + object should be initialized to zero when + the connection is established." + ::= { bgpPeerEntry 13 } + + bgpPeerLastError OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last error code and subcode seen by this + peer on this connection. If no error has + occurred, this field is zero. Otherwise, the + first byte of this two byte OCTET STRING + contains the error code, and the second byte + contains the subcode." + ::= { bgpPeerEntry 14 } + + bgpPeerFsmEstablishedTransitions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of times the BGP FSM + transitioned into the established state." + ::= { bgpPeerEntry 15 } + + bgpPeerFsmEstablishedTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This timer indicates how long (in + seconds) this peer has been in the + Established state or how long + since this peer was last in the + Established state. It is set to zero when + a new peer is configured or the router is + booted." + ::= { bgpPeerEntry 16 } + + bgpPeerConnectRetryInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + ConnectRetry timer. The suggested value + for this timer is 120 seconds." + ::= { bgpPeerEntry 17 } + + bgpPeerHoldTime OBJECT-TYPE + SYNTAX INTEGER ( 0 | 3..65535 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time interval in seconds for the Hold + Timer established with the peer. The + value of this object is calculated by this + BGP speaker by using the smaller of the + value in bgpPeerHoldTimeConfigured and the + Hold Time received in the OPEN message. + This value must be at lease three seconds + if it is not zero (0) in which case the + Hold Timer has not been established with + the peer, or, the value of + bgpPeerHoldTimeConfigured is zero (0)." + ::= { bgpPeerEntry 18 } + + bgpPeerKeepAlive OBJECT-TYPE + SYNTAX INTEGER ( 0 | 1..21845 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time interval in seconds for the KeepAlive + timer established with the peer. The value + of this object is calculated by this BGP + speaker such that, when compared with + bgpPeerHoldTime, it has the same + proportion as what + bgpPeerKeepAliveConfigured has when + compared with bgpPeerHoldTimeConfigured. + If the value of this object is zero (0), + it indicates that the KeepAlive timer has + not been established with the peer, or, + the value of bgpPeerKeepAliveConfigured is + zero (0)." + ::= { bgpPeerEntry 19 } + + bgpPeerHoldTimeConfigured OBJECT-TYPE + SYNTAX INTEGER ( 0 | 3..65535 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the Hold Time + configured for this BGP speaker with this + peer. This value is placed in an OPEN + message sent to this peer by this BGP + speaker, and is compared with the Hold + Time field in an OPEN message received + from the peer when determining the Hold + Time (bgpPeerHoldTime) with the peer. + This value must not be less than three + seconds if it is not zero (0) in which + case the Hold Time is NOT to be + established with the peer. The suggested + value for this timer is 90 seconds." + ::= { bgpPeerEntry 20 } + + bgpPeerKeepAliveConfigured OBJECT-TYPE + SYNTAX INTEGER ( 0 | 1..21845 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + KeepAlive timer configured for this BGP + speaker with this peer. The value of this + object will only determine the + KEEPALIVE messages' frequency relative to + the value specified in + bgpPeerHoldTimeConfigured; the actual + time interval for the KEEPALIVE messages + is indicated by bgpPeerKeepAlive. A + reasonable maximum value for this timer + would be configured to be one + third of that of + bgpPeerHoldTimeConfigured. + If the value of this object is zero (0), + no periodical KEEPALIVE messages are sent + to the peer after the BGP connection has + been established. The suggested value for + this timer is 30 seconds." + ::= { bgpPeerEntry 21 } + + bgpPeerMinASOriginationInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + MinASOriginationInterval timer. + The suggested value for this timer is 15 + seconds." + ::= { bgpPeerEntry 22 } + + bgpPeerMinRouteAdvertisementInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + MinRouteAdvertisementInterval timer. + The suggested value for this timer is 30 + seconds." + ::= { bgpPeerEntry 23 } + + bgpPeerInUpdateElapsedTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Elapsed time in seconds since the last BGP + UPDATE message was received from the peer. + Each time bgpPeerInUpdates is incremented, + the value of this object is set to zero + (0)." + ::= { bgpPeerEntry 24 } + + bgpPeerIface OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For BGP unnumbered neighbors routes are + using interfaces as nexthop interfaces. + This is the inteface from which nexthop + route" + ::= { bgpPeerEntry 25 } + + bgpPeerDesc OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is neighbour or peer description + field. It provides human readable info + about neighbour or peer" + ::= { bgpPeerEntry 26 } + + bgpIdentifier OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The BGP Identifier of local system." + ::= { bgp 4 } + + -- BGP-4 Received Path Attribute Table. This table + -- contains, one entry per path to a network, path + -- attributes received from all peers running BGP-4. + + bgp4PathAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF Bgp4PathAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The BGP-4 Received Path Attribute Table + contains information about paths to + destination networks received from all + BGP4 peers." + ::= { bgp 5 } + + bgp4PathAttrEntry OBJECT-TYPE + SYNTAX Bgp4PathAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a path to a network." + INDEX { bgp4PathAttrIpAddrPrefix, + bgp4PathAttrIpAddrPrefixLen, + bgp4PathAttrPeer } + ::= { bgp4PathAttrTable 1 } + + Bgp4PathAttrEntry ::= SEQUENCE { + bgp4PathAttrPeer + InetAddress, + bgp4PathAttrIpAddrPrefixLen + INTEGER, + bgp4PathAttrIpAddrPrefix + IpAddress, + bgp4PathAttrOrigin + INTEGER, + bgp4PathAttrASPathSegment + OCTET STRING, + bgp4PathAttrNextHop + InetAddress, + bgp4PathAttrMultiExitDisc + INTEGER, + bgp4PathAttrLocalPref + INTEGER, + bgp4PathAttrAtomicAggregate + INTEGER, + bgp4PathAttrAggregatorAS + INTEGER, + bgp4PathAttrAggregatorAddr + IpAddress, + bgp4PathAttrCalcLocalPref + INTEGER, + bgp4PathAttrBest + INTEGER, + bgp4PathAttrUnknown + OCTET STRING + + } + + bgp4PathAttrPeer OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the peer where the path + information was learned." + ::= { bgp4PathAttrEntry 1 } + + bgp4PathAttrIpAddrPrefixLen OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Length in bits of the IP address prefix + in the Network Layer Reachability + Information field." + ::= { bgp4PathAttrEntry 2 } + + bgp4PathAttrIpAddrPrefix OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An IP address prefix in the Network Layer + Reachability Information field. This object + is an IP address containing the prefix with + length specified by + bgp4PathAttrIpAddrPrefixLen. + Any bits beyond the length specified by + bgp4PathAttrIpAddrPrefixLen are zeroed." + ::= { bgp4PathAttrEntry 3 } + + bgp4PathAttrOrigin OBJECT-TYPE + SYNTAX INTEGER { + igp(1),-- networks are interior + egp(2),-- networks learned + -- via EGP + incomplete(3) -- undetermined + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ultimate origin of the path + information." + ::= { bgp4PathAttrEntry 4 } + + bgp4PathAttrASPathSegment OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence of AS path segments. Each AS + path segment is represented by a triple + . + + The type is a 1-octet field which has two + possible values: + 1 AS_SET: unordered set of ASs a + route in the UPDATE + message has traversed + 2 AS_SEQUENCE: ordered set of ASs + a route in the UPDATE + message has traversed. + + The length is a 1-octet field containing the + number of ASs in the value field. + + The value field contains one or more AS + numbers, each AS is represented in the octet + string as a pair of octets according to the + following algorithm: + + first-byte-of-pair = ASNumber / 256; + second-byte-of-pair = ASNumber & 255;" + ::= { bgp4PathAttrEntry 5 } + + bgp4PathAttrNextHop OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The address of the border router that + should be used for the destination + network." + ::= { bgp4PathAttrEntry 6 } + + bgp4PathAttrMultiExitDisc OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This metric is used to discriminate + between multiple exit points to an + adjacent autonomous system. A value of -1 + indicates the absence of this attribute." + ::= { bgp4PathAttrEntry 7 } + + bgp4PathAttrLocalPref OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The originating BGP4 speaker's degree of + preference for an advertised route. A + value of -1 indicates the absence of this + attribute." + ::= { bgp4PathAttrEntry 8 } + + bgp4PathAttrAtomicAggregate OBJECT-TYPE + SYNTAX INTEGER { + lessSpecificRrouteNotSelected(1), + lessSpecificRouteSelected(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether or not the local system has + selected a less specific route without + selecting a more specific route." + ::= { bgp4PathAttrEntry 9 } + + bgp4PathAttrAggregatorAS OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The AS number of the last BGP4 speaker that + performed route aggregation. A value of + zero (0) indicates the absence of this + attribute." + ::= { bgp4PathAttrEntry 10 } + + bgp4PathAttrAggregatorAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the last BGP4 speaker + that performed route aggregation. A value + of 0.0.0.0 indicates the absence of this + attribute." + ::= { bgp4PathAttrEntry 11 } + + bgp4PathAttrCalcLocalPref OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The degree of preference calculated by the + receiving BGP4 speaker for an advertised + route. A value of -1 indicates the + absence of this attribute." + ::= { bgp4PathAttrEntry 12 } + + bgp4PathAttrBest OBJECT-TYPE + SYNTAX INTEGER { + false(1),-- not chosen as best route + true(2) -- chosen as best route + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of whether or not this route + was chosen as the best BGP4 route." + ::= { bgp4PathAttrEntry 13 } + + bgp4PathAttrUnknown OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "One or more path attributes not understood + by this BGP4 speaker. Size zero (0) + indicates the absence of such + attribute(s). Octets beyond the maximum + size, if any, are not recorded by this + object." + ::= { bgp4PathAttrEntry 14 } + + + -- Traps. + + bgpTraps OBJECT IDENTIFIER ::= { bgp 7 } + + bgpEstablished NOTIFICATION-TYPE + OBJECTS { bgpPeerLastError, + bgpPeerState } + STATUS current + DESCRIPTION + "The BGP Established event is generated when + the BGP FSM enters the ESTABLISHED state." + ::= { bgpTraps 1 } + + bgpBackwardTransition NOTIFICATION-TYPE + OBJECTS { bgpPeerLastError, + bgpPeerState } + STATUS current + DESCRIPTION + "The BGPBackwardTransition Event is generated + when the BGP FSM moves from a higher numbered + state to a lower numbered state." + ::= { bgpTraps 2 } + +END diff --git a/mibs/cumulus/CUMULUS-SNMP-MIB b/mibs/cumulus/CUMULUS-SNMP-MIB new file mode 100644 index 0000000000..06655ec093 --- /dev/null +++ b/mibs/cumulus/CUMULUS-SNMP-MIB @@ -0,0 +1,37 @@ +CUMULUS-SNMP-MIB DEFINITIONS ::= BEGIN + +-- +-- Top-level infrastructure of the Cumulus enterprise MIB tree +-- + +IMPORTS + OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, + Integer32, enterprises FROM SNMPv2-SMI + InterfaceIndex, ifIndex FROM IF-MIB + DateAndTime, DisplayString, + TEXTUAL-CONVENTION FROM SNMPv2-TC; + + +cumulusMib MODULE-IDENTITY + LAST-UPDATED "201207230000Z" + ORGANIZATION "www.cumulusnetworks.com" + CONTACT-INFO + "postal: Dinesh Dutt + 650 Castro Street, + suite 120-245 + Mountain View, CA 94041 + + email: ddutt@cumulusnetworks.com" + DESCRIPTION + "Top-level infrastructure of the Cumulus enterprise MIB tree" + REVISION "201207230000Z" + DESCRIPTION + "Second version with new Enterprise number and discard counters" + ::= { enterprises 40310 } + +-- +-- This is just the placeholder for the cumulusMib definition. +-- The actual objects are defined in separate, appropriately named files. +-- This way, we keep an overall MIB definition and add extensions as needed. +-- +END diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml index 0ef19b8d26..dd4d122858 100644 --- a/misc/db_schema.yaml +++ b/misc/db_schema.yaml @@ -214,6 +214,7 @@ bgpPeers: - { Field: bgpPeerLastErrorCode, Type: int, 'Null': true, Extra: '' } - { Field: bgpPeerLastErrorSubCode, Type: int, 'Null': true, Extra: '' } - { Field: bgpPeerLastErrorText, Type: varchar(254), 'Null': true, Extra: '' } + - { Field: bgpPeerIface, Type: 'int unsigned', 'Null': true, Extra: '' } - { Field: bgpLocalAddr, Type: text, 'Null': false, Extra: '' } - { Field: bgpPeerRemoteAddr, Type: text, 'Null': false, Extra: '' } - { Field: bgpPeerDescr, Type: varchar(255), 'Null': false, Extra: '', Default: '' } diff --git a/tests/data/aos7.json b/tests/data/aos7.json index 5ae4d66b2b..b84b5fd893 100644 --- a/tests/data/aos7.json +++ b/tests/data/aos7.json @@ -78359,7 +78359,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -78381,7 +78382,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -78403,7 +78405,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -78425,7 +78428,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -78549,7 +78553,8 @@ "bgpPeerInUpdateElapsedTime": 4020, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -78571,7 +78576,8 @@ "bgpPeerInUpdateElapsedTime": 5671281, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -78593,7 +78599,8 @@ "bgpPeerInUpdateElapsedTime": 6290, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -78615,7 +78622,8 @@ "bgpPeerInUpdateElapsedTime": 9518677, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -79064,4 +79072,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/arista_eos.json b/tests/data/arista_eos.json index 09c5553683..be02c218e6 100644 --- a/tests/data/arista_eos.json +++ b/tests/data/arista_eos.json @@ -5474,7 +5474,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -5496,7 +5497,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -5572,7 +5574,8 @@ "bgpPeerInUpdateElapsedTime": 4, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -5594,7 +5597,8 @@ "bgpPeerInUpdateElapsedTime": 17, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -9295,4 +9299,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/comware.json b/tests/data/comware.json index e25fd22cc9..ebf6d4c63e 100644 --- a/tests/data/comware.json +++ b/tests/data/comware.json @@ -22,7 +22,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -44,7 +45,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -70,7 +72,8 @@ "bgpPeerInUpdateElapsedTime": 259280, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -92,7 +95,8 @@ "bgpPeerInUpdateElapsedTime": 22497219, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -53725,4 +53729,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/cumulus_cumulus.json b/tests/data/cumulus_cumulus.json new file mode 100644 index 0000000000..f375667096 --- /dev/null +++ b/tests/data/cumulus_cumulus.json @@ -0,0 +1,3091 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.40310", + "sysDescr": "Cumulus-Linux 4.4.2 (Linux Kernel 4.19.206-1+cl4.4.2u1)", + "sysContact": "", + "version": "Cumulus-Linux 4.4.2 (Linux Kernel 4.19.206-1+cl4.4.2u1)", + "hardware": "Cumulus Networks VX Chassis", + "features": null, + "os": "cumulus", + "type": "network", + "serial": "0c:04:1f:86:00:00", + "icon": "cumulus.png", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "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, + "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": "Red Hat, Inc Device 0001", + "ifName": "eth0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp1", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp1", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp2", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp2", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp3", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp3", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp4", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp4", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp5", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp5", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp6", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp6", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp7", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "swp7", + "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", + "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": 69016, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 69016, + "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": 4538678, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4538678, + "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": "Red Hat, Inc Device 0001", + "ifName": "eth0", + "portName": null, + "ifIndex": 2, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "0c041f860000", + "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": 184544, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 187842, + "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": 33905945, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 18980374, + "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": "Red Hat, Inc Device 0001", + "ifName": "swp1", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "swp1", + "ifPhysAddress": "0c041f860001", + "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": 428817, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 425104, + "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": 46613202, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 96262192, + "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": "Red Hat, Inc Device 0001", + "ifName": "swp2", + "portName": null, + "ifIndex": 4, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "swp2", + "ifPhysAddress": "0c041f860002", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp3", + "portName": null, + "ifIndex": 5, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "swp3", + "ifPhysAddress": "0c041f860003", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp4", + "portName": null, + "ifIndex": 6, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "swp4", + "ifPhysAddress": "0c041f860004", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp5", + "portName": null, + "ifIndex": 7, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "swp5", + "ifPhysAddress": "0c041f860005", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp6", + "portName": null, + "ifIndex": 8, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "swp6", + "ifPhysAddress": "0c041f860006", + "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": "Red Hat, Inc Device 0001", + "ifName": "swp7", + "portName": null, + "ifIndex": 9, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "swp7", + "ifPhysAddress": "0c041f860007", + "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 + } + ] + } + }, + "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": 2, + "processor_descr": "QEMU Virtual version 2.5+", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "mempool_type": "hrstorage", + "mempool_class": "system", + "mempool_precision": 1024, + "mempool_descr": "Physical memory", + "mempool_perc": 34, + "mempool_perc_oid": null, + "mempool_used": 237584384, + "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.1", + "mempool_free": 464371712, + "mempool_free_oid": null, + "mempool_total": 701956096, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 99 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "mempool_type": "hrstorage", + "mempool_class": "virtual", + "mempool_precision": 1024, + "mempool_descr": "Virtual memory", + "mempool_perc": 67, + "mempool_perc_oid": null, + "mempool_used": 469106688, + "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.3", + "mempool_free": 232849408, + "mempool_free_oid": null, + "mempool_total": 701956096, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 95 + }, + { + "mempool_index": "6", + "entPhysicalIndex": null, + "mempool_type": "hrstorage", + "mempool_class": "buffers", + "mempool_precision": 1024, + "mempool_descr": "Memory buffers", + "mempool_perc": 8, + "mempool_perc_oid": null, + "mempool_used": 54841344, + "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.6", + "mempool_free": 647114752, + "mempool_free_oid": null, + "mempool_total": 701956096, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 0 + }, + { + "mempool_index": "7", + "entPhysicalIndex": null, + "mempool_type": "hrstorage", + "mempool_class": "cached", + "mempool_precision": 1024, + "mempool_descr": "Cached memory", + "mempool_perc": 25, + "mempool_perc_oid": null, + "mempool_used": 176680960, + "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.7", + "mempool_free": 525275136, + "mempool_free_oid": null, + "mempool_total": 701956096, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 0 + }, + { + "mempool_index": "8", + "entPhysicalIndex": null, + "mempool_type": "hrstorage", + "mempool_class": "shared", + "mempool_precision": 1024, + "mempool_descr": "Shared memory", + "mempool_perc": 2, + "mempool_perc_oid": null, + "mempool_used": 13598720, + "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.8", + "mempool_free": 688357376, + "mempool_free_oid": null, + "mempool_total": 701956096, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 0 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011001", + "sensor_index": "100011001", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011002", + "sensor_index": "100011002", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011003", + "sensor_index": "100011003", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011004", + "sensor_index": "100011004", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011004", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011005", + "sensor_index": "100011005", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011005", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011006", + "sensor_index": "100011006", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011006", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011007", + "sensor_index": "100011007", + "sensor_type": "entity-sensor", + "sensor_descr": "PSU1Fan1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011007", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100011008", + "sensor_index": "100011008", + "sensor_type": "entity-sensor", + "sensor_descr": "PSU2Fan1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100011008", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.1", + "sensor_index": "1", + "sensor_type": "lmsensors", + "sensor_descr": "fan1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.2", + "sensor_index": "2", + "sensor_type": "lmsensors", + "sensor_descr": "fan2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.3", + "sensor_index": "3", + "sensor_type": "lmsensors", + "sensor_descr": "fan3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.4", + "sensor_index": "4", + "sensor_type": "lmsensors", + "sensor_descr": "fan4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.5", + "sensor_index": "5", + "sensor_type": "lmsensors", + "sensor_descr": "fan5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.6", + "sensor_index": "6", + "sensor_type": "lmsensors", + "sensor_descr": "fan6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.7", + "sensor_index": "7", + "sensor_type": "lmsensors", + "sensor_descr": "fan7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.3.1.3.8", + "sensor_index": "8", + "sensor_type": "lmsensors", + "sensor_descr": "fan8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6000, + "sensor_limit": 10800, + "sensor_limit_warn": null, + "sensor_limit_low": 4800, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.110000001", + "sensor_index": "110000001", + "sensor_type": "entity-sensor", + "sensor_descr": "PSU1", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "110000001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.110000002", + "sensor_index": "110000002", + "sensor_type": "entity-sensor", + "sensor_descr": "PSU2", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "110000002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000001", + "sensor_index": "100000001", + "sensor_type": "entity-sensor", + "sensor_descr": "PSU1Temp1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000002", + "sensor_index": "100000002", + "sensor_type": "entity-sensor", + "sensor_descr": "PSU2Temp1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000003", + "sensor_index": "100000003", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000004", + "sensor_index": "100000004", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000004", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000005", + "sensor_index": "100000005", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000005", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000006", + "sensor_index": "100000006", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp4", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000006", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100000007", + "sensor_index": "100000007", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp5", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100000007", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.10", + "sensor_index": "10", + "sensor_type": "lmsensors", + "sensor_descr": "temp2", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.11", + "sensor_index": "11", + "sensor_type": "lmsensors", + "sensor_descr": "temp3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.12", + "sensor_index": "12", + "sensor_type": "lmsensors", + "sensor_descr": "temp4", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.13", + "sensor_index": "13", + "sensor_type": "lmsensors", + "sensor_descr": "temp5", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.14", + "sensor_index": "14", + "sensor_type": "lmsensors", + "sensor_descr": "temp6", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.15", + "sensor_index": "15", + "sensor_type": "lmsensors", + "sensor_descr": "temp7", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2021.13.16.2.1.3.9", + "sensor_index": "9", + "sensor_type": "lmsensors", + "sensor_descr": "temp1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ] + }, + "poller": "matches discovery" + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "35", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 70197248, + "storage_units": 4096, + "storage_used": 8003584, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "36", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 6007205888, + "storage_units": 4096, + "storage_used": 2496929792, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 350978048, + "storage_units": 4096, + "storage_used": 5308416, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "39", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/lock", + "storage_size": 5242880, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "40", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/sys/fs/cgroup", + "storage_size": 350978048, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "54", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp", + "storage_size": 350978048, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "35", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 70197248, + "storage_units": 4096, + "storage_used": 8003584, + "storage_free": 62193664, + "storage_perc": 11, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "36", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 6007205888, + "storage_units": 4096, + "storage_used": 2496929792, + "storage_free": 3510276096, + "storage_perc": 42, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 350978048, + "storage_units": 4096, + "storage_used": 5308416, + "storage_free": 345669632, + "storage_perc": 2, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "39", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/lock", + "storage_size": 5242880, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 5242880, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "40", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/sys/fs/cgroup", + "storage_size": 350978048, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 350978048, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "54", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp", + "storage_size": 350978048, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 350978048, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "192.168.0.1", + "bgpPeerRemoteAs": 65000, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65002, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "192.168.0.5", + "bgpPeerRemoteAs": 65005, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65002, + "vrfLocalAs": null + } + ] + }, + "poller": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "192.168.0.1", + "bgpPeerRemoteAs": 65000, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpPeerIface": 3, + "bgpLocalAddr": "fe80:0000:0000:0000:0e04:1fff:fe86:0001", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 6, + "bgpPeerOutUpdates": 6, + "bgpPeerInTotalMessages": 32629, + "bgpPeerOutTotalMessages": 32629, + "bgpPeerFsmEstablishedTime": 97875, + "bgpPeerInUpdateElapsedTime": 11473, + "context_name": "", + "bgpLocalAs": 65002, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "192.168.0.5", + "bgpPeerRemoteAs": 65005, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65002, + "vrfLocalAs": null + } + ] + } + } +} diff --git a/tests/data/dell-os10.json b/tests/data/dell-os10.json index 0f7f2a6bd3..d2b08dc7e8 100644 --- a/tests/data/dell-os10.json +++ b/tests/data/dell-os10.json @@ -8984,7 +8984,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 64514, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -9036,7 +9037,8 @@ "bgpPeerInUpdateElapsedTime": 27997600, "context_name": null, "bgpLocalAs": 64514, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -9067,4 +9069,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/dnos_bgp.json b/tests/data/dnos_bgp.json index eaa1dbacc3..b864f8ad96 100644 --- a/tests/data/dnos_bgp.json +++ b/tests/data/dnos_bgp.json @@ -38903,7 +38903,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -38925,7 +38926,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -38951,7 +38953,8 @@ "bgpPeerInUpdateElapsedTime": 13, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -38973,7 +38976,8 @@ "bgpPeerInUpdateElapsedTime": 12, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -40493,4 +40497,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/edgeos.json b/tests/data/edgeos.json index 3297ba6ee5..b5506aebf2 100644 --- a/tests/data/edgeos.json +++ b/tests/data/edgeos.json @@ -3819,7 +3819,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65200, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -3845,9 +3846,10 @@ "bgpPeerInUpdateElapsedTime": 164352, "context_name": "", "bgpLocalAs": 65200, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } } -} +} \ No newline at end of file diff --git a/tests/data/firebrick_6000.json b/tests/data/firebrick_6000.json index f6a03d2e67..7356b393f0 100644 --- a/tests/data/firebrick_6000.json +++ b/tests/data/firebrick_6000.json @@ -1830,7 +1830,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 20712, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "AS20712 Andrews & Arnold Ltd, GB", @@ -1852,7 +1853,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 20712, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "AS20712 Andrews & Arnold Ltd, GB", @@ -1874,7 +1876,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 20712, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -1900,7 +1903,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 20712, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "AS20712 Andrews & Arnold Ltd, GB", @@ -1922,7 +1926,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 20712, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "AS20712 Andrews & Arnold Ltd, GB", @@ -1944,7 +1949,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 20712, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -1971,4 +1977,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/fortigate_60f3g4g.json b/tests/data/fortigate_60f3g4g.json index dbd7c570d9..d25eea85e3 100644 --- a/tests/data/fortigate_60f3g4g.json +++ b/tests/data/fortigate_60f3g4g.json @@ -5059,6 +5059,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5081,6 +5082,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5103,6 +5105,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5129,6 +5132,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5151,6 +5155,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.1.22", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5173,6 +5178,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", diff --git a/tests/data/ios_3560g.json b/tests/data/ios_3560g.json index eeb4943fc2..b8a1618890 100644 --- a/tests/data/ios_3560g.json +++ b/tests/data/ios_3560g.json @@ -22,7 +22,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -44,7 +45,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -168,7 +170,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -190,7 +193,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -314,4 +318,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/iosxe.json b/tests/data/iosxe.json index d544fe6e7c..03a4021664 100644 --- a/tests/data/iosxe.json +++ b/tests/data/iosxe.json @@ -22,7 +22,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -44,7 +45,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -66,7 +68,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -88,7 +91,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -212,7 +216,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -234,7 +239,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -256,7 +262,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -278,7 +285,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -6980,4 +6988,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/iosxe_c9400.json b/tests/data/iosxe_c9400.json index 76a26335e8..0eaf5a08ec 100644 --- a/tests/data/iosxe_c9400.json +++ b/tests/data/iosxe_c9400.json @@ -32964,7 +32964,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -32986,7 +32987,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -33008,7 +33010,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -33030,7 +33033,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -33154,7 +33158,8 @@ "bgpPeerInUpdateElapsedTime": 8491, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -33176,7 +33181,8 @@ "bgpPeerInUpdateElapsedTime": 8491, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -33198,7 +33204,8 @@ "bgpPeerInUpdateElapsedTime": 8486, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -33220,7 +33227,8 @@ "bgpPeerInUpdateElapsedTime": 8486, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -34378,4 +34386,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/iosxr.json b/tests/data/iosxr.json index df2ca7a52d..8d1ebcf3f9 100644 --- a/tests/data/iosxr.json +++ b/tests/data/iosxr.json @@ -22,7 +22,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -44,7 +45,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -66,7 +68,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -88,7 +91,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -110,7 +114,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -132,7 +137,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -154,7 +160,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -176,7 +183,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -198,7 +206,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -220,7 +229,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -242,7 +252,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -264,7 +275,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -286,7 +298,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -308,7 +321,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -330,7 +344,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -352,7 +367,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -374,7 +390,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -396,7 +413,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -418,7 +436,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -440,7 +459,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -462,7 +482,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -484,7 +505,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -506,7 +528,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -528,7 +551,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -550,7 +574,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -572,7 +597,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -594,7 +620,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -616,7 +643,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -638,7 +666,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -660,7 +689,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -682,7 +712,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -704,7 +735,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -726,7 +758,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -748,7 +781,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -1520,7 +1554,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": 6, "bgpPeerLastErrorSubCode": 2, - "bgpPeerLastErrorText": "administrative shutdown" + "bgpPeerLastErrorText": "administrative shutdown", + "bgpPeerIface": null }, { "astext": "", @@ -1542,7 +1577,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1564,7 +1600,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1586,7 +1623,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1608,7 +1646,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1630,7 +1669,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1652,7 +1692,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1674,7 +1715,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1696,7 +1738,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1718,7 +1761,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1740,7 +1784,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1762,7 +1807,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1784,7 +1830,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1806,7 +1853,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1828,7 +1876,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1850,7 +1899,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1872,7 +1922,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1894,7 +1945,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1916,7 +1968,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1938,7 +1991,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1960,7 +2014,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -1982,7 +2037,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2004,7 +2060,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2026,7 +2083,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2048,7 +2106,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2070,7 +2129,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2092,7 +2152,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2114,7 +2175,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2136,7 +2198,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2158,7 +2221,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2180,7 +2244,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2202,7 +2267,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2224,7 +2290,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -2246,7 +2313,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -28650,4 +28718,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/iosxr_asr9001.json b/tests/data/iosxr_asr9001.json index fd12d64f34..89f2c0c967 100644 --- a/tests/data/iosxr_asr9001.json +++ b/tests/data/iosxr_asr9001.json @@ -15063,8 +15063,8 @@ "sensor_current": 0.0005847, "sensor_limit": 0.0012594, "sensor_limit_warn": 0.0009994, - "sensor_limit_low": 1.58e-5, - "sensor_limit_low_warn": 2.51e-5, + "sensor_limit_low": 1.58e-05, + "sensor_limit_low_warn": 2.51e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "21", @@ -15111,8 +15111,8 @@ "sensor_current": 0.0003058, "sensor_limit": 0.0012589, "sensor_limit_warn": 0.0005012, - "sensor_limit_low": 5.0e-6, - "sensor_limit_low_warn": 1.26e-5, + "sensor_limit_low": 5e-06, + "sensor_limit_low_warn": 1.26e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "23", @@ -15159,8 +15159,8 @@ "sensor_current": 0.0011274, "sensor_limit": 0.001, "sensor_limit_warn": 0.0007943, - "sensor_limit_low": 1.99e-5, - "sensor_limit_low_warn": 2.51e-5, + "sensor_limit_low": 1.99e-05, + "sensor_limit_low_warn": 2.51e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "44", @@ -15231,7 +15231,7 @@ "sensor_current": 0.0007594, "sensor_limit": 0.0025118, "sensor_limit_warn": 0.0019952, - "sensor_limit_low": 7.94e-5, + "sensor_limit_low": 7.94e-05, "sensor_limit_low_warn": 0.0001, "sensor_alert": 1, "sensor_custom": "No", @@ -15255,8 +15255,8 @@ "sensor_current": 0.0002751, "sensor_limit": 0.001, "sensor_limit_warn": 0.0007943, - "sensor_limit_low": 2.0e-5, - "sensor_limit_low_warn": 2.51e-5, + "sensor_limit_low": 2e-05, + "sensor_limit_low_warn": 2.51e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "42", @@ -15279,7 +15279,7 @@ "sensor_current": 0.0006148, "sensor_limit": 0.0025119, "sensor_limit_warn": 0.0019953, - "sensor_limit_low": 7.94e-5, + "sensor_limit_low": 7.94e-05, "sensor_limit_low_warn": 0.0001, "sensor_alert": 1, "sensor_custom": "No", @@ -15303,7 +15303,7 @@ "sensor_current": 0.0003555, "sensor_limit": 0.0012589, "sensor_limit_warn": 0.0007943, - "sensor_limit_low": 4.47e-5, + "sensor_limit_low": 4.47e-05, "sensor_limit_low_warn": 0.0001122, "sensor_alert": 1, "sensor_custom": "No", @@ -19193,8 +19193,8 @@ "sensor_current": 0.0005847, "sensor_limit": 0.0012594, "sensor_limit_warn": 0.0009994, - "sensor_limit_low": 1.58e-5, - "sensor_limit_low_warn": 2.51e-5, + "sensor_limit_low": 1.58e-05, + "sensor_limit_low_warn": 2.51e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "21", @@ -19241,8 +19241,8 @@ "sensor_current": 0.0003058, "sensor_limit": 0.0012589, "sensor_limit_warn": 0.0005012, - "sensor_limit_low": 5.0e-6, - "sensor_limit_low_warn": 1.26e-5, + "sensor_limit_low": 5e-06, + "sensor_limit_low_warn": 1.26e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "23", @@ -19289,8 +19289,8 @@ "sensor_current": 0.0011274, "sensor_limit": 0.001, "sensor_limit_warn": 0.0007943, - "sensor_limit_low": 1.99e-5, - "sensor_limit_low_warn": 2.51e-5, + "sensor_limit_low": 1.99e-05, + "sensor_limit_low_warn": 2.51e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "44", @@ -19361,7 +19361,7 @@ "sensor_current": 0.0007594, "sensor_limit": 0.0025118, "sensor_limit_warn": 0.0019952, - "sensor_limit_low": 7.94e-5, + "sensor_limit_low": 7.94e-05, "sensor_limit_low_warn": 0.0001, "sensor_alert": 1, "sensor_custom": "No", @@ -19385,8 +19385,8 @@ "sensor_current": 0.0002751, "sensor_limit": 0.001, "sensor_limit_warn": 0.0007943, - "sensor_limit_low": 2.0e-5, - "sensor_limit_low_warn": 2.51e-5, + "sensor_limit_low": 2e-05, + "sensor_limit_low_warn": 2.51e-05, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "42", @@ -19409,7 +19409,7 @@ "sensor_current": 0.0006148, "sensor_limit": 0.0025119, "sensor_limit_warn": 0.0019953, - "sensor_limit_low": 7.94e-5, + "sensor_limit_low": 7.94e-05, "sensor_limit_low_warn": 0.0001, "sensor_alert": 1, "sensor_custom": "No", @@ -19433,7 +19433,7 @@ "sensor_current": 0.0003555, "sensor_limit": 0.0012589, "sensor_limit_warn": 0.0007943, - "sensor_limit_low": 4.47e-5, + "sensor_limit_low": 4.47e-05, "sensor_limit_low_warn": 0.0001122, "sensor_alert": 1, "sensor_custom": "No", @@ -22563,7 +22563,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -22585,7 +22586,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -22709,7 +22711,8 @@ "bgpPeerInUpdateElapsedTime": 1028831, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -22731,7 +22734,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -22834,4 +22838,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/iosxr_asr9901.json b/tests/data/iosxr_asr9901.json index 3a97f94b4a..0f72a9f83c 100644 --- a/tests/data/iosxr_asr9901.json +++ b/tests/data/iosxr_asr9901.json @@ -11316,7 +11316,7 @@ "sensor_current": 0.0003321, "sensor_limit": 0.0012589, "sensor_limit_warn": 0, - "sensor_limit_low": 4.47e-5, + "sensor_limit_low": 4.47e-05, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -11340,7 +11340,7 @@ "sensor_current": 0.0004632, "sensor_limit": 0.0012589, "sensor_limit_warn": 0, - "sensor_limit_low": 5.0e-6, + "sensor_limit_low": 5e-06, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -11436,7 +11436,7 @@ "sensor_current": 0.0006148, "sensor_limit": 0.0025098, "sensor_limit_warn": 0, - "sensor_limit_low": 1.0e-5, + "sensor_limit_low": 1e-05, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -11484,7 +11484,7 @@ "sensor_current": 0.000819, "sensor_limit": 0.0012589, "sensor_limit_warn": 0, - "sensor_limit_low": 2.0e-5, + "sensor_limit_low": 2e-05, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -16406,7 +16406,7 @@ "sensor_current": 0.0003321, "sensor_limit": 0.0012589, "sensor_limit_warn": 0, - "sensor_limit_low": 4.47e-5, + "sensor_limit_low": 4.47e-05, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -16430,7 +16430,7 @@ "sensor_current": 0.0004632, "sensor_limit": 0.0012589, "sensor_limit_warn": 0, - "sensor_limit_low": 5.0e-6, + "sensor_limit_low": 5e-06, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -16526,7 +16526,7 @@ "sensor_current": 0.0006148, "sensor_limit": 0.0025098, "sensor_limit_warn": 0, - "sensor_limit_low": 1.0e-5, + "sensor_limit_low": 1e-05, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -16574,7 +16574,7 @@ "sensor_current": 0.000819, "sensor_limit": 0.0012589, "sensor_limit_warn": 0, - "sensor_limit_low": 2.0e-5, + "sensor_limit_low": 2e-05, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -20808,7 +20808,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -20830,7 +20831,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -20954,7 +20956,8 @@ "bgpPeerInUpdateElapsedTime": 1028915, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -20976,7 +20979,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -21206,4 +21210,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/ironware.json b/tests/data/ironware.json index 4fe7d7dc2c..4610b3f9b0 100644 --- a/tests/data/ironware.json +++ b/tests/data/ironware.json @@ -24269,7 +24269,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24291,7 +24292,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24313,7 +24315,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24335,7 +24338,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24357,7 +24361,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -24383,7 +24388,8 @@ "bgpPeerInUpdateElapsedTime": 836, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24405,7 +24411,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24427,7 +24434,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24449,7 +24457,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -24471,7 +24480,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -24768,4 +24778,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/junos_ex.json b/tests/data/junos_ex.json index f0ae0b4b01..e046249d34 100644 --- a/tests/data/junos_ex.json +++ b/tests/data/junos_ex.json @@ -43,7 +43,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -65,7 +66,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -87,7 +89,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -113,7 +116,8 @@ "bgpPeerInUpdateElapsedTime": 21748, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -135,7 +139,8 @@ "bgpPeerInUpdateElapsedTime": 785386, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -157,7 +162,8 @@ "bgpPeerInUpdateElapsedTime": 774040, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -671,4 +677,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/junos_mx.json b/tests/data/junos_mx.json index 261ce97f39..6cc33213ea 100644 --- a/tests/data/junos_mx.json +++ b/tests/data/junos_mx.json @@ -22,7 +22,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -44,7 +45,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -66,7 +68,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -310,7 +313,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -332,7 +336,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null }, { "astext": "", @@ -354,7 +359,8 @@ "vrfLocalAs": null, "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "bgpPeerLastErrorText": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -598,4 +604,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/junos_mx5t_isis.json b/tests/data/junos_mx5t_isis.json index c8f094c015..b10a3a8d77 100644 --- a/tests/data/junos_mx5t_isis.json +++ b/tests/data/junos_mx5t_isis.json @@ -12953,7 +12953,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65534, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -12979,7 +12980,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65534, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -13030,4 +13032,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/junos_rpm.json b/tests/data/junos_rpm.json index bc6761983e..0d4c9dda3c 100644 --- a/tests/data/junos_rpm.json +++ b/tests/data/junos_rpm.json @@ -13284,7 +13284,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -13306,7 +13307,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -13328,7 +13330,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -13350,7 +13353,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -13474,7 +13478,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -13496,7 +13501,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -13518,7 +13524,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -13540,7 +13547,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -13752,4 +13760,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/junos_vmx.json b/tests/data/junos_vmx.json index d3c89d0d52..1ed070cd94 100644 --- a/tests/data/junos_vmx.json +++ b/tests/data/junos_vmx.json @@ -13324,7 +13324,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PROTON, CH", @@ -13346,7 +13347,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -13422,7 +13424,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PROTON, CH", @@ -13444,7 +13447,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -13568,4 +13572,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/pfsense_frr-bgp.json b/tests/data/pfsense_frr-bgp.json index c23365f4e1..a392aa6474 100644 --- a/tests/data/pfsense_frr-bgp.json +++ b/tests/data/pfsense_frr-bgp.json @@ -43,7 +43,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -65,7 +66,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -91,7 +93,8 @@ "bgpPeerInUpdateElapsedTime": 96950, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -113,9 +116,10 @@ "bgpPeerInUpdateElapsedTime": 97191, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } } -} +} \ No newline at end of file diff --git a/tests/data/slxos_slx9150.json b/tests/data/slxos_slx9150.json index 94c5491778..d0306a9400 100644 --- a/tests/data/slxos_slx9150.json +++ b/tests/data/slxos_slx9150.json @@ -24971,7 +24971,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 23456, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -24997,7 +24998,8 @@ "bgpPeerInUpdateElapsedTime": 27108508, "context_name": "", "bgpLocalAs": 23456, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -27163,4 +27165,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/timos_7705.json b/tests/data/timos_7705.json index 058e08b4a5..390cb5dc68 100644 --- a/tests/data/timos_7705.json +++ b/tests/data/timos_7705.json @@ -7424,7 +7424,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000 + "vrfLocalAs": 65000, + "bgpPeerIface": null }, { "astext": "", @@ -7446,7 +7447,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000 + "vrfLocalAs": 65000, + "bgpPeerIface": null } ] }, @@ -7472,7 +7474,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000 + "vrfLocalAs": 65000, + "bgpPeerIface": null }, { "astext": "", @@ -7494,7 +7497,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000 + "vrfLocalAs": 65000, + "bgpPeerIface": null } ] } @@ -8374,4 +8378,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/vrp_5720-vrf.json b/tests/data/vrp_5720-vrf.json index 9686e7bd89..c57ea42768 100644 --- a/tests/data/vrp_5720-vrf.json +++ b/tests/data/vrp_5720-vrf.json @@ -35626,7 +35626,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -35648,7 +35649,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -35674,7 +35676,8 @@ "bgpPeerInUpdateElapsedTime": 185502, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -35696,7 +35699,8 @@ "bgpPeerInUpdateElapsedTime": 185502, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -38039,4 +38043,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/vrp_5720.json b/tests/data/vrp_5720.json index a60e466650..d764bafe21 100644 --- a/tests/data/vrp_5720.json +++ b/tests/data/vrp_5720.json @@ -14526,7 +14526,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -14548,7 +14549,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] }, @@ -14574,7 +14576,8 @@ "bgpPeerInUpdateElapsedTime": 281173, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "", @@ -14596,7 +14599,8 @@ "bgpPeerInUpdateElapsedTime": 281206, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ] } @@ -17276,4 +17280,4 @@ }, "poller": "matches discovery" } -} +} \ No newline at end of file diff --git a/tests/data/vrp_ce12804-withvrf.json b/tests/data/vrp_ce12804-withvrf.json index 11099eea9b..9f474c82c8 100644 --- a/tests/data/vrp_ce12804-withvrf.json +++ b/tests/data/vrp_ce12804-withvrf.json @@ -24413,7 +24413,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 1, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -24465,7 +24466,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 1, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -24510,4 +24512,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/data/vrp_ne8000.json b/tests/data/vrp_ne8000.json index a3702bb826..2f79aee776 100644 --- a/tests/data/vrp_ne8000.json +++ b/tests/data/vrp_ne8000.json @@ -43,7 +43,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "SDC-AS, US", @@ -65,7 +66,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "SDC-AS, US", @@ -87,7 +89,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "SDC-AS, US", @@ -109,7 +112,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "REDES DEL OESTE S.A, AR", @@ -131,7 +135,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "YOUTUBE, US", @@ -153,7 +158,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "NETFLIX-ASN, US", @@ -175,7 +181,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "NETFLIX-ASN, US", @@ -197,7 +204,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "FACEBOOK-OFFNET, US", @@ -219,7 +227,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -241,7 +250,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -263,7 +273,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -285,7 +296,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -307,7 +319,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -329,7 +342,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PowerHost Telecom SPA, CL", @@ -351,7 +365,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PIT CHILE SP, CL", @@ -373,7 +388,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PIT CHILE SP, CL", @@ -395,7 +411,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "LVLT-3549, US", @@ -417,7 +434,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -439,7 +457,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -461,7 +480,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -483,7 +503,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -505,7 +526,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -527,7 +549,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -1107,7 +1130,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "SDC-AS, US", @@ -1129,7 +1153,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "SDC-AS, US", @@ -1151,7 +1176,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "SDC-AS, US", @@ -1173,7 +1199,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "REDES DEL OESTE S.A, AR", @@ -1195,7 +1222,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "YOUTUBE, US", @@ -1217,7 +1245,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "NETFLIX-ASN, US", @@ -1239,7 +1268,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "NETFLIX-ASN, US", @@ -1261,7 +1291,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "FACEBOOK-OFFNET, US", @@ -1283,7 +1314,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1305,7 +1337,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1327,7 +1360,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1349,7 +1383,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1371,7 +1406,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1393,7 +1429,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PowerHost Telecom SPA, CL", @@ -1415,7 +1452,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PIT CHILE SP, CL", @@ -1437,7 +1475,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "PIT CHILE SP, CL", @@ -1459,7 +1498,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "LVLT-3549, US", @@ -1481,7 +1521,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1503,7 +1544,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1525,7 +1567,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1547,7 +1590,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1569,7 +1613,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1591,7 +1636,8 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null + "vrfLocalAs": null, + "bgpPeerIface": null } ], "bgpPeers_cbgp": [ @@ -2150,4 +2196,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tests/snmpsim/cumulus_cumulus.snmprec b/tests/snmpsim/cumulus_cumulus.snmprec new file mode 100644 index 0000000000..02a7eac2a6 --- /dev/null +++ b/tests/snmpsim/cumulus_cumulus.snmprec @@ -0,0 +1,1448 @@ +1.3.6.1.2.1.1.1.0|4|Cumulus-Linux 4.4.2 (Linux Kernel 4.19.206-1+cl4.4.2u1) +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.40310 +1.3.6.1.2.1.1.3.0|67|9798556 +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|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.3|4|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.4|4|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.5|4|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.6|4|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.7|4|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.8|4|Red Hat, Inc Device 0001 +1.3.6.1.2.1.2.2.1.2.9|4|Red Hat, Inc Device 0001 +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.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|6 +1.3.6.1.2.1.2.2.1.3.9|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|9216 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|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|0C041F860000 +1.3.6.1.2.1.2.2.1.6.3|4x|0C041F860001 +1.3.6.1.2.1.2.2.1.6.4|4x|0C041F860002 +1.3.6.1.2.1.2.2.1.6.5|4x|0C041F860003 +1.3.6.1.2.1.2.2.1.6.6|4x|0C041F860004 +1.3.6.1.2.1.2.2.1.6.7|4x|0C041F860005 +1.3.6.1.2.1.2.2.1.6.8|4x|0C041F860006 +1.3.6.1.2.1.2.2.1.6.9|4x|0C041F860007 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|2 +1.3.6.1.2.1.2.2.1.7.5|2|2 +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.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +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.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|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +1.3.6.1.2.1.2.2.1.9.8|67|0 +1.3.6.1.2.1.2.2.1.9.9|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.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.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.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.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|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.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|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.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.4.3.0|65|606376 +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|238346 +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|368028 +1.3.6.1.2.1.4.10.0|65|606370 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|11 +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.192.168.0.3|2|1 +1.3.6.1.2.1.4.20.1.2.192.168.125.2|2|2 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.20.1.3.192.168.0.3|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.192.168.125.2|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.2.192.168.125.254|4x|0C757C7D0000 +1.3.6.1.2.1.4.22.1.2.3.169.254.0.1|4x|0C4FF7D80002 +1.3.6.1.2.1.4.24.3.0|66|9 +1.3.6.1.2.1.4.31.1.1.3.1|65|606204 +1.3.6.1.2.1.4.31.1.1.3.2|65|72193 +1.3.6.1.2.1.4.31.1.1.4.1|70|606204 +1.3.6.1.2.1.4.31.1.1.4.2|70|72193 +1.3.6.1.2.1.4.31.1.1.5.1|65|69750448 +1.3.6.1.2.1.4.31.1.1.5.2|65|5740663 +1.3.6.1.2.1.4.31.1.1.6.1|70|69750448 +1.3.6.1.2.1.4.31.1.1.6.2|70|5740663 +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|2 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +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|238348 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|238348 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.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|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|367856 +1.3.6.1.2.1.4.31.1.1.18.2|65|72193 +1.3.6.1.2.1.4.31.1.1.19.1|70|367856 +1.3.6.1.2.1.4.31.1.1.19.2|70|72193 +1.3.6.1.2.1.4.31.1.1.20.1|65|606199 +1.3.6.1.2.1.4.31.1.1.20.2|65|67433 +1.3.6.1.2.1.4.31.1.1.21.1|70|606199 +1.3.6.1.2.1.4.31.1.1.21.2|70|67433 +1.3.6.1.2.1.4.31.1.1.22.1|65|11 +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|238346 +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|238346 +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|2 +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|844534 +1.3.6.1.2.1.4.31.1.1.30.2|65|67431 +1.3.6.1.2.1.4.31.1.1.31.1|70|844534 +1.3.6.1.2.1.4.31.1.1.31.2|70|67431 +1.3.6.1.2.1.4.31.1.1.32.1|65|142458631 +1.3.6.1.2.1.4.31.1.1.32.2|65|5397559 +1.3.6.1.2.1.4.31.1.1.33.1|70|142458631 +1.3.6.1.2.1.4.31.1.1.33.2|70|5397559 +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|10164 +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|10164 +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|653416 +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|653416 +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|9851 +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|9851 +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|630608 +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|630608 +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.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.14.4.31.255.254.134.0.0|2|2 +1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.14.4.31.255.254.134.0.1|2|3 +1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.14.4.31.255.254.134.0.0|6|1.3.6.1.2.1.4.32.1.5.2.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.5.2.16.254.128.0.0.0.0.0.0.14.4.31.255.254.134.0.1|6|1.3.6.1.2.1.4.32.1.5.3.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.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.14.4.31.255.254.134.0.0|2|5 +1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.14.4.31.255.254.134.0.1|2|5 +1.3.6.1.2.1.4.35.1.4.2.1.4.192.168.125.254|4x|0C757C7D0000 +1.3.6.1.2.1.4.35.1.4.3.1.4.169.254.0.1|4x|0C4FF7D80002 +1.3.6.1.2.1.4.35.1.4.3.2.16.254.128.0.0.0.0.0.0.14.79.247.255.254.216.0.2|4x|0C4FF7D80002 +1.3.6.1.2.1.5.1.0|65|6407 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|6407 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|6407 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|6407 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|3274 +1.3.6.1.2.1.6.6.0|65|3274 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|0 +1.3.6.1.2.1.6.9.0|66|10 +1.3.6.1.2.1.6.10.0|65|195670 +1.3.6.1.2.1.6.11.0|65|191220 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|3 +1.3.6.1.2.1.7.1.0|65|227463 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|227462 +1.3.6.1.2.1.10.7.2.1.19.2|2|3 +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.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.5|2|1 +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.11.1.0|65|451526 +1.3.6.1.2.1.11.2.0|65|451526 +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|2352369 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|71250 +1.3.6.1.2.1.11.16.0|65|202704 +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|451550 +1.3.6.1.2.1.11.29.0|65|0 +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.15.2.0|2|65002 +1.3.6.1.2.1.25.1.1.0|67|9799502 +1.3.6.1.2.1.25.1.5.0|66|1 +1.3.6.1.2.1.25.1.6.0|66|99 +1.3.6.1.2.1.25.1.7.0|2|0 +1.3.6.1.2.1.25.2.2.0|2|685504 +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.35|2|35 +1.3.6.1.2.1.25.2.3.1.1.36|2|36 +1.3.6.1.2.1.25.2.3.1.1.38|2|38 +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.54|2|54 +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.35|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.38|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.54|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.35|4|/run +1.3.6.1.2.1.25.2.3.1.3.36|4|/ +1.3.6.1.2.1.25.2.3.1.3.38|4|/dev/shm +1.3.6.1.2.1.25.2.3.1.3.39|4|/run/lock +1.3.6.1.2.1.25.2.3.1.3.40|4|/sys/fs/cgroup +1.3.6.1.2.1.25.2.3.1.3.54|4|/tmp +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.35|2|4096 +1.3.6.1.2.1.25.2.3.1.4.36|2|4096 +1.3.6.1.2.1.25.2.3.1.4.38|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.54|2|4096 +1.3.6.1.2.1.25.2.3.1.5.1|2|685504 +1.3.6.1.2.1.25.2.3.1.5.3|2|685504 +1.3.6.1.2.1.25.2.3.1.5.6|2|685504 +1.3.6.1.2.1.25.2.3.1.5.7|2|172540 +1.3.6.1.2.1.25.2.3.1.5.8|2|13280 +1.3.6.1.2.1.25.2.3.1.5.10|2|0 +1.3.6.1.2.1.25.2.3.1.5.35|2|17138 +1.3.6.1.2.1.25.2.3.1.5.36|2|1466603 +1.3.6.1.2.1.25.2.3.1.5.38|2|85688 +1.3.6.1.2.1.25.2.3.1.5.39|2|1280 +1.3.6.1.2.1.25.2.3.1.5.40|2|85688 +1.3.6.1.2.1.25.2.3.1.5.54|2|85688 +1.3.6.1.2.1.25.2.3.1.6.1|2|458112 +1.3.6.1.2.1.25.2.3.1.6.3|2|458112 +1.3.6.1.2.1.25.2.3.1.6.6|2|53556 +1.3.6.1.2.1.25.2.3.1.6.7|2|172540 +1.3.6.1.2.1.25.2.3.1.6.8|2|13280 +1.3.6.1.2.1.25.2.3.1.6.10|2|0 +1.3.6.1.2.1.25.2.3.1.6.35|2|1954 +1.3.6.1.2.1.25.2.3.1.6.36|2|609602 +1.3.6.1.2.1.25.2.3.1.6.38|2|1296 +1.3.6.1.2.1.25.2.3.1.6.39|2|0 +1.3.6.1.2.1.25.2.3.1.6.40|2|0 +1.3.6.1.2.1.25.2.3.1.6.54|2|0 +1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 +1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 +1.3.6.1.2.1.25.3.2.1.1.262146|2|262146 +1.3.6.1.2.1.25.3.2.1.1.262147|2|262147 +1.3.6.1.2.1.25.3.2.1.1.262148|2|262148 +1.3.6.1.2.1.25.3.2.1.1.262149|2|262149 +1.3.6.1.2.1.25.3.2.1.1.262150|2|262150 +1.3.6.1.2.1.25.3.2.1.1.262151|2|262151 +1.3.6.1.2.1.25.3.2.1.1.262152|2|262152 +1.3.6.1.2.1.25.3.2.1.1.262153|2|262153 +1.3.6.1.2.1.25.3.2.1.1.786432|2|786432 +1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262149|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262150|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262151|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262152|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262153|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.196608|4|GenuineIntel: QEMU Virtual CPU version 2.5+ +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 eth0 +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface swp1 +1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface swp2 +1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface swp3 +1.3.6.1.2.1.25.3.2.1.3.262150|4|network interface swp4 +1.3.6.1.2.1.25.3.2.1.3.262151|4|network interface swp5 +1.3.6.1.2.1.25.3.2.1.3.262152|4|network interface swp6 +1.3.6.1.2.1.25.3.2.1.3.262153|4|network interface swp7 +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.2.1.4.196608|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262149|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262150|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262151|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262152|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262153|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.196608|2|2 +1.3.6.1.2.1.25.3.2.1.5.262145|2|2 +1.3.6.1.2.1.25.3.2.1.5.262146|2|2 +1.3.6.1.2.1.25.3.2.1.5.262147|2|2 +1.3.6.1.2.1.25.3.2.1.5.262148|2|5 +1.3.6.1.2.1.25.3.2.1.5.262149|2|5 +1.3.6.1.2.1.25.3.2.1.5.262150|2|5 +1.3.6.1.2.1.25.3.2.1.5.262151|2|5 +1.3.6.1.2.1.25.3.2.1.5.262152|2|5 +1.3.6.1.2.1.25.3.2.1.5.262153|2|5 +1.3.6.1.2.1.25.3.2.1.6.262145|65|0 +1.3.6.1.2.1.25.3.2.1.6.262146|65|0 +1.3.6.1.2.1.25.3.2.1.6.262147|65|0 +1.3.6.1.2.1.25.3.2.1.6.262148|65|0 +1.3.6.1.2.1.25.3.2.1.6.262149|65|0 +1.3.6.1.2.1.25.3.2.1.6.262150|65|0 +1.3.6.1.2.1.25.3.2.1.6.262151|65|0 +1.3.6.1.2.1.25.3.2.1.6.262152|65|0 +1.3.6.1.2.1.25.3.2.1.6.262153|65|0 +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|2 +1.3.6.1.2.1.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.2|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.3|4|swp1 +1.3.6.1.2.1.31.1.1.1.1.4|4|swp2 +1.3.6.1.2.1.31.1.1.1.1.5|4|swp3 +1.3.6.1.2.1.31.1.1.1.1.6|4|swp4 +1.3.6.1.2.1.31.1.1.1.1.7|4|swp5 +1.3.6.1.2.1.31.1.1.1.1.8|4|swp6 +1.3.6.1.2.1.31.1.1.1.1.9|4|swp7 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|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.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|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.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|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.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|4538678 +1.3.6.1.2.1.31.1.1.1.6.2|70|33905945 +1.3.6.1.2.1.31.1.1.1.6.3|70|46613202 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|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.7.1|70|69016 +1.3.6.1.2.1.31.1.1.1.7.2|70|184544 +1.3.6.1.2.1.31.1.1.1.7.3|70|428817 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|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.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|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.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|4538678 +1.3.6.1.2.1.31.1.1.1.10.2|70|18980374 +1.3.6.1.2.1.31.1.1.1.10.3|70|96262192 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|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.11.1|70|69016 +1.3.6.1.2.1.31.1.1.1.11.2|70|187842 +1.3.6.1.2.1.31.1.1.1.11.3|70|425104 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|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.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.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|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.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|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|1000 +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.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.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.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.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|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.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.17.6|2|1 +1.3.6.1.2.1.31.1.1.1.17.7|2|1 +1.3.6.1.2.1.31.1.1.1.17.8|2|1 +1.3.6.1.2.1.31.1.1.1.17.9|2|1 +1.3.6.1.2.1.31.1.1.1.18.1|4|lo +1.3.6.1.2.1.31.1.1.1.18.2|4|eth0 +1.3.6.1.2.1.31.1.1.1.18.3|4|swp1 +1.3.6.1.2.1.31.1.1.1.18.4|4|swp2 +1.3.6.1.2.1.31.1.1.1.18.5|4|swp3 +1.3.6.1.2.1.31.1.1.1.18.6|4|swp4 +1.3.6.1.2.1.31.1.1.1.18.7|4|swp5 +1.3.6.1.2.1.31.1.1.1.18.8|4|swp6 +1.3.6.1.2.1.31.1.1.1.18.9|4|swp7 +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.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.47.1.1.1.1.2.1|4|Cumulus Networks VX Chassis +1.3.6.1.2.1.47.1.1.1.1.2.100000001|4|PSU1 Temp Sensor +1.3.6.1.2.1.47.1.1.1.1.2.100000002|4|PSU2 Temp Sensor +1.3.6.1.2.1.47.1.1.1.1.2.100000003|4|Board Sensor near CPU +1.3.6.1.2.1.47.1.1.1.1.2.100000004|4|Board Sensor Near Virtual Switch +1.3.6.1.2.1.47.1.1.1.1.2.100000005|4|Board Sensor at Front Left Corner +1.3.6.1.2.1.47.1.1.1.1.2.100000006|4|Board Sensor at Front Right Corner +1.3.6.1.2.1.47.1.1.1.1.2.100000007|4|Board Sensor near Fan +1.3.6.1.2.1.47.1.1.1.1.2.100011001|4|Fan Tray 1, Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100011002|4|Fan Tray 1, Fan 2 +1.3.6.1.2.1.47.1.1.1.1.2.100011003|4|Fan Tray 2, Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100011004|4|Fan Tray 2, Fan 2 +1.3.6.1.2.1.47.1.1.1.1.2.100011005|4|Fan Tray 3, Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100011006|4|Fan Tray 3, Fan 2 +1.3.6.1.2.1.47.1.1.1.1.2.100011007|4|PSU1 Fan +1.3.6.1.2.1.47.1.1.1.1.2.100011008|4|PSU2 Fan +1.3.6.1.2.1.47.1.1.1.1.2.110000001|4|PSU1 +1.3.6.1.2.1.47.1.1.1.1.2.110000002|4|PSU2 +1.3.6.1.2.1.47.1.1.1.1.3.1|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000006|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100000007|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011006|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011007|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100011008|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.110000001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.110000002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.4.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.100000001|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100000002|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100000003|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100000004|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100000005|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100000006|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100000007|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011001|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011002|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011003|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011004|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011005|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011006|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011007|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.100011008|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.110000001|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.110000002|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.1|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.100000001|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100000002|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100000003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100000004|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100000005|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100000006|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100000007|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100011001|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011002|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011003|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011004|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011005|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011006|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011007|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100011008|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.110000001|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.110000002|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000002|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000003|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000004|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000005|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000006|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100000007|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011002|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011003|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011004|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011005|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011006|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011007|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100011008|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.110000001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.110000002|2|1 +1.3.6.1.2.1.47.1.1.1.1.7.1|4|cumulus +1.3.6.1.2.1.47.1.1.1.1.7.100000001|4|PSU1Temp1 +1.3.6.1.2.1.47.1.1.1.1.7.100000002|4|PSU2Temp1 +1.3.6.1.2.1.47.1.1.1.1.7.100000003|4|Temp1 +1.3.6.1.2.1.47.1.1.1.1.7.100000004|4|Temp2 +1.3.6.1.2.1.47.1.1.1.1.7.100000005|4|Temp3 +1.3.6.1.2.1.47.1.1.1.1.7.100000006|4|Temp4 +1.3.6.1.2.1.47.1.1.1.1.7.100000007|4|Temp5 +1.3.6.1.2.1.47.1.1.1.1.7.100011001|4|Fan1 +1.3.6.1.2.1.47.1.1.1.1.7.100011002|4|Fan2 +1.3.6.1.2.1.47.1.1.1.1.7.100011003|4|Fan3 +1.3.6.1.2.1.47.1.1.1.1.7.100011004|4|Fan4 +1.3.6.1.2.1.47.1.1.1.1.7.100011005|4|Fan5 +1.3.6.1.2.1.47.1.1.1.1.7.100011006|4|Fan6 +1.3.6.1.2.1.47.1.1.1.1.7.100011007|4|PSU1Fan1 +1.3.6.1.2.1.47.1.1.1.1.7.100011008|4|PSU2Fan1 +1.3.6.1.2.1.47.1.1.1.1.7.110000001|4|PSU1 +1.3.6.1.2.1.47.1.1.1.1.7.110000002|4|PSU2 +1.3.6.1.2.1.47.1.1.1.1.8.1|4|3 +1.3.6.1.2.1.47.1.1.1.1.8.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.8.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.8.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.8.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.8.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.8.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.8.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.8.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.8.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.8.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.9.1|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.9.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.9.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.9.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.9.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4|Cumulus-Linux 4.4.2 (Linux Kernel 4.19.206-1+cl4.4.2u1) +1.3.6.1.2.1.47.1.1.1.1.10.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.10.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.10.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.10.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.10.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.10.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.10.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.10.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.10.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.10.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.11.1|4|0c:04:1f:86:00:00 +1.3.6.1.2.1.47.1.1.1.1.11.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.11.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.11.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.11.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.11.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.11.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.11.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.11.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.11.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.11.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.12.1|4|Cumulus Networks +1.3.6.1.2.1.47.1.1.1.1.12.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.12.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.12.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.12.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.12.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.12.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.12.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.12.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.12.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.12.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.13.1|4|4.4.2 +1.3.6.1.2.1.47.1.1.1.1.13.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.13.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.13.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.13.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.13.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.13.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.13.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.13.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.13.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.13.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.14.1|4|cumulus +1.3.6.1.2.1.47.1.1.1.1.14.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.14.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.14.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.14.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.14.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.14.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.14.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.14.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.14.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.14.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.15.1|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000001|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000002|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000003|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000004|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000005|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000006|4| +1.3.6.1.2.1.47.1.1.1.1.15.100000007|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011001|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011002|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011003|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011004|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011005|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011006|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011007|4| +1.3.6.1.2.1.47.1.1.1.1.15.100011008|4| +1.3.6.1.2.1.47.1.1.1.1.15.110000001|4| +1.3.6.1.2.1.47.1.1.1.1.15.110000002|4| +1.3.6.1.2.1.47.1.1.1.1.16.1|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100000007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100011008|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.110000001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.110000002|2|2 +1.3.6.1.2.1.47.1.1.1.1.17.1|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000001|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000002|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000003|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000004|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000005|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000006|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100000007|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011001|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011002|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011003|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011004|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011005|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011006|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011007|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100011008|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.110000001|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.110000002|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.18.1|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000001|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000002|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000003|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000004|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000005|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000006|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100000007|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011001|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011002|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011003|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011004|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011005|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011006|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011007|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.100011008|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.110000001|4x|0000 +1.3.6.1.2.1.47.1.1.1.1.18.110000002|4x|0000 +1.3.6.1.2.1.99.1.1.1.1.100000001|2|8 +1.3.6.1.2.1.99.1.1.1.1.100000002|2|8 +1.3.6.1.2.1.99.1.1.1.1.100000003|2|8 +1.3.6.1.2.1.99.1.1.1.1.100000004|2|8 +1.3.6.1.2.1.99.1.1.1.1.100000005|2|8 +1.3.6.1.2.1.99.1.1.1.1.100000006|2|8 +1.3.6.1.2.1.99.1.1.1.1.100000007|2|8 +1.3.6.1.2.1.99.1.1.1.1.100011001|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011002|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011003|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011004|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011005|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011006|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011007|2|10 +1.3.6.1.2.1.99.1.1.1.1.100011008|2|10 +1.3.6.1.2.1.99.1.1.1.1.110000001|2|6 +1.3.6.1.2.1.99.1.1.1.1.110000002|2|6 +1.3.6.1.2.1.99.1.1.1.2.100000001|2|9 +1.3.6.1.2.1.99.1.1.1.2.100000002|2|9 +1.3.6.1.2.1.99.1.1.1.2.100000003|2|9 +1.3.6.1.2.1.99.1.1.1.2.100000004|2|9 +1.3.6.1.2.1.99.1.1.1.2.100000005|2|9 +1.3.6.1.2.1.99.1.1.1.2.100000006|2|9 +1.3.6.1.2.1.99.1.1.1.2.100000007|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011001|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011002|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011003|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011004|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011005|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011006|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011007|2|9 +1.3.6.1.2.1.99.1.1.1.2.100011008|2|9 +1.3.6.1.2.1.99.1.1.1.2.110000001|2|9 +1.3.6.1.2.1.99.1.1.1.2.110000002|2|9 +1.3.6.1.2.1.99.1.1.1.3.100000001|2|1 +1.3.6.1.2.1.99.1.1.1.3.100000002|2|1 +1.3.6.1.2.1.99.1.1.1.3.100000003|2|1 +1.3.6.1.2.1.99.1.1.1.3.100000004|2|1 +1.3.6.1.2.1.99.1.1.1.3.100000005|2|1 +1.3.6.1.2.1.99.1.1.1.3.100000006|2|1 +1.3.6.1.2.1.99.1.1.1.3.100000007|2|1 +1.3.6.1.2.1.99.1.1.1.3.100011001|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011002|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011003|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011004|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011005|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011006|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011007|2|0 +1.3.6.1.2.1.99.1.1.1.3.100011008|2|0 +1.3.6.1.2.1.99.1.1.1.3.110000001|2|2 +1.3.6.1.2.1.99.1.1.1.3.110000002|2|2 +1.3.6.1.2.1.99.1.1.1.4.100000001|2|250 +1.3.6.1.2.1.99.1.1.1.4.100000002|2|250 +1.3.6.1.2.1.99.1.1.1.4.100000003|2|250 +1.3.6.1.2.1.99.1.1.1.4.100000004|2|250 +1.3.6.1.2.1.99.1.1.1.4.100000005|2|250 +1.3.6.1.2.1.99.1.1.1.4.100000006|2|250 +1.3.6.1.2.1.99.1.1.1.4.100000007|2|250 +1.3.6.1.2.1.99.1.1.1.4.100011001|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011002|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011003|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011004|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011005|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011006|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011007|2|6000 +1.3.6.1.2.1.99.1.1.1.4.100011008|2|6000 +1.3.6.1.2.1.99.1.1.1.4.110000001|2|0 +1.3.6.1.2.1.99.1.1.1.4.110000002|2|0 +1.3.6.1.2.1.99.1.1.1.5.100000001|2|1 +1.3.6.1.2.1.99.1.1.1.5.100000002|2|1 +1.3.6.1.2.1.99.1.1.1.5.100000003|2|1 +1.3.6.1.2.1.99.1.1.1.5.100000004|2|1 +1.3.6.1.2.1.99.1.1.1.5.100000005|2|1 +1.3.6.1.2.1.99.1.1.1.5.100000006|2|1 +1.3.6.1.2.1.99.1.1.1.5.100000007|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011001|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011002|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011003|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011004|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011005|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011006|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011007|2|1 +1.3.6.1.2.1.99.1.1.1.5.100011008|2|1 +1.3.6.1.2.1.99.1.1.1.5.110000001|2|1 +1.3.6.1.2.1.99.1.1.1.5.110000002|2|1 +1.3.6.1.4.1.2021.10.1.5.1|2|0 +1.3.6.1.4.1.2021.10.1.5.2|2|1 +1.3.6.1.4.1.2021.10.1.5.3|2|0 +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|10 +1.3.6.1.4.1.2021.11.6.0|2|0 +1.3.6.1.4.1.2021.11.7.0|2|123 +1.3.6.1.4.1.2021.11.8.0|2|384 +1.3.6.1.4.1.2021.11.9.0|2|0 +1.3.6.1.4.1.2021.11.10.0|2|0 +1.3.6.1.4.1.2021.11.11.0|2|98 +1.3.6.1.4.1.2021.11.50.0|65|56989 +1.3.6.1.4.1.2021.11.51.0|65|51436 +1.3.6.1.4.1.2021.11.52.0|65|62715 +1.3.6.1.4.1.2021.11.53.0|65|9572959 +1.3.6.1.4.1.2021.11.54.0|65|2275 +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|937732 +1.3.6.1.4.1.2021.11.58.0|65|300156 +1.3.6.1.4.1.2021.11.59.0|65|11125152 +1.3.6.1.4.1.2021.11.60.0|65|24536950 +1.3.6.1.4.1.2021.11.61.0|65|1187 +1.3.6.1.4.1.2021.11.62.0|65|0 +1.3.6.1.4.1.2021.11.63.0|65|0 +1.3.6.1.4.1.2021.11.64.0|65|2040 +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|1 +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.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|sda4 +1.3.6.1.4.1.2021.13.15.1.1.2.22|4|sr0 +1.3.6.1.4.1.2021.13.15.1.1.2.23|4|loop0 +1.3.6.1.4.1.2021.13.15.1.1.2.24|4|loop1 +1.3.6.1.4.1.2021.13.15.1.1.2.25|4|loop2 +1.3.6.1.4.1.2021.13.15.1.1.2.26|4|loop3 +1.3.6.1.4.1.2021.13.15.1.1.2.27|4|loop4 +1.3.6.1.4.1.2021.13.15.1.1.2.28|4|loop5 +1.3.6.1.4.1.2021.13.15.1.1.2.29|4|loop6 +1.3.6.1.4.1.2021.13.15.1.1.2.30|4|loop7 +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|151517184 +1.3.6.1.4.1.2021.13.15.1.1.3.18|65|286720 +1.3.6.1.4.1.2021.13.15.1.1.3.19|65|2269184 +1.3.6.1.4.1.2021.13.15.1.1.3.20|65|2260992 +1.3.6.1.4.1.2021.13.15.1.1.3.21|65|145373184 +1.3.6.1.4.1.2021.13.15.1.1.3.22|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.23|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.24|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.25|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.26|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.27|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.28|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.29|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.30|65|0 +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|480118784 +1.3.6.1.4.1.2021.13.15.1.1.4.18|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.19|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.20|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.21|65|480118784 +1.3.6.1.4.1.2021.13.15.1.1.4.22|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.23|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.24|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.25|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.26|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.27|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.28|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.29|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.30|65|0 +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|4851 +1.3.6.1.4.1.2021.13.15.1.1.5.18|65|39 +1.3.6.1.4.1.2021.13.15.1.1.5.19|65|59 +1.3.6.1.4.1.2021.13.15.1.1.5.20|65|57 +1.3.6.1.4.1.2021.13.15.1.1.5.21|65|4642 +1.3.6.1.4.1.2021.13.15.1.1.5.22|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.23|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.24|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.25|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.26|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.27|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.28|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.29|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.30|65|0 +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|48928 +1.3.6.1.4.1.2021.13.15.1.1.6.18|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.19|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.20|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.21|65|48796 +1.3.6.1.4.1.2021.13.15.1.1.6.22|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.23|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.24|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.25|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.26|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.27|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.28|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.29|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.30|65|0 +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|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.9.21|2|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.9.25|2|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.9.29|2|0 +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.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|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.10.21|2|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.10.25|2|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.10.29|2|0 +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.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|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.11.21|2|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.11.25|2|0 +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|0 +1.3.6.1.4.1.2021.13.15.1.1.11.29|2|0 +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.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|151517184 +1.3.6.1.4.1.2021.13.15.1.1.12.18|70|286720 +1.3.6.1.4.1.2021.13.15.1.1.12.19|70|2269184 +1.3.6.1.4.1.2021.13.15.1.1.12.20|70|2260992 +1.3.6.1.4.1.2021.13.15.1.1.12.21|70|145373184 +1.3.6.1.4.1.2021.13.15.1.1.12.22|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.23|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.24|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.25|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.26|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.27|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.28|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.29|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.30|70|0 +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|480118784 +1.3.6.1.4.1.2021.13.15.1.1.13.18|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.19|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.20|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.21|70|480118784 +1.3.6.1.4.1.2021.13.15.1.1.13.22|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.23|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.24|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.25|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.26|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.27|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.28|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.29|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.30|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.17|70|54335000 +1.3.6.1.4.1.2021.13.15.1.1.14.18|70|137000 +1.3.6.1.4.1.2021.13.15.1.1.14.19|70|124000 +1.3.6.1.4.1.2021.13.15.1.1.14.20|70|128000 +1.3.6.1.4.1.2021.13.15.1.1.14.21|70|54242000 +1.3.6.1.4.1.2021.13.15.1.1.14.22|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.23|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.24|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.25|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.26|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.27|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.28|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.29|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.30|70|0 +1.3.6.1.4.1.2021.13.16.2.1.2.9|4|temp1 +1.3.6.1.4.1.2021.13.16.2.1.2.10|4|temp2 +1.3.6.1.4.1.2021.13.16.2.1.2.11|4|temp3 +1.3.6.1.4.1.2021.13.16.2.1.2.12|4|temp4 +1.3.6.1.4.1.2021.13.16.2.1.2.13|4|temp5 +1.3.6.1.4.1.2021.13.16.2.1.2.14|4|temp6 +1.3.6.1.4.1.2021.13.16.2.1.2.15|4|temp7 +1.3.6.1.4.1.2021.13.16.2.1.3.9|66|25000 +1.3.6.1.4.1.2021.13.16.2.1.3.10|66|25000 +1.3.6.1.4.1.2021.13.16.2.1.3.11|66|25000 +1.3.6.1.4.1.2021.13.16.2.1.3.12|66|25000 +1.3.6.1.4.1.2021.13.16.2.1.3.13|66|25000 +1.3.6.1.4.1.2021.13.16.2.1.3.14|66|25000 +1.3.6.1.4.1.2021.13.16.2.1.3.15|66|25000 +1.3.6.1.4.1.2021.13.16.3.1.2.1|4|fan1 +1.3.6.1.4.1.2021.13.16.3.1.2.2|4|fan2 +1.3.6.1.4.1.2021.13.16.3.1.2.3|4|fan3 +1.3.6.1.4.1.2021.13.16.3.1.2.4|4|fan4 +1.3.6.1.4.1.2021.13.16.3.1.2.5|4|fan5 +1.3.6.1.4.1.2021.13.16.3.1.2.6|4|fan6 +1.3.6.1.4.1.2021.13.16.3.1.2.7|4|fan7 +1.3.6.1.4.1.2021.13.16.3.1.2.8|4|fan8 +1.3.6.1.4.1.2021.13.16.3.1.3.1|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.2|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.3|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.4|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.5|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.6|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.7|66|6000 +1.3.6.1.4.1.2021.13.16.3.1.3.8|66|6000 +1.3.6.1.4.1.40310.4.3.1.1.2.192.168.0.1|2|6 +1.3.6.1.4.1.40310.4.3.1.1.2.192.168.0.5|2|6 +1.3.6.1.4.1.40310.4.3.1.1.3.192.168.0.1|2|2 +1.3.6.1.4.1.40310.4.3.1.1.3.192.168.0.5|2|2 +1.3.6.1.4.1.40310.4.3.1.1.5.192.168.0.1|4|fe80::e04:1fff:fe86:1 +1.3.6.1.4.1.40310.4.3.1.1.5.192.168.0.5|4|192.168.125.2 +1.3.6.1.4.1.40310.4.3.1.1.9.192.168.0.1|2|65000 +1.3.6.1.4.1.40310.4.3.1.1.9.192.168.0.5|2|65005 +1.3.6.1.4.1.40310.4.3.1.1.10.192.168.0.1|65|6 +1.3.6.1.4.1.40310.4.3.1.1.10.192.168.0.5|65|6 +1.3.6.1.4.1.40310.4.3.1.1.11.192.168.0.1|65|6 +1.3.6.1.4.1.40310.4.3.1.1.11.192.168.0.5|65|6 +1.3.6.1.4.1.40310.4.3.1.1.12.192.168.0.1|65|32629 +1.3.6.1.4.1.40310.4.3.1.1.12.192.168.0.5|65|32629 +1.3.6.1.4.1.40310.4.3.1.1.13.192.168.0.1|65|32629 +1.3.6.1.4.1.40310.4.3.1.1.13.192.168.0.5|65|32629 +1.3.6.1.4.1.40310.4.3.1.1.14.192.168.0.1|4x|0000 +1.3.6.1.4.1.40310.4.3.1.1.14.192.168.0.5|4x|0000 +1.3.6.1.4.1.40310.4.3.1.1.16.192.168.0.1|66|97875 +1.3.6.1.4.1.40310.4.3.1.1.16.192.168.0.5|66|97875 +1.3.6.1.4.1.40310.4.3.1.1.24.192.168.0.1|66|11473 +1.3.6.1.4.1.40310.4.3.1.1.24.192.168.0.5|66|11473 +1.3.6.1.4.1.40310.4.3.1.1.25.192.168.0.1|4|swp1 +1.3.6.1.4.1.40310.4.3.1.1.25.192.168.0.5|4|192.168.125.254 +1.3.6.1.6.3.10.2.1.3.0|2|97986