diff --git a/includes/discovery/vrf.inc.php b/includes/discovery/vrf.inc.php index 0e66ad8c7c..00975fd067 100644 --- a/includes/discovery/vrf.inc.php +++ b/includes/discovery/vrf.inc.php @@ -140,7 +140,7 @@ if (Config::get('enable_vrfs')) { } }//end if }//end foreach - } else if ($device['os_group'] == 'nokia') { + } elseif ($device['os_group'] == 'nokia') { unset($vrf_count); $vrtr = snmpwalk_cache_oid($device, 'vRtrConfTable', [], 'TIMETRA-VRTR-MIB'); @@ -196,7 +196,58 @@ if (Config::get('enable_vrfs')) { $valid_vrf_if[$vrf_id][$if] = 1; } } //end foreach + } elseif ($device['os_group'] == 'arista') { + echo "Arista\n"; + unset($vrf_count); + + $aristaVrfTable = snmpwalk_cache_oid($device, 'aristaVrfTable', [], 'ARISTA-VRF-MIB'); + $aristaVrfIfTable = snmpwalk_cache_oid($device, 'aristaVrfIfTable', [], 'ARISTA-VRF-MIB'); + d_echo($aristaVrfTable); + d_echo($aristaVrfIfTable); + + foreach ($aristaVrfTable as $vrf_name => $vrf_data) { + //$vrf_desc = $vr['vRtrName']; + //$vrf_as = $vr['vRtrAS4Byte']; + $vrf_oid = $vrf_name; + $vrf_rd = $vrf_data['aristaVrfRouteDistinguisher']; + + echo "\n [VRF $vrf_name] OID - $vrf_oid"; + echo "\n [VRF $vrf_name] RD - $vrf_rd"; + echo "\n [VRF $vrf_name] DESC - $vrf_desc"; + + $vrfs = [ + 'vrf_oid' => $vrf_oid, + 'vrf_name' => $vrf_name, + //'bgpLocalAs' => $vrf_as, + 'mplsVpnVrfRouteDistinguisher' => $vrf_rd, + //'mplsVpnVrfDescription' => $$vrf_desc, + 'device_id' => $device['device_id'], + ]; + + if (dbFetchCell('SELECT COUNT(*) FROM vrfs WHERE device_id = ? AND `vrf_oid`=?', [$device['device_id'], $vrf_oid])) { + dbUpdate(['vrf_name' => $vrf_name, 'bgpLocalAs' => $vrf_as, 'mplsVpnVrfRouteDistinguisher' => $vrf_rd, 'mplsVpnVrfDescription' => $vrf_desc], 'vrfs', 'device_id=? AND vrf_oid=?', [$device['device_id'], $vrf_oid]); + } else { + dbInsert($vrfs, 'vrfs'); + } + } //end foreach + + echo "\n [VRF $vrf_name] PORTS - "; + foreach ($aristaVrfIfTable as $if_index => $if_data) { + try { + $ifVrfName = $if_data['aristaVrfIfMembership']; + $vrf_id = dbFetchCell('SELECT vrf_id FROM vrfs WHERE device_id = ? AND `vrf_oid`=?', [$device['device_id'], $ifVrfName]); + $valid_vrf[$vrf_id] = 1; + $interface = dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `ifIndex` = ?', [$device['device_id'], $if_index]); + echo makeshortif($interface['ifDescr']).' '; + dbUpdate(['ifVrf' => $vrf_id], 'ports', 'port_id=?', [$interface['port_id']]); + $if = $interface['port_id']; + $valid_vrf_if[$vrf_id][$if] = 1; + } catch (Exception $e) { + continue; + } + } } //end if + unset( $descr_table, $port_table diff --git a/mibs/arista/ARISTA-GENERAL-MIB b/mibs/arista/ARISTA-GENERAL-MIB new file mode 100644 index 0000000000..c504f5f4c2 --- /dev/null +++ b/mibs/arista/ARISTA-GENERAL-MIB @@ -0,0 +1,155 @@ +-- ARISTA-GENERAL-MIB: Arista General MIB +ARISTA-GENERAL-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-TYPE, + Unsigned32 FROM SNMPv2-SMI + MODULE-COMPLIANCE, + OBJECT-GROUP FROM SNMPv2-CONF + DateAndTime FROM SNMPv2-TC + aristaMibs FROM ARISTA-SMI-MIB; + +aristaGeneralMib MODULE-IDENTITY + LAST-UPDATED "201711060000Z" + ORGANIZATION "Arista Networks, Inc." + CONTACT-INFO + "Arista Networks, Inc. + + Postal: 5453 Great America Parkway + Santa Clara, CA 95054 + + Tel: +1 408 547-5500 + + E-mail: snmp@arista.com" + DESCRIPTION + "First draft." + REVISION "201711060000Z" + DESCRIPTION + "Initial version." + ::= { aristaMibs 24 } + +-- Textual Conventions -- + +aristaGeneralMibNotifications OBJECT IDENTIFIER + ::= { aristaGeneralMib 0 } + +aristaGeneralMibObjects OBJECT IDENTIFIER + ::= { aristaGeneralMib 1 } + +aristaGeneralMibConformance OBJECT IDENTIFIER + ::= { aristaGeneralMib 2 } + +-- Reload cause table -- + +aristaReloadCauseTable OBJECT-TYPE + SYNTAX SEQUENCE OF AristaReloadCauseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the reload cause of each CPU unit. + On a modular system, entries for reboot instances of the + standby supervisor are present only when the redundancy + protocol is stateful switchover (SSO)." + ::= { aristaGeneralMibObjects 1 } + +aristaReloadCauseEntry OBJECT-TYPE + SYNTAX AristaReloadCauseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This entry contains reload cause information of a CPU unit + for a particular reboot instance." + INDEX { + aristaReloadUnitIndex, + aristaReloadIndex, + aristaReloadCauseIndex + } + ::= { aristaReloadCauseTable 1 } + +AristaReloadCauseEntry ::= SEQUENCE { + -- INDEX information + aristaReloadUnitIndex Unsigned32, + aristaReloadIndex Unsigned32, + aristaReloadCauseIndex Unsigned32, + -- Reload Cause + aristaReloadCauseDescription OCTET STRING, + aristaReloadTime DateAndTime +} + +aristaReloadUnitIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique identifier for a CPU unit. On a modular system, it is + the slot number of the supervisor. Unit index 0 mirrors the entries + of the active supervisor. On a fixed system, unit index 0 is for + the whole system." + ::= { aristaReloadCauseEntry 1 } + +aristaReloadIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique key to get the particular reboot instance. Reboot instances + are numbered in reverse chronological order, with the latest reboot + at index 0." + ::= { aristaReloadCauseEntry 2 } + +aristaReloadCauseIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique key to get one of the causes of a particular reboot instance." + ::= { aristaReloadCauseEntry 3 } + +aristaReloadCauseDescription OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description for the reload cause." + ::= { aristaReloadCauseEntry 4 } + +aristaReloadTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time when the reload happened." + ::= { aristaReloadCauseEntry 5 } + +-- Conformance and Compliance -- + +aristaGeneralMibCompliances OBJECT IDENTIFIER + ::= { aristaGeneralMibConformance 1 } + +aristaGeneralMibGroups OBJECT IDENTIFIER + ::= { aristaGeneralMibConformance 2 } + +aristaGeneralMibCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for Arista switches that support + the ARISTA-GENERAL-MIB." + MODULE -- this module + MANDATORY-GROUPS { + aristaGeneralMibGroup + } + ::= { aristaGeneralMibCompliances 1 } + +aristaGeneralMibGroup OBJECT-GROUP + OBJECTS { + aristaReloadCauseDescription, + aristaReloadTime + } + STATUS current + DESCRIPTION + "The collection of objects that provide reload cause + information for the CPU units in the system." + ::= { aristaGeneralMibGroups 1 } + +END diff --git a/mibs/arista/ARISTA-IF-MIB b/mibs/arista/ARISTA-IF-MIB new file mode 100644 index 0000000000..efea01e96e --- /dev/null +++ b/mibs/arista/ARISTA-IF-MIB @@ -0,0 +1,183 @@ +-- ARISTA-IF-MIB: Arista structure of interface management information +-- Copyright (c) 2014 Arista Networks, Inc. All rights reserved. + +ARISTA-IF-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + TimeTicks, Gauge32, Counter32 FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + ifIndex FROM IF-MIB + CounterBasedGauge64 FROM HCNUM-TC + aristaMibs FROM ARISTA-SMI-MIB; + +aristaIfMIB MODULE-IDENTITY + LAST-UPDATED "201410090000Z" + ORGANIZATION "Arista Networks, Inc." + CONTACT-INFO + "Arista Networks, Inc. + + Postal: 5453 Great America Parkway + Santa Clara, CA 95054 + + Tel: +1 408 547-5500 + + E-mail: snmp@arista.com" + DESCRIPTION + "The MIB module for reporting additional interface statistics + on Arista devices." + REVISION "201410090000Z" + DESCRIPTION "Initial version." + ::= { aristaMibs 15 } + + +aristaIf OBJECT IDENTIFIER ::= { aristaIfMIB 1 } + +aristaIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AristaIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains additional interface statistics not + contained in the IF-MIB." + ::= { aristaIf 1 } + +aristaIfEntry OBJECT-TYPE + SYNTAX AristaIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing statistics for a given interface." + INDEX { ifIndex } + ::= { aristaIfTable 1 } + +AristaIfEntry ::= SEQUENCE { + aristaIfCounterLastUpdated TimeTicks, + aristaIfRateInterval TimeTicks, + aristaIfInPktRate Gauge32, + aristaIfOutPktRate Gauge32, + aristaIfInOctetRate CounterBasedGauge64, + aristaIfOutOctetRate CounterBasedGauge64, + aristaIfRatesLastUpdated TimeTicks, + aristaIfOperStatusChanges Counter32, + aristaIfInAclDrops Counter32 +} + +aristaIfCounterLastUpdated OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at which the counters in the ifTable and ifXTable + were sampled from the hardware." + ::= { aristaIfEntry 1 } + +aristaIfRateInterval OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time over which the aristaIf*Rate values + are averaged for this interface." + ::= { aristaIfEntry 2 } + +aristaIfInPktRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The rate, in packets per second, of packets inbound on + this interface, averaged over aristaIfRateInterval." + ::= { aristaIfEntry 3 } + +aristaIfOutPktRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The rate, in packets per second, of packets outbound on + this interface, averaged over aristaIfRateInterval." + ::= { aristaIfEntry 4 } + +aristaIfInOctetRate OBJECT-TYPE + SYNTAX CounterBasedGauge64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The rate, in octets per second, of data inbound on + this interface, averaged over aristaIfRateInterval." + ::= { aristaIfEntry 5 } + +aristaIfOutOctetRate OBJECT-TYPE + SYNTAX CounterBasedGauge64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The rate, in octets per second, of data inbound on + this interface, averaged over aristaIfRateInterval." + ::= { aristaIfEntry 6 } + +aristaIfRatesLastUpdated OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at which the aristaIf*Rate gauges were + last calculated." + ::= { aristaIfEntry 7 } + +aristaIfOperStatusChanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times since system boot that ifOperStatus has + changed." + ::= { aristaIfEntry 8 } + +aristaIfInAclDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets dropped because of an + Access Control List (ACL). + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { aristaIfEntry 9 } + +-- Conformance information +aristaIfConformance OBJECT IDENTIFIER ::= { aristaIfMIB 2 } + +aristaIfGroups OBJECT IDENTIFIER ::= { aristaIfConformance 1 } +aristaIfCompliances OBJECT IDENTIFIER ::= { aristaIfConformance 2 } + +-- Compliance statements +aristaIfCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for Arista devices + that implement the IF-MIB" + + MODULE -- this module + MANDATORY-GROUPS { aristaIfAdditionalInformationGroup } + ::= { aristaIfCompliances 1 } + +-- Units of conformance +aristaIfAdditionalInformationGroup OBJECT-GROUP + OBJECTS { aristaIfCounterLastUpdated, aristaIfRateInterval, + aristaIfInPktRate, aristaIfOutPktRate, + aristaIfInOctetRate, aristaIfOutOctetRate, + aristaIfRatesLastUpdated, aristaIfOperStatusChanges, + aristaIfInAclDrops } + STATUS current + DESCRIPTION + "A collection of objects providing additional information + above and beyond what the IF-MIB provides, applicable to + all network interfaces." + ::= { aristaIfGroups 1 } + +END diff --git a/mibs/arista/ARISTA-NEXTHOP-GROUP-MIB b/mibs/arista/ARISTA-NEXTHOP-GROUP-MIB new file mode 100644 index 0000000000..092504f2df --- /dev/null +++ b/mibs/arista/ARISTA-NEXTHOP-GROUP-MIB @@ -0,0 +1,286 @@ +ARISTA-NEXTHOP-GROUP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, Counter64 FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + TEXTUAL-CONVENTION FROM SNMPv2-TC + aristaMibs FROM ARISTA-SMI-MIB; + +aristaNexthopGroupMIB MODULE-IDENTITY + LAST-UPDATED "201604170000Z" + ORGANIZATION "Arista Networks, Inc." + CONTACT-INFO + "Arista Networks, Inc. + + Postal: 5453 Great America Parkway + Santa Clara, CA 95054 + + Tel: +1 408 547-5500 + + E-mail: snmp@arista.com" + DESCRIPTION + "This MIB contains information about NextHop Groups (NHG). + + General L3 routing creates routing table entries, each of + which are associated with a nexthop. If multiple paths + exist for a specific route, the route points to a set of + nexthops (commonly referred as ECMP or Equal Cost + MultiPath). + + Arista devices support a feature which allows customers to + manually create a nexthop list, and use this list to + route packets to the specified set of nexthop + addresses. Customers can associate a tunnel type (GRE, + for example) with the nexthop group, allowing relevant + packets to be tunneled as well. The packet forwarding or + routing decision happens in hardware. + + Nexthop group feature gives customers full control of how + a route should be forwarded (tunneled or otherwise). The + number of entries in the nexthop group is also determined + by the user, and directly translates to the number of + nexthop entries in the hardware for the specified route. + + Let's provide an example, looking at EOS CLI example. + + nexthop-group foo type ip-in-ip + ttl 64 + entry 0 tunnel-destination 10.1.1.1 + entry 1 tunnel-destination 20.1.1.1 + ! + ip route 30.1.1.0/24 Nexthop-Group foo + + In the above configuration, any packet destined to + 30.1.1.0/24 will be forwarded by the nexthop group + 'foo'. Each entry inside the nexthop group specifies a + particular nexthop ('tunnel destination') chosen by the + customer. In this example, packets can be forwarded via + either of the nexthop (traffic split equally between the 2 + entries). + + This MIB module provides information relevant to the + nexthop group feature, specifically the status of various + nexthop groups configured, and traffic statistics." + REVISION "201604170000Z" + DESCRIPTION + "Initial revision of the MIB module." + ::= { aristaMibs 21 } + +aristaNexthopGroupMibObjects OBJECT IDENTIFIER + ::= { aristaNexthopGroupMIB 1 } + +aristaNexthopGroupMibConformance OBJECT IDENTIFIER + ::= { aristaNexthopGroupMIB 2 } + +-- Textual Convention + +NexthopGroupName ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION + "Each nexthop group configured by the user is associated with + a name, by configuration." + SYNTAX OCTET STRING (SIZE (0..255)) + +NexthopGroupType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A nexthop group is associated with a type, which determines + the packet forwarding behavior. + + Type 'ip' refers to L3 IP routing. A route pointing to a + nexthop group in this case is equivalent to multiple static + route configuration entries each with a particular nexthop. + + Types 'gre', 'mpls', 'ip-in-ip' all refer to tunnel types. In + this case a route pointing to the specified nexthop group is + used to tunnel packets using the appropriate encapsulation to + a tunnel destination. The encapsulation information depends on + the tunnel type itself." + SYNTAX INTEGER { + invalid(0), + ipInIp(1), + gre(2), + mpls(3), + ip(4), + mplsOverGre(5) + } + +-- Nexthop Group table + +aristaNexthopGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF AristaNexthopGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information about the nexthop groups + that are present in the device." + ::= { aristaNexthopGroupMibObjects 1 } + +aristaNexthopGroupEntry OBJECT-TYPE + SYNTAX AristaNexthopGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A conceptual row, containing information for a specific + nexthop group." + INDEX { aristaNexthopGroupId } + ::= { aristaNexthopGroupTable 1 } + +AristaNexthopGroupEntry ::= SEQUENCE { + aristaNexthopGroupId Unsigned32, + aristaNexthopGroupName NexthopGroupName, + aristaNexthopGroupType NexthopGroupType +} + +aristaNexthopGroupId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index identifying a nexthop group." + ::= { aristaNexthopGroupEntry 1 } + +aristaNexthopGroupName OBJECT-TYPE + SYNTAX NexthopGroupName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique name identifying a nexthop group." + ::= { aristaNexthopGroupEntry 2 } + +aristaNexthopGroupType OBJECT-TYPE + SYNTAX NexthopGroupType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the nexthop group. The encapsulation information + provided for each entry in the nexthop group corresponds to + the type." + ::= { aristaNexthopGroupEntry 3 } + +-- Nexthop Group counter table + +aristaNexthopGroupCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AristaNexthopGroupCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each nexthop group contains several entries - each + entry specifies a particular nexthop through which a packet + can be forwarded. There is packet and byte counter information + associated with each such nexthop. + + This table represents the per nexthop counter information for + every nexthop group." + ::= { aristaNexthopGroupMibObjects 2 } + +aristaNexthopGroupCounterEntry OBJECT-TYPE + SYNTAX AristaNexthopGroupCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A conceptual row, containing counter information for every + nexthop defined inside the nexthop group." + INDEX { aristaNexthopGroupId, + aristaNexthopGroupEntryIndex + } + ::= { aristaNexthopGroupCounterTable 1 } + +AristaNexthopGroupCounterEntry ::= SEQUENCE { + aristaNexthopGroupEntryIndex Unsigned32, + aristaNexthopGroupCounterIndex Unsigned32, + aristaNexthopGroupCounterPacketCount Counter64, + aristaNexthopGroupCounterByteCount Counter64 +} + +aristaNexthopGroupEntryIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "As described in the beginning of the MIB module each nexthop + group can have multiple entries, one per 'destination' or + 'nexthop'. Each entry within a nexthop group has a number or + index as configured by the user. This MIB object represents + the entry index within the nexthop group." + ::= { aristaNexthopGroupCounterEntry 1 } + +aristaNexthopGroupCounterIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For every nexthop within a nexthop group, packet and byte + counters are maintained by the device. Counters can be shared + by multiple such nexthops and the counter index will be the + same for all of those nexthops." + ::= { aristaNexthopGroupCounterEntry 2 } + +aristaNexthopGroupCounterPacketCount OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets forwarded through the specific + nexthop. Note that since counters are shared with multiple + nexthops, the packet count is an aggregate of packets + forwarded through all the relevant nexthops." + ::= { aristaNexthopGroupCounterEntry 3 } + +aristaNexthopGroupCounterByteCount OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The byte count of packets forwarded through the specific + nexthop. Note that since counters are shared with multiple + nexthops, the byte count is an aggregate of packets + forwarded through all the relevant nexthops." + ::= { aristaNexthopGroupCounterEntry 4 } + +-- Conformance and Compliance + +aristaNexthopGroupMibCompliances OBJECT IDENTIFIER + ::= { aristaNexthopGroupMibConformance 1 } + +aristaNexthopGroupMibGroups OBJECT IDENTIFIER + ::= { aristaNexthopGroupMibConformance 2 } + +aristaNexthopGroupMibCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for Arista switches that implement + the ARISTA-NEXTHOP-GROUP-MIB." + MODULE -- this module + MANDATORY-GROUPS { + aristaNexthopGroupGroup, + aristaNexthopGroupCounterGroup + } + ::= { aristaNexthopGroupMibCompliances 1 } + +aristaNexthopGroupGroup OBJECT-GROUP + OBJECTS { + aristaNexthopGroupName, + aristaNexthopGroupType + } + STATUS current + DESCRIPTION + "The collection of objects that provide nexthop group + information in the system." + ::= { aristaNexthopGroupMibGroups 1 } + +aristaNexthopGroupCounterGroup OBJECT-GROUP + OBJECTS { + aristaNexthopGroupCounterIndex, + aristaNexthopGroupCounterPacketCount, + aristaNexthopGroupCounterByteCount + } + STATUS current + DESCRIPTION + "The collection of objects that provide counter information + for every nexthop in the nexthop group." + ::= { aristaNexthopGroupMibGroups 2 } + +END diff --git a/mibs/arista/ARISTA-VRF-MIB b/mibs/arista/ARISTA-VRF-MIB new file mode 100644 index 0000000000..2c14d2599c --- /dev/null +++ b/mibs/arista/ARISTA-VRF-MIB @@ -0,0 +1,232 @@ +ARISTA-VRF-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + ifIndex FROM IF-MIB + TEXTUAL-CONVENTION FROM SNMPv2-TC + aristaMibs FROM ARISTA-SMI-MIB; + +aristaVrfMIB MODULE-IDENTITY + LAST-UPDATED "201501110000Z" + ORGANIZATION "Arista Networks, Inc." + CONTACT-INFO + "Arista Networks, Inc. + + Postal: 5453 Great America Parkway + Santa Clara, CA 95054 + + Tel: +1 408 547-5500 + + E-mail: snmp@arista.com" + DESCRIPTION + "This MIB contains information related to Virtual + Routing and Forwarding (VRF). + + VRF is a mechanism by which a single device can provide + independent routing instances. This allows customers to + virtually isolate network traffic, and also use overlapping + IP addresses. + + Layer3 or routed interfaces in the system will belong to + one VRF at a time. The datapath forwarding logic uses the + VRF membership of the input interface to determine a + specific forwarding table to use for routing the traffic. + + VRF can also be used to isolate management traffic from + the rest of the data plane traffic. + + This MIB module provides the following pieces of + information: + * A table of all VRFs configured in the system + * A table that contains the VRF membership information + for all routed interfaces in the system by sparsely + augmenting the ifTable." + + REVISION "201501110000Z" + DESCRIPTION + "Initial revision of this MIB module." + ::= { aristaMibs 18 } + + +aristaVrfMibObjects OBJECT IDENTIFIER + ::= { aristaVrfMIB 1 } + +aristaVrfMibConformance OBJECT IDENTIFIER + ::= { aristaVrfMIB 2 } + + +-- Textual Convention + +VrfName ::= TEXTUAL-CONVENTION + DISPLAY-HINT "100t" + STATUS current + DESCRIPTION + "A human-readable identifier assigned to every VRF. The + identifier is unique across all VRFs in the system." + SYNTAX OCTET STRING (SIZE (0..100)) + +VrfRouteDistinguisher ::= TEXTUAL-CONVENTION + DISPLAY-HINT "256a" + STATUS current + DESCRIPTION + "A route distinguisher as defined in [RFC4364], in the form + ':', where is the administrator ID + (e.g., an AS number) and is the locally assigned + number." + REFERENCE + "[RFC4364]" + SYNTAX OCTET STRING(SIZE (0..256)) + +VrfState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The state of a specific VRF. When the administrator + configures a VRF on the system, it stays inactive until a + route distinguisher is assigned to it. Also, when the + administrator deletes a VRF, there can be a small delay + before the VRF is completely unconfigured from the system, + during which time its status becomes inactive." + SYNTAX INTEGER { + active(1), + inactive(2) + } + + +-- VRF Table + +aristaVrfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AristaVrfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information about VRFs currently + configured in the system." + ::= { aristaVrfMibObjects 1 } + +aristaVrfEntry OBJECT-TYPE + SYNTAX AristaVrfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single row containing information for one VRF that is + configured in the system." + INDEX { aristaVrfName } + ::= { aristaVrfTable 1 } + +AristaVrfEntry ::= SEQUENCE { + aristaVrfName VrfName, + aristaVrfRoutingStatus BITS, + aristaVrfRouteDistinguisher VrfRouteDistinguisher, + aristaVrfState VrfState +} + +aristaVrfName OBJECT-TYPE + SYNTAX VrfName + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The name of the VRF that is represented by this row." + ::= { aristaVrfEntry 1 } + +aristaVrfRoutingStatus OBJECT-TYPE + SYNTAX BITS { + ipv4(0), + ipv6(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of data path routing in this VRF. + Routing for IPv4 and IPv6 packets can be independently + enabled by the administrator for a given VRF. This object + carries the routing status for both the protocol versions. + If data path routing is enabled for a protocol, the bit + for the protocol is 1." + ::= { aristaVrfEntry 2 } + +aristaVrfRouteDistinguisher OBJECT-TYPE + SYNTAX VrfRouteDistinguisher + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route distinguisher for this VRF." + ::= { aristaVrfEntry 3 } + +aristaVrfState OBJECT-TYPE + SYNTAX VrfState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the VRF." + ::= { aristaVrfEntry 4 } + +-- Interface Table + +aristaVrfIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AristaVrfIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table augments the ifTable and contains the + VRF membership information for every routed interface + in the system. A row is present only for each active + routed (or layer3) interface." + ::= { aristaVrfMibObjects 2 } + +aristaVrfIfEntry OBJECT-TYPE + SYNTAX AristaVrfIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VRF membership information for a single routed interface." + INDEX { ifIndex } + ::= { aristaVrfIfTable 1 } + +AristaVrfIfEntry ::= SEQUENCE { + aristaVrfIfMembership VrfName +} + +aristaVrfIfMembership OBJECT-TYPE + SYNTAX VrfName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the VRF that this routed interface is currently + part of." + ::= { aristaVrfIfEntry 1 } + +-- Conformance and Compliance + +aristaVrfMibCompliances OBJECT IDENTIFIER + ::= { aristaVrfMibConformance 1 } + +aristaVrfMibGroups OBJECT IDENTIFIER + ::= { aristaVrfMibConformance 2 } + +aristaVrfMibCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for Arista switches that implement + the ARISTA-VRF-MIB." + MODULE -- this module + MANDATORY-GROUPS { + aristaVrfInformationGroup + } + ::= { aristaVrfMibCompliances 1 } + +aristaVrfInformationGroup OBJECT-GROUP + OBJECTS { + aristaVrfRoutingStatus, + aristaVrfRouteDistinguisher, + aristaVrfState, + aristaVrfIfMembership + } + STATUS current + DESCRIPTION + "The collection of objects that provide VRF information in the + system." + ::= { aristaVrfMibGroups 1 } + + +END diff --git a/tests/data/arista_eos_vrf.json b/tests/data/arista_eos_vrf.json new file mode 100644 index 0000000000..2c82f5e836 --- /dev/null +++ b/tests/data/arista_eos_vrf.json @@ -0,0 +1,8119 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.30065.1.3011.7150.3282.24", + "sysDescr": "Arista Networks EOS version 4.20.12.1M running on an Arista Networks DCS-7150S-24", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "arista_eos", + "type": "network", + "serial": null, + "icon": "arista.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.30065.1.3011.7150.3282.24", + "sysDescr": "Arista Networks EOS version 4.20.12.1M running on an Arista Networks DCS-7150S-24", + "sysContact": "", + "version": "4.20.12.1M", + "hardware": "DCS-7150S-24", + "features": null, + "os": "arista_eos", + "type": "network", + "serial": null, + "icon": "arista.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet1", + "ifName": "Ethernet1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "trunk to switchname2", + "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": "Ethernet2", + "ifName": "Ethernet2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet2", + "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": "Ethernet3", + "ifName": "Ethernet3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet3", + "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": "Ethernet4", + "ifName": "Ethernet4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet4", + "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": "Ethernet5", + "ifName": "Ethernet5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet5", + "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": "Ethernet6", + "ifName": "Ethernet6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet6", + "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": "Ethernet7", + "ifName": "Ethernet7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet7", + "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": "Ethernet8", + "ifName": "Ethernet8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet8", + "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": "Ethernet9", + "ifName": "Ethernet9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet9", + "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": "Ethernet10", + "ifName": "Ethernet10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet10", + "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": "Ethernet11", + "ifName": "Ethernet11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet11", + "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": "Ethernet12", + "ifName": "Ethernet12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet12", + "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": "Ethernet13", + "ifName": "Ethernet13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet13", + "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": "Ethernet14", + "ifName": "Ethernet14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet14", + "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": "Ethernet15", + "ifName": "Ethernet15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet15", + "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": "Ethernet16", + "ifName": "Ethernet16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet16", + "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": "Ethernet17", + "ifName": "Ethernet17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet17", + "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": "Ethernet18", + "ifName": "Ethernet18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet18", + "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": "Ethernet19", + "ifName": "Ethernet19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet19", + "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": "Ethernet20", + "ifName": "Ethernet20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet20", + "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": "Ethernet21", + "ifName": "Ethernet21", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet21", + "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": "Ethernet22", + "ifName": "Ethernet22", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "uplink", + "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": "Ethernet23", + "ifName": "Ethernet23", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "MLAG-SW1-SW2 #1of2", + "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": "Ethernet24", + "ifName": "Ethernet24", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "MLAG-SW1-SW2 #2of2", + "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": "Management1", + "ifName": "Management1", + "portName": null, + "ifIndex": 999001, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Management1", + "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": "Port-Channel1", + "ifName": "Port-Channel1", + "portName": null, + "ifIndex": 1000001, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "MLAG-SW1-SW2", + "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": "Port-Channel2", + "ifName": "Port-Channel2", + "portName": null, + "ifIndex": 1000002, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "Uplink", + "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": "Port-Channel101", + "ifName": "Port-Channel101", + "portName": null, + "ifIndex": 1000101, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "trunk to switchname2", + "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": "Vlan4094", + "ifName": "Vlan4094", + "portName": null, + "ifIndex": 2004094, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l3ipvlan", + "ifAlias": "Vlan4094", + "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": "Ethernet1", + "ifName": "Ethernet1", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "trunk to switchname2", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": 6576944, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5488273, + "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": 32884, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32869, + "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": "Ethernet2", + "ifName": "Ethernet2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet2", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet3", + "ifName": "Ethernet3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet3", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet4", + "ifName": "Ethernet4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet4", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet5", + "ifName": "Ethernet5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet5", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet6", + "ifName": "Ethernet6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet6", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet7", + "ifName": "Ethernet7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet7", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet8", + "ifName": "Ethernet8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet8", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet9", + "ifName": "Ethernet9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet9", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet10", + "ifName": "Ethernet10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet10", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet11", + "ifName": "Ethernet11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet11", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet12", + "ifName": "Ethernet12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet12", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet13", + "ifName": "Ethernet13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet13", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet14", + "ifName": "Ethernet14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet14", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet15", + "ifName": "Ethernet15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet15", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8084, + "ifVlan": "1", + "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": "Ethernet16", + "ifName": "Ethernet16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet16", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7902, + "ifVlan": "1", + "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": "Ethernet17", + "ifName": "Ethernet17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet17", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet18", + "ifName": "Ethernet18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet18", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet19", + "ifName": "Ethernet19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet19", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet20", + "ifName": "Ethernet20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet20", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet21", + "ifName": "Ethernet21", + "portName": null, + "ifIndex": 21, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet21", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8051, + "ifVlan": "1", + "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": "Ethernet22", + "ifName": "Ethernet22", + "portName": null, + "ifIndex": 22, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "uplink", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 7980, + "ifVlan": "1", + "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": "Ethernet23", + "ifName": "Ethernet23", + "portName": null, + "ifIndex": 23, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "MLAG-SW1-SW2 #1of2", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8377, + "ifVlan": "1", + "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": 987740, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 616789, + "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": 87099515, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 58273893, + "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": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 32926, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32927, + "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": "Ethernet24", + "ifName": "Ethernet24", + "portName": null, + "ifIndex": 24, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9214, + "ifType": "ethernetCsmacd", + "ifAlias": "MLAG-SW1-SW2 #2of2", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8377, + "ifVlan": "1", + "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": 2, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 370960, + "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": 5530958, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 40264660, + "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": 32922, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32923, + "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": "Management1", + "ifName": "Management1", + "portName": null, + "ifIndex": 999001, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Management1", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 28193, + "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": 790837, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 735436, + "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": 290145875, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 170301078, + "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": 1256382, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 8, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1138181, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 16452, + "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": "Port-Channel1", + "ifName": "Port-Channel1", + "portName": null, + "ifIndex": 1000001, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 20000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9214, + "ifType": "ieee8023adLag", + "ifAlias": "MLAG-SW1-SW2", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 8580, + "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": 987742, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 987744, + "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": 92629545, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 98537321, + "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": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 65842, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 65844, + "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": "Port-Channel2", + "ifName": "Port-Channel2", + "portName": null, + "ifIndex": 1000002, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "ieee8023adLag", + "ifAlias": "Uplink", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 1145467, + "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": "Port-Channel101", + "ifName": "Port-Channel101", + "portName": null, + "ifIndex": 1000101, + "ifSpeed": 2000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 2000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9214, + "ifType": "ieee8023adLag", + "ifAlias": "trunk to switchname2", + "ifPhysAddress": "303a31633a37", + "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": 6570512, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5486462, + "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": 32854, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32859, + "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": "Vlan4094", + "ifName": "Vlan4094", + "portName": null, + "ifIndex": 2004094, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l3ipvlan", + "ifAlias": "Vlan4094", + "ifPhysAddress": "303a31633a37", + "ifHardType": null, + "ifLastChange": 6488, + "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": 1, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.1", + "processor_index": "1", + "processor_type": "hr", + "processor_usage": 8, + "processor_descr": "AMD Turion(tm) II Neo N41H Dual-Core Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 2, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.2", + "processor_index": "2", + "processor_type": "hr", + "processor_usage": 8, + "processor_descr": "Core 1", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 3, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.3", + "processor_index": "3", + "processor_type": "hr", + "processor_usage": 8, + "processor_descr": "Core 2", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "RAM", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "2", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "RAM (Buffers)", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "RAM (Cache)", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "5", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Tmp", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "6", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Root", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "7", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Log", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "8", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Core", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "RAM", + "mempool_perc": 80, + "mempool_used": 3250221056, + "mempool_free": 800845824, + "mempool_total": 4051066880, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "2", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "RAM (Buffers)", + "mempool_perc": 5, + "mempool_used": 196718592, + "mempool_free": 3854348288, + "mempool_total": 4051066880, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "RAM (Cache)", + "mempool_perc": 54, + "mempool_used": 2197463040, + "mempool_free": 1853603840, + "mempool_total": 4051066880, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "5", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Tmp", + "mempool_perc": 1, + "mempool_used": 606208, + "mempool_free": 66502656, + "mempool_total": 67108864, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "6", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Root", + "mempool_perc": 9, + "mempool_used": 53460992, + "mempool_free": 554201088, + "mempool_total": 607662080, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "7", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Log", + "mempool_perc": 14, + "mempool_used": 56774656, + "mempool_free": 348332032, + "mempool_total": 405106688, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "8", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 4096, + "mempool_descr": "Core", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 405106688, + "mempool_total": 405106688, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100321211", + "sensor_index": "100321211", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM TX Bias for Ethernet21", + "group": null, + "sensor_divisor": 100000, + "sensor_multiplier": 1, + "sensor_current": 0.01656, + "sensor_limit": 0.045, + "sensor_limit_warn": 0.04, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0.0004, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100321211", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100322211", + "sensor_index": "100322211", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM TX Bias for Ethernet22", + "group": null, + "sensor_divisor": 100000, + "sensor_multiplier": 1, + "sensor_current": 0.01843, + "sensor_limit": 0.045, + "sensor_limit_warn": 0.04, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0.0004, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100322211", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711102", + "sensor_index": "100711102", + "sensor_type": "entity-sensor", + "sensor_descr": "Input current sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0.34, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100711102", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711103", + "sensor_index": "100711103", + "sensor_type": "entity-sensor", + "sensor_descr": "Output current sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 5.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100711103", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721102", + "sensor_index": "100721102", + "sensor_type": "entity-sensor", + "sensor_descr": "Input current sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0.31, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100721102", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721103", + "sensor_index": "100721103", + "sensor_type": "entity-sensor", + "sensor_descr": "Output current sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 5.25, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100721103", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100321212", + "sensor_index": "100321212", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM TX Power for Ethernet21", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -6.556, + "sensor_limit": -1, + "sensor_limit_warn": -2, + "sensor_limit_low": -11.49, + "sensor_limit_low_warn": -10.51, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100321212", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100321213", + "sensor_index": "100321213", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM RX Power for Ethernet21", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": null, + "sensor_limit": -3, + "sensor_limit_warn": -4, + "sensor_limit_low": -22.01, + "sensor_limit_low_warn": -20.97, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100321213", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100322212", + "sensor_index": "100322212", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM TX Power for Ethernet22", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -6.478, + "sensor_limit": -1, + "sensor_limit_warn": -2, + "sensor_limit_low": -11.49, + "sensor_limit_low_warn": -10.51, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100322212", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100322213", + "sensor_index": "100322213", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM RX Power for Ethernet22", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": null, + "sensor_limit": -3, + "sensor_limit_warn": -4, + "sensor_limit_low": -22.01, + "sensor_limit_low_warn": -20.97, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100322213", + "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.100601111", + "sensor_index": "100601111", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan Tray 1 Fan 1 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17460, + "sensor_limit": 31428, + "sensor_limit_warn": null, + "sensor_limit_low": 13968, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100601111", + "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.100602111", + "sensor_index": "100602111", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan Tray 2 Fan 1 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17820, + "sensor_limit": 32076, + "sensor_limit_warn": null, + "sensor_limit_low": 14256, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100602111", + "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.100603111", + "sensor_index": "100603111", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan Tray 3 Fan 1 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17820, + "sensor_limit": 32076, + "sensor_limit_warn": null, + "sensor_limit_low": 14256, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100603111", + "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.100604111", + "sensor_index": "100604111", + "sensor_type": "entity-sensor", + "sensor_descr": "Fan Tray 4 Fan 1 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17820, + "sensor_limit": 32076, + "sensor_limit_warn": null, + "sensor_limit_low": 14256, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100604111", + "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.100711211", + "sensor_index": "100711211", + "sensor_type": "entity-sensor", + "sensor_descr": "PowerSupply1 Fan 1 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17820, + "sensor_limit": 32076, + "sensor_limit_warn": null, + "sensor_limit_low": 14256, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100711211", + "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.100721211", + "sensor_index": "100721211", + "sensor_type": "entity-sensor", + "sensor_descr": "PowerSupply2 Fan 1 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17820, + "sensor_limit": 32076, + "sensor_limit_warn": null, + "sensor_limit_low": 14256, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100721211", + "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.100006001", + "sensor_index": "100006001", + "sensor_type": "entity-sensor", + "sensor_descr": "Cpu temp sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 41.8, + "sensor_limit": 100, + "sensor_limit_warn": 95, + "sensor_limit_low": 31.8, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006001", + "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.100006002", + "sensor_index": "100006002", + "sensor_type": "entity-sensor", + "sensor_descr": "Rear temp sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 75, + "sensor_limit_warn": 65, + "sensor_limit_low": 29, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006002", + "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.100006003", + "sensor_index": "100006003", + "sensor_type": "entity-sensor", + "sensor_descr": "Board temp sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 65, + "sensor_limit_warn": 55, + "sensor_limit_low": 28, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006003", + "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.100006004", + "sensor_index": "100006004", + "sensor_type": "entity-sensor", + "sensor_descr": "Front-panel temp sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 35.9, + "sensor_limit": 65, + "sensor_limit_warn": 55, + "sensor_limit_low": 25.9, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006004", + "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.100006005", + "sensor_index": "100006005", + "sensor_type": "entity-sensor", + "sensor_descr": "Board temp sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": 29, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006005", + "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.100006006", + "sensor_index": "100006006", + "sensor_type": "entity-sensor", + "sensor_descr": "FM6000 temp sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 44.1, + "sensor_limit": 100, + "sensor_limit_warn": 92, + "sensor_limit_low": 34.1, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006006", + "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.100321201", + "sensor_index": "100321201", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM Temperature for Ethernet21", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 90, + "sensor_limit_warn": 85, + "sensor_limit_low": -45, + "sensor_limit_low_warn": -40, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100321201", + "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.100322201", + "sensor_index": "100322201", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM Temperature for Ethernet22", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 44.8, + "sensor_limit": 90, + "sensor_limit_warn": 85, + "sensor_limit_low": -45, + "sensor_limit_low_warn": -40, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100322201", + "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.100711101", + "sensor_index": "100711101", + "sensor_type": "entity-sensor", + "sensor_descr": "Power supply sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 35.5, + "sensor_limit": 70, + "sensor_limit_warn": 60, + "sensor_limit_low": 25.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100711101", + "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.100721101", + "sensor_index": "100721101", + "sensor_type": "entity-sensor", + "sensor_descr": "Power supply sensor", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 70, + "sensor_limit_warn": 60, + "sensor_limit_low": 25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100721101", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006007", + "sensor_index": "100006007", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail1 12V standby", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 12.33, + "sensor_limit": 14.1795, + "sensor_limit_warn": null, + "sensor_limit_low": 10.4805, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006007", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006008", + "sensor_index": "100006008", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail2 This rail isn't monitored", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006008", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006009", + "sensor_index": "100006009", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail3 5V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 4.93, + "sensor_limit": 5.6695, + "sensor_limit_warn": null, + "sensor_limit_low": 4.1905, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006009", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006010", + "sensor_index": "100006010", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail4 3.3V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.35, + "sensor_limit": 3.8525, + "sensor_limit_warn": null, + "sensor_limit_low": 2.8475, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006010", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006011", + "sensor_index": "100006011", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail5 2.5V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 2.55, + "sensor_limit": 2.9325, + "sensor_limit_warn": null, + "sensor_limit_low": 2.1675, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006011", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006012", + "sensor_index": "100006012", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail6 1.8V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 2.07, + "sensor_limit_warn": null, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006012", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006013", + "sensor_index": "100006013", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail7 1.5V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.52, + "sensor_limit": 1.748, + "sensor_limit_warn": null, + "sensor_limit_low": 1.292, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006013", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006014", + "sensor_index": "100006014", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail8 1.1V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.11, + "sensor_limit": 1.2765, + "sensor_limit_warn": null, + "sensor_limit_low": 0.9435, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006014", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006015", + "sensor_index": "100006015", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail9 0.9V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0.91, + "sensor_limit": 1.0465, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7735, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006015", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006016", + "sensor_index": "100006016", + "sensor_type": "entity-sensor", + "sensor_descr": "CpucardPwrCon Rail10 0.75V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.8625, + "sensor_limit_warn": null, + "sensor_limit_low": 0.6375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006016", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006017", + "sensor_index": "100006017", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail1 POS12V", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 12.2, + "sensor_limit": 14.03, + "sensor_limit_warn": null, + "sensor_limit_low": 10.37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006017", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006018", + "sensor_index": "100006018", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail2 POS12_STDBY", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 11.96, + "sensor_limit": 13.754, + "sensor_limit_warn": null, + "sensor_limit_low": 10.166, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006018", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006019", + "sensor_index": "100006019", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail3 POS5V_STDBY", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.75, + "sensor_limit_warn": null, + "sensor_limit_low": 4.25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006019", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006020", + "sensor_index": "100006020", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail4 POS3V3_STDBY", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.23, + "sensor_limit": 3.7145, + "sensor_limit_warn": null, + "sensor_limit_low": 2.7455, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006020", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006021", + "sensor_index": "100006021", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail5 POS3V3", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": null, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006021", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006022", + "sensor_index": "100006022", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail6 POS2V5", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 2.49, + "sensor_limit": 2.8635, + "sensor_limit_warn": null, + "sensor_limit_low": 2.1165, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006022", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006023", + "sensor_index": "100006023", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail7 POS_ALTA_AVDD", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.09, + "sensor_limit": 1.2535, + "sensor_limit_warn": null, + "sensor_limit_low": 0.9265, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006023", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006024", + "sensor_index": "100006024", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail8 POS1V2", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.19, + "sensor_limit": 1.3685, + "sensor_limit_warn": null, + "sensor_limit_low": 1.0115, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006024", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006025", + "sensor_index": "100006025", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail9 POS_VDD_ALTA", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.19, + "sensor_limit": 1.3685, + "sensor_limit_warn": null, + "sensor_limit_low": 1.0115, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006025", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006026", + "sensor_index": "100006026", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail10 POS_VDDS", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": null, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006026", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006027", + "sensor_index": "100006027", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail11 POS3V3_VF", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.25, + "sensor_limit": 3.7375, + "sensor_limit_warn": null, + "sensor_limit_low": 2.7625, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006027", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006028", + "sensor_index": "100006028", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail12 POS1V2_GTP", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": null, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006028", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006029", + "sensor_index": "100006029", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail13 POS_GATEDRIVE", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 6.32, + "sensor_limit": 7.268, + "sensor_limit_warn": null, + "sensor_limit_low": 5.372, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006029", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006030", + "sensor_index": "100006030", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail14 POS2V5_156", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 2.48, + "sensor_limit": 2.852, + "sensor_limit_warn": null, + "sensor_limit_low": 2.108, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006030", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006031", + "sensor_index": "100006031", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail15 POS2V5_125", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 2.48, + "sensor_limit": 2.852, + "sensor_limit_warn": null, + "sensor_limit_low": 2.108, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006031", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006032", + "sensor_index": "100006032", + "sensor_type": "entity-sensor", + "sensor_descr": "SwitchcardPwrCon Rail16 PSU_OK", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": 3.45, + "sensor_limit_warn": null, + "sensor_limit_low": 2.55, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006032", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006033", + "sensor_index": "100006033", + "sensor_type": "entity-sensor", + "sensor_descr": "Chl822xPwrCon Rail1 POS_ALTA_AVDD", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.19, + "sensor_limit": 1.3685, + "sensor_limit_warn": null, + "sensor_limit_low": 1.0115, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006033", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006034", + "sensor_index": "100006034", + "sensor_type": "entity-sensor", + "sensor_descr": "Chl822xPwrCon Rail2 POS_VDD_ALTA", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 1.19, + "sensor_limit": 1.3685, + "sensor_limit_warn": null, + "sensor_limit_low": 1.0115, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100006034", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100321202", + "sensor_index": "100321202", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM Voltage for Ethernet21", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.26, + "sensor_limit": 3.7, + "sensor_limit_warn": 3.63, + "sensor_limit_low": 2.9, + "sensor_limit_low_warn": 2.97, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100321202", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100322202", + "sensor_index": "100322202", + "sensor_type": "entity-sensor", + "sensor_descr": "DOM Voltage for Ethernet22", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.27, + "sensor_limit": 3.7, + "sensor_limit_warn": 3.63, + "sensor_limit_low": 2.9, + "sensor_limit_low_warn": 2.97, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100322202", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711104", + "sensor_index": "100711104", + "sensor_type": "entity-sensor", + "sensor_descr": "Input voltage sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 227.5, + "sensor_limit": 261.625, + "sensor_limit_warn": null, + "sensor_limit_low": 193.375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100711104", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711105", + "sensor_index": "100711105", + "sensor_type": "entity-sensor", + "sensor_descr": "Output voltage sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 12.23, + "sensor_limit": 14.0645, + "sensor_limit_warn": null, + "sensor_limit_low": 10.3955, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100711105", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721104", + "sensor_index": "100721104", + "sensor_type": "entity-sensor", + "sensor_descr": "Input voltage sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 227.5, + "sensor_limit": 261.625, + "sensor_limit_warn": null, + "sensor_limit_low": 193.375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100721104", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721105", + "sensor_index": "100721105", + "sensor_type": "entity-sensor", + "sensor_descr": "Output voltage sensor", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 12.2, + "sensor_limit": 14.03, + "sensor_limit_warn": null, + "sensor_limit_low": 10.37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "100721105", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [] + }, + "poller": "matches discovery" + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "4", + "storage_type": "hrStorageFlashMemory", + "storage_descr": "Flash", + "storage_size": 1584365568, + "storage_units": 4096, + "storage_used": 1260240896, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "4", + "storage_type": "hrStorageFlashMemory", + "storage_descr": "Flash", + "storage_size": 1584365568, + "storage_units": 4096, + "storage_used": 1260240896, + "storage_free": 324124672, + "storage_perc": 80, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 30, + "vlan_domain": 1, + "vlan_name": "vlanname1", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 31, + "vlan_domain": 1, + "vlan_name": "vlanname2", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 50, + "vlan_domain": 1, + "vlan_name": "Management", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 139, + "vlan_domain": 1, + "vlan_name": "vlanname3", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 4094, + "vlan_domain": 1, + "vlan_name": "MLAG-PO1", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 30, + "baseport": 100, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 31, + "baseport": 100, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 31, + "baseport": 101, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 50, + "baseport": 100, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 139, + "baseport": 100, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 4094, + "baseport": 100, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + } + ] + } + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "Mgt", + "vrf_name": "Mgt", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "62003:1", + "mplsVpnVrfDescription": "", + "ifIndices": "999001" + } + ] + } + } +} diff --git a/tests/snmpsim/arista_eos_vrf.snmprec b/tests/snmpsim/arista_eos_vrf.snmprec new file mode 100644 index 0000000000..4934d73626 --- /dev/null +++ b/tests/snmpsim/arista_eos_vrf.snmprec @@ -0,0 +1,4801 @@ +1.0.8802.1.1.2.1.3.7.1.3.1|4|Ethernet1 +1.0.8802.1.1.2.1.3.7.1.3.2|4|Ethernet2 +1.0.8802.1.1.2.1.3.7.1.3.3|4|Ethernet3 +1.0.8802.1.1.2.1.3.7.1.3.4|4|Ethernet4 +1.0.8802.1.1.2.1.3.7.1.3.5|4|Ethernet5 +1.0.8802.1.1.2.1.3.7.1.3.6|4|Ethernet6 +1.0.8802.1.1.2.1.3.7.1.3.7|4|Ethernet7 +1.0.8802.1.1.2.1.3.7.1.3.8|4|Ethernet8 +1.0.8802.1.1.2.1.3.7.1.3.9|4|Ethernet9 +1.0.8802.1.1.2.1.3.7.1.3.10|4|Ethernet10 +1.0.8802.1.1.2.1.3.7.1.3.11|4|Ethernet11 +1.0.8802.1.1.2.1.3.7.1.3.12|4|Ethernet12 +1.0.8802.1.1.2.1.3.7.1.3.13|4|Ethernet13 +1.0.8802.1.1.2.1.3.7.1.3.14|4|Ethernet14 +1.0.8802.1.1.2.1.3.7.1.3.15|4|Ethernet15 +1.0.8802.1.1.2.1.3.7.1.3.16|4|Ethernet16 +1.0.8802.1.1.2.1.3.7.1.3.17|4|Ethernet17 +1.0.8802.1.1.2.1.3.7.1.3.18|4|Ethernet18 +1.0.8802.1.1.2.1.3.7.1.3.19|4|Ethernet19 +1.0.8802.1.1.2.1.3.7.1.3.20|4|Ethernet20 +1.0.8802.1.1.2.1.3.7.1.3.21|4|Ethernet21 +1.0.8802.1.1.2.1.3.7.1.3.22|4|Ethernet22 +1.0.8802.1.1.2.1.3.7.1.3.23|4|Ethernet23 +1.0.8802.1.1.2.1.3.7.1.3.24|4|Ethernet24 +1.0.8802.1.1.2.1.3.7.1.3.97|4|Management1 +1.0.8802.1.1.2.1.4.1.1.4.0.1.2|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.23.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.24.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.97.1|2|4 +1.0.8802.1.1.2.1.4.1.1.5.0.1.2|4x|94188256F680 +1.0.8802.1.1.2.1.4.1.1.5.0.23.1|4x|001C73B3AFBB +1.0.8802.1.1.2.1.4.1.1.5.0.24.1|4x|001C73B3AFBB +1.0.8802.1.1.2.1.4.1.1.5.0.97.1|4x|0024A8E1D080 +1.0.8802.1.1.2.1.4.1.1.6.0.1.2|2|7 +1.0.8802.1.1.2.1.4.1.1.6.0.23.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.24.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.97.1|2|7 +1.0.8802.1.1.2.1.4.1.1.7.0.1.2|4|47 +1.0.8802.1.1.2.1.4.1.1.7.0.23.1|4|Ethernet23 +1.0.8802.1.1.2.1.4.1.1.7.0.24.1|4|Ethernet24 +1.0.8802.1.1.2.1.4.1.1.7.0.97.1|4|41 +1.0.8802.1.1.2.1.4.1.1.8.0.1.2|4|47 +1.0.8802.1.1.2.1.4.1.1.8.0.23.1|4|MLAG-SW1-SW2 #1of2 +1.0.8802.1.1.2.1.4.1.1.8.0.24.1|4|MLAG-SW1-SW2 #2of2 +1.0.8802.1.1.2.1.4.1.1.8.0.97.1|4|41 +1.0.8802.1.1.2.1.4.1.1.9.0.1.2|4|switchname2 +1.0.8802.1.1.2.1.4.1.1.9.0.23.1|4|switchname3 +1.0.8802.1.1.2.1.4.1.1.9.0.24.1|4|switchname3 +1.0.8802.1.1.2.1.4.1.1.9.0.97.1|4|switchname4 +1.0.8802.1.1.2.1.4.1.1.10.0.1.2|4|Aruba JL355A 2540-48G-4SFP+ Switch, revision YC.16.08.0001, ROM YC.16.01.0001 (/ws/swbuildm/rel_yakima_qaoff/code/build/cpm(swbuildm_rel_yakima_qaoff_rel_yakima)) +1.0.8802.1.1.2.1.4.1.1.10.0.23.1|4|Arista Networks EOS version 4.20.12.1M running on an Arista Networks DCS-7150S-24 +1.0.8802.1.1.2.1.4.1.1.10.0.24.1|4|Arista Networks EOS version 4.20.12.1M running on an Arista Networks DCS-7150S-24 +1.0.8802.1.1.2.1.4.1.1.10.0.97.1|4|HP J9147A 2910al-48G Switch, revision W.15.14.0012, ROM W.14.06 (/ws/swbuildm/rel_memphis_qaoff/code/build/sbm(swbuildm_rel_memphis_qaoff_rel_memphis)) +1.0.8802.1.1.2.1.4.1.1.11.0.1.2|4|28 00 2 4 +1.0.8802.1.1.2.1.4.1.1.11.0.23.1|4|28 00 2 4 +1.0.8802.1.1.2.1.4.1.1.11.0.24.1|4|28 00 2 4 +1.0.8802.1.1.2.1.4.1.1.11.0.97.1|4|28 00 2 4 +1.0.8802.1.1.2.1.4.1.1.12.0.1.2|4|20 00 2 +1.0.8802.1.1.2.1.4.1.1.12.0.23.1|4|20 00 2 +1.0.8802.1.1.2.1.4.1.1.12.0.24.1|4|20 00 2 +1.0.8802.1.1.2.1.4.1.1.12.0.97.1|4|20 00 2 +1.0.8802.1.1.2.1.4.2.1.3.0.1.2.1.4.172.29.173.53|2|2 +1.0.8802.1.1.2.1.4.2.1.3.0.23.1.1.4.169.254.1.2|2|2 +1.0.8802.1.1.2.1.4.2.1.3.0.24.1.1.4.169.254.1.2|2|2 +1.0.8802.1.1.2.1.4.2.1.3.0.97.1.6.6.0.36.168.225.208.128|2|2 +1.3.6.1.2.1.1.1.0|4|Arista Networks EOS version 4.20.12.1M running on an Arista Networks DCS-7150S-24 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.30065.1.3011.7150.3282.24 +1.3.6.1.2.1.1.3.0|67|49383892 +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|Ethernet1 +1.3.6.1.2.1.2.2.1.2.2|4|Ethernet2 +1.3.6.1.2.1.2.2.1.2.3|4|Ethernet3 +1.3.6.1.2.1.2.2.1.2.4|4|Ethernet4 +1.3.6.1.2.1.2.2.1.2.5|4|Ethernet5 +1.3.6.1.2.1.2.2.1.2.6|4|Ethernet6 +1.3.6.1.2.1.2.2.1.2.7|4|Ethernet7 +1.3.6.1.2.1.2.2.1.2.8|4|Ethernet8 +1.3.6.1.2.1.2.2.1.2.9|4|Ethernet9 +1.3.6.1.2.1.2.2.1.2.10|4|Ethernet10 +1.3.6.1.2.1.2.2.1.2.11|4|Ethernet11 +1.3.6.1.2.1.2.2.1.2.12|4|Ethernet12 +1.3.6.1.2.1.2.2.1.2.13|4|Ethernet13 +1.3.6.1.2.1.2.2.1.2.14|4|Ethernet14 +1.3.6.1.2.1.2.2.1.2.15|4|Ethernet15 +1.3.6.1.2.1.2.2.1.2.16|4|Ethernet16 +1.3.6.1.2.1.2.2.1.2.17|4|Ethernet17 +1.3.6.1.2.1.2.2.1.2.18|4|Ethernet18 +1.3.6.1.2.1.2.2.1.2.19|4|Ethernet19 +1.3.6.1.2.1.2.2.1.2.20|4|Ethernet20 +1.3.6.1.2.1.2.2.1.2.21|4|Ethernet21 +1.3.6.1.2.1.2.2.1.2.22|4|Ethernet22 +1.3.6.1.2.1.2.2.1.2.23|4|Ethernet23 +1.3.6.1.2.1.2.2.1.2.24|4|Ethernet24 +1.3.6.1.2.1.2.2.1.2.999001|4|Management1 +1.3.6.1.2.1.2.2.1.2.1000001|4|Port-Channel1 +1.3.6.1.2.1.2.2.1.2.1000002|4|Port-Channel2 +1.3.6.1.2.1.2.2.1.2.1000101|4|Port-Channel101 +1.3.6.1.2.1.2.2.1.2.2004094|4|Vlan4094 +1.3.6.1.2.1.2.2.1.3.1|2|6 +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.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.12|2|6 +1.3.6.1.2.1.2.2.1.3.13|2|6 +1.3.6.1.2.1.2.2.1.3.14|2|6 +1.3.6.1.2.1.2.2.1.3.15|2|6 +1.3.6.1.2.1.2.2.1.3.16|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|6 +1.3.6.1.2.1.2.2.1.3.18|2|6 +1.3.6.1.2.1.2.2.1.3.19|2|6 +1.3.6.1.2.1.2.2.1.3.20|2|6 +1.3.6.1.2.1.2.2.1.3.21|2|6 +1.3.6.1.2.1.2.2.1.3.22|2|6 +1.3.6.1.2.1.2.2.1.3.23|2|6 +1.3.6.1.2.1.2.2.1.3.24|2|6 +1.3.6.1.2.1.2.2.1.3.999001|2|6 +1.3.6.1.2.1.2.2.1.3.1000001|2|161 +1.3.6.1.2.1.2.2.1.3.1000002|2|161 +1.3.6.1.2.1.2.2.1.3.1000101|2|161 +1.3.6.1.2.1.2.2.1.3.2004094|2|136 +1.3.6.1.2.1.2.2.1.4.1|2|9214 +1.3.6.1.2.1.2.2.1.4.2|2|9214 +1.3.6.1.2.1.2.2.1.4.3|2|9214 +1.3.6.1.2.1.2.2.1.4.4|2|9214 +1.3.6.1.2.1.2.2.1.4.5|2|9214 +1.3.6.1.2.1.2.2.1.4.6|2|9214 +1.3.6.1.2.1.2.2.1.4.7|2|9214 +1.3.6.1.2.1.2.2.1.4.8|2|9214 +1.3.6.1.2.1.2.2.1.4.9|2|9214 +1.3.6.1.2.1.2.2.1.4.10|2|9214 +1.3.6.1.2.1.2.2.1.4.11|2|9214 +1.3.6.1.2.1.2.2.1.4.12|2|9214 +1.3.6.1.2.1.2.2.1.4.13|2|9214 +1.3.6.1.2.1.2.2.1.4.14|2|9214 +1.3.6.1.2.1.2.2.1.4.15|2|9214 +1.3.6.1.2.1.2.2.1.4.16|2|9214 +1.3.6.1.2.1.2.2.1.4.17|2|9214 +1.3.6.1.2.1.2.2.1.4.18|2|9214 +1.3.6.1.2.1.2.2.1.4.19|2|9214 +1.3.6.1.2.1.2.2.1.4.20|2|9214 +1.3.6.1.2.1.2.2.1.4.21|2|9214 +1.3.6.1.2.1.2.2.1.4.22|2|9214 +1.3.6.1.2.1.2.2.1.4.23|2|9214 +1.3.6.1.2.1.2.2.1.4.24|2|9214 +1.3.6.1.2.1.2.2.1.4.999001|2|1500 +1.3.6.1.2.1.2.2.1.4.1000001|2|9214 +1.3.6.1.2.1.2.2.1.4.1000002|2|0 +1.3.6.1.2.1.2.2.1.4.1000101|2|9214 +1.3.6.1.2.1.2.2.1.4.2004094|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4|0:1c:73:b3:bd:72 +1.3.6.1.2.1.2.2.1.6.2|4|0:1c:73:b3:bd:73 +1.3.6.1.2.1.2.2.1.6.3|4|0:1c:73:b3:bd:74 +1.3.6.1.2.1.2.2.1.6.4|4|0:1c:73:b3:bd:75 +1.3.6.1.2.1.2.2.1.6.5|4|0:1c:73:b3:bd:76 +1.3.6.1.2.1.2.2.1.6.6|4|0:1c:73:b3:bd:77 +1.3.6.1.2.1.2.2.1.6.7|4|0:1c:73:b3:bd:78 +1.3.6.1.2.1.2.2.1.6.8|4|0:1c:73:b3:bd:79 +1.3.6.1.2.1.2.2.1.6.9|4|0:1c:73:b3:bd:7a +1.3.6.1.2.1.2.2.1.6.10|4|0:1c:73:b3:bd:7b +1.3.6.1.2.1.2.2.1.6.11|4|0:1c:73:b3:bd:7c +1.3.6.1.2.1.2.2.1.6.12|4|0:1c:73:b3:bd:7d +1.3.6.1.2.1.2.2.1.6.13|4|0:1c:73:b3:bd:7e +1.3.6.1.2.1.2.2.1.6.14|4|0:1c:73:b3:bd:7f +1.3.6.1.2.1.2.2.1.6.15|4|0:1c:73:b3:bd:80 +1.3.6.1.2.1.2.2.1.6.16|4|0:1c:73:b3:bd:81 +1.3.6.1.2.1.2.2.1.6.17|4|0:1c:73:b3:bd:82 +1.3.6.1.2.1.2.2.1.6.18|4|0:1c:73:b3:bd:83 +1.3.6.1.2.1.2.2.1.6.19|4|0:1c:73:b3:bd:84 +1.3.6.1.2.1.2.2.1.6.20|4|0:1c:73:b3:bd:85 +1.3.6.1.2.1.2.2.1.6.21|4|0:1c:73:b3:bd:86 +1.3.6.1.2.1.2.2.1.6.22|4|0:1c:73:b3:bd:87 +1.3.6.1.2.1.2.2.1.6.23|4|0:1c:73:b3:bd:88 +1.3.6.1.2.1.2.2.1.6.24|4|0:1c:73:b3:bd:89 +1.3.6.1.2.1.2.2.1.6.999001|4|0:1c:73:b3:bd:70 +1.3.6.1.2.1.2.2.1.6.1000001|4|0:1c:73:b3:bd:88 +1.3.6.1.2.1.2.2.1.6.1000002|4|0:1c:73:b3:bd:87 +1.3.6.1.2.1.2.2.1.6.1000101|4|0:1c:73:b3:bd:72 +1.3.6.1.2.1.2.2.1.6.2004094|4|0:1c:73:b3:bd:71 +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|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.23|2|1 +1.3.6.1.2.1.2.2.1.7.24|2|1 +1.3.6.1.2.1.2.2.1.7.999001|2|1 +1.3.6.1.2.1.2.2.1.7.1000001|2|1 +1.3.6.1.2.1.2.2.1.7.1000002|2|1 +1.3.6.1.2.1.2.2.1.7.1000101|2|1 +1.3.6.1.2.1.2.2.1.7.2004094|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|2 +1.3.6.1.2.1.2.2.1.8.3|2|2 +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.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.23|2|1 +1.3.6.1.2.1.2.2.1.8.24|2|1 +1.3.6.1.2.1.2.2.1.8.999001|2|1 +1.3.6.1.2.1.2.2.1.8.1000001|2|1 +1.3.6.1.2.1.2.2.1.8.1000002|2|7 +1.3.6.1.2.1.2.2.1.8.1000101|2|1 +1.3.6.1.2.1.2.2.1.8.2004094|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|7980 +1.3.6.1.2.1.2.2.1.9.3|67|8051 +1.3.6.1.2.1.2.2.1.9.4|67|7980 +1.3.6.1.2.1.2.2.1.9.5|67|8051 +1.3.6.1.2.1.2.2.1.9.6|67|7980 +1.3.6.1.2.1.2.2.1.9.7|67|8051 +1.3.6.1.2.1.2.2.1.9.8|67|7980 +1.3.6.1.2.1.2.2.1.9.9|67|8051 +1.3.6.1.2.1.2.2.1.9.10|67|7980 +1.3.6.1.2.1.2.2.1.9.11|67|8051 +1.3.6.1.2.1.2.2.1.9.12|67|7980 +1.3.6.1.2.1.2.2.1.9.13|67|8051 +1.3.6.1.2.1.2.2.1.9.14|67|7980 +1.3.6.1.2.1.2.2.1.9.15|67|8084 +1.3.6.1.2.1.2.2.1.9.16|67|7902 +1.3.6.1.2.1.2.2.1.9.17|67|8051 +1.3.6.1.2.1.2.2.1.9.18|67|7980 +1.3.6.1.2.1.2.2.1.9.19|67|8051 +1.3.6.1.2.1.2.2.1.9.20|67|7980 +1.3.6.1.2.1.2.2.1.9.21|67|8051 +1.3.6.1.2.1.2.2.1.9.22|67|7980 +1.3.6.1.2.1.2.2.1.9.23|67|8377 +1.3.6.1.2.1.2.2.1.9.24|67|8377 +1.3.6.1.2.1.2.2.1.9.999001|67|28193 +1.3.6.1.2.1.2.2.1.9.1000001|67|8580 +1.3.6.1.2.1.2.2.1.9.1000002|67|1145467 +1.3.6.1.2.1.2.2.1.9.1000101|67|0 +1.3.6.1.2.1.2.2.1.9.2004094|67|6488 +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.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.999001|65|0 +1.3.6.1.2.1.2.2.1.13.1000001|65|0 +1.3.6.1.2.1.2.2.1.13.1000002|65|0 +1.3.6.1.2.1.2.2.1.13.1000101|65|0 +1.3.6.1.2.1.2.2.1.13.2004094|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.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.999001|65|0 +1.3.6.1.2.1.2.2.1.14.1000001|65|0 +1.3.6.1.2.1.2.2.1.14.1000002|65|0 +1.3.6.1.2.1.2.2.1.14.1000101|65|0 +1.3.6.1.2.1.2.2.1.14.2004094|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.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.999001|65|0 +1.3.6.1.2.1.2.2.1.19.1000001|65|0 +1.3.6.1.2.1.2.2.1.19.1000002|65|0 +1.3.6.1.2.1.2.2.1.19.1000101|65|0 +1.3.6.1.2.1.2.2.1.19.2004094|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.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.999001|65|0 +1.3.6.1.2.1.2.2.1.20.1000001|65|0 +1.3.6.1.2.1.2.2.1.20.1000002|65|0 +1.3.6.1.2.1.2.2.1.20.1000101|65|0 +1.3.6.1.2.1.2.2.1.20.2004094|65|0 +1.3.6.1.2.1.4.20.1.1.169.254.1.1|64|169.254.1.1 +1.3.6.1.2.1.4.20.1.2.169.254.1.1|2|2004094 +1.3.6.1.2.1.4.20.1.3.169.254.1.1|64|255.255.255.252 +1.3.6.1.2.1.4.22.1.2.2004094.169.254.1.2|4|0:1c:73:b3:af:bb +1.3.6.1.2.1.4.24.3.0|66|1 +1.3.6.1.2.1.4.24.4.1.1.169.254.1.0.255.255.255.252.0.0.0.0.0|64|169.254.1.0 +1.3.6.1.2.1.4.24.4.1.2.169.254.1.0.255.255.255.252.0.0.0.0.0|64|255.255.255.252 +1.3.6.1.2.1.4.24.4.1.3.169.254.1.0.255.255.255.252.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.4.169.254.1.0.255.255.255.252.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.5.169.254.1.0.255.255.255.252.0.0.0.0.0|2|2004094 +1.3.6.1.2.1.4.24.4.1.6.169.254.1.0.255.255.255.252.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.4.1.7.169.254.1.0.255.255.255.252.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.8.169.254.1.0.255.255.255.252.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.9.169.254.1.0.255.255.255.252.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.10.169.254.1.0.255.255.255.252.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.169.254.1.0.255.255.255.252.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.4.1.12.169.254.1.0.255.255.255.252.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.13.169.254.1.0.255.255.255.252.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.169.254.1.0.255.255.255.252.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.169.254.1.0.255.255.255.252.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.16.169.254.1.0.255.255.255.252.0.0.0.0.0|2|1 +1.3.6.1.2.1.5.1.0|65|544 +1.3.6.1.2.1.5.2.0|65|2 +1.3.6.1.2.1.5.3.0|65|544 +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|0 +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|544 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|544 +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|0 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|544 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|2 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|544 +1.3.6.1.2.1.5.29.1.4.2|65|0 +1.3.6.1.2.1.5.29.1.5.1|65|0 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|544 +1.3.6.1.2.1.5.30.1.3.1.4|65|0 +1.3.6.1.2.1.5.30.1.3.1.5|65|0 +1.3.6.1.2.1.5.30.1.3.1.8|65|0 +1.3.6.1.2.1.5.30.1.3.1.11|65|0 +1.3.6.1.2.1.5.30.1.3.1.12|65|0 +1.3.6.1.2.1.5.30.1.3.1.13|65|0 +1.3.6.1.2.1.5.30.1.3.1.14|65|0 +1.3.6.1.2.1.5.30.1.3.1.17|65|0 +1.3.6.1.2.1.5.30.1.3.1.18|65|0 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|0 +1.3.6.1.2.1.5.30.1.3.2.129|65|0 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.136|65|0 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|0 +1.3.6.1.2.1.5.30.1.4.1.3|65|544 +1.3.6.1.2.1.5.30.1.4.1.4|65|0 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.1.11|65|0 +1.3.6.1.2.1.5.30.1.4.1.12|65|0 +1.3.6.1.2.1.5.30.1.4.1.13|65|0 +1.3.6.1.2.1.5.30.1.4.1.14|65|0 +1.3.6.1.2.1.5.30.1.4.1.17|65|0 +1.3.6.1.2.1.5.30.1.4.1.18|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|0 +1.3.6.1.2.1.5.30.1.4.2.129|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|0 +1.3.6.1.2.1.5.30.1.4.2.136|65|0 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.6.5.0|65|693 +1.3.6.1.2.1.6.6.0|65|693 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|1 +1.3.6.1.2.1.6.9.0|66|4 +1.3.6.1.2.1.6.10.0|65|1126446 +1.3.6.1.2.1.6.11.0|65|1126449 +1.3.6.1.2.1.6.12.0|65|1 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|1 +1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.705.1.4.127.0.0.1.49463|2|5 +1.3.6.1.2.1.7.1.0|65|123416 +1.3.6.1.2.1.7.2.0|65|542 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|123960 +1.3.6.1.2.1.10.7.2.1.1.1|2|1 +1.3.6.1.2.1.10.7.2.1.1.2|2|2 +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.4|2|4 +1.3.6.1.2.1.10.7.2.1.1.5|2|5 +1.3.6.1.2.1.10.7.2.1.1.6|2|6 +1.3.6.1.2.1.10.7.2.1.1.7|2|7 +1.3.6.1.2.1.10.7.2.1.1.8|2|8 +1.3.6.1.2.1.10.7.2.1.1.9|2|9 +1.3.6.1.2.1.10.7.2.1.1.10|2|10 +1.3.6.1.2.1.10.7.2.1.1.11|2|11 +1.3.6.1.2.1.10.7.2.1.1.12|2|12 +1.3.6.1.2.1.10.7.2.1.1.13|2|13 +1.3.6.1.2.1.10.7.2.1.1.14|2|14 +1.3.6.1.2.1.10.7.2.1.1.15|2|15 +1.3.6.1.2.1.10.7.2.1.1.16|2|16 +1.3.6.1.2.1.10.7.2.1.1.17|2|17 +1.3.6.1.2.1.10.7.2.1.1.18|2|18 +1.3.6.1.2.1.10.7.2.1.1.19|2|19 +1.3.6.1.2.1.10.7.2.1.1.20|2|20 +1.3.6.1.2.1.10.7.2.1.1.21|2|21 +1.3.6.1.2.1.10.7.2.1.1.22|2|22 +1.3.6.1.2.1.10.7.2.1.1.23|2|23 +1.3.6.1.2.1.10.7.2.1.1.24|2|24 +1.3.6.1.2.1.10.7.2.1.1.999001|2|999001 +1.3.6.1.2.1.10.7.2.1.19.1|2|3 +1.3.6.1.2.1.10.7.2.1.19.2|2|1 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +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.10.7.2.1.19.10|2|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.10.7.2.1.19.12|2|1 +1.3.6.1.2.1.10.7.2.1.19.13|2|1 +1.3.6.1.2.1.10.7.2.1.19.14|2|1 +1.3.6.1.2.1.10.7.2.1.19.15|2|1 +1.3.6.1.2.1.10.7.2.1.19.16|2|1 +1.3.6.1.2.1.10.7.2.1.19.17|2|1 +1.3.6.1.2.1.10.7.2.1.19.18|2|1 +1.3.6.1.2.1.10.7.2.1.19.19|2|1 +1.3.6.1.2.1.10.7.2.1.19.20|2|1 +1.3.6.1.2.1.10.7.2.1.19.21|2|3 +1.3.6.1.2.1.10.7.2.1.19.22|2|3 +1.3.6.1.2.1.10.7.2.1.19.23|2|3 +1.3.6.1.2.1.10.7.2.1.19.24|2|3 +1.3.6.1.2.1.10.7.2.1.19.999001|2|3 +1.3.6.1.2.1.11.1.0|65|669456 +1.3.6.1.2.1.11.2.0|65|669550 +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|5301215 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|73532 +1.3.6.1.2.1.11.16.0|65|107301 +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|669457 +1.3.6.1.2.1.11.29.0|65|95 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.16.1.1.1.1.1|2|1 +1.3.6.1.2.1.17.1.4.1.2.1|2|1 +1.3.6.1.2.1.17.1.4.1.2.2|2|2 +1.3.6.1.2.1.17.1.4.1.2.3|2|3 +1.3.6.1.2.1.17.1.4.1.2.4|2|4 +1.3.6.1.2.1.17.1.4.1.2.5|2|5 +1.3.6.1.2.1.17.1.4.1.2.6|2|6 +1.3.6.1.2.1.17.1.4.1.2.7|2|7 +1.3.6.1.2.1.17.1.4.1.2.8|2|8 +1.3.6.1.2.1.17.1.4.1.2.9|2|9 +1.3.6.1.2.1.17.1.4.1.2.10|2|10 +1.3.6.1.2.1.17.1.4.1.2.11|2|11 +1.3.6.1.2.1.17.1.4.1.2.12|2|12 +1.3.6.1.2.1.17.1.4.1.2.13|2|13 +1.3.6.1.2.1.17.1.4.1.2.14|2|14 +1.3.6.1.2.1.17.1.4.1.2.15|2|15 +1.3.6.1.2.1.17.1.4.1.2.16|2|16 +1.3.6.1.2.1.17.1.4.1.2.17|2|17 +1.3.6.1.2.1.17.1.4.1.2.18|2|18 +1.3.6.1.2.1.17.1.4.1.2.19|2|19 +1.3.6.1.2.1.17.1.4.1.2.20|2|20 +1.3.6.1.2.1.17.1.4.1.2.21|2|21 +1.3.6.1.2.1.17.1.4.1.2.22|2|22 +1.3.6.1.2.1.17.1.4.1.2.23|2|23 +1.3.6.1.2.1.17.1.4.1.2.24|2|24 +1.3.6.1.2.1.17.1.4.1.2.97|2|999001 +1.3.6.1.2.1.17.1.4.1.2.100|2|1000001 +1.3.6.1.2.1.17.1.4.1.2.101|2|1000101 +1.3.6.1.2.1.17.1.4.1.2.103|2|1000002 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.4094.0.28.115.179.175.187|2|100 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.30|66|30 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.31|66|31 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.50|66|50 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.139|66|139 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.4094|66|4094 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.30|4x|00000000000000000000000010 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.31|4x|00000000000000000000000018 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.50|4x|00000000000000000000000010 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.139|4x|00000000000000000000000010 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.4094|4x|00000000000000000000000010 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.30|4| +1.3.6.1.2.1.17.7.1.4.2.1.5.0.31|4| +1.3.6.1.2.1.17.7.1.4.2.1.5.0.50|4| +1.3.6.1.2.1.17.7.1.4.2.1.5.0.139|4| +1.3.6.1.2.1.17.7.1.4.2.1.5.0.4094|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.30|4|vlanname1 +1.3.6.1.2.1.17.7.1.4.3.1.1.31|4|vlanname2 +1.3.6.1.2.1.17.7.1.4.3.1.1.50|4|Management +1.3.6.1.2.1.17.7.1.4.3.1.1.139|4|vlanname3 +1.3.6.1.2.1.17.7.1.4.3.1.1.4094|4|MLAG-PO1 +1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.6|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.7|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.8|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.9|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.10|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.11|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.12|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.13|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.14|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.15|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.16|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.17|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.18|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.19|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.20|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.21|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.22|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.23|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.24|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.100|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.101|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.103|66|1 +1.3.6.1.2.1.25.1.1.0|67|49395800 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|261 +1.3.6.1.2.1.25.2.2.0|2|3956120 +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.2|2|2 +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.4|2|4 +1.3.6.1.2.1.25.2.3.1.1.5|2|5 +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.2.1|6|1.3.6.1.2.1.25.2.1.2 +1.3.6.1.2.1.25.2.3.1.2.2|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.2 +1.3.6.1.2.1.25.2.3.1.2.4|6|1.3.6.1.2.1.25.2.1.9 +1.3.6.1.2.1.25.2.3.1.2.5|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.3 +1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.3.1|4|RAM +1.3.6.1.2.1.25.2.3.1.3.2|4|RAM (Buffers) +1.3.6.1.2.1.25.2.3.1.3.3|4|RAM (Cache) +1.3.6.1.2.1.25.2.3.1.3.4|4|Flash +1.3.6.1.2.1.25.2.3.1.3.5|4|Tmp +1.3.6.1.2.1.25.2.3.1.3.6|4|Root +1.3.6.1.2.1.25.2.3.1.3.7|4|Log +1.3.6.1.2.1.25.2.3.1.3.8|4|Core +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.2|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.4|2|4096 +1.3.6.1.2.1.25.2.3.1.4.5|2|4096 +1.3.6.1.2.1.25.2.3.1.4.6|2|4096 +1.3.6.1.2.1.25.2.3.1.4.7|2|4096 +1.3.6.1.2.1.25.2.3.1.4.8|2|4096 +1.3.6.1.2.1.25.2.3.1.5.1|2|3956120 +1.3.6.1.2.1.25.2.3.1.5.2|2|3956120 +1.3.6.1.2.1.25.2.3.1.5.3|2|3956120 +1.3.6.1.2.1.25.2.3.1.5.4|2|386808 +1.3.6.1.2.1.25.2.3.1.5.5|2|16384 +1.3.6.1.2.1.25.2.3.1.5.6|2|148355 +1.3.6.1.2.1.25.2.3.1.5.7|2|98903 +1.3.6.1.2.1.25.2.3.1.5.8|2|98903 +1.3.6.1.2.1.25.2.3.1.6.1|2|3174044 +1.3.6.1.2.1.25.2.3.1.6.2|2|192108 +1.3.6.1.2.1.25.2.3.1.6.3|2|2145960 +1.3.6.1.2.1.25.2.3.1.6.4|2|307676 +1.3.6.1.2.1.25.2.3.1.6.5|2|148 +1.3.6.1.2.1.25.2.3.1.6.6|2|13052 +1.3.6.1.2.1.25.2.3.1.6.7|2|13861 +1.3.6.1.2.1.25.2.3.1.6.8|2|0 +1.3.6.1.2.1.25.2.3.1.7.1|65|0 +1.3.6.1.2.1.25.2.3.1.7.2|65|0 +1.3.6.1.2.1.25.2.3.1.7.3|65|0 +1.3.6.1.2.1.25.2.3.1.7.4|65|0 +1.3.6.1.2.1.25.2.3.1.7.5|65|0 +1.3.6.1.2.1.25.2.3.1.7.6|65|0 +1.3.6.1.2.1.25.2.3.1.7.7|65|0 +1.3.6.1.2.1.25.2.3.1.7.8|65|0 +1.3.6.1.2.1.25.3.2.1.1.1|2|1 +1.3.6.1.2.1.25.3.2.1.1.2|2|2 +1.3.6.1.2.1.25.3.2.1.1.3|2|3 +1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.3|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.3.1|4|AMD Turion(tm) II Neo N41H Dual-Core Processor +1.3.6.1.2.1.25.3.2.1.3.2|4|Core 1 +1.3.6.1.2.1.25.3.2.1.3.3|4|Core 2 +1.3.6.1.2.1.25.3.2.1.4.1|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.2|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.3|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.1|2|2 +1.3.6.1.2.1.25.3.2.1.5.2|2|2 +1.3.6.1.2.1.25.3.2.1.5.3|2|2 +1.3.6.1.2.1.25.3.2.1.6.1|65|0 +1.3.6.1.2.1.25.3.2.1.6.2|65|0 +1.3.6.1.2.1.25.3.2.1.6.3|65|0 +1.3.6.1.2.1.25.3.3.1.1.1|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.2|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.3|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.1|2|8 +1.3.6.1.2.1.25.3.3.1.2.2|2|8 +1.3.6.1.2.1.25.3.3.1.2.3|2|8 +1.3.6.1.2.1.31.1.1.1.1.1|4|Ethernet1 +1.3.6.1.2.1.31.1.1.1.1.2|4|Ethernet2 +1.3.6.1.2.1.31.1.1.1.1.3|4|Ethernet3 +1.3.6.1.2.1.31.1.1.1.1.4|4|Ethernet4 +1.3.6.1.2.1.31.1.1.1.1.5|4|Ethernet5 +1.3.6.1.2.1.31.1.1.1.1.6|4|Ethernet6 +1.3.6.1.2.1.31.1.1.1.1.7|4|Ethernet7 +1.3.6.1.2.1.31.1.1.1.1.8|4|Ethernet8 +1.3.6.1.2.1.31.1.1.1.1.9|4|Ethernet9 +1.3.6.1.2.1.31.1.1.1.1.10|4|Ethernet10 +1.3.6.1.2.1.31.1.1.1.1.11|4|Ethernet11 +1.3.6.1.2.1.31.1.1.1.1.12|4|Ethernet12 +1.3.6.1.2.1.31.1.1.1.1.13|4|Ethernet13 +1.3.6.1.2.1.31.1.1.1.1.14|4|Ethernet14 +1.3.6.1.2.1.31.1.1.1.1.15|4|Ethernet15 +1.3.6.1.2.1.31.1.1.1.1.16|4|Ethernet16 +1.3.6.1.2.1.31.1.1.1.1.17|4|Ethernet17 +1.3.6.1.2.1.31.1.1.1.1.18|4|Ethernet18 +1.3.6.1.2.1.31.1.1.1.1.19|4|Ethernet19 +1.3.6.1.2.1.31.1.1.1.1.20|4|Ethernet20 +1.3.6.1.2.1.31.1.1.1.1.21|4|Ethernet21 +1.3.6.1.2.1.31.1.1.1.1.22|4|Ethernet22 +1.3.6.1.2.1.31.1.1.1.1.23|4|Ethernet23 +1.3.6.1.2.1.31.1.1.1.1.24|4|Ethernet24 +1.3.6.1.2.1.31.1.1.1.1.999001|4|Management1 +1.3.6.1.2.1.31.1.1.1.1.1000001|4|Port-Channel1 +1.3.6.1.2.1.31.1.1.1.1.1000002|4|Port-Channel2 +1.3.6.1.2.1.31.1.1.1.1.1000101|4|Port-Channel101 +1.3.6.1.2.1.31.1.1.1.1.2004094|4|Vlan4094 +1.3.6.1.2.1.31.1.1.1.2.1|65|32884 +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.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.23|65|32926 +1.3.6.1.2.1.31.1.1.1.2.24|65|32922 +1.3.6.1.2.1.31.1.1.1.2.999001|65|1138181 +1.3.6.1.2.1.31.1.1.1.2.1000001|65|65842 +1.3.6.1.2.1.31.1.1.1.2.1000002|65|0 +1.3.6.1.2.1.31.1.1.1.2.1000101|65|32854 +1.3.6.1.2.1.31.1.1.1.2.2004094|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.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.23|65|0 +1.3.6.1.2.1.31.1.1.1.3.24|65|0 +1.3.6.1.2.1.31.1.1.1.3.999001|65|1256382 +1.3.6.1.2.1.31.1.1.1.3.1000001|65|0 +1.3.6.1.2.1.31.1.1.1.3.1000002|65|0 +1.3.6.1.2.1.31.1.1.1.3.1000101|65|0 +1.3.6.1.2.1.31.1.1.1.3.2004094|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|32869 +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.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.23|65|32927 +1.3.6.1.2.1.31.1.1.1.4.24|65|32923 +1.3.6.1.2.1.31.1.1.1.4.999001|65|16452 +1.3.6.1.2.1.31.1.1.1.4.1000001|65|65844 +1.3.6.1.2.1.31.1.1.1.4.1000002|65|0 +1.3.6.1.2.1.31.1.1.1.4.1000101|65|32859 +1.3.6.1.2.1.31.1.1.1.4.2004094|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.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.14|65|0 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|0 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.5.19|65|0 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.23|65|1 +1.3.6.1.2.1.31.1.1.1.5.24|65|0 +1.3.6.1.2.1.31.1.1.1.5.999001|65|8 +1.3.6.1.2.1.31.1.1.1.5.1000001|65|1 +1.3.6.1.2.1.31.1.1.1.5.1000002|65|0 +1.3.6.1.2.1.31.1.1.1.5.1000101|65|0 +1.3.6.1.2.1.31.1.1.1.5.2004094|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|6576944 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|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.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|0 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|0 +1.3.6.1.2.1.31.1.1.1.6.23|70|87099515 +1.3.6.1.2.1.31.1.1.1.6.24|70|5530958 +1.3.6.1.2.1.31.1.1.1.6.999001|70|290145875 +1.3.6.1.2.1.31.1.1.1.6.1000001|70|92629545 +1.3.6.1.2.1.31.1.1.1.6.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.6.1000101|70|6570512 +1.3.6.1.2.1.31.1.1.1.6.2004094|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|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.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|0 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|0 +1.3.6.1.2.1.31.1.1.1.7.23|70|987740 +1.3.6.1.2.1.31.1.1.1.7.24|70|2 +1.3.6.1.2.1.31.1.1.1.7.999001|70|790837 +1.3.6.1.2.1.31.1.1.1.7.1000001|70|987742 +1.3.6.1.2.1.31.1.1.1.7.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.7.1000101|70|0 +1.3.6.1.2.1.31.1.1.1.7.2004094|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|32884 +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.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.23|70|32926 +1.3.6.1.2.1.31.1.1.1.8.24|70|32922 +1.3.6.1.2.1.31.1.1.1.8.999001|70|1138181 +1.3.6.1.2.1.31.1.1.1.8.1000001|70|65842 +1.3.6.1.2.1.31.1.1.1.8.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.8.1000101|70|32854 +1.3.6.1.2.1.31.1.1.1.8.2004094|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.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.23|70|0 +1.3.6.1.2.1.31.1.1.1.9.24|70|0 +1.3.6.1.2.1.31.1.1.1.9.999001|70|1256382 +1.3.6.1.2.1.31.1.1.1.9.1000001|70|0 +1.3.6.1.2.1.31.1.1.1.9.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.9.1000101|70|0 +1.3.6.1.2.1.31.1.1.1.9.2004094|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|5488273 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|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.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|0 +1.3.6.1.2.1.31.1.1.1.10.14|70|0 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|0 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.19|70|0 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|0 +1.3.6.1.2.1.31.1.1.1.10.22|70|0 +1.3.6.1.2.1.31.1.1.1.10.23|70|58273893 +1.3.6.1.2.1.31.1.1.1.10.24|70|40264660 +1.3.6.1.2.1.31.1.1.1.10.999001|70|170301078 +1.3.6.1.2.1.31.1.1.1.10.1000001|70|98537321 +1.3.6.1.2.1.31.1.1.1.10.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.10.1000101|70|5486462 +1.3.6.1.2.1.31.1.1.1.10.2004094|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|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.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|0 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|0 +1.3.6.1.2.1.31.1.1.1.11.23|70|616789 +1.3.6.1.2.1.31.1.1.1.11.24|70|370960 +1.3.6.1.2.1.31.1.1.1.11.999001|70|735436 +1.3.6.1.2.1.31.1.1.1.11.1000001|70|987744 +1.3.6.1.2.1.31.1.1.1.11.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.11.1000101|70|0 +1.3.6.1.2.1.31.1.1.1.11.2004094|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|32869 +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.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.23|70|32927 +1.3.6.1.2.1.31.1.1.1.12.24|70|32923 +1.3.6.1.2.1.31.1.1.1.12.999001|70|16452 +1.3.6.1.2.1.31.1.1.1.12.1000001|70|65844 +1.3.6.1.2.1.31.1.1.1.12.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.12.1000101|70|32859 +1.3.6.1.2.1.31.1.1.1.12.2004094|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.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.14|70|0 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|0 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.13.19|70|0 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.23|70|1 +1.3.6.1.2.1.31.1.1.1.13.24|70|0 +1.3.6.1.2.1.31.1.1.1.13.999001|70|8 +1.3.6.1.2.1.31.1.1.1.13.1000001|70|1 +1.3.6.1.2.1.31.1.1.1.13.1000002|70|0 +1.3.6.1.2.1.31.1.1.1.13.1000101|70|0 +1.3.6.1.2.1.31.1.1.1.13.2004094|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|1 +1.3.6.1.2.1.31.1.1.1.14.5|2|1 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.999001|2|1 +1.3.6.1.2.1.31.1.1.1.14.1000001|2|1 +1.3.6.1.2.1.31.1.1.1.14.1000002|2|1 +1.3.6.1.2.1.31.1.1.1.14.1000101|2|1 +1.3.6.1.2.1.31.1.1.1.14.2004094|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|1000 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.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.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +1.3.6.1.2.1.31.1.1.1.15.13|66|0 +1.3.6.1.2.1.31.1.1.1.15.14|66|0 +1.3.6.1.2.1.31.1.1.1.15.15|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.17|66|0 +1.3.6.1.2.1.31.1.1.1.15.18|66|0 +1.3.6.1.2.1.31.1.1.1.15.19|66|0 +1.3.6.1.2.1.31.1.1.1.15.20|66|0 +1.3.6.1.2.1.31.1.1.1.15.21|66|1000 +1.3.6.1.2.1.31.1.1.1.15.22|66|1000 +1.3.6.1.2.1.31.1.1.1.15.23|66|10000 +1.3.6.1.2.1.31.1.1.1.15.24|66|10000 +1.3.6.1.2.1.31.1.1.1.15.999001|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1000001|66|20000 +1.3.6.1.2.1.31.1.1.1.15.1000002|66|0 +1.3.6.1.2.1.31.1.1.1.15.1000101|66|2000 +1.3.6.1.2.1.31.1.1.1.15.2004094|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.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.999001|2|2 +1.3.6.1.2.1.31.1.1.1.16.1000001|2|2 +1.3.6.1.2.1.31.1.1.1.16.1000002|2|2 +1.3.6.1.2.1.31.1.1.1.16.1000101|2|2 +1.3.6.1.2.1.31.1.1.1.16.2004094|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|1 +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.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.12|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.17.14|2|1 +1.3.6.1.2.1.31.1.1.1.17.15|2|1 +1.3.6.1.2.1.31.1.1.1.17.16|2|1 +1.3.6.1.2.1.31.1.1.1.17.17|2|1 +1.3.6.1.2.1.31.1.1.1.17.18|2|1 +1.3.6.1.2.1.31.1.1.1.17.19|2|1 +1.3.6.1.2.1.31.1.1.1.17.20|2|1 +1.3.6.1.2.1.31.1.1.1.17.21|2|1 +1.3.6.1.2.1.31.1.1.1.17.22|2|1 +1.3.6.1.2.1.31.1.1.1.17.23|2|1 +1.3.6.1.2.1.31.1.1.1.17.24|2|1 +1.3.6.1.2.1.31.1.1.1.17.999001|2|1 +1.3.6.1.2.1.31.1.1.1.17.1000001|2|2 +1.3.6.1.2.1.31.1.1.1.17.1000002|2|2 +1.3.6.1.2.1.31.1.1.1.17.1000101|2|2 +1.3.6.1.2.1.31.1.1.1.17.2004094|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4|trunk to switchname2 +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.2.1.31.1.1.1.18.18|4| +1.3.6.1.2.1.31.1.1.1.18.19|4| +1.3.6.1.2.1.31.1.1.1.18.20|4| +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4|uplink +1.3.6.1.2.1.31.1.1.1.18.23|4|MLAG-SW1-SW2 #1of2 +1.3.6.1.2.1.31.1.1.1.18.24|4|MLAG-SW1-SW2 #2of2 +1.3.6.1.2.1.31.1.1.1.18.999001|4| +1.3.6.1.2.1.31.1.1.1.18.1000001|4|MLAG-SW1-SW2 +1.3.6.1.2.1.31.1.1.1.18.1000002|4|Uplink +1.3.6.1.2.1.31.1.1.1.18.1000101|4|trunk to switchname2 +1.3.6.1.2.1.31.1.1.1.18.2004094|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.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.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.20|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.23|67|0 +1.3.6.1.2.1.31.1.1.1.19.24|67|0 +1.3.6.1.2.1.31.1.1.1.19.999001|67|0 +1.3.6.1.2.1.31.1.1.1.19.1000001|67|6267 +1.3.6.1.2.1.31.1.1.1.19.1000002|67|1145467 +1.3.6.1.2.1.31.1.1.1.19.1000101|67|0 +1.3.6.1.2.1.31.1.1.1.19.2004094|67|6488 +1.3.6.1.2.1.31.1.2.1.3.0.2|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.3|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.5|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.7|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.8|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.9|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.10|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.11|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.13|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.14|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.15|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.17|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.18|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.19|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.20|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.21|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.999001|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1000001|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.2004094|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.2.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.3.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.5.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.6.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.8.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.9.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.13.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.14.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.15.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.16.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.17.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.18.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.19.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.20.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.21.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.22.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.23.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.24.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.999001.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1000001.23|2|1 +1.3.6.1.2.1.31.1.2.1.3.1000001.24|2|1 +1.3.6.1.2.1.31.1.2.1.3.1000002.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1000101.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.2004094.0|2|1 +1.3.6.1.2.1.47.1.1.1.1.2.1|4|24-port SFP+ 10GigE 1RU +1.3.6.1.2.1.47.1.1.1.1.2.100004002|4|Scd Chip 2 +1.3.6.1.2.1.47.1.1.1.1.2.100006001|4|Cpu temp sensor +1.3.6.1.2.1.47.1.1.1.1.2.100006002|4|Rear temp sensor +1.3.6.1.2.1.47.1.1.1.1.2.100006003|4|Board temp sensor +1.3.6.1.2.1.47.1.1.1.1.2.100006004|4|Front-panel temp sensor +1.3.6.1.2.1.47.1.1.1.1.2.100006005|4|Board temp sensor +1.3.6.1.2.1.47.1.1.1.1.2.100006006|4|FM6000 temp sensor +1.3.6.1.2.1.47.1.1.1.1.2.100006007|4|CpucardPwrCon Rail1 12V standby +1.3.6.1.2.1.47.1.1.1.1.2.100006008|4|CpucardPwrCon Rail2 This rail isn't monitored +1.3.6.1.2.1.47.1.1.1.1.2.100006009|4|CpucardPwrCon Rail3 5V +1.3.6.1.2.1.47.1.1.1.1.2.100006010|4|CpucardPwrCon Rail4 3.3V +1.3.6.1.2.1.47.1.1.1.1.2.100006011|4|CpucardPwrCon Rail5 2.5V +1.3.6.1.2.1.47.1.1.1.1.2.100006012|4|CpucardPwrCon Rail6 1.8V +1.3.6.1.2.1.47.1.1.1.1.2.100006013|4|CpucardPwrCon Rail7 1.5V +1.3.6.1.2.1.47.1.1.1.1.2.100006014|4|CpucardPwrCon Rail8 1.1V +1.3.6.1.2.1.47.1.1.1.1.2.100006015|4|CpucardPwrCon Rail9 0.9V +1.3.6.1.2.1.47.1.1.1.1.2.100006016|4|CpucardPwrCon Rail10 0.75V +1.3.6.1.2.1.47.1.1.1.1.2.100006017|4|SwitchcardPwrCon Rail1 POS12V +1.3.6.1.2.1.47.1.1.1.1.2.100006018|4|SwitchcardPwrCon Rail2 POS12_STDBY +1.3.6.1.2.1.47.1.1.1.1.2.100006019|4|SwitchcardPwrCon Rail3 POS5V_STDBY +1.3.6.1.2.1.47.1.1.1.1.2.100006020|4|SwitchcardPwrCon Rail4 POS3V3_STDBY +1.3.6.1.2.1.47.1.1.1.1.2.100006021|4|SwitchcardPwrCon Rail5 POS3V3 +1.3.6.1.2.1.47.1.1.1.1.2.100006022|4|SwitchcardPwrCon Rail6 POS2V5 +1.3.6.1.2.1.47.1.1.1.1.2.100006023|4|SwitchcardPwrCon Rail7 POS_ALTA_AVDD +1.3.6.1.2.1.47.1.1.1.1.2.100006024|4|SwitchcardPwrCon Rail8 POS1V2 +1.3.6.1.2.1.47.1.1.1.1.2.100006025|4|SwitchcardPwrCon Rail9 POS_VDD_ALTA +1.3.6.1.2.1.47.1.1.1.1.2.100006026|4|SwitchcardPwrCon Rail10 POS_VDDS +1.3.6.1.2.1.47.1.1.1.1.2.100006027|4|SwitchcardPwrCon Rail11 POS3V3_VF +1.3.6.1.2.1.47.1.1.1.1.2.100006028|4|SwitchcardPwrCon Rail12 POS1V2_GTP +1.3.6.1.2.1.47.1.1.1.1.2.100006029|4|SwitchcardPwrCon Rail13 POS_GATEDRIVE +1.3.6.1.2.1.47.1.1.1.1.2.100006030|4|SwitchcardPwrCon Rail14 POS2V5_156 +1.3.6.1.2.1.47.1.1.1.1.2.100006031|4|SwitchcardPwrCon Rail15 POS2V5_125 +1.3.6.1.2.1.47.1.1.1.1.2.100006032|4|SwitchcardPwrCon Rail16 PSU_OK +1.3.6.1.2.1.47.1.1.1.1.2.100006033|4|Chl822xPwrCon Rail1 POS_ALTA_AVDD +1.3.6.1.2.1.47.1.1.1.1.2.100006034|4|Chl822xPwrCon Rail2 POS_VDD_ALTA +1.3.6.1.2.1.47.1.1.1.1.2.100015001|4|Ucd Chip 11001 +1.3.6.1.2.1.47.1.1.1.1.2.100015002|4|Ucd Chip 11002 +1.3.6.1.2.1.47.1.1.1.1.2.100100001|4|Ethernet1 +1.3.6.1.2.1.47.1.1.1.1.2.100100002|4|Ethernet2 +1.3.6.1.2.1.47.1.1.1.1.2.100100003|4|Ethernet3 +1.3.6.1.2.1.47.1.1.1.1.2.100100004|4|Ethernet4 +1.3.6.1.2.1.47.1.1.1.1.2.100100005|4|Ethernet5 +1.3.6.1.2.1.47.1.1.1.1.2.100100006|4|Ethernet6 +1.3.6.1.2.1.47.1.1.1.1.2.100100007|4|Ethernet7 +1.3.6.1.2.1.47.1.1.1.1.2.100100008|4|Ethernet8 +1.3.6.1.2.1.47.1.1.1.1.2.100100009|4|Ethernet9 +1.3.6.1.2.1.47.1.1.1.1.2.100100010|4|Ethernet10 +1.3.6.1.2.1.47.1.1.1.1.2.100100011|4|Ethernet11 +1.3.6.1.2.1.47.1.1.1.1.2.100100012|4|Ethernet12 +1.3.6.1.2.1.47.1.1.1.1.2.100100013|4|Ethernet13 +1.3.6.1.2.1.47.1.1.1.1.2.100100014|4|Ethernet14 +1.3.6.1.2.1.47.1.1.1.1.2.100100015|4|Ethernet15 +1.3.6.1.2.1.47.1.1.1.1.2.100100016|4|Ethernet16 +1.3.6.1.2.1.47.1.1.1.1.2.100100017|4|Ethernet17 +1.3.6.1.2.1.47.1.1.1.1.2.100100018|4|Ethernet18 +1.3.6.1.2.1.47.1.1.1.1.2.100100019|4|Ethernet19 +1.3.6.1.2.1.47.1.1.1.1.2.100100020|4|Ethernet20 +1.3.6.1.2.1.47.1.1.1.1.2.100100021|4|Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100100022|4|Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100100023|4|Ethernet23 +1.3.6.1.2.1.47.1.1.1.1.2.100100024|4|Ethernet24 +1.3.6.1.2.1.47.1.1.1.1.2.100110025|4|Management1 +1.3.6.1.2.1.47.1.1.1.1.2.100301000|4|Xcvr Slot 1 +1.3.6.1.2.1.47.1.1.1.1.2.100301100|4|Xcvr for Ethernet1 +1.3.6.1.2.1.47.1.1.1.1.2.100302000|4|Xcvr Slot 2 +1.3.6.1.2.1.47.1.1.1.1.2.100302100|4|Xcvr for Ethernet2 +1.3.6.1.2.1.47.1.1.1.1.2.100303000|4|Xcvr Slot 3 +1.3.6.1.2.1.47.1.1.1.1.2.100303100|4|Xcvr for Ethernet3 +1.3.6.1.2.1.47.1.1.1.1.2.100304000|4|Xcvr Slot 4 +1.3.6.1.2.1.47.1.1.1.1.2.100304100|4|Xcvr for Ethernet4 +1.3.6.1.2.1.47.1.1.1.1.2.100305000|4|Xcvr Slot 5 +1.3.6.1.2.1.47.1.1.1.1.2.100305100|4|Xcvr for Ethernet5 +1.3.6.1.2.1.47.1.1.1.1.2.100306000|4|Xcvr Slot 6 +1.3.6.1.2.1.47.1.1.1.1.2.100306100|4|Xcvr for Ethernet6 +1.3.6.1.2.1.47.1.1.1.1.2.100307000|4|Xcvr Slot 7 +1.3.6.1.2.1.47.1.1.1.1.2.100307100|4|Xcvr for Ethernet7 +1.3.6.1.2.1.47.1.1.1.1.2.100308000|4|Xcvr Slot 8 +1.3.6.1.2.1.47.1.1.1.1.2.100308100|4|Xcvr for Ethernet8 +1.3.6.1.2.1.47.1.1.1.1.2.100309000|4|Xcvr Slot 9 +1.3.6.1.2.1.47.1.1.1.1.2.100309100|4|Xcvr for Ethernet9 +1.3.6.1.2.1.47.1.1.1.1.2.100310000|4|Xcvr Slot 10 +1.3.6.1.2.1.47.1.1.1.1.2.100310100|4|Xcvr for Ethernet10 +1.3.6.1.2.1.47.1.1.1.1.2.100311000|4|Xcvr Slot 11 +1.3.6.1.2.1.47.1.1.1.1.2.100311100|4|Xcvr for Ethernet11 +1.3.6.1.2.1.47.1.1.1.1.2.100312000|4|Xcvr Slot 12 +1.3.6.1.2.1.47.1.1.1.1.2.100312100|4|Xcvr for Ethernet12 +1.3.6.1.2.1.47.1.1.1.1.2.100313000|4|Xcvr Slot 13 +1.3.6.1.2.1.47.1.1.1.1.2.100313100|4|Xcvr for Ethernet13 +1.3.6.1.2.1.47.1.1.1.1.2.100314000|4|Xcvr Slot 14 +1.3.6.1.2.1.47.1.1.1.1.2.100314100|4|Xcvr for Ethernet14 +1.3.6.1.2.1.47.1.1.1.1.2.100315000|4|Xcvr Slot 15 +1.3.6.1.2.1.47.1.1.1.1.2.100315100|4|Xcvr for Ethernet15 +1.3.6.1.2.1.47.1.1.1.1.2.100316000|4|Xcvr Slot 16 +1.3.6.1.2.1.47.1.1.1.1.2.100316100|4|Xcvr for Ethernet16 +1.3.6.1.2.1.47.1.1.1.1.2.100317000|4|Xcvr Slot 17 +1.3.6.1.2.1.47.1.1.1.1.2.100317100|4|Xcvr for Ethernet17 +1.3.6.1.2.1.47.1.1.1.1.2.100318000|4|Xcvr Slot 18 +1.3.6.1.2.1.47.1.1.1.1.2.100318100|4|Xcvr for Ethernet18 +1.3.6.1.2.1.47.1.1.1.1.2.100319000|4|Xcvr Slot 19 +1.3.6.1.2.1.47.1.1.1.1.2.100319100|4|Xcvr for Ethernet19 +1.3.6.1.2.1.47.1.1.1.1.2.100320000|4|Xcvr Slot 20 +1.3.6.1.2.1.47.1.1.1.1.2.100320100|4|Xcvr for Ethernet20 +1.3.6.1.2.1.47.1.1.1.1.2.100321000|4|Xcvr Slot 21 +1.3.6.1.2.1.47.1.1.1.1.2.100321100|4|Xcvr for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100321201|4|DOM Temperature Sensor for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100321202|4|DOM Voltage Sensor for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100321210|4|Lane 0 for Xcvr for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100321211|4|DOM TX Bias Sensor for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100321212|4|DOM TX Power Sensor for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100321213|4|DOM RX Power Sensor for Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.2.100322000|4|Xcvr Slot 22 +1.3.6.1.2.1.47.1.1.1.1.2.100322100|4|Xcvr for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100322201|4|DOM Temperature Sensor for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100322202|4|DOM Voltage Sensor for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100322210|4|Lane 0 for Xcvr for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100322211|4|DOM TX Bias Sensor for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100322212|4|DOM TX Power Sensor for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100322213|4|DOM RX Power Sensor for Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.2.100323000|4|Xcvr Slot 23 +1.3.6.1.2.1.47.1.1.1.1.2.100323100|4|Xcvr for Ethernet23 +1.3.6.1.2.1.47.1.1.1.1.2.100324000|4|Xcvr Slot 24 +1.3.6.1.2.1.47.1.1.1.1.2.100324100|4|Xcvr for Ethernet24 +1.3.6.1.2.1.47.1.1.1.1.2.100601000|4|Fan Tray Slot 1 +1.3.6.1.2.1.47.1.1.1.1.2.100601100|4|Fan Tray 1 +1.3.6.1.2.1.47.1.1.1.1.2.100601110|4|Fan Tray 1 Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100601111|4|Fan Tray 1 Fan 1 Sensor 1 +1.3.6.1.2.1.47.1.1.1.1.2.100602000|4|Fan Tray Slot 2 +1.3.6.1.2.1.47.1.1.1.1.2.100602100|4|Fan Tray 2 +1.3.6.1.2.1.47.1.1.1.1.2.100602110|4|Fan Tray 2 Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100602111|4|Fan Tray 2 Fan 1 Sensor 1 +1.3.6.1.2.1.47.1.1.1.1.2.100603000|4|Fan Tray Slot 3 +1.3.6.1.2.1.47.1.1.1.1.2.100603100|4|Fan Tray 3 +1.3.6.1.2.1.47.1.1.1.1.2.100603110|4|Fan Tray 3 Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100603111|4|Fan Tray 3 Fan 1 Sensor 1 +1.3.6.1.2.1.47.1.1.1.1.2.100604000|4|Fan Tray Slot 4 +1.3.6.1.2.1.47.1.1.1.1.2.100604100|4|Fan Tray 4 +1.3.6.1.2.1.47.1.1.1.1.2.100604110|4|Fan Tray 4 Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100604111|4|Fan Tray 4 Fan 1 Sensor 1 +1.3.6.1.2.1.47.1.1.1.1.2.100710000|4|Power Supply Slot 1 +1.3.6.1.2.1.47.1.1.1.1.2.100711000|4|PowerSupply1 +1.3.6.1.2.1.47.1.1.1.1.2.100711101|4|Power supply sensor +1.3.6.1.2.1.47.1.1.1.1.2.100711102|4|Input current sensor +1.3.6.1.2.1.47.1.1.1.1.2.100711103|4|Output current sensor +1.3.6.1.2.1.47.1.1.1.1.2.100711104|4|Input voltage sensor +1.3.6.1.2.1.47.1.1.1.1.2.100711105|4|Output voltage sensor +1.3.6.1.2.1.47.1.1.1.1.2.100711210|4|PowerSupply1 Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100711211|4|PowerSupply1 Fan 1 Sensor 1 +1.3.6.1.2.1.47.1.1.1.1.2.100720000|4|Power Supply Slot 2 +1.3.6.1.2.1.47.1.1.1.1.2.100721000|4|PowerSupply2 +1.3.6.1.2.1.47.1.1.1.1.2.100721101|4|Power supply sensor +1.3.6.1.2.1.47.1.1.1.1.2.100721102|4|Input current sensor +1.3.6.1.2.1.47.1.1.1.1.2.100721103|4|Output current sensor +1.3.6.1.2.1.47.1.1.1.1.2.100721104|4|Input voltage sensor +1.3.6.1.2.1.47.1.1.1.1.2.100721105|4|Output voltage sensor +1.3.6.1.2.1.47.1.1.1.1.2.100721210|4|PowerSupply2 Fan 1 +1.3.6.1.2.1.47.1.1.1.1.2.100721211|4|PowerSupply2 Fan 1 Sensor 1 +1.3.6.1.2.1.47.1.1.1.1.2.1100004000|4|Chip Container +1.3.6.1.2.1.47.1.1.1.1.2.1100006000|4|Sensor Container +1.3.6.1.2.1.47.1.1.1.1.2.1100140000|4|Port Container +1.3.6.1.2.1.47.1.1.1.1.2.1100300000|4|Xcvr Slot Container +1.3.6.1.2.1.47.1.1.1.1.2.1100600000|4|Fan Tray Slot Container +1.3.6.1.2.1.47.1.1.1.1.2.1100700000|4|Power Supply Slot Container +1.3.6.1.2.1.47.1.1.1.1.2.1100711100|4|Power Supply Sensor Container +1.3.6.1.2.1.47.1.1.1.1.2.1100711200|4|Power Supply Fan Container +1.3.6.1.2.1.47.1.1.1.1.2.1100721100|4|Power Supply Sensor Container +1.3.6.1.2.1.47.1.1.1.1.2.1100721200|4|Power Supply Fan Container +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.100004002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006006|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006007|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006008|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006009|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006010|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006011|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006012|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006013|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006014|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006015|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006016|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006017|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006018|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006019|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006020|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006021|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006022|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006023|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006024|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006025|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006026|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006027|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006028|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006029|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006030|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006031|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006032|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006033|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100006034|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100015001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100015002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100006|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100007|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100008|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100009|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100010|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100011|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100012|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100013|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100014|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100015|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100016|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100017|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100018|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100019|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100020|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100021|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100022|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100023|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100100024|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100110025|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100301000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100301100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100302000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100302100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100303000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100303100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100304000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100304100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100305000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100305100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100306000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100306100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100307000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100307100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100308000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100308100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100309000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100309100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100310000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100310100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100311000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100311100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100312000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100312100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100313000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100313100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100314000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100314100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100315000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100315100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100316000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100316100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100317000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100317100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100318000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100318100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100319000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100319100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100320000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100320100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321201|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321202|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321210|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321211|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321212|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100321213|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322201|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322202|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322210|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322211|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322212|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100322213|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100323000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100323100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100324000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100324100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100601000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100601100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100601110|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100601111|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100602000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100602100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100602110|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100602111|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100603000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100603100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100603110|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100603111|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100604000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100604100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100604110|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100604111|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100710000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711101|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711102|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711103|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711104|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711105|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711210|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100711211|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100720000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721101|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721102|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721103|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721104|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721105|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721210|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.100721211|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100004000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100006000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100140000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100300000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100600000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100700000|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100711100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100711200|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100721100|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1100721200|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.100004002|2|1100004000 +1.3.6.1.2.1.47.1.1.1.1.4.100006001|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006002|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006003|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006004|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006005|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006006|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006007|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006008|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006009|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006010|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006011|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006012|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006013|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006014|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006015|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006016|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006017|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006018|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006019|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006020|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006021|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006022|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006023|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006024|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006025|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006026|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006027|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006028|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006029|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006030|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006031|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006032|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006033|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100006034|2|1100006000 +1.3.6.1.2.1.47.1.1.1.1.4.100015001|2|1100004000 +1.3.6.1.2.1.47.1.1.1.1.4.100015002|2|1100004000 +1.3.6.1.2.1.47.1.1.1.1.4.100100001|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100002|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100003|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100004|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100005|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100006|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100007|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100008|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100009|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100010|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100011|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100012|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100013|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100014|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100015|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100016|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100017|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100018|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100019|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100020|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100021|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100022|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100023|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100100024|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100110025|2|1100140000 +1.3.6.1.2.1.47.1.1.1.1.4.100301000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100301100|2|100301000 +1.3.6.1.2.1.47.1.1.1.1.4.100302000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100302100|2|100302000 +1.3.6.1.2.1.47.1.1.1.1.4.100303000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100303100|2|100303000 +1.3.6.1.2.1.47.1.1.1.1.4.100304000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100304100|2|100304000 +1.3.6.1.2.1.47.1.1.1.1.4.100305000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100305100|2|100305000 +1.3.6.1.2.1.47.1.1.1.1.4.100306000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100306100|2|100306000 +1.3.6.1.2.1.47.1.1.1.1.4.100307000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100307100|2|100307000 +1.3.6.1.2.1.47.1.1.1.1.4.100308000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100308100|2|100308000 +1.3.6.1.2.1.47.1.1.1.1.4.100309000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100309100|2|100309000 +1.3.6.1.2.1.47.1.1.1.1.4.100310000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100310100|2|100310000 +1.3.6.1.2.1.47.1.1.1.1.4.100311000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100311100|2|100311000 +1.3.6.1.2.1.47.1.1.1.1.4.100312000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100312100|2|100312000 +1.3.6.1.2.1.47.1.1.1.1.4.100313000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100313100|2|100313000 +1.3.6.1.2.1.47.1.1.1.1.4.100314000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100314100|2|100314000 +1.3.6.1.2.1.47.1.1.1.1.4.100315000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100315100|2|100315000 +1.3.6.1.2.1.47.1.1.1.1.4.100316000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100316100|2|100316000 +1.3.6.1.2.1.47.1.1.1.1.4.100317000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100317100|2|100317000 +1.3.6.1.2.1.47.1.1.1.1.4.100318000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100318100|2|100318000 +1.3.6.1.2.1.47.1.1.1.1.4.100319000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100319100|2|100319000 +1.3.6.1.2.1.47.1.1.1.1.4.100320000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100320100|2|100320000 +1.3.6.1.2.1.47.1.1.1.1.4.100321000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100321100|2|100321000 +1.3.6.1.2.1.47.1.1.1.1.4.100321201|2|100321100 +1.3.6.1.2.1.47.1.1.1.1.4.100321202|2|100321100 +1.3.6.1.2.1.47.1.1.1.1.4.100321210|2|100321100 +1.3.6.1.2.1.47.1.1.1.1.4.100321211|2|100321210 +1.3.6.1.2.1.47.1.1.1.1.4.100321212|2|100321210 +1.3.6.1.2.1.47.1.1.1.1.4.100321213|2|100321210 +1.3.6.1.2.1.47.1.1.1.1.4.100322000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100322100|2|100322000 +1.3.6.1.2.1.47.1.1.1.1.4.100322201|2|100322100 +1.3.6.1.2.1.47.1.1.1.1.4.100322202|2|100322100 +1.3.6.1.2.1.47.1.1.1.1.4.100322210|2|100322100 +1.3.6.1.2.1.47.1.1.1.1.4.100322211|2|100322210 +1.3.6.1.2.1.47.1.1.1.1.4.100322212|2|100322210 +1.3.6.1.2.1.47.1.1.1.1.4.100322213|2|100322210 +1.3.6.1.2.1.47.1.1.1.1.4.100323000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100323100|2|100323000 +1.3.6.1.2.1.47.1.1.1.1.4.100324000|2|1100300000 +1.3.6.1.2.1.47.1.1.1.1.4.100324100|2|100324000 +1.3.6.1.2.1.47.1.1.1.1.4.100601000|2|1100600000 +1.3.6.1.2.1.47.1.1.1.1.4.100601100|2|100601000 +1.3.6.1.2.1.47.1.1.1.1.4.100601110|2|100601100 +1.3.6.1.2.1.47.1.1.1.1.4.100601111|2|100601110 +1.3.6.1.2.1.47.1.1.1.1.4.100602000|2|1100600000 +1.3.6.1.2.1.47.1.1.1.1.4.100602100|2|100602000 +1.3.6.1.2.1.47.1.1.1.1.4.100602110|2|100602100 +1.3.6.1.2.1.47.1.1.1.1.4.100602111|2|100602110 +1.3.6.1.2.1.47.1.1.1.1.4.100603000|2|1100600000 +1.3.6.1.2.1.47.1.1.1.1.4.100603100|2|100603000 +1.3.6.1.2.1.47.1.1.1.1.4.100603110|2|100603100 +1.3.6.1.2.1.47.1.1.1.1.4.100603111|2|100603110 +1.3.6.1.2.1.47.1.1.1.1.4.100604000|2|1100600000 +1.3.6.1.2.1.47.1.1.1.1.4.100604100|2|100604000 +1.3.6.1.2.1.47.1.1.1.1.4.100604110|2|100604100 +1.3.6.1.2.1.47.1.1.1.1.4.100604111|2|100604110 +1.3.6.1.2.1.47.1.1.1.1.4.100710000|2|1100700000 +1.3.6.1.2.1.47.1.1.1.1.4.100711000|2|100710000 +1.3.6.1.2.1.47.1.1.1.1.4.100711101|2|1100711100 +1.3.6.1.2.1.47.1.1.1.1.4.100711102|2|1100711100 +1.3.6.1.2.1.47.1.1.1.1.4.100711103|2|1100711100 +1.3.6.1.2.1.47.1.1.1.1.4.100711104|2|1100711100 +1.3.6.1.2.1.47.1.1.1.1.4.100711105|2|1100711100 +1.3.6.1.2.1.47.1.1.1.1.4.100711210|2|1100711200 +1.3.6.1.2.1.47.1.1.1.1.4.100711211|2|100711210 +1.3.6.1.2.1.47.1.1.1.1.4.100720000|2|1100700000 +1.3.6.1.2.1.47.1.1.1.1.4.100721000|2|100720000 +1.3.6.1.2.1.47.1.1.1.1.4.100721101|2|1100721100 +1.3.6.1.2.1.47.1.1.1.1.4.100721102|2|1100721100 +1.3.6.1.2.1.47.1.1.1.1.4.100721103|2|1100721100 +1.3.6.1.2.1.47.1.1.1.1.4.100721104|2|1100721100 +1.3.6.1.2.1.47.1.1.1.1.4.100721105|2|1100721100 +1.3.6.1.2.1.47.1.1.1.1.4.100721210|2|1100721200 +1.3.6.1.2.1.47.1.1.1.1.4.100721211|2|100721210 +1.3.6.1.2.1.47.1.1.1.1.4.1100004000|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1100006000|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1100140000|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1100300000|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1100600000|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1100700000|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1100711100|2|100711000 +1.3.6.1.2.1.47.1.1.1.1.4.1100711200|2|100711000 +1.3.6.1.2.1.47.1.1.1.1.4.1100721100|2|100721000 +1.3.6.1.2.1.47.1.1.1.1.4.1100721200|2|100721000 +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.100004002|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.100006001|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006002|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006004|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006005|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006006|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006007|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006008|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006009|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006010|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006011|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006012|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006013|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006014|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006015|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006016|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006017|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006018|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006019|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006020|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006021|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006022|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006023|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006024|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006025|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006026|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006027|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006028|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006029|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006030|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006031|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006032|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006033|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100006034|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100015001|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.100015002|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.100100001|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100002|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100003|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100004|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100005|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100006|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100007|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100008|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100009|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100010|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100011|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100012|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100013|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100014|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100015|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100016|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100017|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100018|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100019|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100020|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100021|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100022|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100023|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100100024|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100110025|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.100301000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100301100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100302000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100302100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100303000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100303100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100304000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100304100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100305000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100305100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100306000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100306100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100307000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100307100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100308000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100308100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100309000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100309100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100310000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100310100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100311000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100311100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100312000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100312100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100313000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100313100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100314000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100314100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100315000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100315100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100316000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100316100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100317000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100317100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100318000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100318100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100319000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100319100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100320000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100320100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100321000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100321100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100321201|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100321202|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100321210|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.100321211|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100321212|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100321213|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100322000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100322100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100322201|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100322202|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100322210|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.100322211|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100322212|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100322213|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100323000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100323100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100324000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100324100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100601000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100601100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100601110|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100601111|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100602000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100602100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100602110|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100602111|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100603000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100603100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100603110|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100603111|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100604000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100604100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100604110|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100604111|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100710000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100711000|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.100711101|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100711102|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100711103|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100711104|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100711105|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100711210|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100711211|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100720000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.100721000|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.100721101|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100721102|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100721103|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100721104|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100721105|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.100721210|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.100721211|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1100004000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100006000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100140000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100300000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100600000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100700000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100711100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100711200|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100721100|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1100721200|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.100004002|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100006001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100006002|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100006003|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100006004|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100006005|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.100006006|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.100006007|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.100006008|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.100006009|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.100006010|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.100006011|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.100006012|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.100006013|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.100006014|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.100006015|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.100006016|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.100006017|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.100006018|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.100006019|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.100006020|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.100006021|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.100006022|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.100006023|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.100006024|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.100006025|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.100006026|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.100006027|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.100006028|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.100006029|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.100006030|2|30 +1.3.6.1.2.1.47.1.1.1.1.6.100006031|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.100006032|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.100006033|2|33 +1.3.6.1.2.1.47.1.1.1.1.6.100006034|2|34 +1.3.6.1.2.1.47.1.1.1.1.6.100015001|2|11001 +1.3.6.1.2.1.47.1.1.1.1.6.100015002|2|11002 +1.3.6.1.2.1.47.1.1.1.1.6.100100001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100100002|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100100003|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100100004|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100100005|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.100100006|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.100100007|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.100100008|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.100100009|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.100100010|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.100100011|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.100100012|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.100100013|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.100100014|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.100100015|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.100100016|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.100100017|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.100100018|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.100100019|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.100100020|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.100100021|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.100100022|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.100100023|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.100100024|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.100110025|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.100301000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100301100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100302000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100302100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100303000|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100303100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100304000|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100304100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100305000|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.100305100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100306000|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.100306100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100307000|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.100307100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100308000|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.100308100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100309000|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.100309100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100310000|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.100310100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100311000|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.100311100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100312000|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.100312100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100313000|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.100313100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100314000|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.100314100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100315000|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.100315100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100316000|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.100316100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100317000|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.100317100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100318000|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.100318100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100319000|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.100319100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100320000|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.100320100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100321000|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.100321100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100321201|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100321202|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100321210|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.100321211|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100321212|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100321213|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100322000|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.100322100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100322201|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100322202|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100322210|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.100322211|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100322212|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100322213|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100323000|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.100323100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100324000|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.100324100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100601000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100601100|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100601110|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100601111|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100602000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100602100|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100602110|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100602111|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100603000|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100603100|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100603110|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100603111|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100604000|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100604100|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100604110|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100604111|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100710000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100711000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100711101|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100711102|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100711103|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100711104|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100711105|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.100711210|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100711211|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100720000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100721000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100721101|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100721102|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.100721103|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.100721104|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.100721105|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.100721210|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.100721211|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1100004000|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.1100006000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1100140000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.1100300000|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.1100600000|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.1100700000|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.1100711100|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.1100711200|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1100721100|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.1100721200|2|1 +1.3.6.1.2.1.47.1.1.1.1.7.1|4| +1.3.6.1.2.1.47.1.1.1.1.7.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.7.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.7.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.7.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.7.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.7.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.7.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100301100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100302100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100303100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100304100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100305100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100306100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100307100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100308100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100309100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100310100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100311100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100312100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100313100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100314100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100315100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100316100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100317100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100318100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100319100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100320100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.7.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.7.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.7.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100323100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100324100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.7.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.7.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.7.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.7.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.7.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.7.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.7.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.7.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.7.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.7.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.7.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.7.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.7.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.8.1|4|02.01 +1.3.6.1.2.1.47.1.1.1.1.8.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.8.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.8.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.8.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.8.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.8.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.8.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100301100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100302100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100303100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100304100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100305100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100306100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100307100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100308100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100309100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100310100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100311100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100312100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100313100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100314100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100315100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100316100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100317100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100318100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100319100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100320100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100321100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.8.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.8.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.8.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.8.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.8.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322100|4|0002 +1.3.6.1.2.1.47.1.1.1.1.8.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.8.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.8.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100323100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100324100|4|20 +1.3.6.1.2.1.47.1.1.1.1.8.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.8.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.8.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.8.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.8.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.8.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.8.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.8.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.8.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.8.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.8.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.8.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.8.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.8.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.8.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.8.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.8.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.9.1|4|Aboot-norcal2-2.0.10-1458058 +1.3.6.1.2.1.47.1.1.1.1.9.100004002|4|0x21 +1.3.6.1.2.1.47.1.1.1.1.9.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.9.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.9.100015001|4|SFT001860104 (2.3.4.0000) +1.3.6.1.2.1.47.1.1.1.1.9.100015002|4|SFT001400301 (2.3.4.0000) +1.3.6.1.2.1.47.1.1.1.1.9.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.9.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.9.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.9.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100301100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100302100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100303100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100304100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100305100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100306100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100307100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100308100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100309100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100310100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100311100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100312100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100313100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100314100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100315100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100316100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100317100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100318100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100319100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100320100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.9.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.9.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.9.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100323100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100324100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.9.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.9.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.9.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.9.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.9.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.9.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.9.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.9.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.9.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.9.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.9.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.9.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.9.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4|4.20.12.1M +1.3.6.1.2.1.47.1.1.1.1.10.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.10.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.10.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.10.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.10.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.10.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.10.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100301100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100302100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100303100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100304100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100305100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100306100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100307100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100308100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100309100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100310100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100311100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100312100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100313100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100314100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100315100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100316100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100317100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100318100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100319100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100320100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.10.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.10.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.10.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100323100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100324100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.10.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.10.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.10.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.10.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.10.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.10.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.10.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.10.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.10.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.10.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.10.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.10.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.10.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.11.1|4|serial +1.3.6.1.2.1.47.1.1.1.1.11.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.11.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.11.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.11.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.11.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.11.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.11.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100301100|4|XMD1447522PK +1.3.6.1.2.1.47.1.1.1.1.11.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100302100|4|XMD14475233E +1.3.6.1.2.1.47.1.1.1.1.11.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100303100|4|XMD14475233F +1.3.6.1.2.1.47.1.1.1.1.11.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100304100|4|XMD14475233H +1.3.6.1.2.1.47.1.1.1.1.11.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100305100|4|XMD16505201L +1.3.6.1.2.1.47.1.1.1.1.11.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100306100|4|XMD16505201N +1.3.6.1.2.1.47.1.1.1.1.11.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100307100|4|XMD16505203D +1.3.6.1.2.1.47.1.1.1.1.11.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100308100|4|XMD16505203E +1.3.6.1.2.1.47.1.1.1.1.11.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100309100|4|XMD165052023 +1.3.6.1.2.1.47.1.1.1.1.11.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100310100|4|XMD165052031 +1.3.6.1.2.1.47.1.1.1.1.11.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100311100|4|XMD165052018 +1.3.6.1.2.1.47.1.1.1.1.11.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100312100|4|XMD165052046 +1.3.6.1.2.1.47.1.1.1.1.11.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100313100|4|AHN1721003KG +1.3.6.1.2.1.47.1.1.1.1.11.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100314100|4|AHN1721002X2 +1.3.6.1.2.1.47.1.1.1.1.11.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100315100|4|AHN170600N5X +1.3.6.1.2.1.47.1.1.1.1.11.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100316100|4|AHN1721003F9 +1.3.6.1.2.1.47.1.1.1.1.11.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100317100|4|AHN1721003BF +1.3.6.1.2.1.47.1.1.1.1.11.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100318100|4|AHN1721003FG +1.3.6.1.2.1.47.1.1.1.1.11.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100319100|4|XMD1409MCWVV +1.3.6.1.2.1.47.1.1.1.1.11.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100320100|4|XMD1409MCWF9 +1.3.6.1.2.1.47.1.1.1.1.11.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100321100|4|XMD1441CT0BG +1.3.6.1.2.1.47.1.1.1.1.11.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.11.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.11.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.11.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.11.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.11.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322100|4|XMD1610CT0T3 +1.3.6.1.2.1.47.1.1.1.1.11.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.11.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.11.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100323100|4|ADY1816000UV +1.3.6.1.2.1.47.1.1.1.1.11.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100324100|4|ADY1816000UY +1.3.6.1.2.1.47.1.1.1.1.11.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100601100|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.11.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.11.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100602100|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.11.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.11.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100603100|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.11.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.11.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100604100|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.11.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.11.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711000|4|K192NA00PG1CZ +1.3.6.1.2.1.47.1.1.1.1.11.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.11.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.11.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721000|4|K192NA00MY1CZ +1.3.6.1.2.1.47.1.1.1.1.11.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.11.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.11.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.12.1|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.12.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.12.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.12.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.12.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.12.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.12.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100301100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100302100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100303100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100304100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100305100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100306100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100307100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100308100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100309100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100310100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100311100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100312100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100313100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100314100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100315100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100316100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100317100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100318100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100319100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100320100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100321100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.12.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.12.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.12.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.12.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.12.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.12.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.12.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100323100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100324100|4|Arista Networks +1.3.6.1.2.1.47.1.1.1.1.12.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.12.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.12.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.12.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.12.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.12.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.12.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.12.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.12.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.12.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.12.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.12.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.12.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711000|4|EMERSON +1.3.6.1.2.1.47.1.1.1.1.12.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.12.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.12.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721000|4|EMERSON +1.3.6.1.2.1.47.1.1.1.1.12.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.12.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.12.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.13.1|4|DCS-7150S-24 +1.3.6.1.2.1.47.1.1.1.1.13.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006002|4|LM73 +1.3.6.1.2.1.47.1.1.1.1.13.100006003|4|Max6658 +1.3.6.1.2.1.47.1.1.1.1.13.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006005|4|Max6658 +1.3.6.1.2.1.47.1.1.1.1.13.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.13.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.13.100015001|4|Ucd90160 +1.3.6.1.2.1.47.1.1.1.1.13.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.13.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.13.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.13.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100301100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100302100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100303100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100304100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100305100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100306100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100307100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100308100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100309100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100310100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100311100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100312100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100313100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100314100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100315100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100316100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100317100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100318100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100319100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100320100|4|SFP-1G-T +1.3.6.1.2.1.47.1.1.1.1.13.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100321100|4|SFP-1G-LX +1.3.6.1.2.1.47.1.1.1.1.13.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.13.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.13.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.13.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.13.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.13.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322100|4|SFP-1G-LX +1.3.6.1.2.1.47.1.1.1.1.13.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.13.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.13.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100323100|4|CAB-SFP-SFP-1M +1.3.6.1.2.1.47.1.1.1.1.13.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100324100|4|CAB-SFP-SFP-1M +1.3.6.1.2.1.47.1.1.1.1.13.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100601100|4|FAN-7000-F +1.3.6.1.2.1.47.1.1.1.1.13.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.13.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.13.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100602100|4|FAN-7000-F +1.3.6.1.2.1.47.1.1.1.1.13.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.13.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.13.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100603100|4|FAN-7000-F +1.3.6.1.2.1.47.1.1.1.1.13.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.13.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.13.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100604100|4|FAN-7000-F +1.3.6.1.2.1.47.1.1.1.1.13.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.13.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.13.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711000|4|PWR-460AC-F +1.3.6.1.2.1.47.1.1.1.1.13.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.13.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.13.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721000|4|PWR-460AC-F +1.3.6.1.2.1.47.1.1.1.1.13.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.13.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.13.1100721200|4| +1.3.6.1.2.1.47.1.1.1.1.14.1|4| +1.3.6.1.2.1.47.1.1.1.1.14.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.14.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.14.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.14.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.14.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.14.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.14.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100301100|4|Ethernet1 +1.3.6.1.2.1.47.1.1.1.1.14.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100302100|4|Ethernet2 +1.3.6.1.2.1.47.1.1.1.1.14.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100303100|4|Ethernet3 +1.3.6.1.2.1.47.1.1.1.1.14.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100304100|4|Ethernet4 +1.3.6.1.2.1.47.1.1.1.1.14.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100305100|4|Ethernet5 +1.3.6.1.2.1.47.1.1.1.1.14.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100306100|4|Ethernet6 +1.3.6.1.2.1.47.1.1.1.1.14.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100307100|4|Ethernet7 +1.3.6.1.2.1.47.1.1.1.1.14.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100308100|4|Ethernet8 +1.3.6.1.2.1.47.1.1.1.1.14.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100309100|4|Ethernet9 +1.3.6.1.2.1.47.1.1.1.1.14.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100310100|4|Ethernet10 +1.3.6.1.2.1.47.1.1.1.1.14.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100311100|4|Ethernet11 +1.3.6.1.2.1.47.1.1.1.1.14.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100312100|4|Ethernet12 +1.3.6.1.2.1.47.1.1.1.1.14.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100313100|4|Ethernet13 +1.3.6.1.2.1.47.1.1.1.1.14.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100314100|4|Ethernet14 +1.3.6.1.2.1.47.1.1.1.1.14.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100315100|4|Ethernet15 +1.3.6.1.2.1.47.1.1.1.1.14.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100316100|4|Ethernet16 +1.3.6.1.2.1.47.1.1.1.1.14.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100317100|4|Ethernet17 +1.3.6.1.2.1.47.1.1.1.1.14.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100318100|4|Ethernet18 +1.3.6.1.2.1.47.1.1.1.1.14.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100319100|4|Ethernet19 +1.3.6.1.2.1.47.1.1.1.1.14.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100320100|4|Ethernet20 +1.3.6.1.2.1.47.1.1.1.1.14.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100321100|4|Ethernet21 +1.3.6.1.2.1.47.1.1.1.1.14.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.14.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.14.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.14.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.14.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.14.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322100|4|Ethernet22 +1.3.6.1.2.1.47.1.1.1.1.14.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.14.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.14.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100323100|4|Ethernet23 +1.3.6.1.2.1.47.1.1.1.1.14.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100324100|4|Ethernet24 +1.3.6.1.2.1.47.1.1.1.1.14.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.14.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.14.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.14.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.14.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.14.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.14.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.14.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.14.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.14.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.14.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.14.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.14.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.14.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.14.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.14.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.14.1100721200|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.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.15.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.15.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.15.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.15.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.15.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.15.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100301100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100302100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100303100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100304100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100305100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100306100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100307100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100308100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100309100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100310100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100311100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100312100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100313100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100314100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100315100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100316100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100317100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100318100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100319100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100320100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.15.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.15.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.15.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100323100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100324100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.15.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.15.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.15.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.15.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.15.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.15.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.15.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.15.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.15.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.15.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.15.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.15.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.15.1100721200|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.100004002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006008|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006009|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006010|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006011|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006012|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006013|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006014|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006015|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006016|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006017|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006018|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006019|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006020|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006021|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006022|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006023|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006024|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006025|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006026|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006027|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006028|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006029|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006030|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006031|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006032|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006033|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100006034|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100015001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100015002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100008|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100009|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100010|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100011|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100012|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100013|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100014|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100015|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100016|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100017|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100018|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100019|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100020|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100021|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100022|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100023|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100100024|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100110025|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100301000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100301100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100302000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100302100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100303000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100303100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100304000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100304100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100305000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100305100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100306000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100306100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100307000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100307100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100308000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100308100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100309000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100309100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100310000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100310100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100311000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100311100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100312000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100312100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100313000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100313100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100314000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100314100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100315000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100315100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100316000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100316100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100317000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100317100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100318000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100318100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100319000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100319100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100320000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100320100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100321000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100321100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100321201|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100321202|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100321210|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100321211|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100321212|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100321213|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100322201|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322202|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322210|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322211|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322212|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100322213|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100323000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100323100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100324000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100324100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100601000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100601100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100601110|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100601111|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100602000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100602100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100602110|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100602111|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100603000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100603100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100603110|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100603111|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100604000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100604100|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100604110|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100604111|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100710000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711000|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100711101|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711102|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711103|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711104|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711105|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711210|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100711211|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100720000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721000|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.100721101|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721102|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721103|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721104|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721105|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721210|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.100721211|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100004000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100006000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100140000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100300000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100600000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100700000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100711100|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100711200|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100721100|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1100721200|2|2 +1.3.6.1.2.1.47.1.1.1.1.17.1|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100004002|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006001|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006002|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006003|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006004|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006005|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006006|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006007|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006008|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006009|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006010|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006011|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006012|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006013|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006014|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006015|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006016|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006017|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006018|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006019|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006020|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006021|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006022|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006023|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006024|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006025|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006026|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006027|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006028|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006029|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006030|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006031|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006032|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006033|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100006034|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100015001|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100015002|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100001|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100002|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100003|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100004|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100005|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100006|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100007|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100008|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100009|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100010|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100011|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100012|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100013|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100014|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100015|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100016|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100017|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100018|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100019|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100020|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100021|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100022|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100023|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100100024|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100110025|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100301000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100301100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100302000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100302100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100303000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100303100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100304000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100304100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100305000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100305100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100306000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100306100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100307000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100307100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100308000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100308100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100309000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100309100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100310000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100310100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100311000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100311100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100312000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100312100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100313000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100313100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100314000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100314100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100315000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100315100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100316000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100316100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100317000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100317100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100318000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100318100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100319000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100319100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100320000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100320100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321201|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321202|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321210|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321211|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321212|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100321213|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322201|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322202|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322210|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322211|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322212|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100322213|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100323000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100323100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100324000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100324100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100601000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100601100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100601110|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100601111|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100602000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100602100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100602110|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100602111|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100603000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100603100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100603110|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100603111|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100604000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100604100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100604110|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100604111|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100710000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711101|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711102|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711103|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711104|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711105|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711210|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100711211|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100720000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721101|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721102|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721103|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721104|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721105|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721210|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.100721211|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100004000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100006000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100140000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100300000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100600000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100700000|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100711100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100711200|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100721100|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1100721200|4x|0000000000000000000000 +1.3.6.1.2.1.47.1.1.1.1.18.1|4| +1.3.6.1.2.1.47.1.1.1.1.18.100004002|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006001|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006002|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006003|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006004|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006005|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006006|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006007|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006008|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006009|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006010|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006011|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006012|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006013|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006014|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006015|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006016|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006017|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006018|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006019|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006020|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006021|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006022|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006023|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006024|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006025|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006026|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006027|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006028|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006029|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006030|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006031|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006032|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006033|4| +1.3.6.1.2.1.47.1.1.1.1.18.100006034|4| +1.3.6.1.2.1.47.1.1.1.1.18.100015001|4| +1.3.6.1.2.1.47.1.1.1.1.18.100015002|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100001|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100002|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100003|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100004|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100005|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100006|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100007|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100008|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100009|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100010|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100011|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100012|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100013|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100014|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100015|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100016|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100017|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100018|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100019|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100020|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100021|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100022|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100023|4| +1.3.6.1.2.1.47.1.1.1.1.18.100100024|4| +1.3.6.1.2.1.47.1.1.1.1.18.100110025|4| +1.3.6.1.2.1.47.1.1.1.1.18.100301000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100301100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100302000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100302100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100303000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100303100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100304000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100304100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100305000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100305100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100306000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100306100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100307000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100307100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100308000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100308100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100309000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100309100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100310000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100310100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100311000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100311100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100312000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100312100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100313000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100313100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100314000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100314100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100315000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100315100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100316000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100316100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100317000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100317100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100318000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100318100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100319000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100319100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100320000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100320100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321201|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321202|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321210|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321211|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321212|4| +1.3.6.1.2.1.47.1.1.1.1.18.100321213|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322201|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322202|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322210|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322211|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322212|4| +1.3.6.1.2.1.47.1.1.1.1.18.100322213|4| +1.3.6.1.2.1.47.1.1.1.1.18.100323000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100323100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100324000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100324100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100601000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100601100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100601110|4| +1.3.6.1.2.1.47.1.1.1.1.18.100601111|4| +1.3.6.1.2.1.47.1.1.1.1.18.100602000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100602100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100602110|4| +1.3.6.1.2.1.47.1.1.1.1.18.100602111|4| +1.3.6.1.2.1.47.1.1.1.1.18.100603000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100603100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100603110|4| +1.3.6.1.2.1.47.1.1.1.1.18.100603111|4| +1.3.6.1.2.1.47.1.1.1.1.18.100604000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100604100|4| +1.3.6.1.2.1.47.1.1.1.1.18.100604110|4| +1.3.6.1.2.1.47.1.1.1.1.18.100604111|4| +1.3.6.1.2.1.47.1.1.1.1.18.100710000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711101|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711102|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711103|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711104|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711105|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711210|4| +1.3.6.1.2.1.47.1.1.1.1.18.100711211|4| +1.3.6.1.2.1.47.1.1.1.1.18.100720000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721000|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721101|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721102|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721103|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721104|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721105|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721210|4| +1.3.6.1.2.1.47.1.1.1.1.18.100721211|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100004000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100006000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100140000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100300000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100600000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100700000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100711100|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100711200|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100721100|4| +1.3.6.1.2.1.47.1.1.1.1.18.1100721200|4| +1.3.6.1.2.1.99.1.1.1.1.100006001|2|8 +1.3.6.1.2.1.99.1.1.1.1.100006002|2|8 +1.3.6.1.2.1.99.1.1.1.1.100006003|2|8 +1.3.6.1.2.1.99.1.1.1.1.100006004|2|8 +1.3.6.1.2.1.99.1.1.1.1.100006005|2|8 +1.3.6.1.2.1.99.1.1.1.1.100006006|2|8 +1.3.6.1.2.1.99.1.1.1.1.100006007|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006008|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006009|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006010|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006011|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006012|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006013|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006014|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006015|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006016|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006017|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006018|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006019|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006020|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006021|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006022|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006023|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006024|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006025|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006026|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006027|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006028|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006029|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006030|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006031|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006032|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006033|2|3 +1.3.6.1.2.1.99.1.1.1.1.100006034|2|3 +1.3.6.1.2.1.99.1.1.1.1.100321201|2|8 +1.3.6.1.2.1.99.1.1.1.1.100321202|2|4 +1.3.6.1.2.1.99.1.1.1.1.100321211|2|5 +1.3.6.1.2.1.99.1.1.1.1.100321212|2|6 +1.3.6.1.2.1.99.1.1.1.1.100321213|2|6 +1.3.6.1.2.1.99.1.1.1.1.100322201|2|8 +1.3.6.1.2.1.99.1.1.1.1.100322202|2|4 +1.3.6.1.2.1.99.1.1.1.1.100322211|2|5 +1.3.6.1.2.1.99.1.1.1.1.100322212|2|6 +1.3.6.1.2.1.99.1.1.1.1.100322213|2|6 +1.3.6.1.2.1.99.1.1.1.1.100601111|2|10 +1.3.6.1.2.1.99.1.1.1.1.100602111|2|10 +1.3.6.1.2.1.99.1.1.1.1.100603111|2|10 +1.3.6.1.2.1.99.1.1.1.1.100604111|2|10 +1.3.6.1.2.1.99.1.1.1.1.100711101|2|8 +1.3.6.1.2.1.99.1.1.1.1.100711102|2|5 +1.3.6.1.2.1.99.1.1.1.1.100711103|2|5 +1.3.6.1.2.1.99.1.1.1.1.100711104|2|3 +1.3.6.1.2.1.99.1.1.1.1.100711105|2|3 +1.3.6.1.2.1.99.1.1.1.1.100711211|2|10 +1.3.6.1.2.1.99.1.1.1.1.100721101|2|8 +1.3.6.1.2.1.99.1.1.1.1.100721102|2|5 +1.3.6.1.2.1.99.1.1.1.1.100721103|2|5 +1.3.6.1.2.1.99.1.1.1.1.100721104|2|3 +1.3.6.1.2.1.99.1.1.1.1.100721105|2|3 +1.3.6.1.2.1.99.1.1.1.1.100721211|2|10 +1.3.6.1.2.1.99.1.1.1.2.100006001|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006002|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006003|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006004|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006005|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006006|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006007|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006008|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006009|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006010|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006011|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006012|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006013|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006014|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006015|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006016|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006017|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006018|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006019|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006020|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006021|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006022|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006023|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006024|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006025|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006026|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006027|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006028|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006029|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006030|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006031|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006032|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006033|2|9 +1.3.6.1.2.1.99.1.1.1.2.100006034|2|9 +1.3.6.1.2.1.99.1.1.1.2.100321201|2|9 +1.3.6.1.2.1.99.1.1.1.2.100321202|2|9 +1.3.6.1.2.1.99.1.1.1.2.100321211|2|8 +1.3.6.1.2.1.99.1.1.1.2.100321212|2|8 +1.3.6.1.2.1.99.1.1.1.2.100321213|2|8 +1.3.6.1.2.1.99.1.1.1.2.100322201|2|9 +1.3.6.1.2.1.99.1.1.1.2.100322202|2|9 +1.3.6.1.2.1.99.1.1.1.2.100322211|2|8 +1.3.6.1.2.1.99.1.1.1.2.100322212|2|8 +1.3.6.1.2.1.99.1.1.1.2.100322213|2|8 +1.3.6.1.2.1.99.1.1.1.2.100601111|2|9 +1.3.6.1.2.1.99.1.1.1.2.100602111|2|9 +1.3.6.1.2.1.99.1.1.1.2.100603111|2|9 +1.3.6.1.2.1.99.1.1.1.2.100604111|2|9 +1.3.6.1.2.1.99.1.1.1.2.100711101|2|9 +1.3.6.1.2.1.99.1.1.1.2.100711102|2|9 +1.3.6.1.2.1.99.1.1.1.2.100711103|2|9 +1.3.6.1.2.1.99.1.1.1.2.100711104|2|9 +1.3.6.1.2.1.99.1.1.1.2.100711105|2|9 +1.3.6.1.2.1.99.1.1.1.2.100711211|2|9 +1.3.6.1.2.1.99.1.1.1.2.100721101|2|9 +1.3.6.1.2.1.99.1.1.1.2.100721102|2|9 +1.3.6.1.2.1.99.1.1.1.2.100721103|2|9 +1.3.6.1.2.1.99.1.1.1.2.100721104|2|9 +1.3.6.1.2.1.99.1.1.1.2.100721105|2|9 +1.3.6.1.2.1.99.1.1.1.2.100721211|2|9 +1.3.6.1.2.1.99.1.1.1.3.100006001|2|1 +1.3.6.1.2.1.99.1.1.1.3.100006002|2|1 +1.3.6.1.2.1.99.1.1.1.3.100006003|2|1 +1.3.6.1.2.1.99.1.1.1.3.100006004|2|1 +1.3.6.1.2.1.99.1.1.1.3.100006005|2|1 +1.3.6.1.2.1.99.1.1.1.3.100006006|2|1 +1.3.6.1.2.1.99.1.1.1.3.100006007|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006008|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006009|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006010|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006011|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006012|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006013|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006014|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006015|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006016|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006017|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006018|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006019|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006020|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006021|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006022|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006023|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006024|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006025|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006026|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006027|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006028|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006029|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006030|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006031|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006032|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006033|2|2 +1.3.6.1.2.1.99.1.1.1.3.100006034|2|2 +1.3.6.1.2.1.99.1.1.1.3.100321201|2|1 +1.3.6.1.2.1.99.1.1.1.3.100321202|2|2 +1.3.6.1.2.1.99.1.1.1.3.100321211|2|2 +1.3.6.1.2.1.99.1.1.1.3.100321212|2|4 +1.3.6.1.2.1.99.1.1.1.3.100321213|2|4 +1.3.6.1.2.1.99.1.1.1.3.100322201|2|1 +1.3.6.1.2.1.99.1.1.1.3.100322202|2|2 +1.3.6.1.2.1.99.1.1.1.3.100322211|2|2 +1.3.6.1.2.1.99.1.1.1.3.100322212|2|4 +1.3.6.1.2.1.99.1.1.1.3.100322213|2|4 +1.3.6.1.2.1.99.1.1.1.3.100601111|2|0 +1.3.6.1.2.1.99.1.1.1.3.100602111|2|0 +1.3.6.1.2.1.99.1.1.1.3.100603111|2|0 +1.3.6.1.2.1.99.1.1.1.3.100604111|2|0 +1.3.6.1.2.1.99.1.1.1.3.100711101|2|1 +1.3.6.1.2.1.99.1.1.1.3.100711102|2|2 +1.3.6.1.2.1.99.1.1.1.3.100711103|2|2 +1.3.6.1.2.1.99.1.1.1.3.100711104|2|2 +1.3.6.1.2.1.99.1.1.1.3.100711105|2|2 +1.3.6.1.2.1.99.1.1.1.3.100711211|2|0 +1.3.6.1.2.1.99.1.1.1.3.100721101|2|1 +1.3.6.1.2.1.99.1.1.1.3.100721102|2|2 +1.3.6.1.2.1.99.1.1.1.3.100721103|2|2 +1.3.6.1.2.1.99.1.1.1.3.100721104|2|2 +1.3.6.1.2.1.99.1.1.1.3.100721105|2|2 +1.3.6.1.2.1.99.1.1.1.3.100721211|2|0 +1.3.6.1.2.1.99.1.1.1.4.100006001|2|418 +1.3.6.1.2.1.99.1.1.1.4.100006002|2|390 +1.3.6.1.2.1.99.1.1.1.4.100006003|2|380 +1.3.6.1.2.1.99.1.1.1.4.100006004|2|359 +1.3.6.1.2.1.99.1.1.1.4.100006005|2|390 +1.3.6.1.2.1.99.1.1.1.4.100006006|2|441 +1.3.6.1.2.1.99.1.1.1.4.100006007|2|1233 +1.3.6.1.2.1.99.1.1.1.4.100006008|2|0 +1.3.6.1.2.1.99.1.1.1.4.100006009|2|493 +1.3.6.1.2.1.99.1.1.1.4.100006010|2|335 +1.3.6.1.2.1.99.1.1.1.4.100006011|2|255 +1.3.6.1.2.1.99.1.1.1.4.100006012|2|180 +1.3.6.1.2.1.99.1.1.1.4.100006013|2|152 +1.3.6.1.2.1.99.1.1.1.4.100006014|2|111 +1.3.6.1.2.1.99.1.1.1.4.100006015|2|91 +1.3.6.1.2.1.99.1.1.1.4.100006016|2|75 +1.3.6.1.2.1.99.1.1.1.4.100006017|2|1220 +1.3.6.1.2.1.99.1.1.1.4.100006018|2|1196 +1.3.6.1.2.1.99.1.1.1.4.100006019|2|500 +1.3.6.1.2.1.99.1.1.1.4.100006020|2|323 +1.3.6.1.2.1.99.1.1.1.4.100006021|2|330 +1.3.6.1.2.1.99.1.1.1.4.100006022|2|249 +1.3.6.1.2.1.99.1.1.1.4.100006023|2|109 +1.3.6.1.2.1.99.1.1.1.4.100006024|2|119 +1.3.6.1.2.1.99.1.1.1.4.100006025|2|119 +1.3.6.1.2.1.99.1.1.1.4.100006026|2|120 +1.3.6.1.2.1.99.1.1.1.4.100006027|2|325 +1.3.6.1.2.1.99.1.1.1.4.100006028|2|120 +1.3.6.1.2.1.99.1.1.1.4.100006029|2|632 +1.3.6.1.2.1.99.1.1.1.4.100006030|2|248 +1.3.6.1.2.1.99.1.1.1.4.100006031|2|248 +1.3.6.1.2.1.99.1.1.1.4.100006032|2|300 +1.3.6.1.2.1.99.1.1.1.4.100006033|2|119 +1.3.6.1.2.1.99.1.1.1.4.100006034|2|119 +1.3.6.1.2.1.99.1.1.1.4.100321201|2|410 +1.3.6.1.2.1.99.1.1.1.4.100321202|2|326 +1.3.6.1.2.1.99.1.1.1.4.100321211|2|1656 +1.3.6.1.2.1.99.1.1.1.4.100321212|2|2210 +1.3.6.1.2.1.99.1.1.1.4.100321213|2|-1000000000 +1.3.6.1.2.1.99.1.1.1.4.100322201|2|448 +1.3.6.1.2.1.99.1.1.1.4.100322202|2|327 +1.3.6.1.2.1.99.1.1.1.4.100322211|2|1843 +1.3.6.1.2.1.99.1.1.1.4.100322212|2|2250 +1.3.6.1.2.1.99.1.1.1.4.100322213|2|-1000000000 +1.3.6.1.2.1.99.1.1.1.4.100601111|2|17460 +1.3.6.1.2.1.99.1.1.1.4.100602111|2|17820 +1.3.6.1.2.1.99.1.1.1.4.100603111|2|17820 +1.3.6.1.2.1.99.1.1.1.4.100604111|2|17820 +1.3.6.1.2.1.99.1.1.1.4.100711101|2|355 +1.3.6.1.2.1.99.1.1.1.4.100711102|2|34 +1.3.6.1.2.1.99.1.1.1.4.100711103|2|550 +1.3.6.1.2.1.99.1.1.1.4.100711104|2|22750 +1.3.6.1.2.1.99.1.1.1.4.100711105|2|1223 +1.3.6.1.2.1.99.1.1.1.4.100711211|2|17820 +1.3.6.1.2.1.99.1.1.1.4.100721101|2|350 +1.3.6.1.2.1.99.1.1.1.4.100721102|2|31 +1.3.6.1.2.1.99.1.1.1.4.100721103|2|525 +1.3.6.1.2.1.99.1.1.1.4.100721104|2|22750 +1.3.6.1.2.1.99.1.1.1.4.100721105|2|1220 +1.3.6.1.2.1.99.1.1.1.4.100721211|2|17820 +1.3.6.1.2.1.99.1.1.1.5.100006001|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006002|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006003|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006004|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006005|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006006|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006007|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006008|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006009|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006010|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006011|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006012|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006013|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006014|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006015|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006016|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006017|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006018|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006019|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006020|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006021|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006022|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006023|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006024|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006025|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006026|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006027|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006028|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006029|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006030|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006031|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006032|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006033|2|1 +1.3.6.1.2.1.99.1.1.1.5.100006034|2|1 +1.3.6.1.2.1.99.1.1.1.5.100321201|2|1 +1.3.6.1.2.1.99.1.1.1.5.100321202|2|1 +1.3.6.1.2.1.99.1.1.1.5.100321211|2|1 +1.3.6.1.2.1.99.1.1.1.5.100321212|2|1 +1.3.6.1.2.1.99.1.1.1.5.100321213|2|1 +1.3.6.1.2.1.99.1.1.1.5.100322201|2|1 +1.3.6.1.2.1.99.1.1.1.5.100322202|2|1 +1.3.6.1.2.1.99.1.1.1.5.100322211|2|1 +1.3.6.1.2.1.99.1.1.1.5.100322212|2|1 +1.3.6.1.2.1.99.1.1.1.5.100322213|2|1 +1.3.6.1.2.1.99.1.1.1.5.100601111|2|1 +1.3.6.1.2.1.99.1.1.1.5.100602111|2|1 +1.3.6.1.2.1.99.1.1.1.5.100603111|2|1 +1.3.6.1.2.1.99.1.1.1.5.100604111|2|1 +1.3.6.1.2.1.99.1.1.1.5.100711101|2|1 +1.3.6.1.2.1.99.1.1.1.5.100711102|2|1 +1.3.6.1.2.1.99.1.1.1.5.100711103|2|1 +1.3.6.1.2.1.99.1.1.1.5.100711104|2|1 +1.3.6.1.2.1.99.1.1.1.5.100711105|2|1 +1.3.6.1.2.1.99.1.1.1.5.100711211|2|1 +1.3.6.1.2.1.99.1.1.1.5.100721101|2|1 +1.3.6.1.2.1.99.1.1.1.5.100721102|2|1 +1.3.6.1.2.1.99.1.1.1.5.100721103|2|1 +1.3.6.1.2.1.99.1.1.1.5.100721104|2|1 +1.3.6.1.2.1.99.1.1.1.5.100721105|2|1 +1.3.6.1.2.1.99.1.1.1.5.100721211|2|1 +1.3.6.1.4.1.2021.10.1.5.1|2|185 +1.3.6.1.4.1.2021.10.1.5.2|2|171 +1.3.6.1.4.1.2021.10.1.5.3|2|91 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006001|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006002|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006003|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006004|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006005|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006006|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006007|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006008|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006009|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006010|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006011|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006012|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006013|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006014|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006015|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006016|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006017|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006018|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006019|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006020|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006021|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006022|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006023|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006024|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006025|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006026|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006027|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006028|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006029|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006030|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006031|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006032|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006033|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100006034|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100321201|2|-400 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100321202|2|297 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100321211|2|40 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100321212|2|890 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100321213|2|80 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100322201|2|-400 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100322202|2|297 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100322211|2|40 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100322212|2|890 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100322213|2|80 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100601111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100602111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100603111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100604111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100711101|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100711102|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100711103|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100711104|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100711105|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100711211|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100721101|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100721102|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100721103|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100721104|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100721105|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.1.100721211|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006001|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006002|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006003|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006004|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006005|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006006|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006007|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006008|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006009|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006010|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006011|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006012|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006013|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006014|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006015|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006016|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006017|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006018|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006019|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006020|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006021|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006022|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006023|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006024|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006025|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006026|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006027|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006028|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006029|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006030|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006031|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006032|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006033|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100006034|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100321201|2|-450 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100321202|2|290 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100321211|2|0 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100321212|2|709 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100321213|2|63 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100322201|2|-450 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100322202|2|290 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100322211|2|0 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100322212|2|709 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100322213|2|63 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100601111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100602111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100603111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100604111|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100711101|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100711102|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100711103|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100711104|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100711105|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100711211|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100721101|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100721102|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100721103|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100721104|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100721105|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.2.100721211|2|-1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006001|2|950 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006002|2|650 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006003|2|550 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006004|2|550 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006005|2|750 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006006|2|920 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006007|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006008|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006009|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006010|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006011|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006012|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006013|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006014|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006015|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006016|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006017|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006018|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006019|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006020|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006021|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006022|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006023|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006024|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006025|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006026|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006027|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006028|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006029|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006030|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006031|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006032|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006033|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100006034|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100321201|2|850 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100321202|2|363 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100321211|2|4000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100321212|2|6310 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100321213|2|3980 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100322201|2|850 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100322202|2|363 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100322211|2|4000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100322212|2|6310 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100322213|2|3980 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100601111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100602111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100603111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100604111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100711101|2|600 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100711102|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100711103|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100711104|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100711105|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100711211|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100721101|2|600 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100721102|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100721103|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100721104|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100721105|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.3.100721211|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006001|2|1000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006002|2|750 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006003|2|650 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006004|2|650 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006005|2|850 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006006|2|1000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006007|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006008|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006009|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006010|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006011|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006012|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006013|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006014|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006015|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006016|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006017|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006018|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006019|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006020|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006021|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006022|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006023|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006024|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006025|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006026|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006027|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006028|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006029|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006030|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006031|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006032|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006033|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100006034|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100321201|2|900 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100321202|2|370 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100321211|2|4500 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100321212|2|7940 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100321213|2|5010 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100322201|2|900 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100322202|2|370 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100322211|2|4500 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100322212|2|7940 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100322213|2|5010 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100601111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100602111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100603111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100604111|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100711101|2|700 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100711102|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100711103|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100711104|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100711105|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100711211|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100721101|2|700 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100721102|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100721103|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100721104|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100721105|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.4.100721211|2|1000000000 +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006001|4|Sensor value 422 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006002|4|Sensor value 390 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006003|4|Sensor value 380 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006004|4|Sensor value 360 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006005|4|Sensor value 390 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006006|4|Sensor value 440 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006007|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006008|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006009|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006010|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006011|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006012|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006013|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006014|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006015|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006016|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006017|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006018|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006019|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006020|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006021|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006022|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006023|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006024|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006025|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006026|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006027|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006028|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006029|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006030|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006031|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006032|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006033|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100006034|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100321201|4|Sensor value 410 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100321202|4|Sensor value 326 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100321211|4|Sensor value 1656 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100321212|4|Sensor value 2210 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100321213|4|63 +1.3.6.1.4.1.30065.3.12.1.1.1.5.100322201|4|Sensor value 448 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100322202|4|Sensor value 327 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100322211|4|Sensor value 1832 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100322212|4|Sensor value 2287 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100322213|4|63 +1.3.6.1.4.1.30065.3.12.1.1.1.5.100601111|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100602111|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100603111|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100604111|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100711101|4|Sensor value 355 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100711102|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100711103|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100711104|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100711105|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100711211|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100721101|4|Sensor value 350 is within bounds +1.3.6.1.4.1.30065.3.12.1.1.1.5.100721102|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100721103|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100721104|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100721105|4|No thresholds are defined +1.3.6.1.4.1.30065.3.12.1.1.1.5.100721211|4|No thresholds are defined +1.3.6.1.4.1.30065.3.18.1.1.1.2.3.77.103.116|4|00 +1.3.6.1.4.1.30065.3.18.1.1.1.3.3.77.103.116|4|62003:1 +1.3.6.1.4.1.30065.3.18.1.1.1.4.3.77.103.116|2|1 +1.3.6.1.4.1.30065.3.18.1.2.1.1.999001|4|Mgt +1.3.6.1.6.3.10.2.1.3.0|2|493759