From 5628b60f2cf690758db08e47b2ebe6906a17ca97 Mon Sep 17 00:00:00 2001 From: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Date: Thu, 5 Mar 2020 17:52:01 +0100 Subject: [PATCH] Extra VLAN mapping in bridge FDB module to fix HP ProCurve (#11230) * Extra mapping for dot1qVlanFdbId to allow FDB VLANs to work on ProCurve * Test data from joseUPV for ProCurve FDB VLANs --- includes/discovery/fdb-table/bridge.inc.php | 25 +- tests/data/procurve_2520.json | 14030 ++++++++++++++++++ tests/snmpsim/procurve_2520.snmprec | 2633 ++++ 3 files changed, 16684 insertions(+), 4 deletions(-) create mode 100644 tests/data/procurve_2520.json create mode 100644 tests/snmpsim/procurve_2520.snmprec diff --git a/includes/discovery/fdb-table/bridge.inc.php b/includes/discovery/fdb-table/bridge.inc.php index 278e8b05b9..bbdf3fb040 100644 --- a/includes/discovery/fdb-table/bridge.inc.php +++ b/includes/discovery/fdb-table/bridge.inc.php @@ -19,12 +19,11 @@ * * @package LibreNMS * @link http://librenms.org - * @copyright 2017 Tony Murray - * @copyright 2017 Tony Murray + * @copyright LibreNMS contributors * @author Tony Murray + * @author cjwbath */ - // Try Q-BRIDGE-MIB::dot1qTpFdbPort first $fdbPort_table = snmpwalk_group($device, 'dot1qTpFdbPort', 'Q-BRIDGE-MIB'); if (!empty($fdbPort_table)) { @@ -48,9 +47,27 @@ if (!empty($fdbPort_table)) { $port = get_port_by_index_cache($device['device_id'], $data['dot1dBasePortIfIndex']); $portid_dict[$portLocal] = $port['port_id']; } + + // Build VLAN fdb index to real VLAN ID dictionary + $vlan_cur_table = snmpwalk_group($device, 'dot1qVlanFdbId', 'Q-BRIDGE-MIB', 2); + $vlan_fdb_dict = array(); + + // Indexed first by dot1qVlanTimeMark, which we ignore + foreach ($vlan_cur_table as $dot1qVlanTimeMark => $a) { + // Then by VLAN ID mapped to a single member array with the dot1qVlanFdbId + foreach ($a as $vid => $data) { + // Flip it round into the dictionary + $vlan_fdb_dict[$data['dot1qVlanFdbId']] = $vid; + } + } // Collect data and populate $insert - foreach ($fdbPort_table as $vlan => $data) { + foreach ($fdbPort_table as $vlanIndex => $data) { + // Look the dot1qVlanFdbId up to a real VLAN number; if undefined assume the + // index *is* the VLAN number. Code in fdb-table.inc.php to map to the + // device VLANs table should catch anything invalid. + $vlan = isset($vlan_fdb_dict[$vlanIndex]) ? $vlan_fdb_dict[$vlanIndex] : $vlanIndex; + foreach ($data[$data_oid] as $mac => $dot1dBasePort) { if ($dot1dBasePort == 0) { d_echo("No port known for $mac\n"); diff --git a/tests/data/procurve_2520.json b/tests/data/procurve_2520.json new file mode 100644 index 0000000000..81317b8b3a --- /dev/null +++ b/tests/data/procurve_2520.json @@ -0,0 +1,14030 @@ +{ + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0", + "processor_index": "0", + "processor_type": "procurve-fixed", + "processor_usage": 42, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.1", + "sensor_index": "hpicfPsWattageCur.1", + "sensor_type": "procurve", + "sensor_descr": "Power Supply #1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 48, + "sensor_limit": 1100, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.2", + "sensor_index": "hpicfPsWattageCur.2", + "sensor_type": "procurve", + "sensor_descr": "Power Supply #2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 45, + "sensor_limit": 1100, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.1", + "sensor_index": "hpicfFanState.1", + "sensor_type": "hpicfFanState", + "sensor_descr": "Fan #1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.2", + "sensor_index": "hpicfFanState.2", + "sensor_type": "hpicfFanState", + "sensor_descr": "Fan #2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.3", + "sensor_index": "hpicfFanState.3", + "sensor_type": "hpicfFanState", + "sensor_descr": "Fan #3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.4", + "sensor_index": "hpicfFanState.4", + "sensor_type": "hpicfFanState", + "sensor_descr": "Fan #4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.5", + "sensor_index": "hpicfFanState.5", + "sensor_type": "hpicfFanState", + "sensor_descr": "Fan #5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.6", + "sensor_index": "hpicfFanState.6", + "sensor_type": "hpicfFanState", + "sensor_descr": "Fan #6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.1", + "sensor_index": "hpicfPsState.1", + "sensor_type": "hpicfPsState", + "sensor_descr": "Power Supply #1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfPsState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.2", + "sensor_index": "hpicfPsState.2", + "sensor_type": "hpicfPsState", + "sensor_descr": "Power Supply #2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "hpicfPsState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.2", + "sensor_index": "icfFanSensor.2", + "sensor_type": "icfFanSensor", + "sensor_descr": "Fan Sensor", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "icfFanSensor" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1", + "sensor_index": "icfTemperatureSensor.1", + "sensor_type": "icfTemperatureSensor", + "sensor_descr": "Chassis Sensor", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "icfTemperatureSensor" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.25", + "sensor_index": "25", + "sensor_type": "entity-sensor", + "sensor_descr": "Chassis Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20, + "sensor_limit": 40, + "sensor_limit_warn": null, + "sensor_limit_low": 10, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.1", + "sensor_index": "hpicfPsTemp.1", + "sensor_type": "procurve", + "sensor_descr": "Power Supply #1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 47, + "sensor_limit_warn": null, + "sensor_limit_low": 17, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.2", + "sensor_index": "hpicfPsTemp.2", + "sensor_type": "procurve", + "sensor_descr": "Power Supply #2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 49, + "sensor_limit_warn": null, + "sensor_limit_low": 19, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "hpicfFanState", + "state_descr": "removed", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "hpicfFanState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "hpicfFanState", + "state_descr": "underspeed", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "hpicfFanState", + "state_descr": "overspeed", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "hpicfFanState", + "state_descr": "ok", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "hpicfFanState", + "state_descr": "maxstate", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 3 + }, + { + "state_name": "hpicfPsState", + "state_descr": "psNotPresent", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "hpicfPsState", + "state_descr": "psNotPlugged", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "hpicfPsState", + "state_descr": "psPowered", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "hpicfPsState", + "state_descr": "psFailed", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "hpicfPsState", + "state_descr": "psPermFailure", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "hpicfPsState", + "state_descr": "psMax", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 3 + }, + { + "state_name": "icfFanSensor", + "state_descr": "unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "icfFanSensor", + "state_descr": "bad", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "icfFanSensor", + "state_descr": "warning", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "icfFanSensor", + "state_descr": "good", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "icfFanSensor", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "icfTemperatureSensor", + "state_descr": "unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "icfTemperatureSensor", + "state_descr": "bad", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "icfTemperatureSensor", + "state_descr": "warning", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "icfTemperatureSensor", + "state_descr": "good", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "icfTemperatureSensor", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + } + ] + }, + "poller": "matches discovery" + }, + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.11.2.3.7.8.5.2", + "sysDescr": "HP Stack, revision KA.15.03.3004, ROM KA.15.05 (/sw/code/build/tam(KA_15_03))", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "procurve", + "type": "network", + "serial": null, + "icon": "hpe.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.11.2.3.7.8.5.2", + "sysDescr": "HP Stack, revision KA.15.03.3004, ROM KA.15.05 (/sw/code/build/tam(KA_15_03))", + "sysContact": "", + "version": "revision KA.15.03.3004", + "hardware": "Stack", + "features": null, + "os": "procurve", + "type": "network", + "serial": null, + "icon": "hpe.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": "1", + "ifName": "1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "1", + "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": "2", + "ifName": "2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "2", + "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": "3", + "ifName": "3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "3", + "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": "4", + "ifName": "4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "4", + "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": "5", + "ifName": "5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "5", + "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": "6", + "ifName": "6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "6", + "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": "7", + "ifName": "7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "7", + "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": "8", + "ifName": "8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "8", + "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": "9", + "ifName": "9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "9", + "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": "10", + "ifName": "10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "10", + "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": "11", + "ifName": "11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "11", + "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": "12", + "ifName": "12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "12", + "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": "13", + "ifName": "13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "13", + "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": "14", + "ifName": "14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "14", + "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": "15", + "ifName": "15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "15", + "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": "16", + "ifName": "16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "16", + "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": "17", + "ifName": "17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "17", + "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": "18", + "ifName": "18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "18", + "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": "19", + "ifName": "19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "19", + "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": "20", + "ifName": "20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "20", + "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": "21", + "ifName": "21", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "21", + "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": "22", + "ifName": "22", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "22", + "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": "23", + "ifName": "23", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "23", + "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": "24", + "ifName": "24", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "24", + "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": "25", + "ifName": "25", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "25", + "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": "26", + "ifName": "26", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "26", + "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": "27", + "ifName": "27", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "27", + "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": "28", + "ifName": "28", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "28", + "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": "DEFAULT_VLAN", + "ifName": "DEFAULT_VLAN", + "portName": null, + "ifIndex": 58, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "DEFAULT_VLAN", + "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": "VLAN95", + "ifName": "VLAN95", + "portName": null, + "ifIndex": 152, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "BARRACON_8H_8L", + "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": "VLAN252", + "ifName": "VLAN252", + "portName": null, + "ifIndex": 309, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ASIC", + "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": "VLAN450", + "ifName": "VLAN450", + "portName": null, + "ifIndex": 507, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Videoapuntes", + "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": "VLAN636", + "ifName": "VLAN636", + "portName": null, + "ifIndex": 693, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "APS-B8HLK", + "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": "VLAN999", + "ifName": "VLAN999", + "portName": null, + "ifIndex": 1056, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "GESTION", + "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": "VLAN2044", + "ifName": "VLAN2044", + "portName": null, + "ifIndex": 2101, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "TIP-ASIC", + "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": "VLAN2081", + "ifName": "VLAN2081", + "portName": null, + "ifIndex": 2138, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "TIP-BAR8H8K", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo0", + "portName": null, + "ifIndex": 4152, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo0", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo1", + "portName": null, + "ifIndex": 4153, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo1", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo2", + "portName": null, + "ifIndex": 4154, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo2", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo3", + "portName": null, + "ifIndex": 4155, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo3", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo4", + "portName": null, + "ifIndex": 4156, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo4", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo5", + "portName": null, + "ifIndex": 4157, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo5", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo6", + "portName": null, + "ifIndex": 4158, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo6", + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo7", + "portName": null, + "ifIndex": 4159, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo7", + "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": "1", + "ifName": "1", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "1", + "ifPhysAddress": "c091347e177f", + "ifHardType": null, + "ifLastChange": 1241, + "ifVlan": "95", + "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": "2", + "ifName": "2", + "portName": null, + "ifIndex": 2, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "2", + "ifPhysAddress": "c091347e177e", + "ifHardType": null, + "ifLastChange": 1242, + "ifVlan": "95", + "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": "3", + "ifName": "3", + "portName": null, + "ifIndex": 3, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "3", + "ifPhysAddress": "c091347e177d", + "ifHardType": null, + "ifLastChange": 4157, + "ifVlan": "95", + "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": 161901, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 198055, + "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": 66088322, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10896934968, + "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": 6741, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12040253, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 40467, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32237493, + "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": "4", + "ifName": "4", + "portName": null, + "ifIndex": 4, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "4", + "ifPhysAddress": "c091347e177c", + "ifHardType": null, + "ifLastChange": 1246, + "ifVlan": "450", + "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": "5", + "ifName": "5", + "portName": null, + "ifIndex": 5, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "5", + "ifPhysAddress": "c091347e177b", + "ifHardType": null, + "ifLastChange": 3556, + "ifVlan": "450", + "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": 171867, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 178594, + "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": 18889729, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 528264110, + "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": 2277, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4640239, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 20276, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1559563, + "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": "6", + "ifName": "6", + "portName": null, + "ifIndex": 6, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "6", + "ifPhysAddress": "c091347e177a", + "ifHardType": null, + "ifLastChange": 1249, + "ifVlan": "450", + "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": "7", + "ifName": "7", + "portName": null, + "ifIndex": 7, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "7", + "ifPhysAddress": "c091347e1779", + "ifHardType": null, + "ifLastChange": 2791, + "ifVlan": "95", + "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": 521244, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 542073, + "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": 123782737, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10960152929, + "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": 2293, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12044731, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 20279, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32278230, + "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": "8", + "ifName": "8", + "portName": null, + "ifIndex": 8, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "8", + "ifPhysAddress": "c091347e1778", + "ifHardType": null, + "ifLastChange": 3468, + "ifVlan": "95", + "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": 311105, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 301337, + "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": 126324707, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10962656865, + "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": 6083, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12040938, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 125421, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32152697, + "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": "9", + "ifName": "9", + "portName": null, + "ifIndex": 9, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "9", + "ifPhysAddress": "c091347e1777", + "ifHardType": null, + "ifLastChange": 2822, + "ifVlan": "95", + "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": 3382559, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 3343548, + "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": 3495240390, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13840975776, + "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": 113110, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 3310, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12043678, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 34453, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32263876, + "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": "10", + "ifName": "10", + "portName": null, + "ifIndex": 10, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "10", + "ifPhysAddress": "c091347e1776", + "ifHardType": null, + "ifLastChange": 2853, + "ifVlan": "95", + "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": 317941, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 358010, + "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": 62701981, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10899559471, + "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": 2288, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12044722, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 20282, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32278227, + "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": "11", + "ifName": "11", + "portName": null, + "ifIndex": 11, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "11", + "ifPhysAddress": "c091347e1775", + "ifHardType": null, + "ifLastChange": 72171133, + "ifVlan": "636", + "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": 34646838, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 54891417, + "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": 15052134176, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 66570551653, + "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": 1373573, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 175, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 38816, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 81718, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1409053, + "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": "12", + "ifName": "12", + "portName": null, + "ifIndex": 12, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "12", + "ifPhysAddress": "c091347e1774", + "ifHardType": null, + "ifLastChange": 3590, + "ifVlan": "95", + "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": 181578, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 190085, + "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": 21856945, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10859728023, + "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": 2283, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12044722, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 20277, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32278093, + "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": "13", + "ifName": "13", + "portName": null, + "ifIndex": 13, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "13", + "ifPhysAddress": "c091347e1773", + "ifHardType": null, + "ifLastChange": 4191, + "ifVlan": "95", + "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": 33088084, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 33640135, + "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": 21355787465, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 39324948529, + "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": 188147, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 13053, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12033864, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 52324, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32225310, + "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": "14", + "ifName": "14", + "portName": null, + "ifIndex": 14, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "14", + "ifPhysAddress": "c091347e1772", + "ifHardType": null, + "ifLastChange": 1262, + "ifVlan": "95", + "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": "15", + "ifName": "15", + "portName": null, + "ifIndex": 15, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "15", + "ifPhysAddress": "c091347e1771", + "ifHardType": null, + "ifLastChange": 1264, + "ifVlan": "95", + "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": "16", + "ifName": "16", + "portName": null, + "ifIndex": 16, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "16", + "ifPhysAddress": "c091347e1770", + "ifHardType": null, + "ifLastChange": 1266, + "ifVlan": "95", + "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": "17", + "ifName": "17", + "portName": null, + "ifIndex": 17, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "17", + "ifPhysAddress": "c091347e176f", + "ifHardType": null, + "ifLastChange": 242632454, + "ifVlan": "95", + "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": 16306090, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 45480196, + "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": 9121771191, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 69700837625, + "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": 1052978, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 18922, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 11966454, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 43156, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32124628, + "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": "18", + "ifName": "18", + "portName": null, + "ifIndex": 18, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "18", + "ifPhysAddress": "c091347e176e", + "ifHardType": null, + "ifLastChange": 242128329, + "ifVlan": "95", + "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": 3381579, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 9777583, + "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": 667765320, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 19787546538, + "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": 134359, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 507, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4018288, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 6539, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 18282697, + "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": "19", + "ifName": "19", + "portName": null, + "ifIndex": 19, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "19", + "ifPhysAddress": "c091347e176d", + "ifHardType": null, + "ifLastChange": 1271, + "ifVlan": "95", + "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": "20", + "ifName": "20", + "portName": null, + "ifIndex": 20, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "20", + "ifPhysAddress": "c091347e176c", + "ifHardType": null, + "ifLastChange": 1272, + "ifVlan": "95", + "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": "21", + "ifName": "21", + "portName": null, + "ifIndex": 21, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "21", + "ifPhysAddress": "c091347e176b", + "ifHardType": null, + "ifLastChange": 1005, + "ifVlan": "95", + "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": "22", + "ifName": "22", + "portName": null, + "ifIndex": 22, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "22", + "ifPhysAddress": "c091347e176a", + "ifHardType": null, + "ifLastChange": 1274, + "ifVlan": "95", + "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": "23", + "ifName": "23", + "portName": null, + "ifIndex": 23, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "23", + "ifPhysAddress": "c091347e1769", + "ifHardType": null, + "ifLastChange": 242506824, + "ifVlan": "95", + "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": 4029049, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2436157, + "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": 1107622839, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 7661706991, + "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": 7, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 4601, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4094318, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 20194, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 20529930, + "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": "24", + "ifName": "24", + "portName": null, + "ifIndex": 24, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "24", + "ifPhysAddress": "c091347e1768", + "ifHardType": null, + "ifLastChange": 1277, + "ifVlan": "95", + "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": "25", + "ifName": "25", + "portName": null, + "ifIndex": 25, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "25", + "ifPhysAddress": "c091347e1767", + "ifHardType": null, + "ifLastChange": 1317, + "ifVlan": "450", + "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": "26", + "ifName": "26", + "portName": null, + "ifIndex": 26, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "26", + "ifPhysAddress": "c091347e1766", + "ifHardType": null, + "ifLastChange": 1344, + "ifVlan": "252", + "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": "27", + "ifName": "27", + "portName": null, + "ifIndex": 27, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "27", + "ifPhysAddress": "c091347e1765", + "ifHardType": null, + "ifLastChange": 1371, + "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": "28", + "ifName": "28", + "portName": null, + "ifIndex": 28, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "28", + "ifPhysAddress": "c091347e1764", + "ifHardType": null, + "ifLastChange": 1766, + "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": 155357486, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 97342538, + "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": 212748663726, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 51578471499, + "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": 79405907, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 62350, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 139380101, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 871907, + "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": "DEFAULT_VLAN", + "ifName": "DEFAULT_VLAN", + "portName": null, + "ifIndex": 58, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "DEFAULT_VLAN", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "VLAN95", + "ifName": "VLAN95", + "portName": null, + "ifIndex": 152, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "BARRACON_8H_8L", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1865, + "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": "VLAN252", + "ifName": "VLAN252", + "portName": null, + "ifIndex": 309, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "ASIC", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "VLAN450", + "ifName": "VLAN450", + "portName": null, + "ifIndex": 507, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "Videoapuntes", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "VLAN636", + "ifName": "VLAN636", + "portName": null, + "ifIndex": 693, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "APS-B8HLK", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "VLAN999", + "ifName": "VLAN999", + "portName": null, + "ifIndex": 1056, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "GESTION", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "VLAN2044", + "ifName": "VLAN2044", + "portName": null, + "ifIndex": 2101, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "TIP-ASIC", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "VLAN2081", + "ifName": "VLAN2081", + "portName": null, + "ifIndex": 2138, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "TIP-BAR8H8K", + "ifPhysAddress": "c091347e1740", + "ifHardType": null, + "ifLastChange": 1946, + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo0", + "portName": null, + "ifIndex": 4152, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 65535, + "ifType": "softwareLoopback", + "ifAlias": "lo0", + "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": 82100, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 82100, + "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": 10129444, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6766289, + "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": "HP ProCurve Switch software loopback interface", + "ifName": "lo1", + "portName": null, + "ifIndex": 4153, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo1", + "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": 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": "HP ProCurve Switch software loopback interface", + "ifName": "lo2", + "portName": null, + "ifIndex": 4154, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo2", + "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": 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": "HP ProCurve Switch software loopback interface", + "ifName": "lo3", + "portName": null, + "ifIndex": 4155, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo3", + "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": 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": "HP ProCurve Switch software loopback interface", + "ifName": "lo4", + "portName": null, + "ifIndex": 4156, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo4", + "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": 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": "HP ProCurve Switch software loopback interface", + "ifName": "lo5", + "portName": null, + "ifIndex": 4157, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo5", + "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": 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": "HP ProCurve Switch software loopback interface", + "ifName": "lo6", + "portName": null, + "ifIndex": 4158, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo6", + "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": 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": "HP ProCurve Switch software loopback interface", + "ifName": "lo7", + "portName": null, + "ifIndex": 4159, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "lo7", + "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": 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 + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "DEFAULT_VLAN", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 95, + "vlan_domain": 1, + "vlan_name": "BARRACON_8H_8L", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 252, + "vlan_domain": 1, + "vlan_name": "ASIC", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 450, + "vlan_domain": 1, + "vlan_name": "Videoapuntes", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 636, + "vlan_domain": 1, + "vlan_name": "APS-B8HLK", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 999, + "vlan_domain": 1, + "vlan_name": "GESTION", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 2044, + "vlan_domain": 1, + "vlan_name": "TIP-ASIC", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 2081, + "vlan_domain": 1, + "vlan_name": "TIP-BAR8H8K", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 1, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 8, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 9, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 10, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 12, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 13, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 14, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 15, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 16, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 17, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 18, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 19, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 20, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 21, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 95, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 95, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 252, + "baseport": 26, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 252, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 252, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 450, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 450, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 450, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 450, + "baseport": 25, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 450, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 450, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 636, + "baseport": 11, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 636, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 636, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2044, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2044, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2044, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 8, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 9, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 10, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 12, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 13, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2081, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + } + ] + } + }, + "fdb-table": { + "discovery": { + "ports_fdb": [ + { + "mac_address": "000e84e8e38f", + "ifIndex": 3, + "vlan_vlan": 95 + }, + { + "mac_address": "00809f87418b", + "ifIndex": 5, + "vlan_vlan": 2081 + }, + { + "mac_address": "00809f874178", + "ifIndex": 7, + "vlan_vlan": 2081 + }, + { + "mac_address": "000e08ded8ad", + "ifIndex": 8, + "vlan_vlan": 95 + }, + { + "mac_address": "00809f8741cd", + "ifIndex": 9, + "vlan_vlan": 2081 + }, + { + "mac_address": "00809f874184", + "ifIndex": 10, + "vlan_vlan": 2081 + }, + { + "mac_address": "aca31ec3d662", + "ifIndex": 11, + "vlan_vlan": 636 + }, + { + "mac_address": "00809f87418e", + "ifIndex": 12, + "vlan_vlan": 2081 + }, + { + "mac_address": "000e84e8e254", + "ifIndex": 13, + "vlan_vlan": 95 + }, + { + "mac_address": "fcaa14dbe00e", + "ifIndex": 17, + "vlan_vlan": 95 + }, + { + "mac_address": "b827eb2c71c2", + "ifIndex": 18, + "vlan_vlan": 95 + }, + { + "mac_address": "002673e6d354", + "ifIndex": 23, + "vlan_vlan": 95 + }, + { + "mac_address": "00005e000101", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000087d5ffc3", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000af46b379a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000af47c7bda", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000af47d1b1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000af47d211a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000af4826d5a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd2c5f9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd37c31a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd3f1f1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd3f1f99", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd490ada", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd49359a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd4f1e1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd585e9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfd586a1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdf3bf1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdf3c0da", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdf47a9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdfde499", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdfdf35a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdfdf39a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdfe281a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000bfdfe329a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000d6597555a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000dbcd829da", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000dbcd8eb9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000dbcfa3459", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000dbcfa345a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000e84fddf1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000ed7111319", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000ed7115259", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000ed711525a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000ed7116259", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f2336d259", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f2336d25a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f2342e059", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f2342e219", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f2342ea59", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f344c709a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000f34593f5a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00115cae00da", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00115cae051a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0012d94059da", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0013c412cb79", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0014a942c202", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0014a95b5382", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0014a95b6282", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001647141a81", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0016c7360902", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0016c7360a82", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0016c7369001", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0016c73f1082", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0016c73f2e81", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0016c73f2e82", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001818040202", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0018180e9a01", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001818159502", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00181815d002", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00181815d702", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00181815ed01", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00186e6449a0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001c0fb97db2", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001c0fb98132", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001c0fe59c9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001c5716df9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da109a29a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da13cc599", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1599819", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1599d99", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da15a291a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da15b341a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1d83419", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1dcd519", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1ddcd9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1de079a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1de329a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1de371a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001da1dfd999", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001de5207b1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "001ec1531d00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00215672109a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00234739e280", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023473b0880", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00235d11071a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ab1f4919", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ab1f5e1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ab1f6299", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ab1f669a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ab1f741a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ab8d0299", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ac21ff99", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0023ac220f99", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "002561de4e80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62ac9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62b219", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62b21a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62b519", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62b51a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62c499", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62c49a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62c71a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62c819", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62c81a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62ce9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260a62cf9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260ab98c19", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260ab98c1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260ab98f9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260ab9bb1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "00260ab9cb1a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0026abfd077c", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0026f1ce5b80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0026f1ce9b00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0026f1cf0500", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "0026f1cf95c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "006440494b99", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "006440494b9a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "006440684d99", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1402ecae7f20", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1402ecae8300", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1402ecae8320", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1402ecaedf60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1402ecaf2700", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1c98ec3a1f40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1c98ec3a2f80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "1c98ec3a7e60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "20fdf16daa43", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2880236b8880", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "288023741980", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "288023742840", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2880237439e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "288023744840", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2880237464c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2880237494c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2880237495e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "28802374b8e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "28802374b980", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "28802374c920", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "28802374d940", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "28802374d960", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "28802374e900", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2c59e58c0080", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2c59e58c4280", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2c59e58c7280", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2c59e58c72a0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2c59e58ca1e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2c59e58cc260", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "2cfaa24ab00b", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "40a8f09437e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "40b93c52f7fe", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "480fcf914ac0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "480fcf91dd00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a40b40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a40b60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a40ba0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a42100", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a43280", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a4b160", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a4b1c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a4d000", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a4ea40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5065f3a4eaa0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5c8a388ebf1b", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "5c8a388edafb", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "6cc217b6a9c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "70106f5f0f00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "70106f5fbea0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "70106f5feda0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "70106f5fff60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "70106f60d720", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "701f53d843cc", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0272200", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0276680", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0278140", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a02785c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a027d160", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a027e1a0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a027f160", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a027f660", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a02839c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0289960", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e51d20", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e53d00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e53e80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e54d80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e56d20", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e56d40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e56d60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e56d80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e56da0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e57d80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e57da0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e58c40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e59c60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e59c80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5ada0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5bba0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5cd80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5cde0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5dd80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5edc0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e5fca0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e63fc0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e69ee0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7446a0e6dfe0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "7848598a3359", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed20c20", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed20c40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed21b80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed21ba0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed21bc0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed22ac0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed236e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed27a20", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed27ac0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed28ba0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed29be0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed2ca60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed50fa0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed51e60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed59740", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed59e20", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed5a900", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "80c16ed5fb80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "8478acf6e9c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "8478acfe9d40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "8851fbad5fe0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "8c604fdb44c1", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a51e2320", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a51e43e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a52014e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a5201580", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a5202800", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a52038c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a5204620", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a5206560", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a520a5e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a520c4a0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a520d420", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "9457a5213d60", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "a01d48471ac0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "a01d48487000", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "a0369fc7928b", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "b439d6875240", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346c9f80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346caf40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346cbf00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346ccf40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346cdf00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346cdf40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346cef00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346cef40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d0700", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d16c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d2640", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d27c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d2840", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d3500", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d3ec0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d4600", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d54c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d5580", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d6500", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d6540", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d7500", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d81c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d8400", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d8d00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d9300", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d9740", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d9840", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d98c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346d9d00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346da700", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346da7c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dadc0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346db3c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346db780", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dbd40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dc340", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dc540", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dc780", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dc7c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dd2c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dd680", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346ddd00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346de280", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346de6c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346de700", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346de780", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346df200", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346df400", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346df680", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346df740", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dfcc0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091346dfd00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e0680", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e27c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e4880", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e5800", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e5880", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e6840", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e7140", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347e7840", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347ea6c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347ea800", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347eb780", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "c091347ed580", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "d09466590690", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "d09466590692", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "d09466590a68", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "d09466590a6a", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "e0071b2d07c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "e0071b2d17c0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "e0071b2d17e0", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "e0071b2d4620", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "f06281c44d80", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "f06281c4df00", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "f06281c99f40", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "f06281cb6200", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "f81547e34427", + "ifIndex": 28, + "vlan_vlan": 1 + }, + { + "mac_address": "000074f5deaf", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "000074f5e39a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "000074f5e8a1", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "000074f64c55", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "0013c44a77c4", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "001966feb6fc", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "0019997874ce", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "001a4d40b182", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "001c0618e26d", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "001cc0194b21", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "001cc092c649", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "002500d79f16", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "002590bcd47e", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "002590bcd898", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "00805a4b4422", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "04d9f5890841", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "086266a1ab45", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "0c9d927ee1ae", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "0c9d927ee24e", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "288023144aee", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "2cfda13418cc", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "2cfda13418ce", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "305a3ac7f132", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "309c230091cb", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "38d547c83674", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "38d547c83676", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "3c075467a4c3", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "3c07547c7650", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "3c2af4cc3e21", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "3c528279617a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "3c5282c1cefc", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "40b076da483a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "448a5b8778a1", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "4ccc6ab221d5", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "4ccc6ab5ae69", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "50465d53f483", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "50e549390502", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "50e54942973a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "685b35a72c8d", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "705a0f3a0d56", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "705a0f3c4586", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "74d435fe034f", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "901b0e85c029", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "901b0e85c068", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "901b0e85c07a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "901b0e85c087", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "901b0e85c09a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "94de8002c704", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "94de80b7f609", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "98e7f4057bb9", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "98fa9b0109e8", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "a41f7279df9c", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "ac220b4f80e7", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "b8ca3a946b8f", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "bcaec586ec3a", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "bcee7be31361", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "d43d7e334578", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "d43d7e3347ae", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "d43d7e36d93c", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "e03f49865b89", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "f4ce46373457", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "f81547e34481", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "f832e4bbd2f3", + "ifIndex": 28, + "vlan_vlan": 95 + }, + { + "mac_address": "000074c166d7", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "0013c44a77bd", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "00199951940b", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "00199951c619", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "00199964edf1", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "001999910f6a", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "001999910f82", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "001f29311698", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "00224d4de4af", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324c64f94", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324c6569f", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324c656b3", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324da0448", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324da0458", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324da04e2", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002324da06fe", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "0026731a18d9", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "00e04c6809e7", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "10ddb1a2141d", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "1803734fa242", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "1803734fb3d4", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "2c44fd26f0eb", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "2c44fd26f299", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "2cfaa2495c25", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "3c07543c9630", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "3c5282265732", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "3c5282c1cedd", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "406c8f32baf0", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "40b034cbc005", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "4ccc6a4e0ab5", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "4ccc6aeb8f06", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "4ccc6aeb8f20", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "4ccc6aeb8f36", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "4ccc6aeb8fad", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "4ccc6aebaa84", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "644bf00131be", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "685b35a72dc4", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f323698", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f391848", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3997ea", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3998b3", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3998b7", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f39d25b", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3a0f0b", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3a8d5c", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3a8dc1", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3a9024", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3b061b", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3b06de", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3b08f3", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0f3c44f5", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "705a0fa60a0e", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e193b17", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e1e3d7d", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e1e3d90", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e1e3dba", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e85c02b", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e85c06f", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "901b0e85c08c", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "98e7f403a93d", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "a41f7279da24", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "a41f7279dde6", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "a82066123977", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe5f912e", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe6219e0", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe62291c", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe6229d2", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe628203", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe628210", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe6289ec", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b083fe6315f6", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b827eb4e846c", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "b827eba7222f", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "c81f660c7c12", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "c81f662466b9", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "c81f662546b6", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "f01898e96e5e", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "f01898e985a0", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "f01898ea9c44", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "f01898ec5508", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "f01898eeb42f", + "ifIndex": 28, + "vlan_vlan": 252 + }, + { + "mac_address": "002522bd6d10", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "002522de9f06", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "00505600fd82", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "1c697a0e44d4", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c69112c139", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c69113e001", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c69113e076", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c6911411cb", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c69114146e", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691177011", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c6911770bb", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691177484", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691177f45", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691178139", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691191876", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a1f852", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a252ec", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a25779", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a29e78", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a29f04", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a2a605", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a2a63d", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a69d0e", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a69dc3", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a6e1e3", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a77f51", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a780ad", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "94c691a87041", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb075398", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb0d5e51", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb10e673", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb12b7e5", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb1a3e79", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb1f0c47", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb29942c", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb2b1e19", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb35c0f0", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb3de5e1", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb472f7a", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb500b17", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb513762", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb5a58e0", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb5db946", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb5dc1ce", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb5e9809", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb603fa1", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb64a6d9", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb67dd6c", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb68b0c0", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb70750f", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb757395", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb7bf0d4", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb7e81c0", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb822895", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb87537b", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb8a6d42", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb8f73f1", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb9617ad", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb9c3b8f", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eb9ca6e4", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eba32927", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eba43a4c", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827eba7d13a", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebb58a13", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebbc7330", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebc841e8", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebdd7400", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebe2228e", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebe7a1a1", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebedb8a1", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebf127e3", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebfb3731", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebfbd260", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "b827ebfd9dfb", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff421b2e2", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff444acf3", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff445545d", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff445e46b", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff445e4b9", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4adb743", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4adb747", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4caca62", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4cb6507", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4cb650b", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4cb6515", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bc5ff4cb655b", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bebecafe0039", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bebecafe0046", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "bebecafe0072", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "d02788655267", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "d050998e49db", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "d050999be515", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "dca632406d74", + "ifIndex": 28, + "vlan_vlan": 450 + }, + { + "mac_address": "aca31ec34ad2", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3a67e", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3ae80", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3ae8c", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3ae8e", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3ae90", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3d63e", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3d660", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "aca31ec3d66e", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "f81547e34482", + "ifIndex": 28, + "vlan_vlan": 636 + }, + { + "mac_address": "002401ea5813", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "0025642253f7", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "0025642264a7", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "00505600fd82", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "00e0b1b4326c", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "00e0b1b43e94", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "08bd4376a409", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "2cfaa24ab00b", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "2cfaa27805e6", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "2cfaa2780fbe", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "5c260adb0208", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "68efbd4dbcff", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "701f53d843cc", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "78d294aa1f18", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "7cfe90e5e948", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc115fd9", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc115fda", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc115fdc", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc115fde", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc115fdf", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116090", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116091", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116092", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116093", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116094", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116095", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116096", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116098", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116099", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11609a", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11609b", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11609c", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc116359", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11635c", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11635d", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11635e", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11635f", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb75", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb76", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb78", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb7a", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb7b", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb7c", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb7e", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11eb7f", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f020", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f021", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f022", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f023", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f024", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f025", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f026", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f027", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f02a", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f02c", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f02f", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f030", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f031", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f032", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f033", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f034", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f035", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f036", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f03a", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f03d", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f03e", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f03f", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f040", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f041", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f042", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f043", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f044", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "8038bc11f045", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12a52d5", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12cd301", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12d9979", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12d9af5", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12d9bff", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12d9cbd", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12d9e13", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12d9e39", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "9424e12da027", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "c800849d5c6f", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "c800849e8201", + "ifIndex": 28, + "vlan_vlan": 999 + }, + { + "mac_address": "000dbd4b22d2", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "000e8494f15f", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "000ed7000112", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c4727e48", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c4727f52", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c4728129", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c47281ad", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c4ec97cc", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c4ec9842", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "0013c4ec984b", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f5637f2", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f5ac859", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8576f0", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8576f1", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f85772a", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f857832", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f860dcc", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f860dd2", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f860eab", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874050", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874052", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87405a", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8740d8", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87412d", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874134", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87414a", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874160", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874164", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87416c", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874172", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874174", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874175", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874177", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87417d", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87417e", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874182", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874185", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874187", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874188", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f874189", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87418d", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f87418f", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741a4", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741a7", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741ab", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741b3", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741ba", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741bb", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741bc", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741bf", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741c7", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741c9", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741ca", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741cb", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741cf", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741d0", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741d5", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741d6", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741d7", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741d8", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741db", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741dc", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741dd", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f8741de", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fa60c43", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fe4235d", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fe42368", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fe4236d", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fe4390b", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fe43914", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809fe43943", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "2cfaa2495c25", + "ifIndex": 28, + "vlan_vlan": 2044 + }, + { + "mac_address": "00809f857168", + "ifIndex": 28, + "vlan_vlan": 2081 + }, + { + "mac_address": "00809f8741ad", + "ifIndex": 28, + "vlan_vlan": 2081 + }, + { + "mac_address": "00809f8741ae", + "ifIndex": 28, + "vlan_vlan": 2081 + }, + { + "mac_address": "f81547e34483", + "ifIndex": 28, + "vlan_vlan": 2081 + } + ] + } + } +} diff --git a/tests/snmpsim/procurve_2520.snmprec b/tests/snmpsim/procurve_2520.snmprec new file mode 100644 index 0000000000..b817683d8b --- /dev/null +++ b/tests/snmpsim/procurve_2520.snmprec @@ -0,0 +1,2633 @@ +1.3.6.1.2.1.1.1.0|4|HP Stack, revision KA.15.03.3004, ROM KA.15.05 (/sw/code/build/tam(KA_15_03)) +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11.2.3.7.8.5.2 +1.3.6.1.2.1.1.3.0|67|1084104545 +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|1 +1.3.6.1.2.1.2.2.1.2.2|4|2 +1.3.6.1.2.1.2.2.1.2.3|4|3 +1.3.6.1.2.1.2.2.1.2.4|4|4 +1.3.6.1.2.1.2.2.1.2.5|4|5 +1.3.6.1.2.1.2.2.1.2.6|4|6 +1.3.6.1.2.1.2.2.1.2.7|4|7 +1.3.6.1.2.1.2.2.1.2.8|4|8 +1.3.6.1.2.1.2.2.1.2.9|4|9 +1.3.6.1.2.1.2.2.1.2.10|4|10 +1.3.6.1.2.1.2.2.1.2.11|4|11 +1.3.6.1.2.1.2.2.1.2.12|4|12 +1.3.6.1.2.1.2.2.1.2.13|4|13 +1.3.6.1.2.1.2.2.1.2.14|4|14 +1.3.6.1.2.1.2.2.1.2.15|4|15 +1.3.6.1.2.1.2.2.1.2.16|4|16 +1.3.6.1.2.1.2.2.1.2.17|4|17 +1.3.6.1.2.1.2.2.1.2.18|4|18 +1.3.6.1.2.1.2.2.1.2.19|4|19 +1.3.6.1.2.1.2.2.1.2.20|4|20 +1.3.6.1.2.1.2.2.1.2.21|4|21 +1.3.6.1.2.1.2.2.1.2.22|4|22 +1.3.6.1.2.1.2.2.1.2.23|4|23 +1.3.6.1.2.1.2.2.1.2.24|4|24 +1.3.6.1.2.1.2.2.1.2.25|4|25 +1.3.6.1.2.1.2.2.1.2.26|4|26 +1.3.6.1.2.1.2.2.1.2.27|4|27 +1.3.6.1.2.1.2.2.1.2.28|4|28 +1.3.6.1.2.1.2.2.1.2.58|4|DEFAULT_VLAN +1.3.6.1.2.1.2.2.1.2.152|4|VLAN95 +1.3.6.1.2.1.2.2.1.2.309|4|VLAN252 +1.3.6.1.2.1.2.2.1.2.507|4|VLAN450 +1.3.6.1.2.1.2.2.1.2.693|4|VLAN636 +1.3.6.1.2.1.2.2.1.2.1056|4|VLAN999 +1.3.6.1.2.1.2.2.1.2.2101|4|VLAN2044 +1.3.6.1.2.1.2.2.1.2.2138|4|VLAN2081 +1.3.6.1.2.1.2.2.1.2.4152|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4153|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4154|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4155|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4156|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4157|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4158|4|HP ProCurve Switch software loopback interface +1.3.6.1.2.1.2.2.1.2.4159|4|HP ProCurve Switch software loopback interface +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.25|2|6 +1.3.6.1.2.1.2.2.1.3.26|2|6 +1.3.6.1.2.1.2.2.1.3.27|2|6 +1.3.6.1.2.1.2.2.1.3.28|2|6 +1.3.6.1.2.1.2.2.1.3.58|2|53 +1.3.6.1.2.1.2.2.1.3.152|2|53 +1.3.6.1.2.1.2.2.1.3.309|2|53 +1.3.6.1.2.1.2.2.1.3.507|2|53 +1.3.6.1.2.1.2.2.1.3.693|2|53 +1.3.6.1.2.1.2.2.1.3.1056|2|53 +1.3.6.1.2.1.2.2.1.3.2101|2|53 +1.3.6.1.2.1.2.2.1.3.2138|2|53 +1.3.6.1.2.1.2.2.1.3.4152|2|24 +1.3.6.1.2.1.2.2.1.3.4153|2|24 +1.3.6.1.2.1.2.2.1.3.4154|2|24 +1.3.6.1.2.1.2.2.1.3.4155|2|24 +1.3.6.1.2.1.2.2.1.3.4156|2|24 +1.3.6.1.2.1.2.2.1.3.4157|2|24 +1.3.6.1.2.1.2.2.1.3.4158|2|24 +1.3.6.1.2.1.2.2.1.3.4159|2|24 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|1500 +1.3.6.1.2.1.2.2.1.4.22|2|1500 +1.3.6.1.2.1.2.2.1.4.23|2|1500 +1.3.6.1.2.1.2.2.1.4.24|2|1500 +1.3.6.1.2.1.2.2.1.4.25|2|1500 +1.3.6.1.2.1.2.2.1.4.26|2|1500 +1.3.6.1.2.1.2.2.1.4.27|2|1500 +1.3.6.1.2.1.2.2.1.4.28|2|1500 +1.3.6.1.2.1.2.2.1.4.58|2|1500 +1.3.6.1.2.1.2.2.1.4.152|2|1500 +1.3.6.1.2.1.2.2.1.4.309|2|1500 +1.3.6.1.2.1.2.2.1.4.507|2|1500 +1.3.6.1.2.1.2.2.1.4.693|2|1500 +1.3.6.1.2.1.2.2.1.4.1056|2|1500 +1.3.6.1.2.1.2.2.1.4.2101|2|1500 +1.3.6.1.2.1.2.2.1.4.2138|2|1500 +1.3.6.1.2.1.2.2.1.4.4152|2|65535 +1.3.6.1.2.1.2.2.1.4.4153|2|1500 +1.3.6.1.2.1.2.2.1.4.4154|2|1500 +1.3.6.1.2.1.2.2.1.4.4155|2|1500 +1.3.6.1.2.1.2.2.1.4.4156|2|1500 +1.3.6.1.2.1.2.2.1.4.4157|2|1500 +1.3.6.1.2.1.2.2.1.4.4158|2|1500 +1.3.6.1.2.1.2.2.1.4.4159|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|C091347E177F +1.3.6.1.2.1.2.2.1.6.2|4x|C091347E177E +1.3.6.1.2.1.2.2.1.6.3|4x|C091347E177D +1.3.6.1.2.1.2.2.1.6.4|4x|C091347E177C +1.3.6.1.2.1.2.2.1.6.5|4x|C091347E177B +1.3.6.1.2.1.2.2.1.6.6|4x|C091347E177A +1.3.6.1.2.1.2.2.1.6.7|4x|C091347E1779 +1.3.6.1.2.1.2.2.1.6.8|4x|C091347E1778 +1.3.6.1.2.1.2.2.1.6.9|4x|C091347E1777 +1.3.6.1.2.1.2.2.1.6.10|4x|C091347E1776 +1.3.6.1.2.1.2.2.1.6.11|4x|C091347E1775 +1.3.6.1.2.1.2.2.1.6.12|4x|C091347E1774 +1.3.6.1.2.1.2.2.1.6.13|4x|C091347E1773 +1.3.6.1.2.1.2.2.1.6.14|4x|C091347E1772 +1.3.6.1.2.1.2.2.1.6.15|4x|C091347E1771 +1.3.6.1.2.1.2.2.1.6.16|4x|C091347E1770 +1.3.6.1.2.1.2.2.1.6.17|4x|C091347E176F +1.3.6.1.2.1.2.2.1.6.18|4x|C091347E176E +1.3.6.1.2.1.2.2.1.6.19|4x|C091347E176D +1.3.6.1.2.1.2.2.1.6.20|4x|C091347E176C +1.3.6.1.2.1.2.2.1.6.21|4x|C091347E176B +1.3.6.1.2.1.2.2.1.6.22|4x|C091347E176A +1.3.6.1.2.1.2.2.1.6.23|4x|C091347E1769 +1.3.6.1.2.1.2.2.1.6.24|4x|C091347E1768 +1.3.6.1.2.1.2.2.1.6.25|4x|C091347E1767 +1.3.6.1.2.1.2.2.1.6.26|4x|C091347E1766 +1.3.6.1.2.1.2.2.1.6.27|4x|C091347E1765 +1.3.6.1.2.1.2.2.1.6.28|4x|C091347E1764 +1.3.6.1.2.1.2.2.1.6.58|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.152|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.309|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.507|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.693|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.1056|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.2101|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.2138|4x|C091347E1740 +1.3.6.1.2.1.2.2.1.6.4152|4| +1.3.6.1.2.1.2.2.1.6.4153|4| +1.3.6.1.2.1.2.2.1.6.4154|4| +1.3.6.1.2.1.2.2.1.6.4155|4| +1.3.6.1.2.1.2.2.1.6.4156|4| +1.3.6.1.2.1.2.2.1.6.4157|4| +1.3.6.1.2.1.2.2.1.6.4158|4| +1.3.6.1.2.1.2.2.1.6.4159|4| +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|2 +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.25|2|1 +1.3.6.1.2.1.2.2.1.7.26|2|1 +1.3.6.1.2.1.2.2.1.7.27|2|1 +1.3.6.1.2.1.2.2.1.7.28|2|1 +1.3.6.1.2.1.2.2.1.7.58|2|1 +1.3.6.1.2.1.2.2.1.7.152|2|1 +1.3.6.1.2.1.2.2.1.7.309|2|1 +1.3.6.1.2.1.2.2.1.7.507|2|1 +1.3.6.1.2.1.2.2.1.7.693|2|1 +1.3.6.1.2.1.2.2.1.7.1056|2|1 +1.3.6.1.2.1.2.2.1.7.2101|2|1 +1.3.6.1.2.1.2.2.1.7.2138|2|1 +1.3.6.1.2.1.2.2.1.7.4152|2|1 +1.3.6.1.2.1.2.2.1.7.4153|2|2 +1.3.6.1.2.1.2.2.1.7.4154|2|2 +1.3.6.1.2.1.2.2.1.7.4155|2|2 +1.3.6.1.2.1.2.2.1.7.4156|2|2 +1.3.6.1.2.1.2.2.1.7.4157|2|2 +1.3.6.1.2.1.2.2.1.7.4158|2|2 +1.3.6.1.2.1.2.2.1.7.4159|2|2 +1.3.6.1.2.1.2.2.1.8.1|2|2 +1.3.6.1.2.1.2.2.1.8.2|2|2 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.8.13|2|1 +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|1 +1.3.6.1.2.1.2.2.1.8.18|2|1 +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|2 +1.3.6.1.2.1.2.2.1.8.25|2|2 +1.3.6.1.2.1.2.2.1.8.26|2|2 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|1 +1.3.6.1.2.1.2.2.1.8.58|2|1 +1.3.6.1.2.1.2.2.1.8.152|2|1 +1.3.6.1.2.1.2.2.1.8.309|2|1 +1.3.6.1.2.1.2.2.1.8.507|2|1 +1.3.6.1.2.1.2.2.1.8.693|2|1 +1.3.6.1.2.1.2.2.1.8.1056|2|1 +1.3.6.1.2.1.2.2.1.8.2101|2|1 +1.3.6.1.2.1.2.2.1.8.2138|2|1 +1.3.6.1.2.1.2.2.1.8.4152|2|1 +1.3.6.1.2.1.2.2.1.8.4153|2|2 +1.3.6.1.2.1.2.2.1.8.4154|2|2 +1.3.6.1.2.1.2.2.1.8.4155|2|2 +1.3.6.1.2.1.2.2.1.8.4156|2|2 +1.3.6.1.2.1.2.2.1.8.4157|2|2 +1.3.6.1.2.1.2.2.1.8.4158|2|2 +1.3.6.1.2.1.2.2.1.8.4159|2|2 +1.3.6.1.2.1.2.2.1.9.1|67|1241 +1.3.6.1.2.1.2.2.1.9.2|67|1242 +1.3.6.1.2.1.2.2.1.9.3|67|4157 +1.3.6.1.2.1.2.2.1.9.4|67|1246 +1.3.6.1.2.1.2.2.1.9.5|67|3556 +1.3.6.1.2.1.2.2.1.9.6|67|1249 +1.3.6.1.2.1.2.2.1.9.7|67|2791 +1.3.6.1.2.1.2.2.1.9.8|67|3468 +1.3.6.1.2.1.2.2.1.9.9|67|2822 +1.3.6.1.2.1.2.2.1.9.10|67|2853 +1.3.6.1.2.1.2.2.1.9.11|67|72171133 +1.3.6.1.2.1.2.2.1.9.12|67|3590 +1.3.6.1.2.1.2.2.1.9.13|67|4191 +1.3.6.1.2.1.2.2.1.9.14|67|1262 +1.3.6.1.2.1.2.2.1.9.15|67|1264 +1.3.6.1.2.1.2.2.1.9.16|67|1266 +1.3.6.1.2.1.2.2.1.9.17|67|242632454 +1.3.6.1.2.1.2.2.1.9.18|67|242128329 +1.3.6.1.2.1.2.2.1.9.19|67|1271 +1.3.6.1.2.1.2.2.1.9.20|67|1272 +1.3.6.1.2.1.2.2.1.9.21|67|1005 +1.3.6.1.2.1.2.2.1.9.22|67|1274 +1.3.6.1.2.1.2.2.1.9.23|67|242506824 +1.3.6.1.2.1.2.2.1.9.24|67|1277 +1.3.6.1.2.1.2.2.1.9.25|67|1317 +1.3.6.1.2.1.2.2.1.9.26|67|1344 +1.3.6.1.2.1.2.2.1.9.27|67|1371 +1.3.6.1.2.1.2.2.1.9.28|67|1766 +1.3.6.1.2.1.2.2.1.9.58|67|1946 +1.3.6.1.2.1.2.2.1.9.152|67|1865 +1.3.6.1.2.1.2.2.1.9.309|67|1946 +1.3.6.1.2.1.2.2.1.9.507|67|1946 +1.3.6.1.2.1.2.2.1.9.693|67|1946 +1.3.6.1.2.1.2.2.1.9.1056|67|1946 +1.3.6.1.2.1.2.2.1.9.2101|67|1946 +1.3.6.1.2.1.2.2.1.9.2138|67|1946 +1.3.6.1.2.1.2.2.1.9.4152|67|0 +1.3.6.1.2.1.2.2.1.9.4153|67|0 +1.3.6.1.2.1.2.2.1.9.4154|67|0 +1.3.6.1.2.1.2.2.1.9.4155|67|0 +1.3.6.1.2.1.2.2.1.9.4156|67|0 +1.3.6.1.2.1.2.2.1.9.4157|67|0 +1.3.6.1.2.1.2.2.1.9.4158|67|0 +1.3.6.1.2.1.2.2.1.9.4159|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.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.25|65|0 +1.3.6.1.2.1.2.2.1.13.26|65|0 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|0 +1.3.6.1.2.1.2.2.1.13.58|65|0 +1.3.6.1.2.1.2.2.1.13.152|65|0 +1.3.6.1.2.1.2.2.1.13.309|65|0 +1.3.6.1.2.1.2.2.1.13.507|65|0 +1.3.6.1.2.1.2.2.1.13.693|65|0 +1.3.6.1.2.1.2.2.1.13.1056|65|0 +1.3.6.1.2.1.2.2.1.13.2101|65|0 +1.3.6.1.2.1.2.2.1.13.2138|65|0 +1.3.6.1.2.1.2.2.1.13.4152|65|0 +1.3.6.1.2.1.2.2.1.13.4153|65|0 +1.3.6.1.2.1.2.2.1.13.4154|65|0 +1.3.6.1.2.1.2.2.1.13.4155|65|0 +1.3.6.1.2.1.2.2.1.13.4156|65|0 +1.3.6.1.2.1.2.2.1.13.4157|65|0 +1.3.6.1.2.1.2.2.1.13.4158|65|0 +1.3.6.1.2.1.2.2.1.13.4159|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.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.58|65|0 +1.3.6.1.2.1.2.2.1.14.152|65|0 +1.3.6.1.2.1.2.2.1.14.309|65|0 +1.3.6.1.2.1.2.2.1.14.507|65|0 +1.3.6.1.2.1.2.2.1.14.693|65|0 +1.3.6.1.2.1.2.2.1.14.1056|65|0 +1.3.6.1.2.1.2.2.1.14.2101|65|0 +1.3.6.1.2.1.2.2.1.14.2138|65|0 +1.3.6.1.2.1.2.2.1.14.4152|65|0 +1.3.6.1.2.1.2.2.1.14.4153|65|0 +1.3.6.1.2.1.2.2.1.14.4154|65|0 +1.3.6.1.2.1.2.2.1.14.4155|65|0 +1.3.6.1.2.1.2.2.1.14.4156|65|0 +1.3.6.1.2.1.2.2.1.14.4157|65|0 +1.3.6.1.2.1.2.2.1.14.4158|65|0 +1.3.6.1.2.1.2.2.1.14.4159|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|113110 +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|1373573 +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|188147 +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|1052978 +1.3.6.1.2.1.2.2.1.19.18|65|134359 +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|7 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|0 +1.3.6.1.2.1.2.2.1.19.58|65|0 +1.3.6.1.2.1.2.2.1.19.152|65|0 +1.3.6.1.2.1.2.2.1.19.309|65|0 +1.3.6.1.2.1.2.2.1.19.507|65|0 +1.3.6.1.2.1.2.2.1.19.693|65|0 +1.3.6.1.2.1.2.2.1.19.1056|65|0 +1.3.6.1.2.1.2.2.1.19.2101|65|0 +1.3.6.1.2.1.2.2.1.19.2138|65|0 +1.3.6.1.2.1.2.2.1.19.4152|65|0 +1.3.6.1.2.1.2.2.1.19.4153|65|0 +1.3.6.1.2.1.2.2.1.19.4154|65|0 +1.3.6.1.2.1.2.2.1.19.4155|65|0 +1.3.6.1.2.1.2.2.1.19.4156|65|0 +1.3.6.1.2.1.2.2.1.19.4157|65|0 +1.3.6.1.2.1.2.2.1.19.4158|65|0 +1.3.6.1.2.1.2.2.1.19.4159|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.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.58|65|0 +1.3.6.1.2.1.2.2.1.20.152|65|0 +1.3.6.1.2.1.2.2.1.20.309|65|0 +1.3.6.1.2.1.2.2.1.20.507|65|0 +1.3.6.1.2.1.2.2.1.20.693|65|0 +1.3.6.1.2.1.2.2.1.20.1056|65|0 +1.3.6.1.2.1.2.2.1.20.2101|65|0 +1.3.6.1.2.1.2.2.1.20.2138|65|0 +1.3.6.1.2.1.2.2.1.20.4152|65|0 +1.3.6.1.2.1.2.2.1.20.4153|65|0 +1.3.6.1.2.1.2.2.1.20.4154|65|0 +1.3.6.1.2.1.2.2.1.20.4155|65|0 +1.3.6.1.2.1.2.2.1.20.4156|65|0 +1.3.6.1.2.1.2.2.1.20.4157|65|0 +1.3.6.1.2.1.2.2.1.20.4158|65|0 +1.3.6.1.2.1.2.2.1.20.4159|65|0 +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|3 +1.3.6.1.2.1.10.7.2.1.19.3|2|3 +1.3.6.1.2.1.10.7.2.1.19.4|2|3 +1.3.6.1.2.1.10.7.2.1.19.5|2|3 +1.3.6.1.2.1.10.7.2.1.19.6|2|3 +1.3.6.1.2.1.10.7.2.1.19.7|2|3 +1.3.6.1.2.1.10.7.2.1.19.8|2|3 +1.3.6.1.2.1.10.7.2.1.19.9|2|3 +1.3.6.1.2.1.10.7.2.1.19.10|2|3 +1.3.6.1.2.1.10.7.2.1.19.11|2|3 +1.3.6.1.2.1.10.7.2.1.19.12|2|3 +1.3.6.1.2.1.10.7.2.1.19.13|2|3 +1.3.6.1.2.1.10.7.2.1.19.14|2|3 +1.3.6.1.2.1.10.7.2.1.19.15|2|3 +1.3.6.1.2.1.10.7.2.1.19.16|2|3 +1.3.6.1.2.1.10.7.2.1.19.17|2|3 +1.3.6.1.2.1.10.7.2.1.19.18|2|3 +1.3.6.1.2.1.10.7.2.1.19.19|2|3 +1.3.6.1.2.1.10.7.2.1.19.20|2|3 +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.25|2|3 +1.3.6.1.2.1.10.7.2.1.19.26|2|3 +1.3.6.1.2.1.10.7.2.1.19.27|2|3 +1.3.6.1.2.1.10.7.2.1.19.28|2|3 +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.25|2|25 +1.3.6.1.2.1.17.1.4.1.2.26|2|26 +1.3.6.1.2.1.17.1.4.1.2.27|2|27 +1.3.6.1.2.1.17.1.4.1.2.28|2|28 +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.1.0.0.94.0.1.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.0.135.213.255.195|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.10.244.107.55.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.10.244.124.123.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.10.244.125.27.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.10.244.125.33.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.10.244.130.109.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.44.95.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.55.195.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.63.31.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.63.31.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.73.10.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.73.53.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.79.30.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.88.94.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.88.106.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.243.191.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.243.192.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.244.122.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.253.228.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.253.243.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.253.243.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.254.40.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.11.253.254.50.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.13.101.151.85.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.13.188.216.41.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.13.188.216.235.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.13.188.250.52.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.13.188.250.52.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.14.132.253.223.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.14.215.17.19.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.14.215.17.82.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.14.215.17.82.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.14.215.17.98.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.35.54.210.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.35.54.210.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.35.66.224.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.35.66.226.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.35.66.234.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.52.76.112.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.15.52.89.63.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.17.92.174.0.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.17.92.174.5.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.18.217.64.89.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.19.196.18.203.121|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.20.169.66.194.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.20.169.91.83.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.20.169.91.98.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.71.20.26.129|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.199.54.9.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.199.54.10.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.199.54.144.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.199.63.16.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.199.63.46.129|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.22.199.63.46.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.24.4.2.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.24.14.154.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.24.21.149.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.24.21.208.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.24.21.215.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.24.21.237.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.24.110.100.73.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.28.15.185.125.178|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.28.15.185.129.50|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.28.15.229.156.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.28.87.22.223.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.9.162.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.60.197.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.89.152.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.89.157.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.90.41.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.91.52.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.216.52.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.220.213.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.221.205.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.222.7.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.222.50.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.222.55.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.161.223.217.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.29.229.32.123.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.30.193.83.29.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.33.86.114.16.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.71.57.226.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.71.59.8.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.93.17.7.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.171.31.73.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.171.31.94.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.171.31.98.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.171.31.102.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.171.31.116.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.171.141.2.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.172.33.255.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.35.172.34.15.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.37.97.222.78.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.172.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.178.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.178.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.181.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.181.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.196.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.196.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.199.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.200.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.200.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.206.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.98.207.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.185.140.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.185.140.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.185.143.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.185.187.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.10.185.203.26|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.171.253.7.124|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.241.206.91.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.241.206.155.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.241.207.5.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.38.241.207.149.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.100.64.73.75.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.100.64.73.75.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.100.64.104.77.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.20.2.236.174.127.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.20.2.236.174.131.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.20.2.236.174.131.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.20.2.236.174.223.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.20.2.236.175.39.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.28.152.236.58.31.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.28.152.236.58.47.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.28.152.236.58.126.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.32.253.241.109.170.67|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.107.136.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.25.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.40.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.57.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.72.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.100.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.148.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.149.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.184.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.185.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.201.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.217.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.217.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.40.128.35.116.233.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.89.229.140.0.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.89.229.140.66.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.89.229.140.114.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.89.229.140.114.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.89.229.140.161.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.89.229.140.194.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.250.162.74.176.11|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.64.168.240.148.55.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.64.185.60.82.247.254|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.72.15.207.145.74.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.72.15.207.145.221.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.11.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.11.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.11.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.33.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.50.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.177.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.177.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.208.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.234.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.80.101.243.164.234.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.92.138.56.142.191.27|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.92.138.56.142.218.251|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.108.194.23.182.169.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.112.16.111.95.15.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.112.16.111.95.190.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.112.16.111.95.237.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.112.16.111.95.255.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.112.16.111.96.215.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.112.31.83.216.67.204|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.34.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.102.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.129.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.133.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.209.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.225.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.241.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.39.246.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.40.57.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.40.153.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.29.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.61.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.62.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.77.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.109.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.109.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.109.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.109.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.109.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.125.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.125.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.140.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.156.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.156.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.173.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.187.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.205.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.205.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.221.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.237.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.229.252.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.230.63.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.230.158.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.116.70.160.230.223.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.120.72.89.138.51.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.12.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.12.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.27.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.27.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.27.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.42.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.54.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.122.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.122.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.139.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.155.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.210.202.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.213.15.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.213.30.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.213.151.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.213.158.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.213.169.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.193.110.213.251.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.132.120.172.246.233.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.132.120.172.254.157.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.136.81.251.173.95.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.140.96.79.219.68.193|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.30.35.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.30.67.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.20.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.21.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.40.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.56.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.70.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.101.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.165.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.196.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.32.212.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.148.87.165.33.61.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.160.29.72.71.26.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.160.29.72.72.112.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.160.54.159.199.146.139|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.180.57.214.135.82.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.159.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.175.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.191.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.207.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.223.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.223.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.239.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.108.239.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.7.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.22.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.38.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.39.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.40.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.53.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.62.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.70.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.84.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.85.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.101.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.101.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.117.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.129.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.132.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.141.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.147.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.151.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.152.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.152.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.157.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.167.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.167.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.173.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.179.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.183.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.189.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.195.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.197.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.199.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.199.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.210.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.214.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.221.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.226.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.230.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.231.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.231.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.242.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.244.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.246.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.247.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.252.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.109.253.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.6.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.39.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.72.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.88.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.88.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.104.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.113.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.120.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.166.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.168.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.183.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.145.52.126.213.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.208.148.102.89.6.144|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.208.148.102.89.6.146|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.208.148.102.89.10.104|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.208.148.102.89.10.106|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.224.7.27.45.7.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.224.7.27.45.23.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.224.7.27.45.23.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.224.7.27.45.70.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.240.98.129.196.77.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.240.98.129.196.223.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.240.98.129.201.159.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.240.98.129.203.98.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.248.21.71.227.68.39|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.0.116.245.222.175|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.0.116.245.227.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.0.116.245.232.161|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.0.116.246.76.85|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.14.8.222.216.173|2|8 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.14.132.232.226.84|2|13 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.14.132.232.227.143|2|3 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.19.196.74.119.196|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.25.102.254.182.252|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.25.153.120.116.206|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.26.77.64.177.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.28.6.24.226.109|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.28.192.25.75.33|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.28.192.146.198.73|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.37.0.215.159.22|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.37.144.188.212.126|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.37.144.188.216.152|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.38.115.230.211.84|2|23 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.128.90.75.68.34|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.4.217.245.137.8.65|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.8.98.102.161.171.69|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.12.157.146.126.225.174|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.12.157.146.126.226.78|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.40.128.35.20.74.238|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.44.253.161.52.24.204|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.44.253.161.52.24.206|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.48.90.58.199.241.50|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.48.156.35.0.145.203|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.56.213.71.200.54.116|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.56.213.71.200.54.118|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.60.7.84.103.164.195|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.60.7.84.124.118.80|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.60.42.244.204.62.33|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.60.82.130.121.97.122|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.60.82.130.193.206.252|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.64.176.118.218.72.58|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.68.138.91.135.120.161|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.76.204.106.178.33.213|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.76.204.106.181.174.105|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.80.70.93.83.244.131|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.80.229.73.57.5.2|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.80.229.73.66.151.58|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.104.91.53.167.44.141|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.112.90.15.58.13.86|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.112.90.15.60.69.134|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.116.212.53.254.3.79|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.144.27.14.133.192.41|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.144.27.14.133.192.104|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.144.27.14.133.192.122|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.144.27.14.133.192.135|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.144.27.14.133.192.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.148.222.128.2.199.4|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.148.222.128.183.246.9|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.152.231.244.5.123.185|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.152.250.155.1.9.232|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.164.31.114.121.223.156|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.172.34.11.79.128.231|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.184.39.235.44.113.194|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.184.202.58.148.107.143|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.188.174.197.134.236.58|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.188.238.123.227.19.97|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.212.61.126.51.69.120|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.212.61.126.51.71.174|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.212.61.126.54.217.60|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.224.63.73.134.91.137|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.244.206.70.55.52.87|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.248.21.71.227.68.129|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.248.50.228.187.210.243|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.252.170.20.219.224.14|2|17 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.0.116.193.102.215|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.19.196.74.119.189|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.25.153.81.148.11|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.25.153.81.198.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.25.153.100.237.241|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.25.153.145.15.106|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.25.153.145.15.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.31.41.49.22.152|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.34.77.77.228.175|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.198.79.148|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.198.86.159|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.198.86.179|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.218.4.72|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.218.4.88|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.218.4.226|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.35.36.218.6.254|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.38.115.26.24.217|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.0.224.76.104.9.231|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.16.221.177.162.20.29|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.24.3.115.79.162.66|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.24.3.115.79.179.212|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.44.68.253.38.240.235|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.44.68.253.38.242.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.44.250.162.73.92.37|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.60.7.84.60.150.48|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.60.82.130.38.87.50|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.60.82.130.193.206.221|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.64.108.143.50.186.240|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.64.176.52.203.192.5|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.76.204.106.78.10.181|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.76.204.106.235.143.6|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.76.204.106.235.143.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.76.204.106.235.143.54|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.76.204.106.235.143.173|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.76.204.106.235.170.132|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.100.75.240.1.49.190|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.104.91.53.167.45.196|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.50.54.152|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.57.24.72|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.57.151.234|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.57.152.179|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.57.152.183|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.57.210.91|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.58.15.11|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.58.141.92|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.58.141.193|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.58.144.36|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.59.6.27|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.59.6.222|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.59.8.243|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.60.68.245|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.112.90.15.166.10.14|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.25.59.23|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.30.61.125|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.30.61.144|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.30.61.186|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.133.192.43|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.133.192.111|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.144.27.14.133.192.140|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.152.231.244.3.169.61|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.164.31.114.121.218.36|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.164.31.114.121.221.230|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.168.32.102.18.57.119|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.95.145.46|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.98.25.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.98.41.28|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.98.41.210|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.98.130.3|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.98.130.16|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.98.137.236|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.176.131.254.99.21.246|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.184.39.235.78.132.108|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.184.39.235.167.34.47|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.200.31.102.12.124.18|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.200.31.102.36.102.185|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.200.31.102.37.70.182|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.240.24.152.233.110.94|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.240.24.152.233.133.160|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.240.24.152.234.156.68|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.240.24.152.236.85.8|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.3.240.24.152.238.180.47|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.0.37.34.189.109.16|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.0.37.34.222.159.6|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.0.80.86.0.253.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.28.105.122.14.68.212|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.18.193.57|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.19.224.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.19.224.118|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.20.17.203|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.20.20.110|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.23.112.17|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.23.112.187|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.23.116.132|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.23.127.69|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.23.129.57|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.25.24.118|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.161.248.82|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.162.82.236|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.162.87.121|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.162.158.120|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.162.159.4|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.162.166.5|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.162.166.61|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.166.157.14|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.166.157.195|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.166.225.227|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.167.127.81|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.167.128.173|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.148.198.145.168.112.65|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.7.83.152|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.13.94.81|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.16.230.115|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.18.183.229|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.26.62.121|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.31.12.71|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.41.148.44|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.43.30.25|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.53.192.240|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.61.229.225|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.71.47.122|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.80.11.23|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.81.55.98|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.90.88.224|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.93.185.70|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.93.193.206|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.94.152.9|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.96.63.161|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.100.166.217|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.103.221.108|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.104.176.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.112.117.15|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.117.115.149|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.123.240.212|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.126.129.192|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.130.40.149|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.135.83.123|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.138.109.66|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.143.115.241|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.150.23.173|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.156.59.143|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.156.166.228|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.163.41.39|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.164.58.76|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.167.209.58|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.181.138.19|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.188.115.48|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.200.65.232|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.221.116.0|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.226.34.142|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.231.161.161|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.237.184.161|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.241.39.227|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.251.55.49|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.251.210.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.184.39.235.253.157.251|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.33.178.226|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.68.172.243|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.69.84.93|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.69.228.107|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.69.228.185|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.173.183.67|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.173.183.71|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.202.202.98|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.203.101.7|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.203.101.11|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.203.101.21|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.188.95.244.203.101.91|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.190.190.202.254.0.57|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.190.190.202.254.0.70|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.190.190.202.254.0.114|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.208.39.136.101.82.103|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.208.80.153.142.73.219|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.208.80.153.155.229.21|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.4.220.166.50.64.109.116|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.74.210|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.166.126|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.174.128|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.174.140|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.174.142|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.174.144|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.214.62|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.214.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.214.98|2|11 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.172.163.30.195.214.110|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.5.248.21.71.227.68.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.0.36.1.234.88.19|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.0.37.100.34.83.247|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.0.37.100.34.100.167|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.0.80.86.0.253.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.0.224.177.180.50.108|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.0.224.177.180.62.148|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.8.189.67.118.164.9|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.44.250.162.74.176.11|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.44.250.162.120.5.230|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.44.250.162.120.15.190|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.92.38.10.219.2.8|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.104.239.189.77.188.255|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.112.31.83.216.67.204|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.120.210.148.170.31.24|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.124.254.144.229.233.72|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.95.217|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.95.218|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.95.220|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.95.222|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.95.223|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.144|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.145|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.146|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.147|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.148|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.149|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.150|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.152|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.153|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.154|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.155|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.96.156|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.99.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.99.92|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.99.93|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.99.94|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.99.95|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.117|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.118|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.120|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.122|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.123|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.124|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.126|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.235.127|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.32|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.33|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.34|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.35|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.36|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.37|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.38|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.39|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.42|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.44|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.47|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.48|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.49|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.50|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.51|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.52|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.53|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.54|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.58|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.61|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.62|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.63|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.64|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.65|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.66|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.67|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.68|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.128.56.188.17.240.69|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.42.82.213|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.44.211.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.153.121|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.154.245|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.155.255|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.156.189|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.158.19|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.158.57|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.148.36.225.45.160.39|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.200.0.132.157.92.111|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.6.200.0.132.158.130.1|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.13.189.75.34.210|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.14.132.148.241.95|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.14.215.0.1.18|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.114.126.72|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.114.127.82|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.114.129.41|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.114.129.173|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.236.151.204|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.236.152.66|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.19.196.236.152.75|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.86.55.242|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.90.200.89|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.133.118.240|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.133.118.241|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.133.119.42|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.133.120.50|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.134.13.204|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.134.13.210|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.134.14.171|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.64.80|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.64.82|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.64.90|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.64.216|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.45|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.52|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.74|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.96|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.100|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.108|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.114|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.116|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.117|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.119|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.125|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.126|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.130|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.133|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.135|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.136|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.137|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.141|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.143|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.164|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.167|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.171|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.179|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.186|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.187|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.188|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.191|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.199|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.201|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.202|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.203|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.207|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.208|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.213|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.214|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.215|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.216|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.219|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.220|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.221|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.135.65.222|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.166.12.67|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.228.35.93|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.228.35.104|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.228.35.109|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.228.57.11|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.228.57.20|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.0.128.159.228.57.67|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.44.250.162.73.92.37|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.7.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.133.113.104|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.120|2|7 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.132|2|10 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.139|2|5 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.142|2|12 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.173|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.174|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.0.128.159.135.65.205|2|9 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.192.145.52.126.23.64|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.8.248.21.71.227.68.131|2|28 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.1|66|1 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.95|66|2 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.252|66|3 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.450|66|4 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.636|66|5 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.999|66|6 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.2044|66|7 +1.3.6.1.2.1.17.7.1.4.2.1.3.0.2081|66|8 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.1|4x|0000003000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.95|4x|E3DFFF3000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.252|4x|0000007000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.450|4x|1C0000B000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.636|4x|0020003000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.999|4x|0000003000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.2044|4x|4000003000000000 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.2081|4x|3BD8023000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.1|4x|0000003000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.95|4x|E3DFFF0000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.252|4x|0000004000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.450|4x|1C00008000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.636|4x|0020000000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.999|4x|0000000000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.2044|4x|0000000000000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.2081|4x|0000000000000000 +1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|DEFAULT_VLAN +1.3.6.1.2.1.17.7.1.4.3.1.1.95|4|BARRACON_8H_8L +1.3.6.1.2.1.17.7.1.4.3.1.1.252|4|ASIC +1.3.6.1.2.1.17.7.1.4.3.1.1.450|4|Videoapuntes +1.3.6.1.2.1.17.7.1.4.3.1.1.636|4|APS-B8HLK +1.3.6.1.2.1.17.7.1.4.3.1.1.999|4|GESTION +1.3.6.1.2.1.17.7.1.4.3.1.1.2044|4|TIP-ASIC +1.3.6.1.2.1.17.7.1.4.3.1.1.2081|4|TIP-BAR8H8K +1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|450 +1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|450 +1.3.6.1.2.1.17.7.1.4.5.1.1.6|66|450 +1.3.6.1.2.1.17.7.1.4.5.1.1.7|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.8|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.9|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.10|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.11|66|636 +1.3.6.1.2.1.17.7.1.4.5.1.1.12|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.13|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.14|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.15|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.16|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.17|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.18|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.19|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.20|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.21|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.22|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.23|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.24|66|95 +1.3.6.1.2.1.17.7.1.4.5.1.1.25|66|450 +1.3.6.1.2.1.17.7.1.4.5.1.1.26|66|252 +1.3.6.1.2.1.17.7.1.4.5.1.1.27|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.28|66|1 +1.3.6.1.2.1.31.1.1.1.1.1|4|1 +1.3.6.1.2.1.31.1.1.1.1.2|4|2 +1.3.6.1.2.1.31.1.1.1.1.3|4|3 +1.3.6.1.2.1.31.1.1.1.1.4|4|4 +1.3.6.1.2.1.31.1.1.1.1.5|4|5 +1.3.6.1.2.1.31.1.1.1.1.6|4|6 +1.3.6.1.2.1.31.1.1.1.1.7|4|7 +1.3.6.1.2.1.31.1.1.1.1.8|4|8 +1.3.6.1.2.1.31.1.1.1.1.9|4|9 +1.3.6.1.2.1.31.1.1.1.1.10|4|10 +1.3.6.1.2.1.31.1.1.1.1.11|4|11 +1.3.6.1.2.1.31.1.1.1.1.12|4|12 +1.3.6.1.2.1.31.1.1.1.1.13|4|13 +1.3.6.1.2.1.31.1.1.1.1.14|4|14 +1.3.6.1.2.1.31.1.1.1.1.15|4|15 +1.3.6.1.2.1.31.1.1.1.1.16|4|16 +1.3.6.1.2.1.31.1.1.1.1.17|4|17 +1.3.6.1.2.1.31.1.1.1.1.18|4|18 +1.3.6.1.2.1.31.1.1.1.1.19|4|19 +1.3.6.1.2.1.31.1.1.1.1.20|4|20 +1.3.6.1.2.1.31.1.1.1.1.21|4|21 +1.3.6.1.2.1.31.1.1.1.1.22|4|22 +1.3.6.1.2.1.31.1.1.1.1.23|4|23 +1.3.6.1.2.1.31.1.1.1.1.24|4|24 +1.3.6.1.2.1.31.1.1.1.1.25|4|25 +1.3.6.1.2.1.31.1.1.1.1.26|4|26 +1.3.6.1.2.1.31.1.1.1.1.27|4|27 +1.3.6.1.2.1.31.1.1.1.1.28|4|28 +1.3.6.1.2.1.31.1.1.1.1.58|4|DEFAULT_VLAN +1.3.6.1.2.1.31.1.1.1.1.152|4|VLAN95 +1.3.6.1.2.1.31.1.1.1.1.309|4|VLAN252 +1.3.6.1.2.1.31.1.1.1.1.507|4|VLAN450 +1.3.6.1.2.1.31.1.1.1.1.693|4|VLAN636 +1.3.6.1.2.1.31.1.1.1.1.1056|4|VLAN999 +1.3.6.1.2.1.31.1.1.1.1.2101|4|VLAN2044 +1.3.6.1.2.1.31.1.1.1.1.2138|4|VLAN2081 +1.3.6.1.2.1.31.1.1.1.1.4152|4|lo0 +1.3.6.1.2.1.31.1.1.1.1.4153|4|lo1 +1.3.6.1.2.1.31.1.1.1.1.4154|4|lo2 +1.3.6.1.2.1.31.1.1.1.1.4155|4|lo3 +1.3.6.1.2.1.31.1.1.1.1.4156|4|lo4 +1.3.6.1.2.1.31.1.1.1.1.4157|4|lo5 +1.3.6.1.2.1.31.1.1.1.1.4158|4|lo6 +1.3.6.1.2.1.31.1.1.1.1.4159|4|lo7 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|40467 +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|20276 +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|20279 +1.3.6.1.2.1.31.1.1.1.2.8|65|125421 +1.3.6.1.2.1.31.1.1.1.2.9|65|34453 +1.3.6.1.2.1.31.1.1.1.2.10|65|20282 +1.3.6.1.2.1.31.1.1.1.2.11|65|81718 +1.3.6.1.2.1.31.1.1.1.2.12|65|20277 +1.3.6.1.2.1.31.1.1.1.2.13|65|52324 +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|43156 +1.3.6.1.2.1.31.1.1.1.2.18|65|6539 +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|20194 +1.3.6.1.2.1.31.1.1.1.2.24|65|0 +1.3.6.1.2.1.31.1.1.1.2.25|65|0 +1.3.6.1.2.1.31.1.1.1.2.26|65|0 +1.3.6.1.2.1.31.1.1.1.2.27|65|0 +1.3.6.1.2.1.31.1.1.1.2.28|65|139380101 +1.3.6.1.2.1.31.1.1.1.2.58|65|0 +1.3.6.1.2.1.31.1.1.1.2.152|65|0 +1.3.6.1.2.1.31.1.1.1.2.309|65|0 +1.3.6.1.2.1.31.1.1.1.2.507|65|0 +1.3.6.1.2.1.31.1.1.1.2.693|65|0 +1.3.6.1.2.1.31.1.1.1.2.1056|65|0 +1.3.6.1.2.1.31.1.1.1.2.2101|65|0 +1.3.6.1.2.1.31.1.1.1.2.2138|65|0 +1.3.6.1.2.1.31.1.1.1.2.4152|65|0 +1.3.6.1.2.1.31.1.1.1.2.4153|65|0 +1.3.6.1.2.1.31.1.1.1.2.4154|65|0 +1.3.6.1.2.1.31.1.1.1.2.4155|65|0 +1.3.6.1.2.1.31.1.1.1.2.4156|65|0 +1.3.6.1.2.1.31.1.1.1.2.4157|65|0 +1.3.6.1.2.1.31.1.1.1.2.4158|65|0 +1.3.6.1.2.1.31.1.1.1.2.4159|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|6741 +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|2277 +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|2293 +1.3.6.1.2.1.31.1.1.1.3.8|65|6083 +1.3.6.1.2.1.31.1.1.1.3.9|65|3310 +1.3.6.1.2.1.31.1.1.1.3.10|65|2288 +1.3.6.1.2.1.31.1.1.1.3.11|65|175 +1.3.6.1.2.1.31.1.1.1.3.12|65|2283 +1.3.6.1.2.1.31.1.1.1.3.13|65|13053 +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|18922 +1.3.6.1.2.1.31.1.1.1.3.18|65|507 +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|4601 +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.25|65|0 +1.3.6.1.2.1.31.1.1.1.3.26|65|0 +1.3.6.1.2.1.31.1.1.1.3.27|65|0 +1.3.6.1.2.1.31.1.1.1.3.28|65|79405907 +1.3.6.1.2.1.31.1.1.1.3.58|65|0 +1.3.6.1.2.1.31.1.1.1.3.152|65|0 +1.3.6.1.2.1.31.1.1.1.3.309|65|0 +1.3.6.1.2.1.31.1.1.1.3.507|65|0 +1.3.6.1.2.1.31.1.1.1.3.693|65|0 +1.3.6.1.2.1.31.1.1.1.3.1056|65|0 +1.3.6.1.2.1.31.1.1.1.3.2101|65|0 +1.3.6.1.2.1.31.1.1.1.3.2138|65|0 +1.3.6.1.2.1.31.1.1.1.3.4152|65|0 +1.3.6.1.2.1.31.1.1.1.3.4153|65|0 +1.3.6.1.2.1.31.1.1.1.3.4154|65|0 +1.3.6.1.2.1.31.1.1.1.3.4155|65|0 +1.3.6.1.2.1.31.1.1.1.3.4156|65|0 +1.3.6.1.2.1.31.1.1.1.3.4157|65|0 +1.3.6.1.2.1.31.1.1.1.3.4158|65|0 +1.3.6.1.2.1.31.1.1.1.3.4159|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|32237493 +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|1559563 +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|32278230 +1.3.6.1.2.1.31.1.1.1.4.8|65|32152697 +1.3.6.1.2.1.31.1.1.1.4.9|65|32263876 +1.3.6.1.2.1.31.1.1.1.4.10|65|32278227 +1.3.6.1.2.1.31.1.1.1.4.11|65|1409053 +1.3.6.1.2.1.31.1.1.1.4.12|65|32278093 +1.3.6.1.2.1.31.1.1.1.4.13|65|32225310 +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|32124628 +1.3.6.1.2.1.31.1.1.1.4.18|65|18282697 +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|20529930 +1.3.6.1.2.1.31.1.1.1.4.24|65|0 +1.3.6.1.2.1.31.1.1.1.4.25|65|0 +1.3.6.1.2.1.31.1.1.1.4.26|65|0 +1.3.6.1.2.1.31.1.1.1.4.27|65|0 +1.3.6.1.2.1.31.1.1.1.4.28|65|871907 +1.3.6.1.2.1.31.1.1.1.4.58|65|0 +1.3.6.1.2.1.31.1.1.1.4.152|65|0 +1.3.6.1.2.1.31.1.1.1.4.309|65|0 +1.3.6.1.2.1.31.1.1.1.4.507|65|0 +1.3.6.1.2.1.31.1.1.1.4.693|65|0 +1.3.6.1.2.1.31.1.1.1.4.1056|65|0 +1.3.6.1.2.1.31.1.1.1.4.2101|65|0 +1.3.6.1.2.1.31.1.1.1.4.2138|65|0 +1.3.6.1.2.1.31.1.1.1.4.4152|65|0 +1.3.6.1.2.1.31.1.1.1.4.4153|65|0 +1.3.6.1.2.1.31.1.1.1.4.4154|65|0 +1.3.6.1.2.1.31.1.1.1.4.4155|65|0 +1.3.6.1.2.1.31.1.1.1.4.4156|65|0 +1.3.6.1.2.1.31.1.1.1.4.4157|65|0 +1.3.6.1.2.1.31.1.1.1.4.4158|65|0 +1.3.6.1.2.1.31.1.1.1.4.4159|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|12040238 +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|4640234 +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|12044716 +1.3.6.1.2.1.31.1.1.1.5.8|65|12040923 +1.3.6.1.2.1.31.1.1.1.5.9|65|12043665 +1.3.6.1.2.1.31.1.1.1.5.10|65|12044722 +1.3.6.1.2.1.31.1.1.1.5.11|65|38816 +1.3.6.1.2.1.31.1.1.1.5.12|65|12044722 +1.3.6.1.2.1.31.1.1.1.5.13|65|12033864 +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|11966454 +1.3.6.1.2.1.31.1.1.1.5.18|65|4018288 +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|4094318 +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.25|65|0 +1.3.6.1.2.1.31.1.1.1.5.26|65|0 +1.3.6.1.2.1.31.1.1.1.5.27|65|0 +1.3.6.1.2.1.31.1.1.1.5.28|65|62350 +1.3.6.1.2.1.31.1.1.1.5.58|65|0 +1.3.6.1.2.1.31.1.1.1.5.152|65|0 +1.3.6.1.2.1.31.1.1.1.5.309|65|0 +1.3.6.1.2.1.31.1.1.1.5.507|65|0 +1.3.6.1.2.1.31.1.1.1.5.693|65|0 +1.3.6.1.2.1.31.1.1.1.5.1056|65|0 +1.3.6.1.2.1.31.1.1.1.5.2101|65|0 +1.3.6.1.2.1.31.1.1.1.5.2138|65|0 +1.3.6.1.2.1.31.1.1.1.5.4152|65|0 +1.3.6.1.2.1.31.1.1.1.5.4153|65|0 +1.3.6.1.2.1.31.1.1.1.5.4154|65|0 +1.3.6.1.2.1.31.1.1.1.5.4155|65|0 +1.3.6.1.2.1.31.1.1.1.5.4156|65|0 +1.3.6.1.2.1.31.1.1.1.5.4157|65|0 +1.3.6.1.2.1.31.1.1.1.5.4158|65|0 +1.3.6.1.2.1.31.1.1.1.5.4159|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|0 +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|66088322 +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|18889729 +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|123782737 +1.3.6.1.2.1.31.1.1.1.6.8|70|126324707 +1.3.6.1.2.1.31.1.1.1.6.9|70|3495240390 +1.3.6.1.2.1.31.1.1.1.6.10|70|62701981 +1.3.6.1.2.1.31.1.1.1.6.11|70|15052134176 +1.3.6.1.2.1.31.1.1.1.6.12|70|21856945 +1.3.6.1.2.1.31.1.1.1.6.13|70|21355787465 +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|9121771191 +1.3.6.1.2.1.31.1.1.1.6.18|70|667765320 +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|1107622839 +1.3.6.1.2.1.31.1.1.1.6.24|70|0 +1.3.6.1.2.1.31.1.1.1.6.25|70|0 +1.3.6.1.2.1.31.1.1.1.6.26|70|0 +1.3.6.1.2.1.31.1.1.1.6.27|70|0 +1.3.6.1.2.1.31.1.1.1.6.28|70|212748663726 +1.3.6.1.2.1.31.1.1.1.6.58|70|0 +1.3.6.1.2.1.31.1.1.1.6.152|70|0 +1.3.6.1.2.1.31.1.1.1.6.309|70|0 +1.3.6.1.2.1.31.1.1.1.6.507|70|0 +1.3.6.1.2.1.31.1.1.1.6.693|70|0 +1.3.6.1.2.1.31.1.1.1.6.1056|70|0 +1.3.6.1.2.1.31.1.1.1.6.2101|70|0 +1.3.6.1.2.1.31.1.1.1.6.2138|70|0 +1.3.6.1.2.1.31.1.1.1.6.4152|70|10129444 +1.3.6.1.2.1.31.1.1.1.6.4153|70|0 +1.3.6.1.2.1.31.1.1.1.6.4154|70|0 +1.3.6.1.2.1.31.1.1.1.6.4155|70|0 +1.3.6.1.2.1.31.1.1.1.6.4156|70|0 +1.3.6.1.2.1.31.1.1.1.6.4157|70|0 +1.3.6.1.2.1.31.1.1.1.6.4158|70|0 +1.3.6.1.2.1.31.1.1.1.6.4159|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|161901 +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|171867 +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|521244 +1.3.6.1.2.1.31.1.1.1.7.8|70|311105 +1.3.6.1.2.1.31.1.1.1.7.9|70|3382559 +1.3.6.1.2.1.31.1.1.1.7.10|70|317941 +1.3.6.1.2.1.31.1.1.1.7.11|70|34646838 +1.3.6.1.2.1.31.1.1.1.7.12|70|181578 +1.3.6.1.2.1.31.1.1.1.7.13|70|33088084 +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|16306090 +1.3.6.1.2.1.31.1.1.1.7.18|70|3381579 +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|4029049 +1.3.6.1.2.1.31.1.1.1.7.24|70|0 +1.3.6.1.2.1.31.1.1.1.7.25|70|0 +1.3.6.1.2.1.31.1.1.1.7.26|70|0 +1.3.6.1.2.1.31.1.1.1.7.27|70|0 +1.3.6.1.2.1.31.1.1.1.7.28|70|155357486 +1.3.6.1.2.1.31.1.1.1.7.58|70|0 +1.3.6.1.2.1.31.1.1.1.7.152|70|0 +1.3.6.1.2.1.31.1.1.1.7.309|70|0 +1.3.6.1.2.1.31.1.1.1.7.507|70|0 +1.3.6.1.2.1.31.1.1.1.7.693|70|0 +1.3.6.1.2.1.31.1.1.1.7.1056|70|0 +1.3.6.1.2.1.31.1.1.1.7.2101|70|0 +1.3.6.1.2.1.31.1.1.1.7.2138|70|0 +1.3.6.1.2.1.31.1.1.1.7.4152|70|82100 +1.3.6.1.2.1.31.1.1.1.7.4153|70|0 +1.3.6.1.2.1.31.1.1.1.7.4154|70|0 +1.3.6.1.2.1.31.1.1.1.7.4155|70|0 +1.3.6.1.2.1.31.1.1.1.7.4156|70|0 +1.3.6.1.2.1.31.1.1.1.7.4157|70|0 +1.3.6.1.2.1.31.1.1.1.7.4158|70|0 +1.3.6.1.2.1.31.1.1.1.7.4159|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|40467 +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|20276 +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|20279 +1.3.6.1.2.1.31.1.1.1.8.8|70|125421 +1.3.6.1.2.1.31.1.1.1.8.9|70|34453 +1.3.6.1.2.1.31.1.1.1.8.10|70|20282 +1.3.6.1.2.1.31.1.1.1.8.11|70|81718 +1.3.6.1.2.1.31.1.1.1.8.12|70|20277 +1.3.6.1.2.1.31.1.1.1.8.13|70|52324 +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|43156 +1.3.6.1.2.1.31.1.1.1.8.18|70|6539 +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|20194 +1.3.6.1.2.1.31.1.1.1.8.24|70|0 +1.3.6.1.2.1.31.1.1.1.8.25|70|0 +1.3.6.1.2.1.31.1.1.1.8.26|70|0 +1.3.6.1.2.1.31.1.1.1.8.27|70|0 +1.3.6.1.2.1.31.1.1.1.8.28|70|139380101 +1.3.6.1.2.1.31.1.1.1.8.58|70|0 +1.3.6.1.2.1.31.1.1.1.8.152|70|0 +1.3.6.1.2.1.31.1.1.1.8.309|70|0 +1.3.6.1.2.1.31.1.1.1.8.507|70|0 +1.3.6.1.2.1.31.1.1.1.8.693|70|0 +1.3.6.1.2.1.31.1.1.1.8.1056|70|0 +1.3.6.1.2.1.31.1.1.1.8.2101|70|0 +1.3.6.1.2.1.31.1.1.1.8.2138|70|0 +1.3.6.1.2.1.31.1.1.1.8.4152|70|0 +1.3.6.1.2.1.31.1.1.1.8.4153|70|0 +1.3.6.1.2.1.31.1.1.1.8.4154|70|0 +1.3.6.1.2.1.31.1.1.1.8.4155|70|0 +1.3.6.1.2.1.31.1.1.1.8.4156|70|0 +1.3.6.1.2.1.31.1.1.1.8.4157|70|0 +1.3.6.1.2.1.31.1.1.1.8.4158|70|0 +1.3.6.1.2.1.31.1.1.1.8.4159|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|6741 +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|2277 +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|2293 +1.3.6.1.2.1.31.1.1.1.9.8|70|6083 +1.3.6.1.2.1.31.1.1.1.9.9|70|3310 +1.3.6.1.2.1.31.1.1.1.9.10|70|2288 +1.3.6.1.2.1.31.1.1.1.9.11|70|175 +1.3.6.1.2.1.31.1.1.1.9.12|70|2283 +1.3.6.1.2.1.31.1.1.1.9.13|70|13053 +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|18922 +1.3.6.1.2.1.31.1.1.1.9.18|70|507 +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|4601 +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.25|70|0 +1.3.6.1.2.1.31.1.1.1.9.26|70|0 +1.3.6.1.2.1.31.1.1.1.9.27|70|0 +1.3.6.1.2.1.31.1.1.1.9.28|70|79405907 +1.3.6.1.2.1.31.1.1.1.9.58|70|0 +1.3.6.1.2.1.31.1.1.1.9.152|70|0 +1.3.6.1.2.1.31.1.1.1.9.309|70|0 +1.3.6.1.2.1.31.1.1.1.9.507|70|0 +1.3.6.1.2.1.31.1.1.1.9.693|70|0 +1.3.6.1.2.1.31.1.1.1.9.1056|70|0 +1.3.6.1.2.1.31.1.1.1.9.2101|70|0 +1.3.6.1.2.1.31.1.1.1.9.2138|70|0 +1.3.6.1.2.1.31.1.1.1.9.4152|70|0 +1.3.6.1.2.1.31.1.1.1.9.4153|70|0 +1.3.6.1.2.1.31.1.1.1.9.4154|70|0 +1.3.6.1.2.1.31.1.1.1.9.4155|70|0 +1.3.6.1.2.1.31.1.1.1.9.4156|70|0 +1.3.6.1.2.1.31.1.1.1.9.4157|70|0 +1.3.6.1.2.1.31.1.1.1.9.4158|70|0 +1.3.6.1.2.1.31.1.1.1.9.4159|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|0 +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|10896934968 +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|528264110 +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|10960152929 +1.3.6.1.2.1.31.1.1.1.10.8|70|10962656865 +1.3.6.1.2.1.31.1.1.1.10.9|70|13840975776 +1.3.6.1.2.1.31.1.1.1.10.10|70|10899559471 +1.3.6.1.2.1.31.1.1.1.10.11|70|66570551653 +1.3.6.1.2.1.31.1.1.1.10.12|70|10859728023 +1.3.6.1.2.1.31.1.1.1.10.13|70|39324948529 +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|69700837625 +1.3.6.1.2.1.31.1.1.1.10.18|70|19787546538 +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|7661706991 +1.3.6.1.2.1.31.1.1.1.10.24|70|0 +1.3.6.1.2.1.31.1.1.1.10.25|70|0 +1.3.6.1.2.1.31.1.1.1.10.26|70|0 +1.3.6.1.2.1.31.1.1.1.10.27|70|0 +1.3.6.1.2.1.31.1.1.1.10.28|70|51578471499 +1.3.6.1.2.1.31.1.1.1.10.58|70|0 +1.3.6.1.2.1.31.1.1.1.10.152|70|0 +1.3.6.1.2.1.31.1.1.1.10.309|70|0 +1.3.6.1.2.1.31.1.1.1.10.507|70|0 +1.3.6.1.2.1.31.1.1.1.10.693|70|0 +1.3.6.1.2.1.31.1.1.1.10.1056|70|0 +1.3.6.1.2.1.31.1.1.1.10.2101|70|0 +1.3.6.1.2.1.31.1.1.1.10.2138|70|0 +1.3.6.1.2.1.31.1.1.1.10.4152|70|6766289 +1.3.6.1.2.1.31.1.1.1.10.4153|70|0 +1.3.6.1.2.1.31.1.1.1.10.4154|70|0 +1.3.6.1.2.1.31.1.1.1.10.4155|70|0 +1.3.6.1.2.1.31.1.1.1.10.4156|70|0 +1.3.6.1.2.1.31.1.1.1.10.4157|70|0 +1.3.6.1.2.1.31.1.1.1.10.4158|70|0 +1.3.6.1.2.1.31.1.1.1.10.4159|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|198055 +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|178594 +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|542073 +1.3.6.1.2.1.31.1.1.1.11.8|70|301337 +1.3.6.1.2.1.31.1.1.1.11.9|70|3343548 +1.3.6.1.2.1.31.1.1.1.11.10|70|358010 +1.3.6.1.2.1.31.1.1.1.11.11|70|54891417 +1.3.6.1.2.1.31.1.1.1.11.12|70|190085 +1.3.6.1.2.1.31.1.1.1.11.13|70|33640135 +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|45480196 +1.3.6.1.2.1.31.1.1.1.11.18|70|9777583 +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|2436157 +1.3.6.1.2.1.31.1.1.1.11.24|70|0 +1.3.6.1.2.1.31.1.1.1.11.25|70|0 +1.3.6.1.2.1.31.1.1.1.11.26|70|0 +1.3.6.1.2.1.31.1.1.1.11.27|70|0 +1.3.6.1.2.1.31.1.1.1.11.28|70|97342538 +1.3.6.1.2.1.31.1.1.1.11.58|70|0 +1.3.6.1.2.1.31.1.1.1.11.152|70|0 +1.3.6.1.2.1.31.1.1.1.11.309|70|0 +1.3.6.1.2.1.31.1.1.1.11.507|70|0 +1.3.6.1.2.1.31.1.1.1.11.693|70|0 +1.3.6.1.2.1.31.1.1.1.11.1056|70|0 +1.3.6.1.2.1.31.1.1.1.11.2101|70|0 +1.3.6.1.2.1.31.1.1.1.11.2138|70|0 +1.3.6.1.2.1.31.1.1.1.11.4152|70|82100 +1.3.6.1.2.1.31.1.1.1.11.4153|70|0 +1.3.6.1.2.1.31.1.1.1.11.4154|70|0 +1.3.6.1.2.1.31.1.1.1.11.4155|70|0 +1.3.6.1.2.1.31.1.1.1.11.4156|70|0 +1.3.6.1.2.1.31.1.1.1.11.4157|70|0 +1.3.6.1.2.1.31.1.1.1.11.4158|70|0 +1.3.6.1.2.1.31.1.1.1.11.4159|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|32237493 +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|1559563 +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|32278230 +1.3.6.1.2.1.31.1.1.1.12.8|70|32152697 +1.3.6.1.2.1.31.1.1.1.12.9|70|32263876 +1.3.6.1.2.1.31.1.1.1.12.10|70|32278227 +1.3.6.1.2.1.31.1.1.1.12.11|70|1409053 +1.3.6.1.2.1.31.1.1.1.12.12|70|32278093 +1.3.6.1.2.1.31.1.1.1.12.13|70|32225310 +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|32124628 +1.3.6.1.2.1.31.1.1.1.12.18|70|18282697 +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|20529930 +1.3.6.1.2.1.31.1.1.1.12.24|70|0 +1.3.6.1.2.1.31.1.1.1.12.25|70|0 +1.3.6.1.2.1.31.1.1.1.12.26|70|0 +1.3.6.1.2.1.31.1.1.1.12.27|70|0 +1.3.6.1.2.1.31.1.1.1.12.28|70|871907 +1.3.6.1.2.1.31.1.1.1.12.58|70|0 +1.3.6.1.2.1.31.1.1.1.12.152|70|0 +1.3.6.1.2.1.31.1.1.1.12.309|70|0 +1.3.6.1.2.1.31.1.1.1.12.507|70|0 +1.3.6.1.2.1.31.1.1.1.12.693|70|0 +1.3.6.1.2.1.31.1.1.1.12.1056|70|0 +1.3.6.1.2.1.31.1.1.1.12.2101|70|0 +1.3.6.1.2.1.31.1.1.1.12.2138|70|0 +1.3.6.1.2.1.31.1.1.1.12.4152|70|0 +1.3.6.1.2.1.31.1.1.1.12.4153|70|0 +1.3.6.1.2.1.31.1.1.1.12.4154|70|0 +1.3.6.1.2.1.31.1.1.1.12.4155|70|0 +1.3.6.1.2.1.31.1.1.1.12.4156|70|0 +1.3.6.1.2.1.31.1.1.1.12.4157|70|0 +1.3.6.1.2.1.31.1.1.1.12.4158|70|0 +1.3.6.1.2.1.31.1.1.1.12.4159|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|12040253 +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|4640239 +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|12044731 +1.3.6.1.2.1.31.1.1.1.13.8|70|12040938 +1.3.6.1.2.1.31.1.1.1.13.9|70|12043678 +1.3.6.1.2.1.31.1.1.1.13.10|70|12044722 +1.3.6.1.2.1.31.1.1.1.13.11|70|38816 +1.3.6.1.2.1.31.1.1.1.13.12|70|12044722 +1.3.6.1.2.1.31.1.1.1.13.13|70|12033864 +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|11966454 +1.3.6.1.2.1.31.1.1.1.13.18|70|4018288 +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|4094318 +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.25|70|0 +1.3.6.1.2.1.31.1.1.1.13.26|70|0 +1.3.6.1.2.1.31.1.1.1.13.27|70|0 +1.3.6.1.2.1.31.1.1.1.13.28|70|62350 +1.3.6.1.2.1.31.1.1.1.13.58|70|0 +1.3.6.1.2.1.31.1.1.1.13.152|70|0 +1.3.6.1.2.1.31.1.1.1.13.309|70|0 +1.3.6.1.2.1.31.1.1.1.13.507|70|0 +1.3.6.1.2.1.31.1.1.1.13.693|70|0 +1.3.6.1.2.1.31.1.1.1.13.1056|70|0 +1.3.6.1.2.1.31.1.1.1.13.2101|70|0 +1.3.6.1.2.1.31.1.1.1.13.2138|70|0 +1.3.6.1.2.1.31.1.1.1.13.4152|70|0 +1.3.6.1.2.1.31.1.1.1.13.4153|70|0 +1.3.6.1.2.1.31.1.1.1.13.4154|70|0 +1.3.6.1.2.1.31.1.1.1.13.4155|70|0 +1.3.6.1.2.1.31.1.1.1.13.4156|70|0 +1.3.6.1.2.1.31.1.1.1.13.4157|70|0 +1.3.6.1.2.1.31.1.1.1.13.4158|70|0 +1.3.6.1.2.1.31.1.1.1.13.4159|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.25|2|1 +1.3.6.1.2.1.31.1.1.1.14.26|2|1 +1.3.6.1.2.1.31.1.1.1.14.27|2|1 +1.3.6.1.2.1.31.1.1.1.14.28|2|1 +1.3.6.1.2.1.31.1.1.1.14.58|2|2 +1.3.6.1.2.1.31.1.1.1.14.152|2|2 +1.3.6.1.2.1.31.1.1.1.14.309|2|2 +1.3.6.1.2.1.31.1.1.1.14.507|2|2 +1.3.6.1.2.1.31.1.1.1.14.693|2|2 +1.3.6.1.2.1.31.1.1.1.14.1056|2|2 +1.3.6.1.2.1.31.1.1.1.14.2101|2|2 +1.3.6.1.2.1.31.1.1.1.14.2138|2|2 +1.3.6.1.2.1.31.1.1.1.14.4152|2|2 +1.3.6.1.2.1.31.1.1.1.14.4153|2|2 +1.3.6.1.2.1.31.1.1.1.14.4154|2|2 +1.3.6.1.2.1.31.1.1.1.14.4155|2|2 +1.3.6.1.2.1.31.1.1.1.14.4156|2|2 +1.3.6.1.2.1.31.1.1.1.14.4157|2|2 +1.3.6.1.2.1.31.1.1.1.14.4158|2|2 +1.3.6.1.2.1.31.1.1.1.14.4159|2|2 +1.3.6.1.2.1.31.1.1.1.15.1|66|10 +1.3.6.1.2.1.31.1.1.1.15.2|66|10 +1.3.6.1.2.1.31.1.1.1.15.3|66|100 +1.3.6.1.2.1.31.1.1.1.15.4|66|10 +1.3.6.1.2.1.31.1.1.1.15.5|66|100 +1.3.6.1.2.1.31.1.1.1.15.6|66|10 +1.3.6.1.2.1.31.1.1.1.15.7|66|100 +1.3.6.1.2.1.31.1.1.1.15.8|66|100 +1.3.6.1.2.1.31.1.1.1.15.9|66|100 +1.3.6.1.2.1.31.1.1.1.15.10|66|100 +1.3.6.1.2.1.31.1.1.1.15.11|66|100 +1.3.6.1.2.1.31.1.1.1.15.12|66|100 +1.3.6.1.2.1.31.1.1.1.15.13|66|100 +1.3.6.1.2.1.31.1.1.1.15.14|66|10 +1.3.6.1.2.1.31.1.1.1.15.15|66|10 +1.3.6.1.2.1.31.1.1.1.15.16|66|10 +1.3.6.1.2.1.31.1.1.1.15.17|66|100 +1.3.6.1.2.1.31.1.1.1.15.18|66|100 +1.3.6.1.2.1.31.1.1.1.15.19|66|10 +1.3.6.1.2.1.31.1.1.1.15.20|66|10 +1.3.6.1.2.1.31.1.1.1.15.21|66|10 +1.3.6.1.2.1.31.1.1.1.15.22|66|10 +1.3.6.1.2.1.31.1.1.1.15.23|66|100 +1.3.6.1.2.1.31.1.1.1.15.24|66|10 +1.3.6.1.2.1.31.1.1.1.15.25|66|10 +1.3.6.1.2.1.31.1.1.1.15.26|66|10 +1.3.6.1.2.1.31.1.1.1.15.27|66|10 +1.3.6.1.2.1.31.1.1.1.15.28|66|1000 +1.3.6.1.2.1.31.1.1.1.15.58|66|0 +1.3.6.1.2.1.31.1.1.1.15.152|66|0 +1.3.6.1.2.1.31.1.1.1.15.309|66|0 +1.3.6.1.2.1.31.1.1.1.15.507|66|0 +1.3.6.1.2.1.31.1.1.1.15.693|66|0 +1.3.6.1.2.1.31.1.1.1.15.1056|66|0 +1.3.6.1.2.1.31.1.1.1.15.2101|66|0 +1.3.6.1.2.1.31.1.1.1.15.2138|66|0 +1.3.6.1.2.1.31.1.1.1.15.4152|66|0 +1.3.6.1.2.1.31.1.1.1.15.4153|66|0 +1.3.6.1.2.1.31.1.1.1.15.4154|66|0 +1.3.6.1.2.1.31.1.1.1.15.4155|66|0 +1.3.6.1.2.1.31.1.1.1.15.4156|66|0 +1.3.6.1.2.1.31.1.1.1.15.4157|66|0 +1.3.6.1.2.1.31.1.1.1.15.4158|66|0 +1.3.6.1.2.1.31.1.1.1.15.4159|66|0 +1.3.6.1.2.1.31.1.1.1.16.1|2|1 +1.3.6.1.2.1.31.1.1.1.16.2|2|1 +1.3.6.1.2.1.31.1.1.1.16.3|2|1 +1.3.6.1.2.1.31.1.1.1.16.4|2|1 +1.3.6.1.2.1.31.1.1.1.16.5|2|1 +1.3.6.1.2.1.31.1.1.1.16.6|2|1 +1.3.6.1.2.1.31.1.1.1.16.7|2|1 +1.3.6.1.2.1.31.1.1.1.16.8|2|1 +1.3.6.1.2.1.31.1.1.1.16.9|2|1 +1.3.6.1.2.1.31.1.1.1.16.10|2|1 +1.3.6.1.2.1.31.1.1.1.16.11|2|1 +1.3.6.1.2.1.31.1.1.1.16.12|2|1 +1.3.6.1.2.1.31.1.1.1.16.13|2|1 +1.3.6.1.2.1.31.1.1.1.16.14|2|1 +1.3.6.1.2.1.31.1.1.1.16.15|2|1 +1.3.6.1.2.1.31.1.1.1.16.16|2|1 +1.3.6.1.2.1.31.1.1.1.16.17|2|1 +1.3.6.1.2.1.31.1.1.1.16.18|2|1 +1.3.6.1.2.1.31.1.1.1.16.19|2|1 +1.3.6.1.2.1.31.1.1.1.16.20|2|1 +1.3.6.1.2.1.31.1.1.1.16.21|2|1 +1.3.6.1.2.1.31.1.1.1.16.22|2|1 +1.3.6.1.2.1.31.1.1.1.16.23|2|1 +1.3.6.1.2.1.31.1.1.1.16.24|2|1 +1.3.6.1.2.1.31.1.1.1.16.25|2|1 +1.3.6.1.2.1.31.1.1.1.16.26|2|1 +1.3.6.1.2.1.31.1.1.1.16.27|2|1 +1.3.6.1.2.1.31.1.1.1.16.28|2|1 +1.3.6.1.2.1.31.1.1.1.16.58|2|2 +1.3.6.1.2.1.31.1.1.1.16.152|2|2 +1.3.6.1.2.1.31.1.1.1.16.309|2|2 +1.3.6.1.2.1.31.1.1.1.16.507|2|2 +1.3.6.1.2.1.31.1.1.1.16.693|2|2 +1.3.6.1.2.1.31.1.1.1.16.1056|2|2 +1.3.6.1.2.1.31.1.1.1.16.2101|2|2 +1.3.6.1.2.1.31.1.1.1.16.2138|2|2 +1.3.6.1.2.1.31.1.1.1.16.4152|2|2 +1.3.6.1.2.1.31.1.1.1.16.4153|2|2 +1.3.6.1.2.1.31.1.1.1.16.4154|2|2 +1.3.6.1.2.1.31.1.1.1.16.4155|2|2 +1.3.6.1.2.1.31.1.1.1.16.4156|2|2 +1.3.6.1.2.1.31.1.1.1.16.4157|2|2 +1.3.6.1.2.1.31.1.1.1.16.4158|2|2 +1.3.6.1.2.1.31.1.1.1.16.4159|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.25|2|1 +1.3.6.1.2.1.31.1.1.1.17.26|2|1 +1.3.6.1.2.1.31.1.1.1.17.27|2|1 +1.3.6.1.2.1.31.1.1.1.17.28|2|1 +1.3.6.1.2.1.31.1.1.1.17.58|2|2 +1.3.6.1.2.1.31.1.1.1.17.152|2|2 +1.3.6.1.2.1.31.1.1.1.17.309|2|2 +1.3.6.1.2.1.31.1.1.1.17.507|2|2 +1.3.6.1.2.1.31.1.1.1.17.693|2|2 +1.3.6.1.2.1.31.1.1.1.17.1056|2|2 +1.3.6.1.2.1.31.1.1.1.17.2101|2|2 +1.3.6.1.2.1.31.1.1.1.17.2138|2|2 +1.3.6.1.2.1.31.1.1.1.17.4152|2|2 +1.3.6.1.2.1.31.1.1.1.17.4153|2|2 +1.3.6.1.2.1.31.1.1.1.17.4154|2|2 +1.3.6.1.2.1.31.1.1.1.17.4155|2|2 +1.3.6.1.2.1.31.1.1.1.17.4156|2|2 +1.3.6.1.2.1.31.1.1.1.17.4157|2|2 +1.3.6.1.2.1.31.1.1.1.17.4158|2|2 +1.3.6.1.2.1.31.1.1.1.17.4159|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.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| +1.3.6.1.2.1.31.1.1.1.18.23|4| +1.3.6.1.2.1.31.1.1.1.18.24|4| +1.3.6.1.2.1.31.1.1.1.18.25|4| +1.3.6.1.2.1.31.1.1.1.18.26|4| +1.3.6.1.2.1.31.1.1.1.18.27|4| +1.3.6.1.2.1.31.1.1.1.18.28|4| +1.3.6.1.2.1.31.1.1.1.18.58|4|DEFAULT_VLAN +1.3.6.1.2.1.31.1.1.1.18.152|4|BARRACON_8H_8L +1.3.6.1.2.1.31.1.1.1.18.309|4|ASIC +1.3.6.1.2.1.31.1.1.1.18.507|4|Videoapuntes +1.3.6.1.2.1.31.1.1.1.18.693|4|APS-B8HLK +1.3.6.1.2.1.31.1.1.1.18.1056|4|GESTION +1.3.6.1.2.1.31.1.1.1.18.2101|4|TIP-ASIC +1.3.6.1.2.1.31.1.1.1.18.2138|4|TIP-BAR8H8K +1.3.6.1.2.1.31.1.1.1.18.4152|4|lo0 +1.3.6.1.2.1.31.1.1.1.18.4153|4|lo1 +1.3.6.1.2.1.31.1.1.1.18.4154|4|lo2 +1.3.6.1.2.1.31.1.1.1.18.4155|4|lo3 +1.3.6.1.2.1.31.1.1.1.18.4156|4|lo4 +1.3.6.1.2.1.31.1.1.1.18.4157|4|lo5 +1.3.6.1.2.1.31.1.1.1.18.4158|4|lo6 +1.3.6.1.2.1.31.1.1.1.18.4159|4|lo7 +1.3.6.1.2.1.31.1.1.1.19.1|67|1241 +1.3.6.1.2.1.31.1.1.1.19.2|67|1242 +1.3.6.1.2.1.31.1.1.1.19.3|67|4157 +1.3.6.1.2.1.31.1.1.1.19.4|67|1246 +1.3.6.1.2.1.31.1.1.1.19.5|67|3556 +1.3.6.1.2.1.31.1.1.1.19.6|67|1249 +1.3.6.1.2.1.31.1.1.1.19.7|67|2791 +1.3.6.1.2.1.31.1.1.1.19.8|67|3468 +1.3.6.1.2.1.31.1.1.1.19.9|67|2822 +1.3.6.1.2.1.31.1.1.1.19.10|67|2853 +1.3.6.1.2.1.31.1.1.1.19.11|67|72171133 +1.3.6.1.2.1.31.1.1.1.19.12|67|3590 +1.3.6.1.2.1.31.1.1.1.19.13|67|4191 +1.3.6.1.2.1.31.1.1.1.19.14|67|1262 +1.3.6.1.2.1.31.1.1.1.19.15|67|1264 +1.3.6.1.2.1.31.1.1.1.19.16|67|1266 +1.3.6.1.2.1.31.1.1.1.19.17|67|242632454 +1.3.6.1.2.1.31.1.1.1.19.18|67|242128329 +1.3.6.1.2.1.31.1.1.1.19.19|67|1271 +1.3.6.1.2.1.31.1.1.1.19.20|67|1272 +1.3.6.1.2.1.31.1.1.1.19.21|67|1005 +1.3.6.1.2.1.31.1.1.1.19.22|67|1274 +1.3.6.1.2.1.31.1.1.1.19.23|67|242506824 +1.3.6.1.2.1.31.1.1.1.19.24|67|1277 +1.3.6.1.2.1.31.1.1.1.19.25|67|1317 +1.3.6.1.2.1.31.1.1.1.19.26|67|1344 +1.3.6.1.2.1.31.1.1.1.19.27|67|1371 +1.3.6.1.2.1.31.1.1.1.19.28|67|1766 +1.3.6.1.2.1.31.1.1.1.19.58|67|1946 +1.3.6.1.2.1.31.1.1.1.19.152|67|1865 +1.3.6.1.2.1.31.1.1.1.19.309|67|1946 +1.3.6.1.2.1.31.1.1.1.19.507|67|1946 +1.3.6.1.2.1.31.1.1.1.19.693|67|1946 +1.3.6.1.2.1.31.1.1.1.19.1056|67|1946 +1.3.6.1.2.1.31.1.1.1.19.2101|67|1946 +1.3.6.1.2.1.31.1.1.1.19.2138|67|1946 +1.3.6.1.2.1.31.1.1.1.19.4152|67|0 +1.3.6.1.2.1.31.1.1.1.19.4153|67|0 +1.3.6.1.2.1.31.1.1.1.19.4154|67|0 +1.3.6.1.2.1.31.1.1.1.19.4155|67|0 +1.3.6.1.2.1.31.1.1.1.19.4156|67|0 +1.3.6.1.2.1.31.1.1.1.19.4157|67|0 +1.3.6.1.2.1.31.1.1.1.19.4158|67|0 +1.3.6.1.2.1.31.1.1.1.19.4159|67|0 +1.3.6.1.2.1.47.1.1.1.1.2.1|4|HP J9850A Switch 5406Rzl2 +1.3.6.1.2.1.47.1.1.1.1.2.2|4|HP J9850A Switch backplane +1.3.6.1.2.1.47.1.1.1.1.2.3|4|HP J9850A Switch fan tray container +1.3.6.1.2.1.47.1.1.1.1.2.4|4|HP J9850A Switch temperature sensor pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.2.5|4|HP J9850A Switch power supply bay pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.2.6|4|HP J9850A Switch management module pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.2.9|4|HP J9850A Switch interface module pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.2.10|4|HP J9775A Switch power supply +1.3.6.1.2.1.47.1.1.1.1.2.11|4|HP J9850A Switch fan +1.3.6.1.2.1.47.1.1.1.1.2.12|4|HP J9850A Switch fan +1.3.6.1.2.1.47.1.1.1.1.2.13|4|HP J9850A Switch fan +1.3.6.1.2.1.47.1.1.1.1.2.14|4|HP J9850A Switch fan +1.3.6.1.2.1.47.1.1.1.1.2.15|4|HP J9850A Switch fan +1.3.6.1.2.1.47.1.1.1.1.2.16|4|HP J9850A Switch fan +1.3.6.1.2.1.47.1.1.1.1.2.17|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.18|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.19|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.20|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.21|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.22|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.23|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.24|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.25|4|HP J9850A Switch temperature sensor +1.3.6.1.2.1.47.1.1.1.1.2.26|4|HP J9850A Switch power supply bay +1.3.6.1.2.1.47.1.1.1.1.2.27|4|HP J9850A Switch power supply bay +1.3.6.1.2.1.47.1.1.1.1.2.28|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.29|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.30|4|HP J9850A Switch power supply +1.3.6.1.2.1.47.1.1.1.1.2.31|4|HP J9850A Switch power supply +1.3.6.1.2.1.47.1.1.1.1.2.32|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.33|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.34|4|HP J9850A Switch Management Module Slot +1.3.6.1.2.1.47.1.1.1.1.2.35|4|HP J9850A Switch Management Module Slot +1.3.6.1.2.1.47.1.1.1.1.2.36|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.37|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.38|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.39|4|HP J9850A Switch port module slot +1.3.6.1.2.1.47.1.1.1.1.2.40|4|HP J9850A Switch port module slot +1.3.6.1.2.1.47.1.1.1.1.2.41|4|HP J9850A Switch port module slot +1.3.6.1.2.1.47.1.1.1.1.2.42|4|HP J9850A Switch port module slot +1.3.6.1.2.1.47.1.1.1.1.2.43|4|HP J9850A Switch port module slot +1.3.6.1.2.1.47.1.1.1.1.2.44|4|HP J9850A Switch port module slot +1.3.6.1.2.1.47.1.1.1.1.2.45|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.46|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.47|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.48|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.49|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.50|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.51|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.52|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.53|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.54|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.55|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.56|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.57|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.58|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.59|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.60|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.61|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.62|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.63|4|HP 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.64|4|HP 1000BASE-LX Port +1.3.6.1.2.1.47.1.1.1.1.2.65|4|HP No Card +1.3.6.1.2.1.47.1.1.1.1.2.66|4|HP No Card +1.3.6.1.2.1.47.1.1.1.1.2.67|4|HP No Card +1.3.6.1.2.1.47.1.1.1.1.2.69|4|HP J9827A Management Module 5400Rzl2 +1.3.6.1.2.1.47.1.1.1.1.2.74|4|HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod +1.3.6.1.2.1.47.1.1.1.1.2.75|4|HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod +1.3.6.1.2.1.47.1.1.1.1.2.76|4|HP J9987A 24p 10/100/1000BASE-T v3 zl2 Mod +1.3.6.1.2.1.47.1.1.1.1.2.104|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.105|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.106|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.107|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.108|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.109|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.110|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.111|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.112|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.113|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.114|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.115|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.116|4|HP J9989A 1000BASE-LX Port +1.3.6.1.2.1.47.1.1.1.1.2.117|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.118|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.119|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.120|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.121|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.122|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.123|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.124|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.125|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.126|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.127|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.136|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.137|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.138|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.139|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.140|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.141|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.142|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.143|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.144|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.145|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.146|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.147|4|HP J9989A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.148|4|HP J9989A 1000BASE-LX Port +1.3.6.1.2.1.47.1.1.1.1.2.149|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.150|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.151|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.152|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.153|4|HP J9989A 1000BASE-SX Port +1.3.6.1.2.1.47.1.1.1.1.2.154|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.155|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.156|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.157|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.158|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.159|4|HP J9989A No Card +1.3.6.1.2.1.47.1.1.1.1.2.168|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.169|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.170|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.171|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.172|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.173|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.174|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.175|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.176|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.177|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.178|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.179|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.180|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.181|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.182|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.183|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.184|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.185|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.186|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.187|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.188|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.189|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.190|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.2.191|4|HP J9987A 100/1000BASE-T Port +1.3.6.1.2.1.47.1.1.1.1.7.1|4|Chassis +1.3.6.1.2.1.47.1.1.1.1.7.2|4|Backplane +1.3.6.1.2.1.47.1.1.1.1.7.3|4|Fan Tray +1.3.6.1.2.1.47.1.1.1.1.7.4|4|Temperature sensor pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.7.5|4|Power supply bay pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.7.6|4|Management module pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.7.9|4|Interface module pseudocontainer +1.3.6.1.2.1.47.1.1.1.1.7.10|4|Power Supply +1.3.6.1.2.1.47.1.1.1.1.7.11|4|Fan 1 +1.3.6.1.2.1.47.1.1.1.1.7.12|4|Fan 2 +1.3.6.1.2.1.47.1.1.1.1.7.13|4|Fan 3 +1.3.6.1.2.1.47.1.1.1.1.7.14|4|Fan 4 +1.3.6.1.2.1.47.1.1.1.1.7.15|4|Fan 5 +1.3.6.1.2.1.47.1.1.1.1.7.16|4|Fan 6 +1.3.6.1.2.1.47.1.1.1.1.7.17|4|Port 2 +1.3.6.1.2.1.47.1.1.1.1.7.18|4|Port 3 +1.3.6.1.2.1.47.1.1.1.1.7.19|4|Port 4 +1.3.6.1.2.1.47.1.1.1.1.7.20|4|Port 5 +1.3.6.1.2.1.47.1.1.1.1.7.21|4|Port 6 +1.3.6.1.2.1.47.1.1.1.1.7.22|4|Port 7 +1.3.6.1.2.1.47.1.1.1.1.7.23|4|Port 8 +1.3.6.1.2.1.47.1.1.1.1.7.24|4|Port 9 +1.3.6.1.2.1.47.1.1.1.1.7.25|4|Chassis Temperature +1.3.6.1.2.1.47.1.1.1.1.7.26|4|Power Supply Bay 1 +1.3.6.1.2.1.47.1.1.1.1.7.27|4|Power Supply Bay 2 +1.3.6.1.2.1.47.1.1.1.1.7.28|4|Port 13 +1.3.6.1.2.1.47.1.1.1.1.7.29|4|Port 14 +1.3.6.1.2.1.47.1.1.1.1.7.30|4|Power Supply 1 +1.3.6.1.2.1.47.1.1.1.1.7.31|4|Power Supply 2 +1.3.6.1.2.1.47.1.1.1.1.7.32|4|Port 17 +1.3.6.1.2.1.47.1.1.1.1.7.33|4|Port 18 +1.3.6.1.2.1.47.1.1.1.1.7.34|4|Switch Management Module Slot +1.3.6.1.2.1.47.1.1.1.1.7.35|4|Switch Management Module Slot +1.3.6.1.2.1.47.1.1.1.1.7.36|4|Port 21 +1.3.6.1.2.1.47.1.1.1.1.7.37|4|Port 22 +1.3.6.1.2.1.47.1.1.1.1.7.38|4|Port 23 +1.3.6.1.2.1.47.1.1.1.1.7.39|4|Slot A +1.3.6.1.2.1.47.1.1.1.1.7.40|4|Slot B +1.3.6.1.2.1.47.1.1.1.1.7.41|4|Slot C +1.3.6.1.2.1.47.1.1.1.1.7.42|4|Slot D +1.3.6.1.2.1.47.1.1.1.1.7.43|4|Slot E +1.3.6.1.2.1.47.1.1.1.1.7.44|4|Slot F +1.3.6.1.2.1.47.1.1.1.1.7.45|4|Port 30 +1.3.6.1.2.1.47.1.1.1.1.7.46|4|Port 31 +1.3.6.1.2.1.47.1.1.1.1.7.47|4|Port 32 +1.3.6.1.2.1.47.1.1.1.1.7.48|4|Port 33 +1.3.6.1.2.1.47.1.1.1.1.7.49|4|Port 34 +1.3.6.1.2.1.47.1.1.1.1.7.50|4|Port 35 +1.3.6.1.2.1.47.1.1.1.1.7.51|4|Port 36 +1.3.6.1.2.1.47.1.1.1.1.7.52|4|Port 37 +1.3.6.1.2.1.47.1.1.1.1.7.53|4|Port 38 +1.3.6.1.2.1.47.1.1.1.1.7.54|4|Port 39 +1.3.6.1.2.1.47.1.1.1.1.7.55|4|Port 40 +1.3.6.1.2.1.47.1.1.1.1.7.56|4|Port 41 +1.3.6.1.2.1.47.1.1.1.1.7.57|4|Port 42 +1.3.6.1.2.1.47.1.1.1.1.7.58|4|Port 43 +1.3.6.1.2.1.47.1.1.1.1.7.59|4|Port 44 +1.3.6.1.2.1.47.1.1.1.1.7.60|4|Port 45 +1.3.6.1.2.1.47.1.1.1.1.7.61|4|Port 46 +1.3.6.1.2.1.47.1.1.1.1.7.62|4|Port 47 +1.3.6.1.2.1.47.1.1.1.1.7.63|4|Port 48 +1.3.6.1.2.1.47.1.1.1.1.7.64|4|Port 49 +1.3.6.1.2.1.47.1.1.1.1.7.65|4|Port 50 +1.3.6.1.2.1.47.1.1.1.1.7.66|4|Port 51 +1.3.6.1.2.1.47.1.1.1.1.7.67|4|Port 52 +1.3.6.1.2.1.47.1.1.1.1.7.69|4|Switch Management Module +1.3.6.1.2.1.47.1.1.1.1.7.74|4|A +1.3.6.1.2.1.47.1.1.1.1.7.75|4|B +1.3.6.1.2.1.47.1.1.1.1.7.76|4|C +1.3.6.1.2.1.47.1.1.1.1.7.104|4|Port A1 +1.3.6.1.2.1.47.1.1.1.1.7.105|4|Port A2 +1.3.6.1.2.1.47.1.1.1.1.7.106|4|Port A3 +1.3.6.1.2.1.47.1.1.1.1.7.107|4|Port A4 +1.3.6.1.2.1.47.1.1.1.1.7.108|4|Port A5 +1.3.6.1.2.1.47.1.1.1.1.7.109|4|Port A6 +1.3.6.1.2.1.47.1.1.1.1.7.110|4|Port A7 +1.3.6.1.2.1.47.1.1.1.1.7.111|4|Port A8 +1.3.6.1.2.1.47.1.1.1.1.7.112|4|Port A9 +1.3.6.1.2.1.47.1.1.1.1.7.113|4|Port A10 +1.3.6.1.2.1.47.1.1.1.1.7.114|4|Port A11 +1.3.6.1.2.1.47.1.1.1.1.7.115|4|Port A12 +1.3.6.1.2.1.47.1.1.1.1.7.116|4|Port A13 +1.3.6.1.2.1.47.1.1.1.1.7.117|4|Port A14 +1.3.6.1.2.1.47.1.1.1.1.7.118|4|Port A15 +1.3.6.1.2.1.47.1.1.1.1.7.119|4|Port A16 +1.3.6.1.2.1.47.1.1.1.1.7.120|4|Port A17 +1.3.6.1.2.1.47.1.1.1.1.7.121|4|Port A18 +1.3.6.1.2.1.47.1.1.1.1.7.122|4|Port A19 +1.3.6.1.2.1.47.1.1.1.1.7.123|4|Port A20 +1.3.6.1.2.1.47.1.1.1.1.7.124|4|Port A21 +1.3.6.1.2.1.47.1.1.1.1.7.125|4|Port A22 +1.3.6.1.2.1.47.1.1.1.1.7.126|4|Port A23 +1.3.6.1.2.1.47.1.1.1.1.7.127|4|Port A24 +1.3.6.1.2.1.47.1.1.1.1.7.136|4|Port B1 +1.3.6.1.2.1.47.1.1.1.1.7.137|4|Port B2 +1.3.6.1.2.1.47.1.1.1.1.7.138|4|Port B3 +1.3.6.1.2.1.47.1.1.1.1.7.139|4|Port B4 +1.3.6.1.2.1.47.1.1.1.1.7.140|4|Port B5 +1.3.6.1.2.1.47.1.1.1.1.7.141|4|Port B6 +1.3.6.1.2.1.47.1.1.1.1.7.142|4|Port B7 +1.3.6.1.2.1.47.1.1.1.1.7.143|4|Port B8 +1.3.6.1.2.1.47.1.1.1.1.7.144|4|Port B9 +1.3.6.1.2.1.47.1.1.1.1.7.145|4|Port B10 +1.3.6.1.2.1.47.1.1.1.1.7.146|4|Port B11 +1.3.6.1.2.1.47.1.1.1.1.7.147|4|Port B12 +1.3.6.1.2.1.47.1.1.1.1.7.148|4|Port B13 +1.3.6.1.2.1.47.1.1.1.1.7.149|4|Port B14 +1.3.6.1.2.1.47.1.1.1.1.7.150|4|Port B15 +1.3.6.1.2.1.47.1.1.1.1.7.151|4|Port B16 +1.3.6.1.2.1.47.1.1.1.1.7.152|4|Port B17 +1.3.6.1.2.1.47.1.1.1.1.7.153|4|Port B18 +1.3.6.1.2.1.47.1.1.1.1.7.154|4|Port B19 +1.3.6.1.2.1.47.1.1.1.1.7.155|4|Port B20 +1.3.6.1.2.1.47.1.1.1.1.7.156|4|Port B21 +1.3.6.1.2.1.47.1.1.1.1.7.157|4|Port B22 +1.3.6.1.2.1.47.1.1.1.1.7.158|4|Port B23 +1.3.6.1.2.1.47.1.1.1.1.7.159|4|Port B24 +1.3.6.1.2.1.47.1.1.1.1.7.168|4|Port C1 +1.3.6.1.2.1.47.1.1.1.1.7.169|4|Port C2 +1.3.6.1.2.1.47.1.1.1.1.7.170|4|Port C3 +1.3.6.1.2.1.47.1.1.1.1.7.171|4|Port C4 +1.3.6.1.2.1.47.1.1.1.1.7.172|4|Port C5 +1.3.6.1.2.1.47.1.1.1.1.7.173|4|Port C6 +1.3.6.1.2.1.47.1.1.1.1.7.174|4|Port C7 +1.3.6.1.2.1.47.1.1.1.1.7.175|4|Port C8 +1.3.6.1.2.1.47.1.1.1.1.7.176|4|Port C9 +1.3.6.1.2.1.47.1.1.1.1.7.177|4|Port C10 +1.3.6.1.2.1.47.1.1.1.1.7.178|4|Port C11 +1.3.6.1.2.1.47.1.1.1.1.7.179|4|Port C12 +1.3.6.1.2.1.47.1.1.1.1.7.180|4|Port C13 +1.3.6.1.2.1.47.1.1.1.1.7.181|4|Port C14 +1.3.6.1.2.1.47.1.1.1.1.7.182|4|Port C15 +1.3.6.1.2.1.47.1.1.1.1.7.183|4|Port C16 +1.3.6.1.2.1.47.1.1.1.1.7.184|4|Port C17 +1.3.6.1.2.1.47.1.1.1.1.7.185|4|Port C18 +1.3.6.1.2.1.47.1.1.1.1.7.186|4|Port C19 +1.3.6.1.2.1.47.1.1.1.1.7.187|4|Port C20 +1.3.6.1.2.1.47.1.1.1.1.7.188|4|Port C21 +1.3.6.1.2.1.47.1.1.1.1.7.189|4|Port C22 +1.3.6.1.2.1.47.1.1.1.1.7.190|4|Port C23 +1.3.6.1.2.1.47.1.1.1.1.7.191|4|Port C24 +1.3.6.1.2.1.99.1.1.1.1.5|2|1 +1.3.6.1.2.1.99.1.1.1.1.11|2|1 +1.3.6.1.2.1.99.1.1.1.1.12|2|1 +1.3.6.1.2.1.99.1.1.1.1.13|2|1 +1.3.6.1.2.1.99.1.1.1.1.14|2|1 +1.3.6.1.2.1.99.1.1.1.1.15|2|1 +1.3.6.1.2.1.99.1.1.1.1.16|2|1 +1.3.6.1.2.1.99.1.1.1.1.25|2|8 +1.3.6.1.2.1.99.1.1.1.2.5|2|9 +1.3.6.1.2.1.99.1.1.1.2.11|2|9 +1.3.6.1.2.1.99.1.1.1.2.12|2|9 +1.3.6.1.2.1.99.1.1.1.2.13|2|9 +1.3.6.1.2.1.99.1.1.1.2.14|2|9 +1.3.6.1.2.1.99.1.1.1.2.15|2|9 +1.3.6.1.2.1.99.1.1.1.2.16|2|9 +1.3.6.1.2.1.99.1.1.1.2.25|2|9 +1.3.6.1.2.1.99.1.1.1.3.5|2|0 +1.3.6.1.2.1.99.1.1.1.3.11|2|0 +1.3.6.1.2.1.99.1.1.1.3.12|2|0 +1.3.6.1.2.1.99.1.1.1.3.13|2|0 +1.3.6.1.2.1.99.1.1.1.3.14|2|0 +1.3.6.1.2.1.99.1.1.1.3.15|2|0 +1.3.6.1.2.1.99.1.1.1.3.16|2|0 +1.3.6.1.2.1.99.1.1.1.3.25|2|0 +1.3.6.1.2.1.99.1.1.1.4.5|2|0 +1.3.6.1.2.1.99.1.1.1.4.11|2|0 +1.3.6.1.2.1.99.1.1.1.4.12|2|0 +1.3.6.1.2.1.99.1.1.1.4.13|2|0 +1.3.6.1.2.1.99.1.1.1.4.14|2|0 +1.3.6.1.2.1.99.1.1.1.4.15|2|0 +1.3.6.1.2.1.99.1.1.1.4.16|2|0 +1.3.6.1.2.1.99.1.1.1.4.25|2|20 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.1.1|2|1 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.1.2|2|2 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.2.1|6|1.3.6.1.4.1.11.2.3.7.8.3.3 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.2.2|6|1.3.6.1.4.1.11.2.3.7.8.3.2 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.3.1|2|1 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.3.2|2|1 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1|2|5 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.2|2|4 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.5.1|65|0 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.5.2|65|0 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.6.1|65|0 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.6.2|65|0 +1.3.6.1.4.1.11.2.14.11.1.2.6.1.7.1|4|Chassis Sensor +1.3.6.1.4.1.11.2.14.11.1.2.6.1.7.2|4|Fan Sensor +1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0|2|42 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.1|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.2|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.3|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.4|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.5|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.6|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.1|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.2|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.3|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.4|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.5|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.6|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.1|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.2|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.3|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.4|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.5|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.6|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.1|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.2|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.3|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.4|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.5|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.6|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.1|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.2|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.3|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.4|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.5|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.6|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.1|2|3 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.2|2|3 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.3.1|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.3.2|65|0 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.1|2|27 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.2|2|29 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.5.1|4|AC 120V/240V +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.5.2|4|AC 120V/240V +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.1|2|48 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.2|2|45 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.7.1|2|1100 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.7.2|2|1100 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.8.1|65|10841186 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.8.2|65|10841186 +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.9.1|4|J9829A +1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.9.2|4|J9829A +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.1.49|2|49 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.2.49|4|49 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.3.49|4|J4859C +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.4.49|4|EO11803190184 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.5.49|4|1000LX +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.6.49|4|LC +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.7.49|4|1310nm +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.8.49|4|20.0km (9um), +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.9.49|2|1 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.10.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.11.49|2|45398 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.12.49|66|32970 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.13.49|66|8850 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.14.49|2|-6020 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.15.49|2|-99999999 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.16.49|4|80 20 00 00 0 10 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.17.49|4|00 00 80 00 16 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.18.49|2|90000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.19.49|2|-45000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.20.49|2|85000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.21.49|2|-40000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.22.49|66|38000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.23.49|66|27000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.24.49|66|37000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.25.49|66|28000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.26.49|66|100000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.27.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.28.49|66|90000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.29.49|66|100 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.30.49|66|6310 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.31.49|66|1000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.32.49|66|5012 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.33.49|66|1259 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.34.49|66|10000 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.35.49|66|40 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.36.49|66|7943 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.37.49|66|50 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.38.49|4|Fri Jan 5 22:03:36 1990 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.39.49|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.40.49|66|10 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.41.49|2|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.42.49|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.43.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.44.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.45.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.46.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.47.49|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.48.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.49.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.50.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.51.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.52.49|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.53.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.54.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.55.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.56.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.57.49|2|5 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.58.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.59.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.60.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.61.49|66|0 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.62.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.63.49|2|2 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.64.49|67|42501669 +1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.65.49|4|180319 +1.3.6.1.6.3.10.2.1.3.0|2|10841209