From 2dc05ee5013cc6cbdd93ffc1d3367b59dfb9b2b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Pivarn=C3=ADk?= Date: Tue, 21 May 2019 03:56:19 +0200 Subject: [PATCH] Fixed Cisco MAC accounting discovery, polling and HTML templates. (#10158) * Fix Cisco MAC acounting discovery, polling and HTML templates. * Remove empty code. * Provide test data for cisco-mac-accounting module. * Added module test dependency. --- LibreNMS/Util/ModuleTestHelper.php | 1 + .../discovery/cisco-mac-accounting.inc.php | 23 +- .../html/graphs/port/mac_acc_total.inc.php | 8 +- .../pages/device/port/macaccounting.inc.php | 10 +- includes/polling/cisco-mac-accounting.inc.php | 24 +- tests/data/ios.json | 8612 ++++++ tests/data/iosxr.json | 25370 ++++++++++++++++ tests/module_tables.yaml | 7 + tests/snmpsim/ios.snmprec | 1094 +- tests/snmpsim/iosxr.snmprec | 3912 +++ 10 files changed, 39031 insertions(+), 30 deletions(-) create mode 100644 tests/data/ios.json diff --git a/LibreNMS/Util/ModuleTestHelper.php b/LibreNMS/Util/ModuleTestHelper.php index 8da7ca40bd..83be8da868 100644 --- a/LibreNMS/Util/ModuleTestHelper.php +++ b/LibreNMS/Util/ModuleTestHelper.php @@ -57,6 +57,7 @@ class ModuleTestHelper 'vlans' => ['ports', 'vlans'], 'vrf' => ['ports', 'vrf'], 'nac' => ['ports', 'nac'], + 'cisco-mac-accounting' => ['ports', 'cisco-mac-accounting'], ]; diff --git a/includes/discovery/cisco-mac-accounting.inc.php b/includes/discovery/cisco-mac-accounting.inc.php index dc37492ea5..b09d9bb8c7 100644 --- a/includes/discovery/cisco-mac-accounting.inc.php +++ b/includes/discovery/cisco-mac-accounting.inc.php @@ -7,7 +7,6 @@ if ($device['os_group'] == 'cisco') { list($oid) = explode(' ', $data); $oid = str_replace('.1.3.6.1.4.1.9.9.84.1.2.1.1.4.', '', $oid); list($if, $direction, $a_a, $a_b, $a_c, $a_d, $a_e, $a_f) = explode('.', $oid); - $oid = "$a_a.$a_b.$a_c.$a_d.$a_e.$a_f"; unset($interface); $interface = dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `ifIndex` = ?', array($device['device_id'], $if)); $ah_a = zeropad(dechex($a_a)); @@ -16,27 +15,15 @@ if ($device['os_group'] == 'cisco') { $ah_d = zeropad(dechex($a_d)); $ah_e = zeropad(dechex($a_e)); $ah_f = zeropad(dechex($a_f)); - $mac = "$ah_a:$ah_b:$ah_c:$ah_d:$ah_e:$ah_f"; - $mac_cisco = "$ah_a$ah_b.$ah_c$ah_d.$ah_e$ah_f"; - $mac_cisco = $mac_table[$if][$mac]['ciscomac']; - $clean_mac = $mac_table[$if][$mac]['cleanmac']; - $ip = $mac_table[$if][$mac]['ip']; - if ($ip && $interface) { - $new_mac = str_replace(':', '', $mac); - // echo($interface['ifDescr'] . " ($if) -> $mac ($oid) -> $ip"); - if (dbFetchCell('SELECT COUNT(*) from mac_accounting WHERE port_id = ? AND mac = ?', array($interface['port_id'], $clean_mac))) { - // $sql = "UPDATE `mac_accounting` SET `mac` = '$clean_mac' WHERE port_id = '".$interface['port_id']."' AND `mac` = '$clean_mac'"; - // mysql_query($sql); - // if (mysql_affected_rows()) { echo(" UPDATED!"); } - // echo($sql); + $mac = "$ah_a$ah_b$ah_c$ah_d$ah_e$ah_f"; + + if ($interface) { + if (dbFetchCell('SELECT COUNT(*) from mac_accounting WHERE port_id = ? AND mac = ?', array($interface['port_id'], $mac))) { echo '.'; } else { - // echo(" Not Exists!"); - dbInsert(array('port_id' => $interface['port_id'], 'mac' => $clean_mac), 'mac_accounting'); + dbInsert(array('port_id' => $interface['port_id'], 'mac' => $mac), 'mac_accounting'); echo '+'; } - - // echo("\n"); } }//end foreach diff --git a/includes/html/graphs/port/mac_acc_total.inc.php b/includes/html/graphs/port/mac_acc_total.inc.php index 749f7e47e8..16745778a1 100644 --- a/includes/html/graphs/port/mac_acc_total.inc.php +++ b/includes/html/graphs/port/mac_acc_total.inc.php @@ -28,7 +28,7 @@ if ($stat == 'pkts') { } elseif ($sort == 'out') { $sort = 'cipMacHCSwitchedPkts_output_rate'; } else { - $sort = 'bps'; + $sort = 'bps_in'; } } elseif ($stat == 'bits') { $units = 'bps'; @@ -40,7 +40,7 @@ if ($stat == 'pkts') { } elseif ($sort == 'out') { $sort = 'cipMacHCSwitchedBytes_output_rate'; } else { - $sort = 'bps'; + $sort = 'bps_in'; } }//end if @@ -107,10 +107,10 @@ foreach ($accs as $acc) { $rrd_options .= ' VDEF:tot'.$this_id.'=octets'.$this_id.',TOTAL'; $rrd_options .= ' AREA:inB'.$this_id.'#'.$colour.":'".$descr."':STACK"; if ($rrd_optionsb) { - $stack = 'STACK'; + $stack = ':STACK'; } - $rrd_optionsb .= ' AREA:outB'.$this_id.'#'.$colour."::$stack"; + $rrd_optionsb .= ' AREA:outB'.$this_id.'#'.$colour.":''$stack"; $rrd_options .= ' GPRINT:inB'.$this_id.":LAST:%6.2lf%s$units"; $rrd_options .= ' GPRINT:inB'.$this_id.":MAX:%6.2lf%s$units"; $rrd_options .= ' GPRINT:totin'.$this_id.":%6.2lf%s$unit"; diff --git a/includes/html/pages/device/port/macaccounting.inc.php b/includes/html/pages/device/port/macaccounting.inc.php index d265f25dd3..25b85c6cb7 100644 --- a/includes/html/pages/device/port/macaccounting.inc.php +++ b/includes/html/pages/device/port/macaccounting.inc.php @@ -47,32 +47,32 @@ if ($vars['subview'] == 'top10') {
Day
- 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => 'day'))."'> + 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => '1d'))."'>
Two Day
- 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => 'twoday'))."/'> + 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => '2d'))."/'>
Week
- 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => 'week'))."/'> + 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => '1w'))."/'>
Month
- 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => 'month'))."/'> + 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => '1m'))."/'>
Year
- 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => 'year'))."/'> + 'macaccounting', 'subview' => 'top10', 'graph' => $vars['graph'], 'sort' => $vars['sort'], 'period' => '1y'))."/'>
diff --git a/includes/polling/cisco-mac-accounting.inc.php b/includes/polling/cisco-mac-accounting.inc.php index 21584988e5..947a2dd23b 100644 --- a/includes/polling/cisco-mac-accounting.inc.php +++ b/includes/polling/cisco-mac-accounting.inc.php @@ -12,11 +12,31 @@ if ($device['os_group'] == 'cisco') { ); $cip_array = array(); - foreach ($cip_oids as $oid) { + foreach (array_merge($cip_oids, array('cipMacSwitchedBytes', 'cipMacSwitchedPkts')) as $oid) { echo "$oid "; $cip_array = snmpwalk_cache_cip($device, $oid, $cip_array, 'CISCO-IP-STAT-MIB'); } + // Normalize cip_array + $cip_array = array_map(function ($entries) { + return array_map(function ($entry) { + $new_entry = array(); + + foreach (array('Bytes', 'Pkts') as $unit) { + $returned_oid = (array_key_exists('cipMacHCSwitched'.$unit, $entry)) ? 'cipMacHCSwitched' : 'cipMacSwitched'; + $new_value = array(); + + foreach ($entry[$returned_oid.$unit] as $key => $value) { + $new_value[$key] = intval($value); + } + + $new_entry['cipMacHCSwitched'.$unit] = $new_value; + } + + return $new_entry; + }, $entries); + }, $cip_array); + $polled = time(); $mac_entries = 0; @@ -62,7 +82,7 @@ if ($device['os_group'] == 'cisco') { d_echo("\n" . $acc['hostname'] . ' ' . $acc['ifDescr'] . " $mac -> $b_in:$b_out:$p_in:$p_out "); $rrd_name = array('cip', $ifIndex, $mac); - $rrd_dev = RrdDefinition::make() + $rrd_def = RrdDefinition::make() ->addDataset('IN', 'COUNTER', 0, 12500000000) ->addDataset('OUT', 'COUNTER', 0, 12500000000) ->addDataset('PIN', 'COUNTER', 0, 12500000000) diff --git a/tests/data/ios.json b/tests/data/ios.json new file mode 100644 index 0000000000..6bf0f8d07c --- /dev/null +++ b/tests/data/ios.json @@ -0,0 +1,8612 @@ +{ + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan1", + "ifName": "Vl1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan10", + "ifName": "Vl10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan11", + "ifName": "Vl11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan16", + "ifName": "Vl16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan18", + "ifName": "Vl18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan19", + "ifName": "Vl19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan21", + "ifName": "Vl21", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan26", + "ifName": "Vl26", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan50", + "ifName": "Vl50", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan65", + "ifName": "Vl65", + "portName": null, + "ifIndex": 65, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan66", + "ifName": "Vl66", + "portName": null, + "ifIndex": 66, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan83", + "ifName": "Vl83", + "portName": null, + "ifIndex": 83, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan84", + "ifName": "Vl84", + "portName": null, + "ifIndex": 84, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan90", + "ifName": "Vl90", + "portName": null, + "ifIndex": 90, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan440", + "ifName": "Vl440", + "portName": null, + "ifIndex": 440, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan441", + "ifName": "Vl441", + "portName": null, + "ifIndex": 441, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan448", + "ifName": "Vl448", + "portName": null, + "ifIndex": 448, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan451", + "ifName": "Vl451", + "portName": null, + "ifIndex": 451, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan454", + "ifName": "Vl454", + "portName": null, + "ifIndex": 454, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan503", + "ifName": "Vl503", + "portName": null, + "ifIndex": 503, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "Vlan724", + "ifName": "Vl724", + "portName": null, + "ifIndex": 724, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "", + "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": "GigabitEthernet0/1", + "ifName": "Gi0/1", + "portName": null, + "ifIndex": 10101, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/2", + "ifName": "Gi0/2", + "portName": null, + "ifIndex": 10102, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/3", + "ifName": "Gi0/3", + "portName": null, + "ifIndex": 10103, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/4", + "ifName": "Gi0/4", + "portName": null, + "ifIndex": 10104, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/5", + "ifName": "Gi0/5", + "portName": null, + "ifIndex": 10105, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/6", + "ifName": "Gi0/6", + "portName": null, + "ifIndex": 10106, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/7", + "ifName": "Gi0/7", + "portName": null, + "ifIndex": 10107, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/8", + "ifName": "Gi0/8", + "portName": null, + "ifIndex": 10108, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/9", + "ifName": "Gi0/9", + "portName": null, + "ifIndex": 10109, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/10", + "ifName": "Gi0/10", + "portName": null, + "ifIndex": 10110, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/11", + "ifName": "Gi0/11", + "portName": null, + "ifIndex": 10111, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/12", + "ifName": "Gi0/12", + "portName": null, + "ifIndex": 10112, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/13", + "ifName": "Gi0/13", + "portName": null, + "ifIndex": 10113, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/14", + "ifName": "Gi0/14", + "portName": null, + "ifIndex": 10114, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/15", + "ifName": "Gi0/15", + "portName": null, + "ifIndex": 10115, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "GigabitEthernet0/16", + "ifName": "Gi0/16", + "portName": null, + "ifIndex": 10116, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "Null0", + "ifName": "Nu0", + "portName": null, + "ifIndex": 10501, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "Loopback50", + "ifName": "Lo50", + "portName": null, + "ifIndex": 20567, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "", + "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": "Vlan1", + "ifName": "Vl1", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c0", + "ifHardType": null, + "ifLastChange": 4750, + "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": 82291, + "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": 20942905, + "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": 308, + "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": "Vlan10", + "ifName": "Vl10", + "portName": null, + "ifIndex": 10, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c1", + "ifHardType": null, + "ifLastChange": 7889, + "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": 111036401, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 31715429, + "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": 11355725484, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3270093644, + "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": "Vlan11", + "ifName": "Vl11", + "portName": null, + "ifIndex": 11, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c2", + "ifHardType": null, + "ifLastChange": 698258136, + "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": 65, + "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": 4174, + "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": "Vlan16", + "ifName": "Vl16", + "portName": null, + "ifIndex": 16, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c3", + "ifHardType": null, + "ifLastChange": 7959, + "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": 624081, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 350612, + "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": 46317689, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 22733356, + "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": "Vlan18", + "ifName": "Vl18", + "portName": null, + "ifIndex": 18, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c4", + "ifHardType": null, + "ifLastChange": 7889, + "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": 1375311, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 12721567, + "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": 176186291, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 826178429, + "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": "Vlan19", + "ifName": "Vl19", + "portName": null, + "ifIndex": 19, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c5", + "ifHardType": null, + "ifLastChange": 7890, + "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": 12222229, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11534946, + "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": 892209367, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 888084929, + "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": "Vlan21", + "ifName": "Vl21", + "portName": null, + "ifIndex": 21, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c6", + "ifHardType": null, + "ifLastChange": 698252587, + "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": 15402831, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 24242668, + "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": 4823214251, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1634362266, + "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": "Vlan26", + "ifName": "Vl26", + "portName": null, + "ifIndex": 26, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c7", + "ifHardType": null, + "ifLastChange": 698258136, + "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": 715207, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 775235, + "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": 44418719, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 49675614, + "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": "Vlan50", + "ifName": "Vl50", + "portName": null, + "ifIndex": 50, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c8", + "ifHardType": null, + "ifLastChange": 7890, + "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": 70642, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 152315, + "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": 4414383, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 9754685, + "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": "Vlan65", + "ifName": "Vl65", + "portName": null, + "ifIndex": 65, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498c9", + "ifHardType": null, + "ifLastChange": 4525, + "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": "Vlan66", + "ifName": "Vl66", + "portName": null, + "ifIndex": 66, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498ca", + "ifHardType": null, + "ifLastChange": 698257289, + "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": 5817173, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5870552, + "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": 846047118, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1740413110, + "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": "Vlan83", + "ifName": "Vl83", + "portName": null, + "ifIndex": 83, + "ifSpeed": 10000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498cb", + "ifHardType": null, + "ifLastChange": 698258137, + "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": 29088, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 26945, + "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": 2753438, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1957882, + "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": "Vlan84", + "ifName": "Vl84", + "portName": null, + "ifIndex": 84, + "ifSpeed": 10000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498cc", + "ifHardType": null, + "ifLastChange": 698258137, + "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": 3172480, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 3176534, + "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": 298583114, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 311725444, + "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": "Vlan90", + "ifName": "Vl90", + "portName": null, + "ifIndex": 90, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498cd", + "ifHardType": null, + "ifLastChange": 698258137, + "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": 513168, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4992501, + "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": 156841063, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 319520611, + "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": "Vlan440", + "ifName": "Vl440", + "portName": null, + "ifIndex": 440, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498ce", + "ifHardType": null, + "ifLastChange": 175005, + "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": 280, + "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": 19388, + "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": "Vlan441", + "ifName": "Vl441", + "portName": null, + "ifIndex": 441, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498cf", + "ifHardType": null, + "ifLastChange": 7973, + "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": 6437369, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 7711727, + "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": 1341642445, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1426022558, + "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": "Vlan448", + "ifName": "Vl448", + "portName": null, + "ifIndex": 448, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498d4", + "ifHardType": null, + "ifLastChange": 698257289, + "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": 14735424515, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2436188, + "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": 13032181450361, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 202711661, + "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": "Vlan451", + "ifName": "Vl451", + "portName": null, + "ifIndex": 451, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498d0", + "ifHardType": null, + "ifLastChange": 4548, + "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": 14, + "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": 4858, + "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": "Vlan454", + "ifName": "Vl454", + "portName": null, + "ifIndex": 454, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498d1", + "ifHardType": null, + "ifLastChange": 7949, + "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": 2727987, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2712940, + "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": 213792290, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 192054459, + "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": "Vlan503", + "ifName": "Vl503", + "portName": null, + "ifIndex": 503, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498d2", + "ifHardType": null, + "ifLastChange": 698258150, + "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": 106554288, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 623180647, + "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": 14220940734, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 50389771313, + "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": 20, + "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": "Vlan724", + "ifName": "Vl724", + "portName": null, + "ifIndex": 724, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "propVirtual", + "ifAlias": "", + "ifPhysAddress": "001de58498d3", + "ifHardType": null, + "ifLastChange": 7890, + "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": 1791815, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1195907, + "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": 159122018, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 76558011, + "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": "GigabitEthernet0/1", + "ifName": "Gi0/1", + "portName": null, + "ifIndex": 10101, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849881", + "ifHardType": null, + "ifLastChange": 5006, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 1725941486, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2987995032, + "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": 453361420426, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3336918220290, + "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": 50372280, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 324977085, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 685394540, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 336464155, + "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": "GigabitEthernet0/2", + "ifName": "Gi0/2", + "portName": null, + "ifIndex": 10102, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849882", + "ifHardType": null, + "ifLastChange": 38532115, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 14247851281, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 15383993586, + "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": 14311130351319, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 14410342962949, + "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": 2278998, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 215957333, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3937350, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 133266719, + "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": "GigabitEthernet0/3", + "ifName": "Gi0/3", + "portName": null, + "ifIndex": 10103, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849883", + "ifHardType": null, + "ifLastChange": 1224080434, + "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": 4619925974, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 7302380098, + "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": 1273222612611, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 23918712483255, + "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": 367140, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 47180757, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 276968757, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 12462659162, + "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": "GigabitEthernet0/4", + "ifName": "Gi0/4", + "portName": null, + "ifIndex": 10104, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849884", + "ifHardType": null, + "ifLastChange": 1659819799, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 6215757982, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11976035656, + "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": 1335518557140, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 214246798960784, + "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": 49, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 30778164, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 426558604, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 692362760, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 184431441552, + "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": "GigabitEthernet0/5", + "ifName": "Gi0/5", + "portName": null, + "ifIndex": 10105, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849885", + "ifHardType": null, + "ifLastChange": 1659207844, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 1310923240, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2042010410, + "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": 436975121321, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2241421618727, + "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": 239, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 1669016, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 111512258, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 769572060, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 211423712, + "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": "GigabitEthernet0/6", + "ifName": "Gi0/6", + "portName": null, + "ifIndex": 10106, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849886", + "ifHardType": null, + "ifLastChange": 698255421, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 231696615220, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 231612547635, + "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": 26752973223216, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 227268289893060, + "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": 431, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 110470823, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 393305933, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 501858216, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 184801197533, + "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": "GigabitEthernet0/7", + "ifName": "Gi0/7", + "portName": null, + "ifIndex": 10107, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849887", + "ifHardType": null, + "ifLastChange": 698266945, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 1291100331, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1726683659, + "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": 486966439522, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5024531012543, + "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": 10487000, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 435047557, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 650971261, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2879343575, + "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": "GigabitEthernet0/8", + "ifName": "Gi0/8", + "portName": null, + "ifIndex": 10108, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849888", + "ifHardType": null, + "ifLastChange": 698276885, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 132420910197, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 121337473924, + "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": 415790189932477, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 165019524503624, + "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": 147210, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 27740839, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 46885, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 272133971932, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 71501517061, + "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": "GigabitEthernet0/9", + "ifName": "Gi0/9", + "portName": null, + "ifIndex": 10109, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849889", + "ifHardType": null, + "ifLastChange": 5009, + "ifVlan": "444", + "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": 29716548879, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 29716313792, + "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": 15809204023228, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 8202853315616, + "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": 294, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 10, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 15309396, + "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": "GigabitEthernet0/10", + "ifName": "Gi0/10", + "portName": null, + "ifIndex": 10110, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de584988a", + "ifHardType": null, + "ifLastChange": 38532299, + "ifVlan": "441", + "ifTrunk": "dot1Q", + "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": 8528884316, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13433927379, + "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": 1970194092318, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 14072157289973, + "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": 495399, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 597058, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 984339, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 45471674, + "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": "GigabitEthernet0/11", + "ifName": "Gi0/11", + "portName": null, + "ifIndex": 10111, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de584988b", + "ifHardType": null, + "ifLastChange": 2521796725, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 24324284755, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 29187856592, + "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": 15572365762746, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 31233004079609, + "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": 7587, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 21184632, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4259097, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 106862363, + "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": "GigabitEthernet0/12", + "ifName": "Gi0/12", + "portName": null, + "ifIndex": 10112, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de584988c", + "ifHardType": null, + "ifLastChange": 38532307, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 12693309393, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 8533980747, + "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": 13952703016751, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1996648811891, + "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": 1452367, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2590169, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1968678, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 46021236, + "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": "GigabitEthernet0/13", + "ifName": "Gi0/13", + "portName": null, + "ifIndex": 10113, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de584988d", + "ifHardType": null, + "ifLastChange": 698258932, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 17023396546, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 12971875627, + "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": 19286189880395, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 9562026799550, + "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": 493, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 97682730, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 342695098, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 717030066, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1261386155, + "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": "GigabitEthernet0/14", + "ifName": "Gi0/14", + "portName": null, + "ifIndex": 10114, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de584988e", + "ifHardType": null, + "ifLastChange": 698258424, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 13346790513, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11321106909, + "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": 3353928637409, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4360351598101, + "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": 171, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 3, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1039793, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 30117504, + "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": "GigabitEthernet0/15", + "ifName": "Gi0/15", + "portName": null, + "ifIndex": 10115, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de584988f", + "ifHardType": null, + "ifLastChange": 698249691, + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": 4053078581, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5384849499, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 55615, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 967052294378, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5793696945245, + "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": 565, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 27636762, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 428004831, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 700604009, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 971126164, + "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": "GigabitEthernet0/16", + "ifName": "Gi0/16", + "portName": null, + "ifIndex": 10116, + "ifSpeed": 10000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9000, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "001de5849890", + "ifHardType": null, + "ifLastChange": 66433, + "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": "Null0", + "ifName": "Nu0", + "portName": null, + "ifIndex": 10501, + "ifSpeed": 10000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "", + "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": "Loopback50", + "ifName": "Lo50", + "portName": null, + "ifIndex": 20567, + "ifSpeed": 8000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 8000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "softwareLoopback", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 4581, + "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": 4, + "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": 198, + "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 + } + ] + } + }, + "cisco-mac-accounting": { + "discovery": { + "mac_accounting": [ + { + "mac": "000c42717b51", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "000c42d0d0e0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "00133b167a1d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "107beffeeb20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "64a0e71d6847", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "b827eb65c840", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "b8a386ade0d3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "c067af678665", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "ecf4bb437711", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "ffffffffffff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + } + ] + }, + "poller": { + "mac_accounting": [ + { + "mac": "000c42717b51", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 162031620, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 162031620, + "cipMacHCSwitchedBytes_output": 570, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 570, + "cipMacHCSwitchedPkts_input": 473780, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 473780, + "cipMacHCSwitchedPkts_output": 5, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5, + "ifIndex": 21 + }, + { + "mac": "000c42d0d0e0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 132039216, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 132039216, + "cipMacHCSwitchedBytes_output": 1876, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1876, + "cipMacHCSwitchedPkts_input": 398336, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 398336, + "cipMacHCSwitchedPkts_output": 20, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 20, + "ifIndex": 21 + }, + { + "mac": "00133b167a1d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 484, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 484, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 2, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2, + "ifIndex": 21 + }, + { + "mac": "107beffeeb20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 139809, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 139809, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 1127, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1127, + "ifIndex": 21 + }, + { + "mac": "64a0e71d6847", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 33186098, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 33186098, + "cipMacHCSwitchedBytes_output": 33576455, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 33576455, + "cipMacHCSwitchedPkts_input": 138995, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 138995, + "cipMacHCSwitchedPkts_output": 140658, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 140658, + "ifIndex": 21 + }, + { + "mac": "b827eb65c840", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5832, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5832, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 36, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 36, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "b8a386ade0d3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 15222, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 15222, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 215, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 215, + "ifIndex": 21 + }, + { + "mac": "c067af678665", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 342, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 342, + "cipMacHCSwitchedBytes_output": 242, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 242, + "cipMacHCSwitchedPkts_input": 1, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1, + "cipMacHCSwitchedPkts_output": 1, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1, + "ifIndex": 21 + }, + { + "mac": "ecf4bb437711", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2736, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2736, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 8, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 8, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 21 + }, + { + "mac": "ffffffffffff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 342, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 342, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 1, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1, + "ifIndex": 21 + } + ] + } + } +} diff --git a/tests/data/iosxr.json b/tests/data/iosxr.json index be5bc7f64d..6754dc12b4 100644 --- a/tests/data/iosxr.json +++ b/tests/data/iosxr.json @@ -2994,5 +2994,25375 @@ } ] } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Null0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "MgmtEth0/RSP0/CPU0/0", + "ifName": "MgmtEth0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "MgmtEth0/RSP0/CPU0/1", + "ifName": "MgmtEth0/RSP0/CPU0/1", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "PTP0/RSP0/CPU0/0", + "ifName": "PTP0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/0", + "ifName": "dwdm0/0/0/0", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/1", + "ifName": "dwdm0/0/0/1", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/2", + "ifName": "dwdm0/0/0/2", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/3", + "ifName": "dwdm0/0/0/3", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/4", + "ifName": "dwdm0/0/0/4", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/5", + "ifName": "dwdm0/0/0/5", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/6", + "ifName": "dwdm0/0/0/6", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/7", + "ifName": "dwdm0/0/0/7", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/8", + "ifName": "dwdm0/0/0/8", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/9", + "ifName": "dwdm0/0/0/9", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/10", + "ifName": "dwdm0/0/0/10", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/11", + "ifName": "dwdm0/0/0/11", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/12", + "ifName": "dwdm0/0/0/12", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/13", + "ifName": "dwdm0/0/0/13", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/14", + "ifName": "dwdm0/0/0/14", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/15", + "ifName": "dwdm0/0/0/15", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/16", + "ifName": "dwdm0/0/0/16", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/17", + "ifName": "dwdm0/0/0/17", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/18", + "ifName": "dwdm0/0/0/18", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "dwdm0/0/0/19", + "ifName": "dwdm0/0/0/19", + "portName": null, + "ifIndex": 30, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "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": "TenGigE0/0/0/0", + "ifName": "TenGigE0/0/0/0", + "portName": null, + "ifIndex": 31, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/1", + "ifName": "TenGigE0/0/0/1", + "portName": null, + "ifIndex": 32, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/2", + "ifName": "TenGigE0/0/0/2", + "portName": null, + "ifIndex": 33, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/3", + "ifName": "TenGigE0/0/0/3", + "portName": null, + "ifIndex": 34, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/4", + "ifName": "TenGigE0/0/0/4", + "portName": null, + "ifIndex": 35, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/5", + "ifName": "TenGigE0/0/0/5", + "portName": null, + "ifIndex": 36, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/6", + "ifName": "TenGigE0/0/0/6", + "portName": null, + "ifIndex": 37, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/7", + "ifName": "TenGigE0/0/0/7", + "portName": null, + "ifIndex": 38, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/8", + "ifName": "TenGigE0/0/0/8", + "portName": null, + "ifIndex": 39, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/9", + "ifName": "TenGigE0/0/0/9", + "portName": null, + "ifIndex": 40, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/10", + "ifName": "TenGigE0/0/0/10", + "portName": null, + "ifIndex": 41, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/11", + "ifName": "TenGigE0/0/0/11", + "portName": null, + "ifIndex": 42, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/12", + "ifName": "TenGigE0/0/0/12", + "portName": null, + "ifIndex": 43, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/13", + "ifName": "TenGigE0/0/0/13", + "portName": null, + "ifIndex": 44, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/14", + "ifName": "TenGigE0/0/0/14", + "portName": null, + "ifIndex": 45, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/15", + "ifName": "TenGigE0/0/0/15", + "portName": null, + "ifIndex": 46, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/16", + "ifName": "TenGigE0/0/0/16", + "portName": null, + "ifIndex": 47, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/17", + "ifName": "TenGigE0/0/0/17", + "portName": null, + "ifIndex": 48, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/18", + "ifName": "TenGigE0/0/0/18", + "portName": null, + "ifIndex": 49, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "TenGigE0/0/0/19", + "ifName": "TenGigE0/0/0/19", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "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": "Loopback0", + "ifName": "Loopback0", + "portName": null, + "ifIndex": 71, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "", + "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": "Bundle-Ether6", + "ifName": "Bundle-Ether6", + "portName": null, + "ifIndex": 72, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "", + "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": "Bundle-Ether80", + "ifName": "Bundle-Ether80", + "portName": null, + "ifIndex": 73, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "", + "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": "Bundle-Ether6.1604", + "ifName": "Bundle-Ether6.1604", + "portName": null, + "ifIndex": 75, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.1605", + "ifName": "Bundle-Ether6.1605", + "portName": null, + "ifIndex": 76, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.1520", + "ifName": "Bundle-Ether6.1520", + "portName": null, + "ifIndex": 77, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.1514", + "ifName": "Bundle-Ether6.1514", + "portName": null, + "ifIndex": 79, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.1609", + "ifName": "Bundle-Ether6.1609", + "portName": null, + "ifIndex": 81, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.1589", + "ifName": "Bundle-Ether80.1589", + "portName": null, + "ifIndex": 82, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.1512", + "ifName": "Bundle-Ether6.1512", + "portName": null, + "ifIndex": 83, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.100", + "ifName": "Bundle-Ether6.100", + "portName": null, + "ifIndex": 84, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4061", + "ifName": "Bundle-Ether80.4061", + "portName": null, + "ifIndex": 85, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.1582", + "ifName": "Bundle-Ether80.1582", + "portName": null, + "ifIndex": 87, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether6.1515", + "ifName": "Bundle-Ether6.1515", + "portName": null, + "ifIndex": 88, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4050", + "ifName": "Bundle-Ether80.4050", + "portName": null, + "ifIndex": 89, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4008", + "ifName": "Bundle-Ether80.4008", + "portName": null, + "ifIndex": 91, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4002", + "ifName": "Bundle-Ether80.4002", + "portName": null, + "ifIndex": 92, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4006", + "ifName": "Bundle-Ether80.4006", + "portName": null, + "ifIndex": 93, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4000", + "ifName": "Bundle-Ether80.4000", + "portName": null, + "ifIndex": 94, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4081", + "ifName": "Bundle-Ether80.4081", + "portName": null, + "ifIndex": 95, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether1", + "ifName": "Bundle-Ether1", + "portName": null, + "ifIndex": 96, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "", + "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": "Bundle-Ether80.4058", + "ifName": "Bundle-Ether80.4058", + "portName": null, + "ifIndex": 97, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Bundle-Ether80.4041", + "ifName": "Bundle-Ether80.4041", + "portName": null, + "ifIndex": 98, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "", + "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": "Null0", + "ifName": "Null0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "", + "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": "MgmtEth0/RSP0/CPU0/0", + "ifName": "MgmtEth0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad74f7f0", + "ifHardType": null, + "ifLastChange": 830, + "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": 1978247, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 23219389, + "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": 346353683, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 30019173369, + "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": 14338, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 7648, + "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": "MgmtEth0/RSP0/CPU0/1", + "ifName": "MgmtEth0/RSP0/CPU0/1", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad74f7f1", + "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": "PTP0/RSP0/CPU0/0", + "ifName": "PTP0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 5, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": "0896ad74f7f2", + "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": "dwdm0/0/0/0", + "ifName": "dwdm0/0/0/0", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/1", + "ifName": "dwdm0/0/0/1", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/2", + "ifName": "dwdm0/0/0/2", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/3", + "ifName": "dwdm0/0/0/3", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/4", + "ifName": "dwdm0/0/0/4", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/5", + "ifName": "dwdm0/0/0/5", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/6", + "ifName": "dwdm0/0/0/6", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/7", + "ifName": "dwdm0/0/0/7", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/8", + "ifName": "dwdm0/0/0/8", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/9", + "ifName": "dwdm0/0/0/9", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/10", + "ifName": "dwdm0/0/0/10", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/11", + "ifName": "dwdm0/0/0/11", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/12", + "ifName": "dwdm0/0/0/12", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/13", + "ifName": "dwdm0/0/0/13", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/14", + "ifName": "dwdm0/0/0/14", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/15", + "ifName": "dwdm0/0/0/15", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/16", + "ifName": "dwdm0/0/0/16", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/17", + "ifName": "dwdm0/0/0/17", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/18", + "ifName": "dwdm0/0/0/18", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "dwdm0/0/0/19", + "ifName": "dwdm0/0/0/19", + "portName": null, + "ifIndex": 30, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 22611, + "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": "TenGigE0/0/0/0", + "ifName": "TenGigE0/0/0/0", + "portName": null, + "ifIndex": 31, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb94", + "ifHardType": null, + "ifLastChange": 25299, + "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": 71827927168, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 25644162161, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 1, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 95043347853284, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 14221874167468, + "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": 3143380, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5610793, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4613549, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14949, + "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": "TenGigE0/0/0/1", + "ifName": "TenGigE0/0/0/1", + "portName": null, + "ifIndex": 32, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb95", + "ifHardType": null, + "ifLastChange": 25299, + "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": 68967630657, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 25426660187, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 2, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 90974555038536, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13673044722804, + "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": 3903744, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 30, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2775972, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 30803, + "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": "TenGigE0/0/0/2", + "ifName": "TenGigE0/0/0/2", + "portName": null, + "ifIndex": 33, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb96", + "ifHardType": null, + "ifLastChange": 25300, + "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": 71118375865, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 25338074906, + "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": 93486910934452, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13978464699963, + "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": 5999146, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 9, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3693081, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14950, + "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": "TenGigE0/0/0/3", + "ifName": "TenGigE0/0/0/3", + "portName": null, + "ifIndex": 34, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb97", + "ifHardType": null, + "ifLastChange": 25300, + "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": 71135828975, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 25576207560, + "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": 93730325483728, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13973028193697, + "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": 7998502, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3293277, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14950, + "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": "TenGigE0/0/0/4", + "ifName": "TenGigE0/0/0/4", + "portName": null, + "ifIndex": 35, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9188, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb98", + "ifHardType": null, + "ifLastChange": 25300, + "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": 92883766789, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 137482702730, + "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": 24453658086096, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 165337582616632, + "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": 216, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2325692, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2081376, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 17506, + "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": "TenGigE0/0/0/5", + "ifName": "TenGigE0/0/0/5", + "portName": null, + "ifIndex": 36, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9188, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb99", + "ifHardType": null, + "ifLastChange": 25301, + "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": 91587724195, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 137997062721, + "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": 25349546980792, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 165598479904346, + "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": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 24946, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14946, + "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": "TenGigE0/0/0/6", + "ifName": "TenGigE0/0/0/6", + "portName": null, + "ifIndex": 37, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9188, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb9a", + "ifHardType": null, + "ifLastChange": 25301, + "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": 56375495259, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 149024592916, + "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": 19798739450466, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 171138685632412, + "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": 1, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 35, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 25062, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14947, + "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": "TenGigE0/0/0/7", + "ifName": "TenGigE0/0/0/7", + "portName": null, + "ifIndex": 38, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9188, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb9b", + "ifHardType": null, + "ifLastChange": 25301, + "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": 52430326529, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 135923014337, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 1, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 19068638953876, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 163867546924491, + "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": 7679, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 24973, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14947, + "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": "TenGigE0/0/0/8", + "ifName": "TenGigE0/0/0/8", + "portName": null, + "ifIndex": 39, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb9c", + "ifHardType": null, + "ifLastChange": 25302, + "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": 95363784234, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 36702145988, + "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": 88990996772388, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10362203067751, + "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": 4971, + "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": 1, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2865, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 8, + "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": "TenGigE0/0/0/9", + "ifName": "TenGigE0/0/0/9", + "portName": null, + "ifIndex": 40, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb9d", + "ifHardType": null, + "ifLastChange": 25407, + "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": 149542153692, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 78303132656, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 1, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 166125117216462, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 40130907955013, + "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": 2610, + "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": 663761, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 57, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1101369, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 4386, + "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": "TenGigE0/0/0/10", + "ifName": "TenGigE0/0/0/10", + "portName": null, + "ifIndex": 41, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb9e", + "ifHardType": null, + "ifLastChange": 25655, + "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": 36593, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1683804479, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 1, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 12932738, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 495823669468, + "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": 3, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 72925, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 8, + "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": "TenGigE0/0/0/11", + "ifName": "TenGigE0/0/0/11", + "portName": null, + "ifIndex": 42, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fb9f", + "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": "TenGigE0/0/0/12", + "ifName": "TenGigE0/0/0/12", + "portName": null, + "ifIndex": 43, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba0", + "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": "TenGigE0/0/0/13", + "ifName": "TenGigE0/0/0/13", + "portName": null, + "ifIndex": 44, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba1", + "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": "TenGigE0/0/0/14", + "ifName": "TenGigE0/0/0/14", + "portName": null, + "ifIndex": 45, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba2", + "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": "TenGigE0/0/0/15", + "ifName": "TenGigE0/0/0/15", + "portName": null, + "ifIndex": 46, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba3", + "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": "TenGigE0/0/0/16", + "ifName": "TenGigE0/0/0/16", + "portName": null, + "ifIndex": 47, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba4", + "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": 2, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 16, + "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": "TenGigE0/0/0/17", + "ifName": "TenGigE0/0/0/17", + "portName": null, + "ifIndex": 48, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba5", + "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": "TenGigE0/0/0/18", + "ifName": "TenGigE0/0/0/18", + "portName": null, + "ifIndex": 49, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba6", + "ifHardType": null, + "ifLastChange": 25302, + "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": 61022176077, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 81964301357, + "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": 62821232515745, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 34893579350908, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 17732, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 17496, + "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": "TenGigE0/0/0/19", + "ifName": "TenGigE0/0/0/19", + "portName": null, + "ifIndex": 50, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "", + "ifPhysAddress": "0896ad46fba7", + "ifHardType": null, + "ifLastChange": 25303, + "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": 61320679170, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 81863341846, + "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": 63173246911905, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 35758301695041, + "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": 1, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 14946, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 14945, + "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": "Loopback0", + "ifName": "Loopback0", + "portName": null, + "ifIndex": 71, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 472, + "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": "Bundle-Ether6", + "ifName": "Bundle-Ether6", + "portName": null, + "ifIndex": 72, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "ieee8023adLag", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25924, + "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": 283049752582, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 101985101254, + "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": 373235126099357, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 55846409910240, + "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": 12, + "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": 21044771, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5610832, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 14375879, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 75652, + "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": "Bundle-Ether80", + "ifName": "Bundle-Ether80", + "portName": null, + "ifIndex": 73, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9184, + "ifType": "ieee8023adLag", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25724, + "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": 293277304152, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 560427353772, + "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": 88670581158116, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 665942271840674, + "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": 7900, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2325727, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2156357, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 62346, + "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": "Bundle-Ether6.1604", + "ifName": "Bundle-Ether6.1604", + "portName": null, + "ifIndex": 75, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 60474172490, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 14662012644, + "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": 85580174165558, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4741647719904, + "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": 2, + "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": 12, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228519, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2554, + "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": "Bundle-Ether6.1605", + "ifName": "Bundle-Ether6.1605", + "portName": null, + "ifIndex": 76, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 15560, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 17996, + "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": 18470216, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1591474, + "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": 8, + "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": 2, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 231063, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2545, + "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": "Bundle-Ether6.1520", + "ifName": "Bundle-Ether6.1520", + "portName": null, + "ifIndex": 77, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 71286, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 115047, + "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": 36468225, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 44519537, + "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": 10, + "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": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 12, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 231050, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 11, + "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": "Bundle-Ether6.1514", + "ifName": "Bundle-Ether6.1514", + "portName": null, + "ifIndex": 79, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 81862058904, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 18394934391, + "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": 105025309697448, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5121831930927, + "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": 4589, + "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": 7508068, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 130, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 8050235, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 4889, + "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": "Bundle-Ether6.1609", + "ifName": "Bundle-Ether6.1609", + "portName": null, + "ifIndex": 81, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 240419923, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 124095909, + "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": 328166476177, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 15208658114, + "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": 60457, + "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": 117747, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4797046, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 232644, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2799, + "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": "Bundle-Ether80.1589", + "ifName": "Bundle-Ether80.1589", + "portName": null, + "ifIndex": 82, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 879311403, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 765967192, + "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": 569814541076, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 88676900370, + "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": 7619, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 10, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 7, + "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": "Bundle-Ether6.1512", + "ifName": "Bundle-Ether6.1512", + "portName": null, + "ifIndex": 83, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 7702303750, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4027615295, + "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": 2905696282589, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4621939127242, + "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": 1, + "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": 18, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 229273, + "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": "Bundle-Ether6.100", + "ifName": "Bundle-Ether6.100", + "portName": null, + "ifIndex": 84, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 127047225211, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 60738649231, + "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": 176191141136001, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 37230266707271, + "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": 1889, + "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": 13418750, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 813540, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4327246, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2803, + "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": "Bundle-Ether80.4061", + "ifName": "Bundle-Ether80.4061", + "portName": null, + "ifIndex": 85, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 2779622, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2935786, + "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": 223804400, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 298504198, + "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": 99463, + "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": 273, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 745155, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228674, + "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": "Bundle-Ether80.1582", + "ifName": "Bundle-Ether80.1582", + "portName": null, + "ifIndex": 87, + "ifSpeed": 50000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 50, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 53339696, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1197477846, + "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": 11161949893, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1018328831885, + "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": 4, + "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": "Bundle-Ether6.1515", + "ifName": "Bundle-Ether6.1515", + "portName": null, + "ifIndex": 88, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f73", + "ifHardType": null, + "ifLastChange": 25925, + "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": 5719736705, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4036010654, + "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": 3199609566196, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4114638501227, + "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": 3, + "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": 22, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228517, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 251, + "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": "Bundle-Ether80.4050", + "ifName": "Bundle-Ether80.4050", + "portName": null, + "ifIndex": 89, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 20248739735, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 45272992377, + "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": 3942275614925, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 58132034389150, + "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": 1164711, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228465, + "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": "Bundle-Ether80.4008", + "ifName": "Bundle-Ether80.4008", + "portName": null, + "ifIndex": 91, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 1691247, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 772949, + "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": 373523871, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 57534184, + "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": 10, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228512, + "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": "Bundle-Ether80.4002", + "ifName": "Bundle-Ether80.4002", + "portName": null, + "ifIndex": 92, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 78354320477, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 136524550544, + "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": 14026557939374, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 165112768734194, + "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": 11, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228466, + "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": "Bundle-Ether80.4006", + "ifName": "Bundle-Ether80.4006", + "portName": null, + "ifIndex": 93, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 16006, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 85458959756, + "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": 17620856, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 113637293889668, + "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": 1, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228519, + "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": "Bundle-Ether80.4000", + "ifName": "Bundle-Ether80.4000", + "portName": null, + "ifIndex": 94, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 92574764730, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 115952482717, + "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": 29962347637060, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 144764146125739, + "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": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228473, + "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": "Bundle-Ether80.4081", + "ifName": "Bundle-Ether80.4081", + "portName": null, + "ifIndex": 95, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 100834237799, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 174930062958, + "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": 39821544995327, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 182865062545897, + "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": 3, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 11, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228479, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2553, + "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": "Bundle-Ether1", + "ifName": "Bundle-Ether1", + "portName": null, + "ifIndex": 96, + "ifSpeed": 20000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 20000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "ieee8023adLag", + "ifAlias": "", + "ifPhysAddress": "0896ad728f74", + "ifHardType": null, + "ifLastChange": 25567, + "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": 122342864874, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 163827655031, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 1, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 125994489363549, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 70651886152141, + "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": 5, + "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": 1, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 32678, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32441, + "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": "Bundle-Ether80.4058", + "ifName": "Bundle-Ether80.4058", + "portName": null, + "ifIndex": 97, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2000, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 104124061, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 230852801, + "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": 22507808807, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 315634630545, + "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": 415786, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228465, + "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": "Bundle-Ether80.4041", + "ifName": "Bundle-Ether80.4041", + "portName": null, + "ifIndex": 98, + "ifSpeed": 40000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2000, + "ifType": "l2vlan", + "ifAlias": "", + "ifPhysAddress": "0896ad728f72", + "ifHardType": null, + "ifLastChange": 25725, + "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": 228862198, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 102174062, + "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": 315482991245, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 22347058998, + "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": 7, + "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": 2, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 228512, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "cisco-mac-accounting": { + "discovery": { + "mac_accounting": [ + { + "mac": "000bfd983100", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "000d6550ba18", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00137f6b6d45", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00141b3f2000", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001a302b6e40", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001bd54007c1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001cb0b7e640", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001d700cde3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001d71718fc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001e1324e37f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001e4a19dc00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00215535acf0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00215af50172", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "002545018380", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "002584d6a0ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0040c76c0119", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0081c46ebe01", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00a742095784", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00a74216bebb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00a74217235b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00b7713b6800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0896ad32fb4e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0896ad57ac1e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0896ad6f00cc", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "10e878104142", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "10f311368022", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "1866da963326", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "18e72856c37f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "20f17c52bee1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "28c7cebe07f2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "2c542de67f3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "341e6b5c3c39", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "3863bb43eb86", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "3863bb44aa5e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "3c8ab0883ec9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "48fd8e90ff71", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "4c5e0c13b7c6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "5475d0afe4bf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "54a27490fd01", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "5c8a38cb5313", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "609c9f5c3e34", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "609c9f83441e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "649ef3aa01ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "6c416a97b37f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "6c9ced3cb086", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "70ca9b8e02ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "74a02f88b171", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "78baf947c86a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "78baf94c7d4a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "80711f74f852", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "84b59cb29fc8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "88e0f3b91c52", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "a80c0dfa0e60", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "b4a4e3948122", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "b4de313ddb13", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "b869f4d2c9ed", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "c47d4fc4397f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "d867d969f9f0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "d89ef3a6ca27", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e0acf1132b1a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e481849e1475", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e4c722210c03", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e4c722210c5b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e4c722e48b3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e8b748011f3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e8ba70427480", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "f866f2693dbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "f8c28870dcbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0002c9f9f871", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0006f65f777f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0008e3fffc4c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00090f09000b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "000c29224cec", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "000c293ea293", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "000c29b5beee", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "000c42b2bbd2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "000c42fcfc56", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001018e786b2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001018e7a410", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00113285ba95", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0013c360b800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00141b3f2000", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0015171e545e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00187415d240", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0019a97601c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0019e2b5efc3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001b21a49b9c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001b21b11d20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001b21bb5fb4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001c7326cc52", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001c7367ecdb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001c73b39505", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001c73d76411", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001c73ead751", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001c73ead752", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001cb0b7e640", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001cb0c8d4c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001e799c7000", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001fcab27b80", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001fe241ab3b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0021a00bb6c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00230418dd40", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00239c5c0fc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00239c5e9ff0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00258429e080", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590e1c341", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590ebe82a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590ebee1c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590ebf21c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590ebf26e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0026cb50c0c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0030485f392f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00304864ea9b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "005056bb0370", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "005f86924bc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0081c46ebe02", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0081c46edf05", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "008a969560e3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "009069757ff0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00a742092f29", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00a742095794", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00a742581706", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00be753acb80", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00c1641b3df0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00c16433a6ab", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00c16433ed1b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00c164415cd5", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "02fa55010702", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "043389489b22", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0881f48660b0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0881f49a4295", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0881f4e1efce", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0896ad6f00cc", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0896adf6f680", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "08b258672dc3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "08b25890d2a3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47a519deb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47a8f3743", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47abcb869", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47abd40b1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47abd5d00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47ae0d5a7", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47aeb24e6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47aeb5598", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "1005ca9c0440", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "10c172d5135e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "10f3110ad89e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "10f3110ad8f6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "10f311682a20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "1866da7a0f93", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "1866da7a35cc", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "1866da7a5b95", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "1866da93e7b5", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "20e09c53c142", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "20fdf14c1281", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "28993a268b2d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "28993abf059c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "28993acf80d2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "2c21317ff1f2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "3417eb4bad0f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "38bc01b25bbe", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "405539408f78", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "405539409e91", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "40b4f0ef38aa", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "40ce2406818a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "444ca820ea9d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "444ca8b99779", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "44ecce429484", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "44f4771b9020", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "44f4779e5ff8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "44f4779e6ff8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "4c1fcc017761", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "4c4e3536cdff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "4c5e0c02abec", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "4c5e0c13de99", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "4c5e0c142658", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "503de5affac0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "508789184777", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5475d0bce800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "547fee61c17c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "548998e09dbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "54a27490fd00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "588d09b45c00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c45277b2436", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c45277fbf01", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c5eab61f906", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c5eabb03fc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c8a383a2a20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5e5eab5e291c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6400f1748980", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "641225eaa940", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "64649bd750b0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "647fda00578a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "649ef3aa01ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "64c3d65b2b9b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "64d1543b381a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "66649bba951c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c3b6bef0cd8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c6cd31c6368", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c6cd320cfda", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c9ced105503", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c9ced7b1bd1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c9ced7b5d31", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6cb3113b9de0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6cb3113b9df4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6edad9f6e4db", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "704ca54a9eb2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "70e4222fd261", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7483ef25aa68", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7483ef25b18e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7483ef2ee4a7", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7483ef46b341", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7483ef46b344", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "748ef8a89481", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "78baf99f340b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7a19f75cc11e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7c2586f87460", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7cad7400bbbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "7ce2ca4f4d54", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "80711f74f99d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "8478ac774b86", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "84b59c92e0c1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "84b80203cf10", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba192344", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba7ab18d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba7c2415", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba825c49", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba826e3d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba860940", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba860aa0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba883498", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0086fcfb491", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0369f1ba3c4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0369f67b0de", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0369fd7d936", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a08cf8bb6d11", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0e0afea40c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a4934cda2dff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "ac1f6b21e979", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "ac1f6b46c875", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "acf2c5712c3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "b033a66f301a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "b8af67d733c4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "b8af67d84118", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "bc26c75b3861", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "c067af2920bf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "c2c661a60c7c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "c88d836a77a4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc1afaeabf60", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc2de00f228d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc2de00f2718", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc4e24450909", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc4e24454a09", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc4e244d670c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc4e24925200", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc4e24926800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d404ff2ccdef", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d404ffd833e8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d404ffd833e9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d4c93c830a23", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d4ca6d01d7a9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d4ca6d896aa9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d4ca6dacf5f2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d89ef3a6ca2f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "dc38e111e57b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "dcd2fc24494b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "e0acf103cd89", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "e0acf110e371", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "e86549c6c780", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "e8ba70427480", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "ec13db798fc8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "ec387334ec10", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f01c2d8a1a8b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f02fa7ba8ee2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f04b3ab35c73", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f04b3aeeb084", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f063f97743f6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f0f75540987f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f4a739d0a0c6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f4b52fd3e0cb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f866f2693dbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f898efc30315", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": null, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": null, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": null, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": null, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + } + ] + }, + "poller": { + "mac_accounting": [ + { + "mac": "000bfd983100", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1592556, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1592556, + "cipMacHCSwitchedBytes_output": 2950182673, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2950182673, + "cipMacHCSwitchedPkts_input": 21022, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 21022, + "cipMacHCSwitchedPkts_output": 10028994, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 10028994, + "ifIndex": 40 + }, + { + "mac": "000d6550ba18", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 695716027049, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 695716027049, + "cipMacHCSwitchedBytes_output": 511324133547, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 511324133547, + "cipMacHCSwitchedPkts_input": 890490990, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 890490990, + "cipMacHCSwitchedPkts_output": 829857004, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 829857004, + "ifIndex": 40 + }, + { + "mac": "00137f6b6d45", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1014231, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1014231, + "cipMacHCSwitchedBytes_output": 972385, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 972385, + "cipMacHCSwitchedPkts_input": 15252, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 15252, + "cipMacHCSwitchedPkts_output": 15279, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 15279, + "ifIndex": 40 + }, + { + "mac": "00141b3f2000", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 64668861463, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 64668861463, + "cipMacHCSwitchedBytes_output": 31974004667, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 31974004667, + "cipMacHCSwitchedPkts_input": 131675368, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 131675368, + "cipMacHCSwitchedPkts_output": 67547897, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 67547897, + "ifIndex": 40 + }, + { + "mac": "001a302b6e40", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 10102794643, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 10102794643, + "cipMacHCSwitchedBytes_output": 169295106410, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 169295106410, + "cipMacHCSwitchedPkts_input": 22699290, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 22699290, + "cipMacHCSwitchedPkts_output": 461329604, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 461329604, + "ifIndex": 40 + }, + { + "mac": "001bd54007c1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 51046171310, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 51046171310, + "cipMacHCSwitchedBytes_output": 178424874398, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 178424874398, + "cipMacHCSwitchedPkts_input": 150101084, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 150101084, + "cipMacHCSwitchedPkts_output": 203160731, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 203160731, + "ifIndex": 40 + }, + { + "mac": "001cb0b7e640", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 34443842734, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 34443842734, + "cipMacHCSwitchedBytes_output": 30536251573, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 30536251573, + "cipMacHCSwitchedPkts_input": 31001026, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 31001026, + "cipMacHCSwitchedPkts_output": 54824455, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 54824455, + "ifIndex": 40 + }, + { + "mac": "001d700cde3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1028651, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1028651, + "cipMacHCSwitchedBytes_output": 6462565629, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 6462565629, + "cipMacHCSwitchedPkts_input": 15237, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 15237, + "cipMacHCSwitchedPkts_output": 16619144, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 16619144, + "ifIndex": 40 + }, + { + "mac": "001d71718fc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 6046746, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 6046746, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 70311, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 70311, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "001e1324e37f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 89900500872, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 89900500872, + "cipMacHCSwitchedBytes_output": 11825245815, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 11825245815, + "cipMacHCSwitchedPkts_input": 103698880, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 103698880, + "cipMacHCSwitchedPkts_output": 21504821, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 21504821, + "ifIndex": 40 + }, + { + "mac": "001e4a19dc00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 228522456129, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 228522456129, + "cipMacHCSwitchedBytes_output": 26634409, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 26634409, + "cipMacHCSwitchedPkts_input": 250000924, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 250000924, + "cipMacHCSwitchedPkts_output": 138057, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 138057, + "ifIndex": 40 + }, + { + "mac": "00215535acf0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 14329626, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 14329626, + "cipMacHCSwitchedBytes_output": 36850059792, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 36850059792, + "cipMacHCSwitchedPkts_input": 174303, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 174303, + "cipMacHCSwitchedPkts_output": 164435772, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 164435772, + "ifIndex": 40 + }, + { + "mac": "00215af50172", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 2790062, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2790062, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 45001, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 45001, + "ifIndex": 40 + }, + { + "mac": "002545018380", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 230337337818, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 230337337818, + "cipMacHCSwitchedBytes_output": 97960086835, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 97960086835, + "cipMacHCSwitchedPkts_input": 191577270, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 191577270, + "cipMacHCSwitchedPkts_output": 433651994, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 433651994, + "ifIndex": 40 + }, + { + "mac": "002584d6a0ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "0040c76c0119", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1109814, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1109814, + "cipMacHCSwitchedBytes_output": 163161940556, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 163161940556, + "cipMacHCSwitchedPkts_input": 16405, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 16405, + "cipMacHCSwitchedPkts_output": 506024211, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 506024211, + "ifIndex": 40 + }, + { + "mac": "0081c46ebe01", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 574157640, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 574157640, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 1400003, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1400003, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "00a742095784", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2968434183242, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2968434183242, + "cipMacHCSwitchedBytes_output": 255304429504, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 255304429504, + "cipMacHCSwitchedPkts_input": 2264618076, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2264618076, + "cipMacHCSwitchedPkts_output": 1038884045, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1038884045, + "ifIndex": 40 + }, + { + "mac": "00a74216bebb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 25533021, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 25533021, + "cipMacHCSwitchedBytes_output": 474574371, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 474574371, + "cipMacHCSwitchedPkts_input": 274734, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 274734, + "cipMacHCSwitchedPkts_output": 824353, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 824353, + "ifIndex": 40 + }, + { + "mac": "00a74217235b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 13244971, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 13244971, + "cipMacHCSwitchedBytes_output": 1181396864386, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1181396864386, + "cipMacHCSwitchedPkts_input": 149081, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 149081, + "cipMacHCSwitchedPkts_output": 1662158906, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1662158906, + "ifIndex": 40 + }, + { + "mac": "00b7713b6800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 550341944, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 550341944, + "cipMacHCSwitchedBytes_output": 1929440629, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1929440629, + "cipMacHCSwitchedPkts_input": 629601, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 629601, + "cipMacHCSwitchedPkts_output": 4401367, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4401367, + "ifIndex": 40 + }, + { + "mac": "0896ad32fb4e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 19487321241759, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 19487321241759, + "cipMacHCSwitchedBytes_output": 5466989577853, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5466989577853, + "cipMacHCSwitchedPkts_input": 26205521672, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 26205521672, + "cipMacHCSwitchedPkts_output": 12958355018, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 12958355018, + "ifIndex": 40 + }, + { + "mac": "0896ad57ac1e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 4772715655615, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 4772715655615, + "cipMacHCSwitchedBytes_output": 2244964, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2244964, + "cipMacHCSwitchedPkts_input": 3216390529, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3216390529, + "cipMacHCSwitchedPkts_output": 30516, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 30516, + "ifIndex": 40 + }, + { + "mac": "0896ad6f00cc", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "10e878104142", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 15923439, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 15923439, + "cipMacHCSwitchedBytes_output": 13463069, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 13463069, + "cipMacHCSwitchedPkts_input": 205764, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 205764, + "cipMacHCSwitchedPkts_output": 181840, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 181840, + "ifIndex": 40 + }, + { + "mac": "10f311368022", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5803844, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5803844, + "cipMacHCSwitchedBytes_output": 2057424, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2057424, + "cipMacHCSwitchedPkts_input": 71320, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 71320, + "cipMacHCSwitchedPkts_output": 28234, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 28234, + "ifIndex": 40 + }, + { + "mac": "1866da963326", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 20558001, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 20558001, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 41454, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 41454, + "ifIndex": 40 + }, + { + "mac": "18e72856c37f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1200115651, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1200115651, + "cipMacHCSwitchedBytes_output": 7091988157, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 7091988157, + "cipMacHCSwitchedPkts_input": 1864503, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1864503, + "cipMacHCSwitchedPkts_output": 11644366, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 11644366, + "ifIndex": 40 + }, + { + "mac": "20f17c52bee1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 34864611383114, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 34864611383114, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 24480561934, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 24480561934, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "28c7cebe07f2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1367049, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1367049, + "cipMacHCSwitchedBytes_output": 101999235167, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 101999235167, + "cipMacHCSwitchedPkts_input": 19327, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 19327, + "cipMacHCSwitchedPkts_output": 188283962, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 188283962, + "ifIndex": 40 + }, + { + "mac": "2c542de67f3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3188982680870, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3188982680870, + "cipMacHCSwitchedBytes_output": 76817742687, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 76817742687, + "cipMacHCSwitchedPkts_input": 2163737414, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2163737414, + "cipMacHCSwitchedPkts_output": 1156664572, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1156664572, + "ifIndex": 40 + }, + { + "mac": "341e6b5c3c39", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 953415825357, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 953415825357, + "cipMacHCSwitchedBytes_output": 177893747424, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 177893747424, + "cipMacHCSwitchedPkts_input": 1182683136, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1182683136, + "cipMacHCSwitchedPkts_output": 462679280, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 462679280, + "ifIndex": 40 + }, + { + "mac": "3863bb43eb86", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 21390758, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 21390758, + "cipMacHCSwitchedBytes_output": 8819124, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 8819124, + "cipMacHCSwitchedPkts_input": 133684, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 133684, + "cipMacHCSwitchedPkts_output": 131970, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 131970, + "ifIndex": 40 + }, + { + "mac": "3863bb44aa5e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 21328619, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 21328619, + "cipMacHCSwitchedBytes_output": 8819095, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 8819095, + "cipMacHCSwitchedPkts_input": 133644, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 133644, + "cipMacHCSwitchedPkts_output": 131965, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 131965, + "ifIndex": 40 + }, + { + "mac": "3c8ab0883ec9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 532245153615, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 532245153615, + "cipMacHCSwitchedBytes_output": 517943679181, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 517943679181, + "cipMacHCSwitchedPkts_input": 493505612, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 493505612, + "cipMacHCSwitchedPkts_output": 1521692325, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1521692325, + "ifIndex": 40 + }, + { + "mac": "48fd8e90ff71", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 151294733712, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 151294733712, + "cipMacHCSwitchedBytes_output": 87860113374, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 87860113374, + "cipMacHCSwitchedPkts_input": 137114869, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 137114869, + "cipMacHCSwitchedPkts_output": 309806633, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 309806633, + "ifIndex": 40 + }, + { + "mac": "4c5e0c13b7c6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1840, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1840, + "cipMacHCSwitchedBytes_output": 37475608098, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 37475608098, + "cipMacHCSwitchedPkts_input": 25, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 25, + "cipMacHCSwitchedPkts_output": 70145021, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 70145021, + "ifIndex": 40 + }, + { + "mac": "5475d0afe4bf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "54a27490fd01", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1830382741, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1830382741, + "cipMacHCSwitchedBytes_output": 5590801434, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5590801434, + "cipMacHCSwitchedPkts_input": 2095382, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2095382, + "cipMacHCSwitchedPkts_output": 12548261, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 12548261, + "ifIndex": 40 + }, + { + "mac": "5c8a38cb5313", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 19492, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 19492, + "cipMacHCSwitchedBytes_output": 1402792149, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1402792149, + "cipMacHCSwitchedPkts_input": 266, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 266, + "cipMacHCSwitchedPkts_output": 1896260, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1896260, + "ifIndex": 40 + }, + { + "mac": "609c9f5c3e34", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1086335, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1086335, + "cipMacHCSwitchedBytes_output": 448079009746, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 448079009746, + "cipMacHCSwitchedPkts_input": 16238, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 16238, + "cipMacHCSwitchedPkts_output": 333694677, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 333694677, + "ifIndex": 40 + }, + { + "mac": "609c9f83441e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 495642143410, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 495642143410, + "cipMacHCSwitchedBytes_output": 1049744609360, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1049744609360, + "cipMacHCSwitchedPkts_input": 783791767, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 783791767, + "cipMacHCSwitchedPkts_output": 1720024073, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1720024073, + "ifIndex": 40 + }, + { + "mac": "649ef3aa01ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 149128039167, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 149128039167, + "cipMacHCSwitchedBytes_output": 7889373344649, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 7889373344649, + "cipMacHCSwitchedPkts_input": 353473090, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 353473090, + "cipMacHCSwitchedPkts_output": 11905925299, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 11905925299, + "ifIndex": 40 + }, + { + "mac": "6c416a97b37f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3915679663, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3915679663, + "cipMacHCSwitchedBytes_output": 104263781910, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 104263781910, + "cipMacHCSwitchedPkts_input": 5273208, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5273208, + "cipMacHCSwitchedPkts_output": 155268232, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 155268232, + "ifIndex": 40 + }, + { + "mac": "6c9ced3cb086", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 9007878675459, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 9007878675459, + "cipMacHCSwitchedBytes_output": 3404436584346, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3404436584346, + "cipMacHCSwitchedPkts_input": 8566571955, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 8566571955, + "cipMacHCSwitchedPkts_output": 5472324724, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5472324724, + "ifIndex": 40 + }, + { + "mac": "70ca9b8e02ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 21771646984, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 21771646984, + "cipMacHCSwitchedBytes_output": 23395582626, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 23395582626, + "cipMacHCSwitchedPkts_input": 25220040, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 25220040, + "cipMacHCSwitchedPkts_output": 75767102, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 75767102, + "ifIndex": 40 + }, + { + "mac": "74a02f88b171", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "78baf947c86a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 343572, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 343572, + "cipMacHCSwitchedBytes_output": 24234846280, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 24234846280, + "cipMacHCSwitchedPkts_input": 3997, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3997, + "cipMacHCSwitchedPkts_output": 49147860, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 49147860, + "ifIndex": 40 + }, + { + "mac": "78baf94c7d4a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 80613013504936, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 80613013504936, + "cipMacHCSwitchedBytes_output": 2647571843855, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2647571843855, + "cipMacHCSwitchedPkts_input": 68270642613, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 68270642613, + "cipMacHCSwitchedPkts_output": 3847607158, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 3847607158, + "ifIndex": 40 + }, + { + "mac": "80711f74f852", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 34861634936, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 34861634936, + "cipMacHCSwitchedBytes_output": 3691202740385, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3691202740385, + "cipMacHCSwitchedPkts_input": 28387751, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 28387751, + "cipMacHCSwitchedPkts_output": 13213743998, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 13213743998, + "ifIndex": 40 + }, + { + "mac": "84b59cb29fc8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 15029531947, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 15029531947, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 36612521, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 36612521, + "ifIndex": 40 + }, + { + "mac": "88e0f3b91c52", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 113150559117, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 113150559117, + "cipMacHCSwitchedBytes_output": 515374640967, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 515374640967, + "cipMacHCSwitchedPkts_input": 206350214, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 206350214, + "cipMacHCSwitchedPkts_output": 4757120350, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4757120350, + "ifIndex": 40 + }, + { + "mac": "a80c0dfa0e60", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2411880, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2411880, + "cipMacHCSwitchedBytes_output": 2341979, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2341979, + "cipMacHCSwitchedPkts_input": 31987, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 31987, + "cipMacHCSwitchedPkts_output": 32021, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 32021, + "ifIndex": 40 + }, + { + "mac": "b4a4e3948122", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 788159041329, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 788159041329, + "cipMacHCSwitchedBytes_output": 146018344859, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 146018344859, + "cipMacHCSwitchedPkts_input": 743454258, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 743454258, + "cipMacHCSwitchedPkts_output": 253457934, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 253457934, + "ifIndex": 40 + }, + { + "mac": "b4de313ddb13", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 10314852052, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 10314852052, + "cipMacHCSwitchedBytes_output": 31586805832, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 31586805832, + "cipMacHCSwitchedPkts_input": 11343642, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 11343642, + "cipMacHCSwitchedPkts_output": 92706399, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 92706399, + "ifIndex": 40 + }, + { + "mac": "b869f4d2c9ed", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 1799779443, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1799779443, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 2779293, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2779293, + "ifIndex": 40 + }, + { + "mac": "c47d4fc4397f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1700349894, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1700349894, + "cipMacHCSwitchedBytes_output": 17415921469, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 17415921469, + "cipMacHCSwitchedPkts_input": 2223443, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2223443, + "cipMacHCSwitchedPkts_output": 38831715, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 38831715, + "ifIndex": 40 + }, + { + "mac": "d867d969f9f0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1013937, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1013937, + "cipMacHCSwitchedBytes_output": 121221301587, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 121221301587, + "cipMacHCSwitchedPkts_input": 15245, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 15245, + "cipMacHCSwitchedPkts_output": 201042678, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 201042678, + "ifIndex": 40 + }, + { + "mac": "d89ef3a6ca27", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 660152717202, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 660152717202, + "cipMacHCSwitchedBytes_output": 326357613835, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 326357613835, + "cipMacHCSwitchedPkts_input": 575970416, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 575970416, + "cipMacHCSwitchedPkts_output": 1135166471, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1135166471, + "ifIndex": 40 + }, + { + "mac": "e0acf1132b1a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 75444314146, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 75444314146, + "cipMacHCSwitchedBytes_output": 6965599249706, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 6965599249706, + "cipMacHCSwitchedPkts_input": 688804585, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 688804585, + "cipMacHCSwitchedPkts_output": 5762875398, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5762875398, + "ifIndex": 40 + }, + { + "mac": "e481849e1475", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 4479604502228, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 4479604502228, + "cipMacHCSwitchedBytes_output": 3073624129046, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3073624129046, + "cipMacHCSwitchedPkts_input": 6454205772, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 6454205772, + "cipMacHCSwitchedPkts_output": 6693846609, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6693846609, + "ifIndex": 40 + }, + { + "mac": "e4c722210c03", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 15636983, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 15636983, + "cipMacHCSwitchedBytes_output": 46509243544, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 46509243544, + "cipMacHCSwitchedPkts_input": 222464, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 222464, + "cipMacHCSwitchedPkts_output": 136553326, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 136553326, + "ifIndex": 40 + }, + { + "mac": "e4c722210c5b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 127043912, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 127043912, + "cipMacHCSwitchedBytes_output": 15210552, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 15210552, + "cipMacHCSwitchedPkts_input": 157235, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 157235, + "cipMacHCSwitchedPkts_output": 122844, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 122844, + "ifIndex": 40 + }, + { + "mac": "e4c722e48b3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 195633971554, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 195633971554, + "cipMacHCSwitchedBytes_output": 24255674583, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 24255674583, + "cipMacHCSwitchedPkts_input": 136035866, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 136035866, + "cipMacHCSwitchedPkts_output": 184641679, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 184641679, + "ifIndex": 40 + }, + { + "mac": "e8b748011f3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1007, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1007, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 7, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 7, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "e8ba70427480", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 19628822807, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 19628822807, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 19393311, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 19393311, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 40 + }, + { + "mac": "f866f2693dbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3286380359, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3286380359, + "cipMacHCSwitchedBytes_output": 5384669148, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5384669148, + "cipMacHCSwitchedPkts_input": 13234298, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 13234298, + "cipMacHCSwitchedPkts_output": 7178028, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 7178028, + "ifIndex": 40 + }, + { + "mac": "f8c28870dcbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 16084957159, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 16084957159, + "cipMacHCSwitchedBytes_output": 23136744742, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 23136744742, + "cipMacHCSwitchedPkts_input": 24033270, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 24033270, + "cipMacHCSwitchedPkts_output": 58899679, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 58899679, + "ifIndex": 40 + }, + { + "mac": "0002c9f9f871", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5556954877, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5556954877, + "cipMacHCSwitchedBytes_output": 232470, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 232470, + "cipMacHCSwitchedPkts_input": 6385806, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 6385806, + "cipMacHCSwitchedPkts_output": 2583, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2583, + "ifIndex": 72 + }, + { + "mac": "0006f65f777f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 257361976, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 257361976, + "cipMacHCSwitchedBytes_output": 257500002, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 257500002, + "cipMacHCSwitchedPkts_input": 897170, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 897170, + "cipMacHCSwitchedPkts_output": 370777, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 370777, + "ifIndex": 72 + }, + { + "mac": "0008e3fffc4c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 25585517469, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 25585517469, + "cipMacHCSwitchedBytes_output": 1721895629, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1721895629, + "cipMacHCSwitchedPkts_input": 53517777, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 53517777, + "cipMacHCSwitchedPkts_output": 14196983, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 14196983, + "ifIndex": 72 + }, + { + "mac": "00090f09000b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2071080, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2071080, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 23012, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 23012, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "000c29224cec", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 102024047925, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 102024047925, + "cipMacHCSwitchedBytes_output": 2572851786, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2572851786, + "cipMacHCSwitchedPkts_input": 73604893, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 73604893, + "cipMacHCSwitchedPkts_output": 36735187, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 36735187, + "ifIndex": 72 + }, + { + "mac": "000c293ea293", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 99904549, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 99904549, + "cipMacHCSwitchedBytes_output": 266168470, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 266168470, + "cipMacHCSwitchedPkts_input": 520480, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 520480, + "cipMacHCSwitchedPkts_output": 612503, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 612503, + "ifIndex": 72 + }, + { + "mac": "000c29b5beee", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 12510, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 12510, + "cipMacHCSwitchedBytes_output": 252, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 252, + "cipMacHCSwitchedPkts_input": 139, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 139, + "cipMacHCSwitchedPkts_output": 4, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4, + "ifIndex": 72 + }, + { + "mac": "000c42b2bbd2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 911162902, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 911162902, + "cipMacHCSwitchedBytes_output": 403995590, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 403995590, + "cipMacHCSwitchedPkts_input": 1794172, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1794172, + "cipMacHCSwitchedPkts_output": 710329, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 710329, + "ifIndex": 72 + }, + { + "mac": "000c42fcfc56", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 76812200, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 76812200, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 744782, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 744782, + "ifIndex": 72 + }, + { + "mac": "001018e786b2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 11036276265, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 11036276265, + "cipMacHCSwitchedBytes_output": 14596996115, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 14596996115, + "cipMacHCSwitchedPkts_input": 12071308, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 12071308, + "cipMacHCSwitchedPkts_output": 21662071, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 21662071, + "ifIndex": 72 + }, + { + "mac": "001018e7a410", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 18797606124, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 18797606124, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 17085963, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 17085963, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00113285ba95", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 225054803317, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 225054803317, + "cipMacHCSwitchedBytes_output": 11632919054, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 11632919054, + "cipMacHCSwitchedPkts_input": 166172147, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 166172147, + "cipMacHCSwitchedPkts_output": 86749747, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 86749747, + "ifIndex": 72 + }, + { + "mac": "0013c360b800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8833473786, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8833473786, + "cipMacHCSwitchedBytes_output": 16253286513, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 16253286513, + "cipMacHCSwitchedPkts_input": 9202093, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 9202093, + "cipMacHCSwitchedPkts_output": 40101189, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 40101189, + "ifIndex": 72 + }, + { + "mac": "00141b3f2000", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1279219, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1279219, + "cipMacHCSwitchedBytes_output": 536914, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 536914, + "cipMacHCSwitchedPkts_input": 13632, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 13632, + "cipMacHCSwitchedPkts_output": 5966, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5966, + "ifIndex": 72 + }, + { + "mac": "0015171e545e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 678592681, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 678592681, + "cipMacHCSwitchedBytes_output": 65553526, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 65553526, + "cipMacHCSwitchedPkts_input": 830717, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 830717, + "cipMacHCSwitchedPkts_output": 318015, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 318015, + "ifIndex": 72 + }, + { + "mac": "00187415d240", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 29036325156, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 29036325156, + "cipMacHCSwitchedBytes_output": 509538, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 509538, + "cipMacHCSwitchedPkts_input": 38012521, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 38012521, + "cipMacHCSwitchedPkts_output": 5649, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5649, + "ifIndex": 72 + }, + { + "mac": "0019a97601c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 368167724013, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 368167724013, + "cipMacHCSwitchedBytes_output": 13116910266, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 13116910266, + "cipMacHCSwitchedPkts_input": 559265793, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 559265793, + "cipMacHCSwitchedPkts_output": 55322428, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 55322428, + "ifIndex": 72 + }, + { + "mac": "0019e2b5efc3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 41918373591, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 41918373591, + "cipMacHCSwitchedBytes_output": 261090, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261090, + "cipMacHCSwitchedPkts_input": 41293208, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 41293208, + "cipMacHCSwitchedPkts_output": 2901, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2901, + "ifIndex": 72 + }, + { + "mac": "001b21a49b9c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 172799523, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 172799523, + "cipMacHCSwitchedBytes_output": 114853388, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 114853388, + "cipMacHCSwitchedPkts_input": 153475, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 153475, + "cipMacHCSwitchedPkts_output": 797585, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 797585, + "ifIndex": 72 + }, + { + "mac": "001b21b11d20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2791307010, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2791307010, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 2123443, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2123443, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001b21bb5fb4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8222594303, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8222594303, + "cipMacHCSwitchedBytes_output": 546120, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 546120, + "cipMacHCSwitchedPkts_input": 26821345, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 26821345, + "cipMacHCSwitchedPkts_output": 6068, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6068, + "ifIndex": 72 + }, + { + "mac": "001c7326cc52", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2806193468041, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2806193468041, + "cipMacHCSwitchedBytes_output": 51374652059, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 51374652059, + "cipMacHCSwitchedPkts_input": 1892797281, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1892797281, + "cipMacHCSwitchedPkts_output": 550746312, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 550746312, + "ifIndex": 72 + }, + { + "mac": "001c7367ecdb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 412296, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 412296, + "cipMacHCSwitchedBytes_output": 230774, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 230774, + "cipMacHCSwitchedPkts_input": 4470, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4470, + "cipMacHCSwitchedPkts_output": 2565, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2565, + "ifIndex": 72 + }, + { + "mac": "001c73b39505", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 355410, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 355410, + "cipMacHCSwitchedBytes_output": 228330, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 228330, + "cipMacHCSwitchedPkts_input": 3949, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3949, + "cipMacHCSwitchedPkts_output": 2537, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2537, + "ifIndex": 72 + }, + { + "mac": "001c73d76411", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1146591279944, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1146591279944, + "cipMacHCSwitchedBytes_output": 51851266221, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 51851266221, + "cipMacHCSwitchedPkts_input": 790110397, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 790110397, + "cipMacHCSwitchedPkts_output": 629383777, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 629383777, + "ifIndex": 72 + }, + { + "mac": "001c73ead751", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 12817391757824, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 12817391757824, + "cipMacHCSwitchedBytes_output": 1721639, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1721639, + "cipMacHCSwitchedPkts_input": 10427670827, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10427670827, + "cipMacHCSwitchedPkts_output": 22936, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 22936, + "ifIndex": 72 + }, + { + "mac": "001c73ead752", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 12999707257273, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 12999707257273, + "cipMacHCSwitchedBytes_output": 1003234011, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1003234011, + "cipMacHCSwitchedPkts_input": 10573178477, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10573178477, + "cipMacHCSwitchedPkts_output": 3114331, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 3114331, + "ifIndex": 72 + }, + { + "mac": "001cb0b7e640", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 960930, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 960930, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 10677, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10677, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001cb0c8d4c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 963810, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 963810, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 10709, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10709, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "001e799c7000", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 17021831029493, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 17021831029493, + "cipMacHCSwitchedBytes_output": 596960178557, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 596960178557, + "cipMacHCSwitchedPkts_input": 13603477338, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 13603477338, + "cipMacHCSwitchedPkts_output": 4391193969, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4391193969, + "ifIndex": 72 + }, + { + "mac": "001fcab27b80", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 603512, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 603512, + "cipMacHCSwitchedBytes_output": 462600, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 462600, + "cipMacHCSwitchedPkts_input": 6760, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 6760, + "cipMacHCSwitchedPkts_output": 5140, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5140, + "ifIndex": 72 + }, + { + "mac": "001fe241ab3b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 73319551, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 73319551, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 198622, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 198622, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0021a00bb6c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 31787006363, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 31787006363, + "cipMacHCSwitchedBytes_output": 46043877849, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 46043877849, + "cipMacHCSwitchedPkts_input": 34217399, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 34217399, + "cipMacHCSwitchedPkts_output": 56425429, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 56425429, + "ifIndex": 72 + }, + { + "mac": "00230418dd40", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2278373390, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2278373390, + "cipMacHCSwitchedBytes_output": 3085046660, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3085046660, + "cipMacHCSwitchedPkts_input": 5250512, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5250512, + "cipMacHCSwitchedPkts_output": 15484850, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 15484850, + "ifIndex": 72 + }, + { + "mac": "00239c5c0fc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 314131966412, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 314131966412, + "cipMacHCSwitchedBytes_output": 1072146649, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1072146649, + "cipMacHCSwitchedPkts_input": 302684996, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 302684996, + "cipMacHCSwitchedPkts_output": 735682, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 735682, + "ifIndex": 72 + }, + { + "mac": "00239c5e9ff0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 17151014008, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 17151014008, + "cipMacHCSwitchedBytes_output": 260730, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 260730, + "cipMacHCSwitchedPkts_input": 11400144, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 11400144, + "cipMacHCSwitchedPkts_output": 2897, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2897, + "ifIndex": 72 + }, + { + "mac": "00258429e080", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 49527495200, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 49527495200, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 55365647, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 55365647, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590e1c341", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 7135183579, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 7135183579, + "cipMacHCSwitchedBytes_output": 585181100, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 585181100, + "cipMacHCSwitchedPkts_input": 21350879, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 21350879, + "cipMacHCSwitchedPkts_output": 1933970, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1933970, + "ifIndex": 72 + }, + { + "mac": "002590ebe82a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2154600, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2154600, + "cipMacHCSwitchedBytes_output": 5191979192, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5191979192, + "cipMacHCSwitchedPkts_input": 23940, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 23940, + "cipMacHCSwitchedPkts_output": 31663958, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 31663958, + "ifIndex": 72 + }, + { + "mac": "002590ebee1c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 67271260689, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 67271260689, + "cipMacHCSwitchedBytes_output": 477090, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 477090, + "cipMacHCSwitchedPkts_input": 64543654, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 64543654, + "cipMacHCSwitchedPkts_output": 5301, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5301, + "ifIndex": 72 + }, + { + "mac": "002590ebf21c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2131470, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2131470, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 23683, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 23683, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "002590ebf26e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2112930, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2112930, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 23477, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 23477, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0026cb50c0c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 39198535424, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 39198535424, + "cipMacHCSwitchedBytes_output": 455580, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 455580, + "cipMacHCSwitchedPkts_input": 48227232, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 48227232, + "cipMacHCSwitchedPkts_output": 5062, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5062, + "ifIndex": 72 + }, + { + "mac": "0030485f392f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 40693115, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 40693115, + "cipMacHCSwitchedBytes_output": 9342788, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 9342788, + "cipMacHCSwitchedPkts_input": 161035, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 161035, + "cipMacHCSwitchedPkts_output": 132951, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 132951, + "ifIndex": 72 + }, + { + "mac": "00304864ea9b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 107463547, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 107463547, + "cipMacHCSwitchedBytes_output": 8153818, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 8153818, + "cipMacHCSwitchedPkts_input": 902676, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 902676, + "cipMacHCSwitchedPkts_output": 119312, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 119312, + "ifIndex": 72 + }, + { + "mac": "005056bb0370", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 13207825438, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 13207825438, + "cipMacHCSwitchedBytes_output": 18477179464, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 18477179464, + "cipMacHCSwitchedPkts_input": 42393612, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 42393612, + "cipMacHCSwitchedPkts_output": 38249264, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 38249264, + "ifIndex": 72 + }, + { + "mac": "005f86924bc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 235493418, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 235493418, + "cipMacHCSwitchedBytes_output": 162168753, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 162168753, + "cipMacHCSwitchedPkts_input": 1052624, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1052624, + "cipMacHCSwitchedPkts_output": 272804, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 272804, + "ifIndex": 72 + }, + { + "mac": "0081c46ebe02", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3175789643091, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3175789643091, + "cipMacHCSwitchedBytes_output": 4098600082773, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4098600082773, + "cipMacHCSwitchedPkts_input": 5718330018, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5718330018, + "cipMacHCSwitchedPkts_output": 4036138775, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4036138775, + "ifIndex": 72 + }, + { + "mac": "0081c46edf05", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1009440, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1009440, + "cipMacHCSwitchedBytes_output": 455040, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 455040, + "cipMacHCSwitchedPkts_input": 11216, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 11216, + "cipMacHCSwitchedPkts_output": 5056, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5056, + "ifIndex": 72 + }, + { + "mac": "008a969560e3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 10281725975, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 10281725975, + "cipMacHCSwitchedBytes_output": 2179960672, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2179960672, + "cipMacHCSwitchedPkts_input": 11042223, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 11042223, + "cipMacHCSwitchedPkts_output": 2754241, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2754241, + "ifIndex": 72 + }, + { + "mac": "009069757ff0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1327504268, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1327504268, + "cipMacHCSwitchedBytes_output": 261239, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261239, + "cipMacHCSwitchedPkts_input": 1658205, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1658205, + "cipMacHCSwitchedPkts_output": 2902, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2902, + "ifIndex": 72 + }, + { + "mac": "00a742092f29", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2495160, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2495160, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 27724, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 27724, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00a742095794", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1802520, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1802520, + "cipMacHCSwitchedBytes_output": 430830, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 430830, + "cipMacHCSwitchedPkts_input": 20028, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 20028, + "cipMacHCSwitchedPkts_output": 4787, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4787, + "ifIndex": 72 + }, + { + "mac": "00a742581706", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2171880, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2171880, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 24132, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 24132, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00be753acb80", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 37331976342, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 37331976342, + "cipMacHCSwitchedBytes_output": 595984, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 595984, + "cipMacHCSwitchedPkts_input": 51431104, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 51431104, + "cipMacHCSwitchedPkts_output": 6387, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6387, + "ifIndex": 72 + }, + { + "mac": "00c1641b3df0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 26069934734, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 26069934734, + "cipMacHCSwitchedBytes_output": 5844081, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5844081, + "cipMacHCSwitchedPkts_input": 71895568, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 71895568, + "cipMacHCSwitchedPkts_output": 62614, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 62614, + "ifIndex": 72 + }, + { + "mac": "00c16433a6ab", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 256950, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 256950, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 2855, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2855, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "00c16433ed1b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 13228298771, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 13228298771, + "cipMacHCSwitchedBytes_output": 3813065552, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3813065552, + "cipMacHCSwitchedPkts_input": 16887693, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 16887693, + "cipMacHCSwitchedPkts_output": 6486490, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6486490, + "ifIndex": 72 + }, + { + "mac": "00c164415cd5", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1867675241, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1867675241, + "cipMacHCSwitchedBytes_output": 506356861, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 506356861, + "cipMacHCSwitchedPkts_input": 2937605, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2937605, + "cipMacHCSwitchedPkts_output": 1358654, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1358654, + "ifIndex": 72 + }, + { + "mac": "02fa55010702", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 64524616578, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 64524616578, + "cipMacHCSwitchedBytes_output": 555840, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 555840, + "cipMacHCSwitchedPkts_input": 70268353, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 70268353, + "cipMacHCSwitchedPkts_output": 6176, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6176, + "ifIndex": 72 + }, + { + "mac": "043389489b22", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 781839772218, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 781839772218, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 521537950, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 521537950, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0881f48660b0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1481921584, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1481921584, + "cipMacHCSwitchedBytes_output": 261450, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261450, + "cipMacHCSwitchedPkts_input": 4636351, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4636351, + "cipMacHCSwitchedPkts_output": 2905, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2905, + "ifIndex": 72 + }, + { + "mac": "0881f49a4295", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2736959, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2736959, + "cipMacHCSwitchedBytes_output": 261270, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261270, + "cipMacHCSwitchedPkts_input": 25061, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 25061, + "cipMacHCSwitchedPkts_output": 2903, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2903, + "ifIndex": 72 + }, + { + "mac": "0881f4e1efce", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 33917487547, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 33917487547, + "cipMacHCSwitchedBytes_output": 14631717220, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 14631717220, + "cipMacHCSwitchedPkts_input": 26916892, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 26916892, + "cipMacHCSwitchedPkts_output": 31244364, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 31244364, + "ifIndex": 72 + }, + { + "mac": "0896ad6f00cc", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1941385, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1941385, + "cipMacHCSwitchedBytes_output": 1197442, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1197442, + "cipMacHCSwitchedPkts_input": 18062, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 18062, + "cipMacHCSwitchedPkts_output": 17963, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 17963, + "ifIndex": 72 + }, + { + "mac": "0896adf6f680", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 14132388223, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 14132388223, + "cipMacHCSwitchedBytes_output": 3583229104, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3583229104, + "cipMacHCSwitchedPkts_input": 23913171, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 23913171, + "cipMacHCSwitchedPkts_output": 4924237, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4924237, + "ifIndex": 72 + }, + { + "mac": "08b258672dc3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 605575076171, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 605575076171, + "cipMacHCSwitchedBytes_output": 24389684217, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 24389684217, + "cipMacHCSwitchedPkts_input": 648432574, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 648432574, + "cipMacHCSwitchedPkts_output": 277598080, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 277598080, + "ifIndex": 72 + }, + { + "mac": "08b25890d2a3", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 41298852052, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 41298852052, + "cipMacHCSwitchedBytes_output": 16453102113, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 16453102113, + "cipMacHCSwitchedPkts_input": 46289397, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 46289397, + "cipMacHCSwitchedPkts_output": 78105157, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 78105157, + "ifIndex": 72 + }, + { + "mac": "0cc47a519deb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 203779170, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 203779170, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 2264213, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2264213, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47a8f3743", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3060540, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3060540, + "cipMacHCSwitchedBytes_output": 601762505, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 601762505, + "cipMacHCSwitchedPkts_input": 34006, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 34006, + "cipMacHCSwitchedPkts_output": 669047, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 669047, + "ifIndex": 72 + }, + { + "mac": "0cc47abcb869", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2901073799, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2901073799, + "cipMacHCSwitchedBytes_output": 3896824087, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3896824087, + "cipMacHCSwitchedPkts_input": 3315541, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3315541, + "cipMacHCSwitchedPkts_output": 3894534, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 3894534, + "ifIndex": 72 + }, + { + "mac": "0cc47abd40b1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 14524882381, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 14524882381, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 16249434, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 16249434, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "0cc47abd5d00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 4181550800, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 4181550800, + "cipMacHCSwitchedBytes_output": 444780, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 444780, + "cipMacHCSwitchedPkts_input": 6963161, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 6963161, + "cipMacHCSwitchedPkts_output": 4942, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4942, + "ifIndex": 72 + }, + { + "mac": "0cc47ae0d5a7", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1647114587, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1647114587, + "cipMacHCSwitchedBytes_output": 80665, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 80665, + "cipMacHCSwitchedPkts_input": 5925878, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5925878, + "cipMacHCSwitchedPkts_output": 896, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 896, + "ifIndex": 72 + }, + { + "mac": "0cc47aeb24e6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3209068469, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3209068469, + "cipMacHCSwitchedBytes_output": 444150, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 444150, + "cipMacHCSwitchedPkts_input": 4573978, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4573978, + "cipMacHCSwitchedPkts_output": 4935, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4935, + "ifIndex": 72 + }, + { + "mac": "0cc47aeb5598", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2287234599, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2287234599, + "cipMacHCSwitchedBytes_output": 559890, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 559890, + "cipMacHCSwitchedPkts_input": 4648405, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4648405, + "cipMacHCSwitchedPkts_output": 6221, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6221, + "ifIndex": 72 + }, + { + "mac": "1005ca9c0440", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1603170, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1603170, + "cipMacHCSwitchedBytes_output": 420390, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 420390, + "cipMacHCSwitchedPkts_input": 17813, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 17813, + "cipMacHCSwitchedPkts_output": 4671, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4671, + "ifIndex": 72 + }, + { + "mac": "10c172d5135e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 64, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 64, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 1, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "10f3110ad89e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2620933512, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2620933512, + "cipMacHCSwitchedBytes_output": 443970, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 443970, + "cipMacHCSwitchedPkts_input": 4406388, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4406388, + "cipMacHCSwitchedPkts_output": 4933, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4933, + "ifIndex": 72 + }, + { + "mac": "10f3110ad8f6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5451371005, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5451371005, + "cipMacHCSwitchedBytes_output": 15030, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 15030, + "cipMacHCSwitchedPkts_input": 7881403, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 7881403, + "cipMacHCSwitchedPkts_output": 167, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 167, + "ifIndex": 72 + }, + { + "mac": "10f311682a20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8557148529, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8557148529, + "cipMacHCSwitchedBytes_output": 6732298602, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 6732298602, + "cipMacHCSwitchedPkts_input": 19659436, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 19659436, + "cipMacHCSwitchedPkts_output": 10236168, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 10236168, + "ifIndex": 72 + }, + { + "mac": "1866da7a0f93", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 57477290418129, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 57477290418129, + "cipMacHCSwitchedBytes_output": 12182972805653, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 12182972805653, + "cipMacHCSwitchedPkts_input": 41551454615, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 41551454615, + "cipMacHCSwitchedPkts_output": 19954440597, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 19954440597, + "ifIndex": 72 + }, + { + "mac": "1866da7a35cc", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 58219188541948, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 58219188541948, + "cipMacHCSwitchedBytes_output": 12443026269452, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 12443026269452, + "cipMacHCSwitchedPkts_input": 42134679945, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 42134679945, + "cipMacHCSwitchedPkts_output": 20245870477, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 20245870477, + "ifIndex": 72 + }, + { + "mac": "1866da7a5b95", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 59992765357522, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 59992765357522, + "cipMacHCSwitchedBytes_output": 12363027054357, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 12363027054357, + "cipMacHCSwitchedPkts_input": 43358978928, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 43358978928, + "cipMacHCSwitchedPkts_output": 20541486718, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 20541486718, + "ifIndex": 72 + }, + { + "mac": "1866da93e7b5", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1160553639, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1160553639, + "cipMacHCSwitchedBytes_output": 671879, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 671879, + "cipMacHCSwitchedPkts_input": 1238462, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1238462, + "cipMacHCSwitchedPkts_output": 7428, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 7428, + "ifIndex": 72 + }, + { + "mac": "20e09c53c142", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 600490689, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 600490689, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 1551298, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1551298, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "20fdf14c1281", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2907270, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2907270, + "cipMacHCSwitchedBytes_output": 1427808593, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1427808593, + "cipMacHCSwitchedPkts_input": 32303, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 32303, + "cipMacHCSwitchedPkts_output": 1468933, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1468933, + "ifIndex": 72 + }, + { + "mac": "28993a268b2d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 261068824316, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 261068824316, + "cipMacHCSwitchedBytes_output": 7980794432, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 7980794432, + "cipMacHCSwitchedPkts_input": 179626046, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 179626046, + "cipMacHCSwitchedPkts_output": 103487442, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 103487442, + "ifIndex": 72 + }, + { + "mac": "28993abf059c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 548162402860, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 548162402860, + "cipMacHCSwitchedBytes_output": 2871696860, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2871696860, + "cipMacHCSwitchedPkts_input": 374140946, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 374140946, + "cipMacHCSwitchedPkts_output": 34622935, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 34622935, + "ifIndex": 72 + }, + { + "mac": "28993acf80d2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 376274523019, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 376274523019, + "cipMacHCSwitchedBytes_output": 31346803982, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 31346803982, + "cipMacHCSwitchedPkts_input": 310837373, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 310837373, + "cipMacHCSwitchedPkts_output": 42887458, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 42887458, + "ifIndex": 72 + }, + { + "mac": "2c21317ff1f2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 10813722476, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 10813722476, + "cipMacHCSwitchedBytes_output": 1320852, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1320852, + "cipMacHCSwitchedPkts_input": 7384777, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 7384777, + "cipMacHCSwitchedPkts_output": 5234, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5234, + "ifIndex": 72 + }, + { + "mac": "3417eb4bad0f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1937902, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1937902, + "cipMacHCSwitchedBytes_output": 247230, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 247230, + "cipMacHCSwitchedPkts_input": 20892, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 20892, + "cipMacHCSwitchedPkts_output": 2747, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2747, + "ifIndex": 72 + }, + { + "mac": "38bc01b25bbe", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 855973410, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 855973410, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 2138892, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2138892, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "405539408f78", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 237373357027, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 237373357027, + "cipMacHCSwitchedBytes_output": 454590, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 454590, + "cipMacHCSwitchedPkts_input": 206506726, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 206506726, + "cipMacHCSwitchedPkts_output": 5051, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5051, + "ifIndex": 72 + }, + { + "mac": "405539409e91", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 304681154010, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 304681154010, + "cipMacHCSwitchedBytes_output": 455040, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 455040, + "cipMacHCSwitchedPkts_input": 292991027, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 292991027, + "cipMacHCSwitchedPkts_output": 5056, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5056, + "ifIndex": 72 + }, + { + "mac": "40b4f0ef38aa", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 17956535424, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 17956535424, + "cipMacHCSwitchedBytes_output": 10347192330, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 10347192330, + "cipMacHCSwitchedPkts_input": 35573401, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 35573401, + "cipMacHCSwitchedPkts_output": 12049432, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 12049432, + "ifIndex": 72 + }, + { + "mac": "40ce2406818a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 243900, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 243900, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 2710, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2710, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "444ca820ea9d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 344970, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 344970, + "cipMacHCSwitchedBytes_output": 226440, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 226440, + "cipMacHCSwitchedPkts_input": 3833, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3833, + "cipMacHCSwitchedPkts_output": 2516, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2516, + "ifIndex": 72 + }, + { + "mac": "444ca8b99779", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 336959399856, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 336959399856, + "cipMacHCSwitchedBytes_output": 135992370761, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 135992370761, + "cipMacHCSwitchedPkts_input": 283972040, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 283972040, + "cipMacHCSwitchedPkts_output": 274755721, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 274755721, + "ifIndex": 72 + }, + { + "mac": "44ecce429484", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 149922, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 149922, + "cipMacHCSwitchedBytes_output": 261000, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261000, + "cipMacHCSwitchedPkts_input": 1178, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1178, + "cipMacHCSwitchedPkts_output": 2900, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2900, + "ifIndex": 72 + }, + { + "mac": "44f4771b9020", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 52304465190, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 52304465190, + "cipMacHCSwitchedBytes_output": 14067621377, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 14067621377, + "cipMacHCSwitchedPkts_input": 60304401, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 60304401, + "cipMacHCSwitchedPkts_output": 23402360, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 23402360, + "ifIndex": 72 + }, + { + "mac": "44f4779e5ff8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 284071, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 284071, + "cipMacHCSwitchedBytes_output": 261090, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261090, + "cipMacHCSwitchedPkts_input": 2140, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2140, + "cipMacHCSwitchedPkts_output": 2901, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2901, + "ifIndex": 72 + }, + { + "mac": "44f4779e6ff8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 150605472, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 150605472, + "cipMacHCSwitchedBytes_output": 21264947254, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 21264947254, + "cipMacHCSwitchedPkts_input": 728861, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 728861, + "cipMacHCSwitchedPkts_output": 320238423, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 320238423, + "ifIndex": 72 + }, + { + "mac": "4c1fcc017761", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 11153188536, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 11153188536, + "cipMacHCSwitchedBytes_output": 22283086349, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 22283086349, + "cipMacHCSwitchedPkts_input": 16249394, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 16249394, + "cipMacHCSwitchedPkts_output": 23977845, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 23977845, + "ifIndex": 72 + }, + { + "mac": "4c4e3536cdff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 11395, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 11395, + "cipMacHCSwitchedBytes_output": 35180879900, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 35180879900, + "cipMacHCSwitchedPkts_input": 112, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 112, + "cipMacHCSwitchedPkts_output": 487603389, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 487603389, + "ifIndex": 72 + }, + { + "mac": "4c5e0c02abec", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1779155821, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1779155821, + "cipMacHCSwitchedBytes_output": 32032747, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 32032747, + "cipMacHCSwitchedPkts_input": 2302000, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2302000, + "cipMacHCSwitchedPkts_output": 25847, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 25847, + "ifIndex": 72 + }, + { + "mac": "4c5e0c13de99", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 14278155767, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 14278155767, + "cipMacHCSwitchedBytes_output": 11275347256, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 11275347256, + "cipMacHCSwitchedPkts_input": 17473441, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 17473441, + "cipMacHCSwitchedPkts_output": 10955762, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 10955762, + "ifIndex": 72 + }, + { + "mac": "4c5e0c142658", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 832328, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 832328, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 10880, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10880, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "503de5affac0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1125279473388, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1125279473388, + "cipMacHCSwitchedBytes_output": 5972929792, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5972929792, + "cipMacHCSwitchedPkts_input": 783921147, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 783921147, + "cipMacHCSwitchedPkts_output": 8199565, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 8199565, + "ifIndex": 72 + }, + { + "mac": "508789184777", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 19032655, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 19032655, + "cipMacHCSwitchedBytes_output": 44056134, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 44056134, + "cipMacHCSwitchedPkts_input": 66176, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 66176, + "cipMacHCSwitchedPkts_output": 115009, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 115009, + "ifIndex": 72 + }, + { + "mac": "5475d0bce800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5142950195, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5142950195, + "cipMacHCSwitchedBytes_output": 2545439357, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2545439357, + "cipMacHCSwitchedPkts_input": 8579357, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 8579357, + "cipMacHCSwitchedPkts_output": 2875053, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2875053, + "ifIndex": 72 + }, + { + "mac": "547fee61c17c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3060, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3060, + "cipMacHCSwitchedBytes_output": 60, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 60, + "cipMacHCSwitchedPkts_input": 34, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 34, + "cipMacHCSwitchedPkts_output": 1, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1, + "ifIndex": 72 + }, + { + "mac": "548998e09dbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 11144056752, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 11144056752, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 13834838, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 13834838, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "54a27490fd00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1209248, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1209248, + "cipMacHCSwitchedBytes_output": 523170, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 523170, + "cipMacHCSwitchedPkts_input": 12997, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 12997, + "cipMacHCSwitchedPkts_output": 5813, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5813, + "ifIndex": 72 + }, + { + "mac": "588d09b45c00", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 139629993295, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 139629993295, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 98006376, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 98006376, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c45277b2436", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 83030922909, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 83030922909, + "cipMacHCSwitchedBytes_output": 278972003, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 278972003, + "cipMacHCSwitchedPkts_input": 84842234, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 84842234, + "cipMacHCSwitchedPkts_output": 406005, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 406005, + "ifIndex": 72 + }, + { + "mac": "5c45277fbf01", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 48819, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 48819, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 111, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 111, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c5eab61f906", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 784994695, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 784994695, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 1319058, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1319058, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5c5eabb03fc0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3599, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3599, + "cipMacHCSwitchedBytes_output": 3050008, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3050008, + "cipMacHCSwitchedPkts_input": 33, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 33, + "cipMacHCSwitchedPkts_output": 20389, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 20389, + "ifIndex": 72 + }, + { + "mac": "5c8a383a2a20", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 38386957146, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 38386957146, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 52839678, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 52839678, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "5e5eab5e291c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 4198541626692, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 4198541626692, + "cipMacHCSwitchedBytes_output": 4687576, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4687576, + "cipMacHCSwitchedPkts_input": 2972040373, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2972040373, + "cipMacHCSwitchedPkts_output": 60656, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 60656, + "ifIndex": 72 + }, + { + "mac": "6400f1748980", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 85342972428436, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 85342972428436, + "cipMacHCSwitchedBytes_output": 4683182542278, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4683182542278, + "cipMacHCSwitchedPkts_input": 60477532117, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 60477532117, + "cipMacHCSwitchedPkts_output": 14662744478, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 14662744478, + "ifIndex": 72 + }, + { + "mac": "641225eaa940", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 151330741144, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 151330741144, + "cipMacHCSwitchedBytes_output": 29397744008, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 29397744008, + "cipMacHCSwitchedPkts_input": 138357169, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 138357169, + "cipMacHCSwitchedPkts_output": 58940130, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 58940130, + "ifIndex": 72 + }, + { + "mac": "64649bd750b0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 13866928981, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 13866928981, + "cipMacHCSwitchedBytes_output": 4336978231, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4336978231, + "cipMacHCSwitchedPkts_input": 21191631, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 21191631, + "cipMacHCSwitchedPkts_output": 6977185, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6977185, + "ifIndex": 72 + }, + { + "mac": "647fda00578a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1068982, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1068982, + "cipMacHCSwitchedBytes_output": 789336, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 789336, + "cipMacHCSwitchedPkts_input": 10025, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10025, + "cipMacHCSwitchedPkts_output": 6924, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6924, + "ifIndex": 72 + }, + { + "mac": "649ef3aa01ff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5017718741, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5017718741, + "cipMacHCSwitchedBytes_output": 994922626, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 994922626, + "cipMacHCSwitchedPkts_input": 3424693, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3424693, + "cipMacHCSwitchedPkts_output": 2618093, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2618093, + "ifIndex": 72 + }, + { + "mac": "64c3d65b2b9b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3119459881875, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3119459881875, + "cipMacHCSwitchedBytes_output": 229983337660, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 229983337660, + "cipMacHCSwitchedPkts_input": 2893519836, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2893519836, + "cipMacHCSwitchedPkts_output": 1056778122, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1056778122, + "ifIndex": 72 + }, + { + "mac": "64d1543b381a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 776299576, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 776299576, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 2647523, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2647523, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "66649bba951c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2238731410491, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2238731410491, + "cipMacHCSwitchedBytes_output": 56258673598, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 56258673598, + "cipMacHCSwitchedPkts_input": 1608967117, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1608967117, + "cipMacHCSwitchedPkts_output": 569550221, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 569550221, + "ifIndex": 72 + }, + { + "mac": "6c3b6bef0cd8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 352765235, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 352765235, + "cipMacHCSwitchedBytes_output": 60086413, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 60086413, + "cipMacHCSwitchedPkts_input": 329082, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 329082, + "cipMacHCSwitchedPkts_output": 342228, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 342228, + "ifIndex": 72 + }, + { + "mac": "6c6cd31c6368", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1632684647, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1632684647, + "cipMacHCSwitchedBytes_output": 455310, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 455310, + "cipMacHCSwitchedPkts_input": 9697660, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 9697660, + "cipMacHCSwitchedPkts_output": 5059, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5059, + "ifIndex": 72 + }, + { + "mac": "6c6cd320cfda", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2039282694, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2039282694, + "cipMacHCSwitchedBytes_output": 455400, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 455400, + "cipMacHCSwitchedPkts_input": 10461256, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10461256, + "cipMacHCSwitchedPkts_output": 5060, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5060, + "ifIndex": 72 + }, + { + "mac": "6c9ced105503", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1879365022, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1879365022, + "cipMacHCSwitchedBytes_output": 449730, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 449730, + "cipMacHCSwitchedPkts_input": 2801457, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2801457, + "cipMacHCSwitchedPkts_output": 4997, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4997, + "ifIndex": 72 + }, + { + "mac": "6c9ced7b1bd1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 504540, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 504540, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 5606, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5606, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6c9ced7b5d31", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 553843408448, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 553843408448, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 519696970, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 519696970, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "6cb3113b9de0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 23948450, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 23948450, + "cipMacHCSwitchedBytes_output": 7906056, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 7906056, + "cipMacHCSwitchedPkts_input": 202343, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 202343, + "cipMacHCSwitchedPkts_output": 27335, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 27335, + "ifIndex": 72 + }, + { + "mac": "6cb3113b9df4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 10078285175, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 10078285175, + "cipMacHCSwitchedBytes_output": 565830, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 565830, + "cipMacHCSwitchedPkts_input": 12470837, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 12470837, + "cipMacHCSwitchedPkts_output": 6287, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6287, + "ifIndex": 72 + }, + { + "mac": "6edad9f6e4db", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 57260472, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 57260472, + "cipMacHCSwitchedBytes_output": 564946, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 564946, + "cipMacHCSwitchedPkts_input": 85714, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 85714, + "cipMacHCSwitchedPkts_output": 5620, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5620, + "ifIndex": 72 + }, + { + "mac": "704ca54a9eb2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "70e4222fd261", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1896376957, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1896376957, + "cipMacHCSwitchedBytes_output": 189392469, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 189392469, + "cipMacHCSwitchedPkts_input": 4051931, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4051931, + "cipMacHCSwitchedPkts_output": 2095635, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2095635, + "ifIndex": 72 + }, + { + "mac": "7483ef25aa68", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1726097014671, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1726097014671, + "cipMacHCSwitchedBytes_output": 98555312, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 98555312, + "cipMacHCSwitchedPkts_input": 1188324157, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1188324157, + "cipMacHCSwitchedPkts_output": 989778, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 989778, + "ifIndex": 72 + }, + { + "mac": "7483ef25b18e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1720316526500, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1720316526500, + "cipMacHCSwitchedBytes_output": 4068986, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4068986, + "cipMacHCSwitchedPkts_input": 1185580308, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1185580308, + "cipMacHCSwitchedPkts_output": 39162, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 39162, + "ifIndex": 72 + }, + { + "mac": "7483ef2ee4a7", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 163754694110, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 163754694110, + "cipMacHCSwitchedBytes_output": 5428070152, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5428070152, + "cipMacHCSwitchedPkts_input": 121533307, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 121533307, + "cipMacHCSwitchedPkts_output": 36157621, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 36157621, + "ifIndex": 72 + }, + { + "mac": "7483ef46b341", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2255341393451, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2255341393451, + "cipMacHCSwitchedBytes_output": 162130871161, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 162130871161, + "cipMacHCSwitchedPkts_input": 1580772763, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1580772763, + "cipMacHCSwitchedPkts_output": 1957465065, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 1957465065, + "ifIndex": 72 + }, + { + "mac": "7483ef46b344", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2210318868726, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2210318868726, + "cipMacHCSwitchedBytes_output": 229590, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 229590, + "cipMacHCSwitchedPkts_input": 1548472977, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1548472977, + "cipMacHCSwitchedPkts_output": 2551, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2551, + "ifIndex": 72 + }, + { + "mac": "748ef8a89481", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "78baf99f340b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 380332, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 380332, + "cipMacHCSwitchedBytes_output": 2241510834487, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 2241510834487, + "cipMacHCSwitchedPkts_input": 1959, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1959, + "cipMacHCSwitchedPkts_output": 3170966724, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 3170966724, + "ifIndex": 72 + }, + { + "mac": "7a19f75cc11e", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2809807173424, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2809807173424, + "cipMacHCSwitchedBytes_output": 4960272, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4960272, + "cipMacHCSwitchedPkts_input": 1998821628, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1998821628, + "cipMacHCSwitchedPkts_output": 63731, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 63731, + "ifIndex": 72 + }, + { + "mac": "7c2586f87460", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 7705506535417, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 7705506535417, + "cipMacHCSwitchedBytes_output": 261000, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261000, + "cipMacHCSwitchedPkts_input": 5260062602, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5260062602, + "cipMacHCSwitchedPkts_output": 2900, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2900, + "ifIndex": 72 + }, + { + "mac": "7cad7400bbbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 812290, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 812290, + "cipMacHCSwitchedBytes_output": 1328390, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1328390, + "cipMacHCSwitchedPkts_input": 3819, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3819, + "cipMacHCSwitchedPkts_output": 4996, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4996, + "ifIndex": 72 + }, + { + "mac": "7ce2ca4f4d54", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8081717735835, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8081717735835, + "cipMacHCSwitchedBytes_output": 261090, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261090, + "cipMacHCSwitchedPkts_input": 5440991632, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5440991632, + "cipMacHCSwitchedPkts_output": 2901, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2901, + "ifIndex": 72 + }, + { + "mac": "80711f74f99d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8027301, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8027301, + "cipMacHCSwitchedBytes_output": 5556930, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 5556930, + "cipMacHCSwitchedPkts_input": 78507, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 78507, + "cipMacHCSwitchedPkts_output": 74902, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 74902, + "ifIndex": 72 + }, + { + "mac": "8478ac774b86", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1039806271145, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1039806271145, + "cipMacHCSwitchedBytes_output": 144442860455, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 144442860455, + "cipMacHCSwitchedPkts_input": 1312970035, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1312970035, + "cipMacHCSwitchedPkts_output": 368953539, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 368953539, + "ifIndex": 72 + }, + { + "mac": "84b59c92e0c1", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 9028350, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 9028350, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 100315, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 100315, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "84b80203cf10", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 29632062493, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 29632062493, + "cipMacHCSwitchedBytes_output": 479751, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 479751, + "cipMacHCSwitchedPkts_input": 37882079, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 37882079, + "cipMacHCSwitchedPkts_output": 5205, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5205, + "ifIndex": 72 + }, + { + "mac": "90e2ba192344", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2056230, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2056230, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 22847, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 22847, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba7ab18d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba7c2415", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 10374059316, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 10374059316, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 11062812, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 11062812, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba825c49", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3315717, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3315717, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 36841, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 36841, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "90e2ba826e3d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2011089202, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2011089202, + "cipMacHCSwitchedBytes_output": 461880, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 461880, + "cipMacHCSwitchedPkts_input": 4516699, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 4516699, + "cipMacHCSwitchedPkts_output": 5132, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5132, + "ifIndex": 72 + }, + { + "mac": "90e2ba860940", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 5160582, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 5160582, + "cipMacHCSwitchedBytes_output": 606690, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 606690, + "cipMacHCSwitchedPkts_input": 52440, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 52440, + "cipMacHCSwitchedPkts_output": 6741, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6741, + "ifIndex": 72 + }, + { + "mac": "90e2ba860aa0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 13285067423, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 13285067423, + "cipMacHCSwitchedBytes_output": 20698196203, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 20698196203, + "cipMacHCSwitchedPkts_input": 36182825, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 36182825, + "cipMacHCSwitchedPkts_output": 19253756, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 19253756, + "ifIndex": 72 + }, + { + "mac": "90e2ba883498", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 160470568685, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 160470568685, + "cipMacHCSwitchedBytes_output": 123829950619, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 123829950619, + "cipMacHCSwitchedPkts_input": 282080065, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 282080065, + "cipMacHCSwitchedPkts_output": 159504622, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 159504622, + "ifIndex": 72 + }, + { + "mac": "a0086fcfb491", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 49846, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 49846, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 609, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 609, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0369f1ba3c4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8026326, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8026326, + "cipMacHCSwitchedBytes_output": 462960, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 462960, + "cipMacHCSwitchedPkts_input": 88552, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 88552, + "cipMacHCSwitchedPkts_output": 5144, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5144, + "ifIndex": 72 + }, + { + "mac": "a0369f67b0de", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3855, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3855, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 15, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 15, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a0369fd7d936", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 18667569855, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 18667569855, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 19649114, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 19649114, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "a08cf8bb6d11", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 88911190099, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 88911190099, + "cipMacHCSwitchedBytes_output": 31821113421, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 31821113421, + "cipMacHCSwitchedPkts_input": 86054394, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 86054394, + "cipMacHCSwitchedPkts_output": 36699986, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 36699986, + "ifIndex": 72 + }, + { + "mac": "a0e0afea40c0", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 19914144770, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 19914144770, + "cipMacHCSwitchedBytes_output": 888, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 888, + "cipMacHCSwitchedPkts_input": 24134607, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 24134607, + "cipMacHCSwitchedPkts_output": 13, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 13, + "ifIndex": 72 + }, + { + "mac": "a4934cda2dff", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 7474, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 7474, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 101, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 101, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "ac1f6b21e979", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 77626597, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 77626597, + "cipMacHCSwitchedBytes_output": 69899, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 69899, + "cipMacHCSwitchedPkts_input": 1027699, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1027699, + "cipMacHCSwitchedPkts_output": 610, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 610, + "ifIndex": 72 + }, + { + "mac": "ac1f6b46c875", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2884759, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2884759, + "cipMacHCSwitchedBytes_output": 370990, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 370990, + "cipMacHCSwitchedPkts_input": 31908, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 31908, + "cipMacHCSwitchedPkts_output": 4115, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4115, + "ifIndex": 72 + }, + { + "mac": "acf2c5712c3f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 78689094544, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 78689094544, + "cipMacHCSwitchedBytes_output": 1218946123, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1218946123, + "cipMacHCSwitchedPkts_input": 54633365, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 54633365, + "cipMacHCSwitchedPkts_output": 16795197, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 16795197, + "ifIndex": 72 + }, + { + "mac": "b033a66f301a", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 115222, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 115222, + "cipMacHCSwitchedBytes_output": 261716, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261716, + "cipMacHCSwitchedPkts_input": 974, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 974, + "cipMacHCSwitchedPkts_output": 2910, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2910, + "ifIndex": 72 + }, + { + "mac": "b8af67d733c4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 748173042, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 748173042, + "cipMacHCSwitchedBytes_output": 80260591, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 80260591, + "cipMacHCSwitchedPkts_input": 634634, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 634634, + "cipMacHCSwitchedPkts_output": 295928, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 295928, + "ifIndex": 72 + }, + { + "mac": "b8af67d84118", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 1916213098, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1916213098, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 5051655, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5051655, + "ifIndex": 72 + }, + { + "mac": "bc26c75b3861", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 351289480504, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 351289480504, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 233533989, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 233533989, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "c067af2920bf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 943470, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 943470, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 10483, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 10483, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "c2c661a60c7c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "c88d836a77a4", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 90, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 90, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 1, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc1afaeabf60", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 6367879920, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 6367879920, + "cipMacHCSwitchedBytes_output": 4979018384, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4979018384, + "cipMacHCSwitchedPkts_input": 14924789, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 14924789, + "cipMacHCSwitchedPkts_output": 6174664, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 6174664, + "ifIndex": 72 + }, + { + "mac": "cc2de00f228d", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 235893, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 235893, + "cipMacHCSwitchedBytes_output": 96002, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 96002, + "cipMacHCSwitchedPkts_input": 1983, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1983, + "cipMacHCSwitchedPkts_output": 94, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 94, + "ifIndex": 72 + }, + { + "mac": "cc2de00f2718", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2849611527, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2849611527, + "cipMacHCSwitchedBytes_output": 526030912, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 526030912, + "cipMacHCSwitchedPkts_input": 6211930, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 6211930, + "cipMacHCSwitchedPkts_output": 839552, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 839552, + "ifIndex": 72 + }, + { + "mac": "cc4e24450909", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3036, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3036, + "cipMacHCSwitchedBytes_output": 373263942376, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 373263942376, + "cipMacHCSwitchedPkts_input": 2, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2, + "cipMacHCSwitchedPkts_output": 2532436817, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2532436817, + "ifIndex": 72 + }, + { + "mac": "cc4e24454a09", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 3431, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 3431, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 7, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 7, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "cc4e244d670c", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 49477871, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 49477871, + "cipMacHCSwitchedBytes_output": 362893, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 362893, + "cipMacHCSwitchedPkts_input": 549762, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 549762, + "cipMacHCSwitchedPkts_output": 2970, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2970, + "ifIndex": 72 + }, + { + "mac": "cc4e24925200", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 504400454094, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 504400454094, + "cipMacHCSwitchedBytes_output": 110950594676, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 110950594676, + "cipMacHCSwitchedPkts_input": 644213231, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 644213231, + "cipMacHCSwitchedPkts_output": 132247383, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 132247383, + "ifIndex": 72 + }, + { + "mac": "cc4e24926800", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 249007125199, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 249007125199, + "cipMacHCSwitchedBytes_output": 135511247682, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 135511247682, + "cipMacHCSwitchedPkts_input": 374390256, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 374390256, + "cipMacHCSwitchedPkts_output": 150954087, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 150954087, + "ifIndex": 72 + }, + { + "mac": "d404ff2ccdef", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 8346241811, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 8346241811, + "cipMacHCSwitchedBytes_output": 684697024, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 684697024, + "cipMacHCSwitchedPkts_input": 8010463, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 8010463, + "cipMacHCSwitchedPkts_output": 3688057, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 3688057, + "ifIndex": 72 + }, + { + "mac": "d404ffd833e8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 161500762107, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 161500762107, + "cipMacHCSwitchedBytes_output": 261090, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261090, + "cipMacHCSwitchedPkts_input": 195955721, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 195955721, + "cipMacHCSwitchedPkts_output": 2901, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2901, + "ifIndex": 72 + }, + { + "mac": "d404ffd833e9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 154308457378, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 154308457378, + "cipMacHCSwitchedBytes_output": 68546053844, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 68546053844, + "cipMacHCSwitchedPkts_input": 189158153, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 189158153, + "cipMacHCSwitchedPkts_output": 160028631, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 160028631, + "ifIndex": 72 + }, + { + "mac": "d4c93c830a23", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 4118989314, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 4118989314, + "cipMacHCSwitchedBytes_output": 162692387, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 162692387, + "cipMacHCSwitchedPkts_input": 7113985, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 7113985, + "cipMacHCSwitchedPkts_output": 982753, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 982753, + "ifIndex": 72 + }, + { + "mac": "d4ca6d01d7a9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1955700, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1955700, + "cipMacHCSwitchedBytes_output": 23487046, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 23487046, + "cipMacHCSwitchedPkts_input": 21730, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 21730, + "cipMacHCSwitchedPkts_output": 25702, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 25702, + "ifIndex": 72 + }, + { + "mac": "d4ca6d896aa9", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 496453720, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 496453720, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 1192630, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1192630, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d4ca6dacf5f2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 4868, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 4868, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 50, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 50, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "d89ef3a6ca2f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 65790, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 65790, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 731, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 731, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "dc38e111e57b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 0, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 0, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "dcd2fc24494b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 19919138522, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 19919138522, + "cipMacHCSwitchedBytes_output": 3779579892, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3779579892, + "cipMacHCSwitchedPkts_input": 19195325, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 19195325, + "cipMacHCSwitchedPkts_output": 8832010, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 8832010, + "ifIndex": 72 + }, + { + "mac": "e0acf103cd89", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 828720, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 828720, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 9208, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 9208, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "e0acf110e371", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 37458866, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 37458866, + "cipMacHCSwitchedBytes_output": 458820, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 458820, + "cipMacHCSwitchedPkts_input": 308144, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 308144, + "cipMacHCSwitchedPkts_output": 5098, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5098, + "ifIndex": 72 + }, + { + "mac": "e86549c6c780", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 853764153853, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 853764153853, + "cipMacHCSwitchedBytes_output": 59287405344, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 59287405344, + "cipMacHCSwitchedPkts_input": 877633400, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 877633400, + "cipMacHCSwitchedPkts_output": 159023672, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 159023672, + "ifIndex": 72 + }, + { + "mac": "e8ba70427480", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2874912577093, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2874912577093, + "cipMacHCSwitchedBytes_output": 4606189991441, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 4606189991441, + "cipMacHCSwitchedPkts_input": 7702486214, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 7702486214, + "cipMacHCSwitchedPkts_output": 4027886019, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 4027886019, + "ifIndex": 72 + }, + { + "mac": "ec13db798fc8", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 9038220, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 9038220, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 100424, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 100424, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "ec387334ec10", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 7769202714603, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 7769202714603, + "cipMacHCSwitchedBytes_output": 261090, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 261090, + "cipMacHCSwitchedPkts_input": 5301993295, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 5301993295, + "cipMacHCSwitchedPkts_output": 2901, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2901, + "ifIndex": 72 + }, + { + "mac": "f01c2d8a1a8b", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 280174344672, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 280174344672, + "cipMacHCSwitchedBytes_output": 27572823999, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 27572823999, + "cipMacHCSwitchedPkts_input": 362095019, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 362095019, + "cipMacHCSwitchedPkts_output": 132431239, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 132431239, + "ifIndex": 72 + }, + { + "mac": "f02fa7ba8ee2", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 760451867, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 760451867, + "cipMacHCSwitchedBytes_output": 867473603, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 867473603, + "cipMacHCSwitchedPkts_input": 2570325, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 2570325, + "cipMacHCSwitchedPkts_output": 735680, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 735680, + "ifIndex": 72 + }, + { + "mac": "f04b3ab35c73", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 2206612240569, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 2206612240569, + "cipMacHCSwitchedBytes_output": 260820, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 260820, + "cipMacHCSwitchedPkts_input": 1479644237, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 1479644237, + "cipMacHCSwitchedPkts_output": 2898, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 2898, + "ifIndex": 72 + }, + { + "mac": "f04b3aeeb084", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 112443488586, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 112443488586, + "cipMacHCSwitchedBytes_output": 781065153, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 781065153, + "cipMacHCSwitchedPkts_input": 159872584, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 159872584, + "cipMacHCSwitchedPkts_output": 9423157, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 9423157, + "ifIndex": 72 + }, + { + "mac": "f063f97743f6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 524, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 524, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 6, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 6, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f0f75540987f", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 18878181756, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 18878181756, + "cipMacHCSwitchedBytes_output": 3834169927, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 3834169927, + "cipMacHCSwitchedPkts_input": 25293168, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 25293168, + "cipMacHCSwitchedPkts_output": 5861158, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5861158, + "ifIndex": 72 + }, + { + "mac": "f4a739d0a0c6", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 749467, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 749467, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 3107, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 3107, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + }, + { + "mac": "f4b52fd3e0cb", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 21630568620, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 21630568620, + "cipMacHCSwitchedBytes_output": 1069219983, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 1069219983, + "cipMacHCSwitchedPkts_input": 24968953, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 24968953, + "cipMacHCSwitchedPkts_output": 3656014, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 3656014, + "ifIndex": 72 + }, + { + "mac": "f866f2693dbf", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 1013662, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 1013662, + "cipMacHCSwitchedBytes_output": 456840, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": 456840, + "cipMacHCSwitchedPkts_input": 11240, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 11240, + "cipMacHCSwitchedPkts_output": 5076, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": 5076, + "ifIndex": 72 + }, + { + "mac": "f898efc30315", + "in_oid": "", + "out_oid": "", + "bps_out": 0, + "bps_in": 0, + "cipMacHCSwitchedBytes_input": 341632693106, + "cipMacHCSwitchedBytes_input_prev": null, + "cipMacHCSwitchedBytes_input_delta": 341632693106, + "cipMacHCSwitchedBytes_output": 0, + "cipMacHCSwitchedBytes_output_prev": null, + "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedPkts_input": 405728548, + "cipMacHCSwitchedPkts_input_prev": null, + "cipMacHCSwitchedPkts_input_delta": 405728548, + "cipMacHCSwitchedPkts_output": 0, + "cipMacHCSwitchedPkts_output_prev": null, + "cipMacHCSwitchedPkts_output_delta": null, + "ifIndex": 72 + } + ] + } } } diff --git a/tests/module_tables.yaml b/tests/module_tables.yaml index 2eee580e31..06eb1b86d1 100644 --- a/tests/module_tables.yaml +++ b/tests/module_tables.yaml @@ -85,3 +85,10 @@ vrf: wireless: wireless_sensors: excluded_fields: [device_id, sensor_id, access_point_id, lastupdate] +cisco-mac-accounting: + mac_accounting: + excluded_fields: [ma_id, port_id, poll_time, poll_prev, poll_period, cipMacHCSwitchedBytes_input_rate, cipMacHCSwitchedBytes_output_rate, cipMacHCSwitchedPkts_input_rate, cipMacHCSwitchedPkts_output_rate] + joins: + - { left: mac_accounting.port_id, right: ports.port_id, select: [ifIndex] } + custom_where: WHERE ports.device_id=? + order_by: ports.ifIndex, mac \ No newline at end of file diff --git a/tests/snmpsim/ios.snmprec b/tests/snmpsim/ios.snmprec index 81c1ee4c34..ab40709082 100644 --- a/tests/snmpsim/ios.snmprec +++ b/tests/snmpsim/ios.snmprec @@ -1,3 +1,1095 @@ - 1.3.6.1.2.1.1.1.0|4x|436973636f20496e7465726e6574776f726b204f7065726174696e672053797374656d20536f667477617265200d0a494f532028746d2920433239353020536f667477617265202843323935302d49364b324c3251342d4d292c2056657273696f6e2031322e3128323229454131342c2052454c4541534520534f4654574152452028666331290d0a546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f72740d0a436f707972696768742028632920313938362d3230313020627920636973636f2053797374656d732c20496e632e0d0a436f6d70696c6564205475652032362d4f 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.359 +1.3.6.1.2.1.1.3.0|67|2972231163 +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|Vlan1 +1.3.6.1.2.1.2.2.1.2.10|4|Vlan10 +1.3.6.1.2.1.2.2.1.2.11|4|Vlan11 +1.3.6.1.2.1.2.2.1.2.16|4|Vlan16 +1.3.6.1.2.1.2.2.1.2.18|4|Vlan18 +1.3.6.1.2.1.2.2.1.2.19|4|Vlan19 +1.3.6.1.2.1.2.2.1.2.21|4|Vlan21 +1.3.6.1.2.1.2.2.1.2.26|4|Vlan26 +1.3.6.1.2.1.2.2.1.2.50|4|Vlan50 +1.3.6.1.2.1.2.2.1.2.65|4|Vlan65 +1.3.6.1.2.1.2.2.1.2.66|4|Vlan66 +1.3.6.1.2.1.2.2.1.2.83|4|Vlan83 +1.3.6.1.2.1.2.2.1.2.84|4|Vlan84 +1.3.6.1.2.1.2.2.1.2.90|4|Vlan90 +1.3.6.1.2.1.2.2.1.2.440|4|Vlan440 +1.3.6.1.2.1.2.2.1.2.441|4|Vlan441 +1.3.6.1.2.1.2.2.1.2.448|4|Vlan448 +1.3.6.1.2.1.2.2.1.2.451|4|Vlan451 +1.3.6.1.2.1.2.2.1.2.454|4|Vlan454 +1.3.6.1.2.1.2.2.1.2.503|4|Vlan503 +1.3.6.1.2.1.2.2.1.2.724|4|Vlan724 +1.3.6.1.2.1.2.2.1.2.10101|4|GigabitEthernet0/1 +1.3.6.1.2.1.2.2.1.2.10102|4|GigabitEthernet0/2 +1.3.6.1.2.1.2.2.1.2.10103|4|GigabitEthernet0/3 +1.3.6.1.2.1.2.2.1.2.10104|4|GigabitEthernet0/4 +1.3.6.1.2.1.2.2.1.2.10105|4|GigabitEthernet0/5 +1.3.6.1.2.1.2.2.1.2.10106|4|GigabitEthernet0/6 +1.3.6.1.2.1.2.2.1.2.10107|4|GigabitEthernet0/7 +1.3.6.1.2.1.2.2.1.2.10108|4|GigabitEthernet0/8 +1.3.6.1.2.1.2.2.1.2.10109|4|GigabitEthernet0/9 +1.3.6.1.2.1.2.2.1.2.10110|4|GigabitEthernet0/10 +1.3.6.1.2.1.2.2.1.2.10111|4|GigabitEthernet0/11 +1.3.6.1.2.1.2.2.1.2.10112|4|GigabitEthernet0/12 +1.3.6.1.2.1.2.2.1.2.10113|4|GigabitEthernet0/13 +1.3.6.1.2.1.2.2.1.2.10114|4|GigabitEthernet0/14 +1.3.6.1.2.1.2.2.1.2.10115|4|GigabitEthernet0/15 +1.3.6.1.2.1.2.2.1.2.10116|4|GigabitEthernet0/16 +1.3.6.1.2.1.2.2.1.2.10501|4|Null0 +1.3.6.1.2.1.2.2.1.2.20567|4|Loopback50 +1.3.6.1.2.1.2.2.1.3.1|2|53 +1.3.6.1.2.1.2.2.1.3.10|2|53 +1.3.6.1.2.1.2.2.1.3.11|2|53 +1.3.6.1.2.1.2.2.1.3.16|2|53 +1.3.6.1.2.1.2.2.1.3.18|2|53 +1.3.6.1.2.1.2.2.1.3.19|2|53 +1.3.6.1.2.1.2.2.1.3.21|2|53 +1.3.6.1.2.1.2.2.1.3.26|2|53 +1.3.6.1.2.1.2.2.1.3.50|2|53 +1.3.6.1.2.1.2.2.1.3.65|2|53 +1.3.6.1.2.1.2.2.1.3.66|2|53 +1.3.6.1.2.1.2.2.1.3.83|2|53 +1.3.6.1.2.1.2.2.1.3.84|2|53 +1.3.6.1.2.1.2.2.1.3.90|2|53 +1.3.6.1.2.1.2.2.1.3.440|2|53 +1.3.6.1.2.1.2.2.1.3.441|2|53 +1.3.6.1.2.1.2.2.1.3.448|2|53 +1.3.6.1.2.1.2.2.1.3.451|2|53 +1.3.6.1.2.1.2.2.1.3.454|2|53 +1.3.6.1.2.1.2.2.1.3.503|2|53 +1.3.6.1.2.1.2.2.1.3.724|2|53 +1.3.6.1.2.1.2.2.1.3.10101|2|6 +1.3.6.1.2.1.2.2.1.3.10102|2|6 +1.3.6.1.2.1.2.2.1.3.10103|2|6 +1.3.6.1.2.1.2.2.1.3.10104|2|6 +1.3.6.1.2.1.2.2.1.3.10105|2|6 +1.3.6.1.2.1.2.2.1.3.10106|2|6 +1.3.6.1.2.1.2.2.1.3.10107|2|6 +1.3.6.1.2.1.2.2.1.3.10108|2|6 +1.3.6.1.2.1.2.2.1.3.10109|2|6 +1.3.6.1.2.1.2.2.1.3.10110|2|6 +1.3.6.1.2.1.2.2.1.3.10111|2|6 +1.3.6.1.2.1.2.2.1.3.10112|2|6 +1.3.6.1.2.1.2.2.1.3.10113|2|6 +1.3.6.1.2.1.2.2.1.3.10114|2|6 +1.3.6.1.2.1.2.2.1.3.10115|2|6 +1.3.6.1.2.1.2.2.1.3.10116|2|6 +1.3.6.1.2.1.2.2.1.3.10501|2|1 +1.3.6.1.2.1.2.2.1.3.20567|2|24 +1.3.6.1.2.1.2.2.1.4.1|2|1998 +1.3.6.1.2.1.2.2.1.4.10|2|1998 +1.3.6.1.2.1.2.2.1.4.11|2|1998 +1.3.6.1.2.1.2.2.1.4.16|2|1998 +1.3.6.1.2.1.2.2.1.4.18|2|1998 +1.3.6.1.2.1.2.2.1.4.19|2|1998 +1.3.6.1.2.1.2.2.1.4.21|2|1998 +1.3.6.1.2.1.2.2.1.4.26|2|1998 +1.3.6.1.2.1.2.2.1.4.50|2|1998 +1.3.6.1.2.1.2.2.1.4.65|2|1998 +1.3.6.1.2.1.2.2.1.4.66|2|1998 +1.3.6.1.2.1.2.2.1.4.83|2|1998 +1.3.6.1.2.1.2.2.1.4.84|2|1998 +1.3.6.1.2.1.2.2.1.4.90|2|1998 +1.3.6.1.2.1.2.2.1.4.440|2|1998 +1.3.6.1.2.1.2.2.1.4.441|2|1998 +1.3.6.1.2.1.2.2.1.4.448|2|1998 +1.3.6.1.2.1.2.2.1.4.451|2|1998 +1.3.6.1.2.1.2.2.1.4.454|2|1998 +1.3.6.1.2.1.2.2.1.4.503|2|1998 +1.3.6.1.2.1.2.2.1.4.724|2|1998 +1.3.6.1.2.1.2.2.1.4.10101|2|9000 +1.3.6.1.2.1.2.2.1.4.10102|2|9000 +1.3.6.1.2.1.2.2.1.4.10103|2|9000 +1.3.6.1.2.1.2.2.1.4.10104|2|9000 +1.3.6.1.2.1.2.2.1.4.10105|2|9000 +1.3.6.1.2.1.2.2.1.4.10106|2|9000 +1.3.6.1.2.1.2.2.1.4.10107|2|9000 +1.3.6.1.2.1.2.2.1.4.10108|2|9000 +1.3.6.1.2.1.2.2.1.4.10109|2|9000 +1.3.6.1.2.1.2.2.1.4.10110|2|9000 +1.3.6.1.2.1.2.2.1.4.10111|2|9000 +1.3.6.1.2.1.2.2.1.4.10112|2|9000 +1.3.6.1.2.1.2.2.1.4.10113|2|9000 +1.3.6.1.2.1.2.2.1.4.10114|2|9000 +1.3.6.1.2.1.2.2.1.4.10115|2|9000 +1.3.6.1.2.1.2.2.1.4.10116|2|9000 +1.3.6.1.2.1.2.2.1.4.10501|2|1500 +1.3.6.1.2.1.2.2.1.4.20567|2|1514 +1.3.6.1.2.1.2.2.1.6.1|4x|001DE58498C0 +1.3.6.1.2.1.2.2.1.6.10|4x|001DE58498C1 +1.3.6.1.2.1.2.2.1.6.11|4x|001DE58498C2 +1.3.6.1.2.1.2.2.1.6.16|4x|001DE58498C3 +1.3.6.1.2.1.2.2.1.6.18|4x|001DE58498C4 +1.3.6.1.2.1.2.2.1.6.19|4x|001DE58498C5 +1.3.6.1.2.1.2.2.1.6.21|4x|001DE58498C6 +1.3.6.1.2.1.2.2.1.6.26|4x|001DE58498C7 +1.3.6.1.2.1.2.2.1.6.50|4x|001DE58498C8 +1.3.6.1.2.1.2.2.1.6.65|4x|001DE58498C9 +1.3.6.1.2.1.2.2.1.6.66|4x|001DE58498CA +1.3.6.1.2.1.2.2.1.6.83|4x|001DE58498CB +1.3.6.1.2.1.2.2.1.6.84|4x|001DE58498CC +1.3.6.1.2.1.2.2.1.6.90|4x|001DE58498CD +1.3.6.1.2.1.2.2.1.6.440|4x|001DE58498CE +1.3.6.1.2.1.2.2.1.6.441|4x|001DE58498CF +1.3.6.1.2.1.2.2.1.6.448|4x|001DE58498D4 +1.3.6.1.2.1.2.2.1.6.451|4x|001DE58498D0 +1.3.6.1.2.1.2.2.1.6.454|4x|001DE58498D1 +1.3.6.1.2.1.2.2.1.6.503|4x|001DE58498D2 +1.3.6.1.2.1.2.2.1.6.724|4x|001DE58498D3 +1.3.6.1.2.1.2.2.1.6.10101|4x|001DE5849881 +1.3.6.1.2.1.2.2.1.6.10102|4x|001DE5849882 +1.3.6.1.2.1.2.2.1.6.10103|4x|001DE5849883 +1.3.6.1.2.1.2.2.1.6.10104|4x|001DE5849884 +1.3.6.1.2.1.2.2.1.6.10105|4x|001DE5849885 +1.3.6.1.2.1.2.2.1.6.10106|4x|001DE5849886 +1.3.6.1.2.1.2.2.1.6.10107|4x|001DE5849887 +1.3.6.1.2.1.2.2.1.6.10108|4x|001DE5849888 +1.3.6.1.2.1.2.2.1.6.10109|4x|001DE5849889 +1.3.6.1.2.1.2.2.1.6.10110|4x|001DE584988A +1.3.6.1.2.1.2.2.1.6.10111|4x|001DE584988B +1.3.6.1.2.1.2.2.1.6.10112|4x|001DE584988C +1.3.6.1.2.1.2.2.1.6.10113|4x|001DE584988D +1.3.6.1.2.1.2.2.1.6.10114|4x|001DE584988E +1.3.6.1.2.1.2.2.1.6.10115|4x|001DE584988F +1.3.6.1.2.1.2.2.1.6.10116|4x|001DE5849890 +1.3.6.1.2.1.2.2.1.6.10501|4| +1.3.6.1.2.1.2.2.1.6.20567|4| +1.3.6.1.2.1.2.2.1.7.1|2|2 +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.16|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.21|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.50|2|1 +1.3.6.1.2.1.2.2.1.7.65|2|2 +1.3.6.1.2.1.2.2.1.7.66|2|1 +1.3.6.1.2.1.2.2.1.7.83|2|1 +1.3.6.1.2.1.2.2.1.7.84|2|1 +1.3.6.1.2.1.2.2.1.7.90|2|1 +1.3.6.1.2.1.2.2.1.7.440|2|2 +1.3.6.1.2.1.2.2.1.7.441|2|1 +1.3.6.1.2.1.2.2.1.7.448|2|1 +1.3.6.1.2.1.2.2.1.7.451|2|2 +1.3.6.1.2.1.2.2.1.7.454|2|1 +1.3.6.1.2.1.2.2.1.7.503|2|1 +1.3.6.1.2.1.2.2.1.7.724|2|1 +1.3.6.1.2.1.2.2.1.7.10101|2|1 +1.3.6.1.2.1.2.2.1.7.10102|2|1 +1.3.6.1.2.1.2.2.1.7.10103|2|2 +1.3.6.1.2.1.2.2.1.7.10104|2|1 +1.3.6.1.2.1.2.2.1.7.10105|2|1 +1.3.6.1.2.1.2.2.1.7.10106|2|1 +1.3.6.1.2.1.2.2.1.7.10107|2|1 +1.3.6.1.2.1.2.2.1.7.10108|2|1 +1.3.6.1.2.1.2.2.1.7.10109|2|1 +1.3.6.1.2.1.2.2.1.7.10110|2|1 +1.3.6.1.2.1.2.2.1.7.10111|2|1 +1.3.6.1.2.1.2.2.1.7.10112|2|1 +1.3.6.1.2.1.2.2.1.7.10113|2|1 +1.3.6.1.2.1.2.2.1.7.10114|2|1 +1.3.6.1.2.1.2.2.1.7.10115|2|1 +1.3.6.1.2.1.2.2.1.7.10116|2|2 +1.3.6.1.2.1.2.2.1.7.10501|2|1 +1.3.6.1.2.1.2.2.1.7.20567|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|2 +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.16|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|1 +1.3.6.1.2.1.2.2.1.8.21|2|1 +1.3.6.1.2.1.2.2.1.8.26|2|1 +1.3.6.1.2.1.2.2.1.8.50|2|1 +1.3.6.1.2.1.2.2.1.8.65|2|2 +1.3.6.1.2.1.2.2.1.8.66|2|1 +1.3.6.1.2.1.2.2.1.8.83|2|1 +1.3.6.1.2.1.2.2.1.8.84|2|1 +1.3.6.1.2.1.2.2.1.8.90|2|1 +1.3.6.1.2.1.2.2.1.8.440|2|2 +1.3.6.1.2.1.2.2.1.8.441|2|1 +1.3.6.1.2.1.2.2.1.8.448|2|1 +1.3.6.1.2.1.2.2.1.8.451|2|2 +1.3.6.1.2.1.2.2.1.8.454|2|1 +1.3.6.1.2.1.2.2.1.8.503|2|1 +1.3.6.1.2.1.2.2.1.8.724|2|1 +1.3.6.1.2.1.2.2.1.8.10101|2|1 +1.3.6.1.2.1.2.2.1.8.10102|2|1 +1.3.6.1.2.1.2.2.1.8.10103|2|2 +1.3.6.1.2.1.2.2.1.8.10104|2|1 +1.3.6.1.2.1.2.2.1.8.10105|2|1 +1.3.6.1.2.1.2.2.1.8.10106|2|1 +1.3.6.1.2.1.2.2.1.8.10107|2|1 +1.3.6.1.2.1.2.2.1.8.10108|2|1 +1.3.6.1.2.1.2.2.1.8.10109|2|1 +1.3.6.1.2.1.2.2.1.8.10110|2|1 +1.3.6.1.2.1.2.2.1.8.10111|2|1 +1.3.6.1.2.1.2.2.1.8.10112|2|1 +1.3.6.1.2.1.2.2.1.8.10113|2|1 +1.3.6.1.2.1.2.2.1.8.10114|2|1 +1.3.6.1.2.1.2.2.1.8.10115|2|1 +1.3.6.1.2.1.2.2.1.8.10116|2|2 +1.3.6.1.2.1.2.2.1.8.10501|2|1 +1.3.6.1.2.1.2.2.1.8.20567|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|4750 +1.3.6.1.2.1.2.2.1.9.10|67|7889 +1.3.6.1.2.1.2.2.1.9.11|67|698258136 +1.3.6.1.2.1.2.2.1.9.16|67|7959 +1.3.6.1.2.1.2.2.1.9.18|67|7889 +1.3.6.1.2.1.2.2.1.9.19|67|7890 +1.3.6.1.2.1.2.2.1.9.21|67|698252587 +1.3.6.1.2.1.2.2.1.9.26|67|698258136 +1.3.6.1.2.1.2.2.1.9.50|67|7890 +1.3.6.1.2.1.2.2.1.9.65|67|4525 +1.3.6.1.2.1.2.2.1.9.66|67|698257289 +1.3.6.1.2.1.2.2.1.9.83|67|698258137 +1.3.6.1.2.1.2.2.1.9.84|67|698258137 +1.3.6.1.2.1.2.2.1.9.90|67|698258137 +1.3.6.1.2.1.2.2.1.9.440|67|175005 +1.3.6.1.2.1.2.2.1.9.441|67|7973 +1.3.6.1.2.1.2.2.1.9.448|67|698257289 +1.3.6.1.2.1.2.2.1.9.451|67|4548 +1.3.6.1.2.1.2.2.1.9.454|67|7949 +1.3.6.1.2.1.2.2.1.9.503|67|698258150 +1.3.6.1.2.1.2.2.1.9.724|67|7890 +1.3.6.1.2.1.2.2.1.9.10101|67|5006 +1.3.6.1.2.1.2.2.1.9.10102|67|38532115 +1.3.6.1.2.1.2.2.1.9.10103|67|1224080434 +1.3.6.1.2.1.2.2.1.9.10104|67|1659819799 +1.3.6.1.2.1.2.2.1.9.10105|67|1659207844 +1.3.6.1.2.1.2.2.1.9.10106|67|698255421 +1.3.6.1.2.1.2.2.1.9.10107|67|698266945 +1.3.6.1.2.1.2.2.1.9.10108|67|698276885 +1.3.6.1.2.1.2.2.1.9.10109|67|5009 +1.3.6.1.2.1.2.2.1.9.10110|67|38532299 +1.3.6.1.2.1.2.2.1.9.10111|67|2521796725 +1.3.6.1.2.1.2.2.1.9.10112|67|38532307 +1.3.6.1.2.1.2.2.1.9.10113|67|698258932 +1.3.6.1.2.1.2.2.1.9.10114|67|698258424 +1.3.6.1.2.1.2.2.1.9.10115|67|698249691 +1.3.6.1.2.1.2.2.1.9.10116|67|66433 +1.3.6.1.2.1.2.2.1.9.10501|67|0 +1.3.6.1.2.1.2.2.1.9.20567|67|4581 +1.3.6.1.2.1.2.2.1.13.1|65|308 +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.16|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.21|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.50|65|0 +1.3.6.1.2.1.2.2.1.13.65|65|0 +1.3.6.1.2.1.2.2.1.13.66|65|0 +1.3.6.1.2.1.2.2.1.13.83|65|0 +1.3.6.1.2.1.2.2.1.13.84|65|0 +1.3.6.1.2.1.2.2.1.13.90|65|0 +1.3.6.1.2.1.2.2.1.13.440|65|0 +1.3.6.1.2.1.2.2.1.13.441|65|0 +1.3.6.1.2.1.2.2.1.13.448|65|0 +1.3.6.1.2.1.2.2.1.13.451|65|0 +1.3.6.1.2.1.2.2.1.13.454|65|0 +1.3.6.1.2.1.2.2.1.13.503|65|20 +1.3.6.1.2.1.2.2.1.13.724|65|0 +1.3.6.1.2.1.2.2.1.13.10101|65|0 +1.3.6.1.2.1.2.2.1.13.10102|65|0 +1.3.6.1.2.1.2.2.1.13.10103|65|0 +1.3.6.1.2.1.2.2.1.13.10104|65|0 +1.3.6.1.2.1.2.2.1.13.10105|65|0 +1.3.6.1.2.1.2.2.1.13.10106|65|0 +1.3.6.1.2.1.2.2.1.13.10107|65|0 +1.3.6.1.2.1.2.2.1.13.10108|65|0 +1.3.6.1.2.1.2.2.1.13.10109|65|0 +1.3.6.1.2.1.2.2.1.13.10110|65|0 +1.3.6.1.2.1.2.2.1.13.10111|65|0 +1.3.6.1.2.1.2.2.1.13.10112|65|0 +1.3.6.1.2.1.2.2.1.13.10113|65|0 +1.3.6.1.2.1.2.2.1.13.10114|65|0 +1.3.6.1.2.1.2.2.1.13.10115|65|0 +1.3.6.1.2.1.2.2.1.13.10116|65|0 +1.3.6.1.2.1.2.2.1.13.10501|65|0 +1.3.6.1.2.1.2.2.1.13.20567|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.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.16|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.21|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.50|65|0 +1.3.6.1.2.1.2.2.1.14.65|65|0 +1.3.6.1.2.1.2.2.1.14.66|65|0 +1.3.6.1.2.1.2.2.1.14.83|65|0 +1.3.6.1.2.1.2.2.1.14.84|65|0 +1.3.6.1.2.1.2.2.1.14.90|65|0 +1.3.6.1.2.1.2.2.1.14.440|65|0 +1.3.6.1.2.1.2.2.1.14.441|65|0 +1.3.6.1.2.1.2.2.1.14.448|65|0 +1.3.6.1.2.1.2.2.1.14.451|65|0 +1.3.6.1.2.1.2.2.1.14.454|65|0 +1.3.6.1.2.1.2.2.1.14.503|65|0 +1.3.6.1.2.1.2.2.1.14.724|65|0 +1.3.6.1.2.1.2.2.1.14.10101|65|0 +1.3.6.1.2.1.2.2.1.14.10102|65|0 +1.3.6.1.2.1.2.2.1.14.10103|65|0 +1.3.6.1.2.1.2.2.1.14.10104|65|0 +1.3.6.1.2.1.2.2.1.14.10105|65|0 +1.3.6.1.2.1.2.2.1.14.10106|65|0 +1.3.6.1.2.1.2.2.1.14.10107|65|0 +1.3.6.1.2.1.2.2.1.14.10108|65|0 +1.3.6.1.2.1.2.2.1.14.10109|65|0 +1.3.6.1.2.1.2.2.1.14.10110|65|0 +1.3.6.1.2.1.2.2.1.14.10111|65|0 +1.3.6.1.2.1.2.2.1.14.10112|65|0 +1.3.6.1.2.1.2.2.1.14.10113|65|0 +1.3.6.1.2.1.2.2.1.14.10114|65|0 +1.3.6.1.2.1.2.2.1.14.10115|65|55615 +1.3.6.1.2.1.2.2.1.14.10116|65|0 +1.3.6.1.2.1.2.2.1.14.10501|65|0 +1.3.6.1.2.1.2.2.1.14.20567|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.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.21|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.50|65|0 +1.3.6.1.2.1.2.2.1.19.65|65|0 +1.3.6.1.2.1.2.2.1.19.66|65|0 +1.3.6.1.2.1.2.2.1.19.83|65|0 +1.3.6.1.2.1.2.2.1.19.84|65|0 +1.3.6.1.2.1.2.2.1.19.90|65|0 +1.3.6.1.2.1.2.2.1.19.440|65|0 +1.3.6.1.2.1.2.2.1.19.441|65|0 +1.3.6.1.2.1.2.2.1.19.448|65|0 +1.3.6.1.2.1.2.2.1.19.451|65|0 +1.3.6.1.2.1.2.2.1.19.454|65|0 +1.3.6.1.2.1.2.2.1.19.503|65|0 +1.3.6.1.2.1.2.2.1.19.724|65|0 +1.3.6.1.2.1.2.2.1.19.10101|65|0 +1.3.6.1.2.1.2.2.1.19.10102|65|0 +1.3.6.1.2.1.2.2.1.19.10103|65|0 +1.3.6.1.2.1.2.2.1.19.10104|65|49 +1.3.6.1.2.1.2.2.1.19.10105|65|239 +1.3.6.1.2.1.2.2.1.19.10106|65|431 +1.3.6.1.2.1.2.2.1.19.10107|65|0 +1.3.6.1.2.1.2.2.1.19.10108|65|147210 +1.3.6.1.2.1.2.2.1.19.10109|65|0 +1.3.6.1.2.1.2.2.1.19.10110|65|0 +1.3.6.1.2.1.2.2.1.19.10111|65|0 +1.3.6.1.2.1.2.2.1.19.10112|65|0 +1.3.6.1.2.1.2.2.1.19.10113|65|493 +1.3.6.1.2.1.2.2.1.19.10114|65|0 +1.3.6.1.2.1.2.2.1.19.10115|65|565 +1.3.6.1.2.1.2.2.1.19.10116|65|0 +1.3.6.1.2.1.2.2.1.19.10501|65|0 +1.3.6.1.2.1.2.2.1.19.20567|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.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.16|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.21|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.50|65|0 +1.3.6.1.2.1.2.2.1.20.65|65|0 +1.3.6.1.2.1.2.2.1.20.66|65|0 +1.3.6.1.2.1.2.2.1.20.83|65|0 +1.3.6.1.2.1.2.2.1.20.84|65|0 +1.3.6.1.2.1.2.2.1.20.90|65|0 +1.3.6.1.2.1.2.2.1.20.440|65|0 +1.3.6.1.2.1.2.2.1.20.441|65|0 +1.3.6.1.2.1.2.2.1.20.448|65|0 +1.3.6.1.2.1.2.2.1.20.451|65|0 +1.3.6.1.2.1.2.2.1.20.454|65|0 +1.3.6.1.2.1.2.2.1.20.503|65|0 +1.3.6.1.2.1.2.2.1.20.724|65|0 +1.3.6.1.2.1.2.2.1.20.10101|65|0 +1.3.6.1.2.1.2.2.1.20.10102|65|0 +1.3.6.1.2.1.2.2.1.20.10103|65|0 +1.3.6.1.2.1.2.2.1.20.10104|65|0 +1.3.6.1.2.1.2.2.1.20.10105|65|0 +1.3.6.1.2.1.2.2.1.20.10106|65|0 +1.3.6.1.2.1.2.2.1.20.10107|65|0 +1.3.6.1.2.1.2.2.1.20.10108|65|0 +1.3.6.1.2.1.2.2.1.20.10109|65|0 +1.3.6.1.2.1.2.2.1.20.10110|65|0 +1.3.6.1.2.1.2.2.1.20.10111|65|0 +1.3.6.1.2.1.2.2.1.20.10112|65|0 +1.3.6.1.2.1.2.2.1.20.10113|65|0 +1.3.6.1.2.1.2.2.1.20.10114|65|0 +1.3.6.1.2.1.2.2.1.20.10115|65|0 +1.3.6.1.2.1.2.2.1.20.10116|65|0 +1.3.6.1.2.1.2.2.1.20.10501|65|0 +1.3.6.1.2.1.2.2.1.20.20567|65|0 +1.3.6.1.2.1.10.7.2.1.19.10101|2|3 +1.3.6.1.2.1.10.7.2.1.19.10102|2|3 +1.3.6.1.2.1.10.7.2.1.19.10103|2|1 +1.3.6.1.2.1.10.7.2.1.19.10104|2|3 +1.3.6.1.2.1.10.7.2.1.19.10105|2|3 +1.3.6.1.2.1.10.7.2.1.19.10106|2|3 +1.3.6.1.2.1.10.7.2.1.19.10107|2|3 +1.3.6.1.2.1.10.7.2.1.19.10108|2|3 +1.3.6.1.2.1.10.7.2.1.19.10109|2|3 +1.3.6.1.2.1.10.7.2.1.19.10110|2|3 +1.3.6.1.2.1.10.7.2.1.19.10111|2|3 +1.3.6.1.2.1.10.7.2.1.19.10112|2|3 +1.3.6.1.2.1.10.7.2.1.19.10113|2|3 +1.3.6.1.2.1.10.7.2.1.19.10114|2|3 +1.3.6.1.2.1.10.7.2.1.19.10115|2|3 +1.3.6.1.2.1.10.7.2.1.19.10116|2|1 +1.3.6.1.2.1.31.1.1.1.1.1|4|Vl1 +1.3.6.1.2.1.31.1.1.1.1.10|4|Vl10 +1.3.6.1.2.1.31.1.1.1.1.11|4|Vl11 +1.3.6.1.2.1.31.1.1.1.1.16|4|Vl16 +1.3.6.1.2.1.31.1.1.1.1.18|4|Vl18 +1.3.6.1.2.1.31.1.1.1.1.19|4|Vl19 +1.3.6.1.2.1.31.1.1.1.1.21|4|Vl21 +1.3.6.1.2.1.31.1.1.1.1.26|4|Vl26 +1.3.6.1.2.1.31.1.1.1.1.50|4|Vl50 +1.3.6.1.2.1.31.1.1.1.1.65|4|Vl65 +1.3.6.1.2.1.31.1.1.1.1.66|4|Vl66 +1.3.6.1.2.1.31.1.1.1.1.83|4|Vl83 +1.3.6.1.2.1.31.1.1.1.1.84|4|Vl84 +1.3.6.1.2.1.31.1.1.1.1.90|4|Vl90 +1.3.6.1.2.1.31.1.1.1.1.440|4|Vl440 +1.3.6.1.2.1.31.1.1.1.1.441|4|Vl441 +1.3.6.1.2.1.31.1.1.1.1.448|4|Vl448 +1.3.6.1.2.1.31.1.1.1.1.451|4|Vl451 +1.3.6.1.2.1.31.1.1.1.1.454|4|Vl454 +1.3.6.1.2.1.31.1.1.1.1.503|4|Vl503 +1.3.6.1.2.1.31.1.1.1.1.724|4|Vl724 +1.3.6.1.2.1.31.1.1.1.1.10101|4|Gi0/1 +1.3.6.1.2.1.31.1.1.1.1.10102|4|Gi0/2 +1.3.6.1.2.1.31.1.1.1.1.10103|4|Gi0/3 +1.3.6.1.2.1.31.1.1.1.1.10104|4|Gi0/4 +1.3.6.1.2.1.31.1.1.1.1.10105|4|Gi0/5 +1.3.6.1.2.1.31.1.1.1.1.10106|4|Gi0/6 +1.3.6.1.2.1.31.1.1.1.1.10107|4|Gi0/7 +1.3.6.1.2.1.31.1.1.1.1.10108|4|Gi0/8 +1.3.6.1.2.1.31.1.1.1.1.10109|4|Gi0/9 +1.3.6.1.2.1.31.1.1.1.1.10110|4|Gi0/10 +1.3.6.1.2.1.31.1.1.1.1.10111|4|Gi0/11 +1.3.6.1.2.1.31.1.1.1.1.10112|4|Gi0/12 +1.3.6.1.2.1.31.1.1.1.1.10113|4|Gi0/13 +1.3.6.1.2.1.31.1.1.1.1.10114|4|Gi0/14 +1.3.6.1.2.1.31.1.1.1.1.10115|4|Gi0/15 +1.3.6.1.2.1.31.1.1.1.1.10116|4|Gi0/16 +1.3.6.1.2.1.31.1.1.1.1.10501|4|Nu0 +1.3.6.1.2.1.31.1.1.1.1.20567|4|Lo50 +1.3.6.1.2.1.31.1.1.1.2.10101|65|685394539 +1.3.6.1.2.1.31.1.1.1.2.10102|65|3937350 +1.3.6.1.2.1.31.1.1.1.2.10103|65|276968757 +1.3.6.1.2.1.31.1.1.1.2.10104|65|692362728 +1.3.6.1.2.1.31.1.1.1.2.10105|65|769572054 +1.3.6.1.2.1.31.1.1.1.2.10106|65|501858163 +1.3.6.1.2.1.31.1.1.1.2.10107|65|650971217 +1.3.6.1.2.1.31.1.1.1.2.10108|65|1551023700 +1.3.6.1.2.1.31.1.1.1.2.10109|65|0 +1.3.6.1.2.1.31.1.1.1.2.10110|65|984339 +1.3.6.1.2.1.31.1.1.1.2.10111|65|4259097 +1.3.6.1.2.1.31.1.1.1.2.10112|65|1968678 +1.3.6.1.2.1.31.1.1.1.2.10113|65|717030066 +1.3.6.1.2.1.31.1.1.1.2.10114|65|1039793 +1.3.6.1.2.1.31.1.1.1.2.10115|65|700604009 +1.3.6.1.2.1.31.1.1.1.2.10116|65|0 +1.3.6.1.2.1.31.1.1.1.3.10101|65|50372280 +1.3.6.1.2.1.31.1.1.1.3.10102|65|2278998 +1.3.6.1.2.1.31.1.1.1.3.10103|65|367140 +1.3.6.1.2.1.31.1.1.1.3.10104|65|30778164 +1.3.6.1.2.1.31.1.1.1.3.10105|65|1669016 +1.3.6.1.2.1.31.1.1.1.3.10106|65|110470823 +1.3.6.1.2.1.31.1.1.1.3.10107|65|10487000 +1.3.6.1.2.1.31.1.1.1.3.10108|65|27740839 +1.3.6.1.2.1.31.1.1.1.3.10109|65|294 +1.3.6.1.2.1.31.1.1.1.3.10110|65|495399 +1.3.6.1.2.1.31.1.1.1.3.10111|65|7587 +1.3.6.1.2.1.31.1.1.1.3.10112|65|1452367 +1.3.6.1.2.1.31.1.1.1.3.10113|65|97682730 +1.3.6.1.2.1.31.1.1.1.3.10114|65|171 +1.3.6.1.2.1.31.1.1.1.3.10115|65|27636762 +1.3.6.1.2.1.31.1.1.1.3.10116|65|0 +1.3.6.1.2.1.31.1.1.1.4.10101|65|336464155 +1.3.6.1.2.1.31.1.1.1.4.10102|65|133266719 +1.3.6.1.2.1.31.1.1.1.4.10103|65|3872724570 +1.3.6.1.2.1.31.1.1.1.4.10104|65|4042815120 +1.3.6.1.2.1.31.1.1.1.4.10105|65|211423712 +1.3.6.1.2.1.31.1.1.1.4.10106|65|117603805 +1.3.6.1.2.1.31.1.1.1.4.10107|65|2879343575 +1.3.6.1.2.1.31.1.1.1.4.10108|65|2782040325 +1.3.6.1.2.1.31.1.1.1.4.10109|65|15309396 +1.3.6.1.2.1.31.1.1.1.4.10110|65|45471674 +1.3.6.1.2.1.31.1.1.1.4.10111|65|106862363 +1.3.6.1.2.1.31.1.1.1.4.10112|65|46021236 +1.3.6.1.2.1.31.1.1.1.4.10113|65|1261386155 +1.3.6.1.2.1.31.1.1.1.4.10114|65|30117504 +1.3.6.1.2.1.31.1.1.1.4.10115|65|971126164 +1.3.6.1.2.1.31.1.1.1.4.10116|65|0 +1.3.6.1.2.1.31.1.1.1.5.10101|65|324977085 +1.3.6.1.2.1.31.1.1.1.5.10102|65|215957333 +1.3.6.1.2.1.31.1.1.1.5.10103|65|47180757 +1.3.6.1.2.1.31.1.1.1.5.10104|65|426558604 +1.3.6.1.2.1.31.1.1.1.5.10105|65|111512258 +1.3.6.1.2.1.31.1.1.1.5.10106|65|393305933 +1.3.6.1.2.1.31.1.1.1.5.10107|65|435047557 +1.3.6.1.2.1.31.1.1.1.5.10108|65|46885 +1.3.6.1.2.1.31.1.1.1.5.10109|65|10 +1.3.6.1.2.1.31.1.1.1.5.10110|65|597058 +1.3.6.1.2.1.31.1.1.1.5.10111|65|21184632 +1.3.6.1.2.1.31.1.1.1.5.10112|65|2590169 +1.3.6.1.2.1.31.1.1.1.5.10113|65|342695098 +1.3.6.1.2.1.31.1.1.1.5.10114|65|3 +1.3.6.1.2.1.31.1.1.1.5.10115|65|428004831 +1.3.6.1.2.1.31.1.1.1.5.10116|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|20942905 +1.3.6.1.2.1.31.1.1.1.6.10|70|11355725484 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|46317689 +1.3.6.1.2.1.31.1.1.1.6.18|70|176186291 +1.3.6.1.2.1.31.1.1.1.6.19|70|892209367 +1.3.6.1.2.1.31.1.1.1.6.21|70|4823214251 +1.3.6.1.2.1.31.1.1.1.6.26|70|44418719 +1.3.6.1.2.1.31.1.1.1.6.50|70|4414383 +1.3.6.1.2.1.31.1.1.1.6.65|70|0 +1.3.6.1.2.1.31.1.1.1.6.66|70|846047118 +1.3.6.1.2.1.31.1.1.1.6.83|70|2753438 +1.3.6.1.2.1.31.1.1.1.6.84|70|298583114 +1.3.6.1.2.1.31.1.1.1.6.90|70|156841063 +1.3.6.1.2.1.31.1.1.1.6.440|70|0 +1.3.6.1.2.1.31.1.1.1.6.441|70|1341642445 +1.3.6.1.2.1.31.1.1.1.6.448|70|13032181450361 +1.3.6.1.2.1.31.1.1.1.6.451|70|4858 +1.3.6.1.2.1.31.1.1.1.6.454|70|213792290 +1.3.6.1.2.1.31.1.1.1.6.503|70|14220940734 +1.3.6.1.2.1.31.1.1.1.6.724|70|159122018 +1.3.6.1.2.1.31.1.1.1.6.10101|70|453361420426 +1.3.6.1.2.1.31.1.1.1.6.10102|70|14311130351319 +1.3.6.1.2.1.31.1.1.1.6.10103|70|1273222612611 +1.3.6.1.2.1.31.1.1.1.6.10104|70|1335518557140 +1.3.6.1.2.1.31.1.1.1.6.10105|70|436975121321 +1.3.6.1.2.1.31.1.1.1.6.10106|70|26752973223216 +1.3.6.1.2.1.31.1.1.1.6.10107|70|486966439522 +1.3.6.1.2.1.31.1.1.1.6.10108|70|415790189932477 +1.3.6.1.2.1.31.1.1.1.6.10109|70|15809204023228 +1.3.6.1.2.1.31.1.1.1.6.10110|70|1970194092318 +1.3.6.1.2.1.31.1.1.1.6.10111|70|15572365762746 +1.3.6.1.2.1.31.1.1.1.6.10112|70|13952703016751 +1.3.6.1.2.1.31.1.1.1.6.10113|70|19286189880395 +1.3.6.1.2.1.31.1.1.1.6.10114|70|3353928637409 +1.3.6.1.2.1.31.1.1.1.6.10115|70|967052294378 +1.3.6.1.2.1.31.1.1.1.6.10116|70|0 +1.3.6.1.2.1.31.1.1.1.6.20567|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|82291 +1.3.6.1.2.1.31.1.1.1.7.10|70|111036401 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|624081 +1.3.6.1.2.1.31.1.1.1.7.18|70|1375311 +1.3.6.1.2.1.31.1.1.1.7.19|70|12222229 +1.3.6.1.2.1.31.1.1.1.7.21|70|15402831 +1.3.6.1.2.1.31.1.1.1.7.26|70|715207 +1.3.6.1.2.1.31.1.1.1.7.50|70|70642 +1.3.6.1.2.1.31.1.1.1.7.65|70|0 +1.3.6.1.2.1.31.1.1.1.7.66|70|5817173 +1.3.6.1.2.1.31.1.1.1.7.83|70|29088 +1.3.6.1.2.1.31.1.1.1.7.84|70|3172480 +1.3.6.1.2.1.31.1.1.1.7.90|70|513168 +1.3.6.1.2.1.31.1.1.1.7.440|70|0 +1.3.6.1.2.1.31.1.1.1.7.441|70|6437369 +1.3.6.1.2.1.31.1.1.1.7.448|70|14735424515 +1.3.6.1.2.1.31.1.1.1.7.451|70|14 +1.3.6.1.2.1.31.1.1.1.7.454|70|2727987 +1.3.6.1.2.1.31.1.1.1.7.503|70|106554288 +1.3.6.1.2.1.31.1.1.1.7.724|70|1791815 +1.3.6.1.2.1.31.1.1.1.7.10101|70|1725941486 +1.3.6.1.2.1.31.1.1.1.7.10102|70|14247851281 +1.3.6.1.2.1.31.1.1.1.7.10103|70|4619925974 +1.3.6.1.2.1.31.1.1.1.7.10104|70|6215757982 +1.3.6.1.2.1.31.1.1.1.7.10105|70|1310923240 +1.3.6.1.2.1.31.1.1.1.7.10106|70|231696615220 +1.3.6.1.2.1.31.1.1.1.7.10107|70|1291100331 +1.3.6.1.2.1.31.1.1.1.7.10108|70|132420910197 +1.3.6.1.2.1.31.1.1.1.7.10109|70|29716548879 +1.3.6.1.2.1.31.1.1.1.7.10110|70|8528884316 +1.3.6.1.2.1.31.1.1.1.7.10111|70|24324284755 +1.3.6.1.2.1.31.1.1.1.7.10112|70|12693309393 +1.3.6.1.2.1.31.1.1.1.7.10113|70|17023396546 +1.3.6.1.2.1.31.1.1.1.7.10114|70|13346790513 +1.3.6.1.2.1.31.1.1.1.7.10115|70|4053078581 +1.3.6.1.2.1.31.1.1.1.7.10116|70|0 +1.3.6.1.2.1.31.1.1.1.7.20567|70|0 +1.3.6.1.2.1.31.1.1.1.8.10101|70|685394540 +1.3.6.1.2.1.31.1.1.1.8.10102|70|3937350 +1.3.6.1.2.1.31.1.1.1.8.10103|70|276968757 +1.3.6.1.2.1.31.1.1.1.8.10104|70|692362760 +1.3.6.1.2.1.31.1.1.1.8.10105|70|769572060 +1.3.6.1.2.1.31.1.1.1.8.10106|70|501858216 +1.3.6.1.2.1.31.1.1.1.8.10107|70|650971261 +1.3.6.1.2.1.31.1.1.1.8.10108|70|272133971932 +1.3.6.1.2.1.31.1.1.1.8.10109|70|0 +1.3.6.1.2.1.31.1.1.1.8.10110|70|984339 +1.3.6.1.2.1.31.1.1.1.8.10111|70|4259097 +1.3.6.1.2.1.31.1.1.1.8.10112|70|1968678 +1.3.6.1.2.1.31.1.1.1.8.10113|70|717030066 +1.3.6.1.2.1.31.1.1.1.8.10114|70|1039793 +1.3.6.1.2.1.31.1.1.1.8.10115|70|700604009 +1.3.6.1.2.1.31.1.1.1.8.10116|70|0 +1.3.6.1.2.1.31.1.1.1.9.10101|70|50372280 +1.3.6.1.2.1.31.1.1.1.9.10102|70|2278998 +1.3.6.1.2.1.31.1.1.1.9.10103|70|367140 +1.3.6.1.2.1.31.1.1.1.9.10104|70|30778164 +1.3.6.1.2.1.31.1.1.1.9.10105|70|1669016 +1.3.6.1.2.1.31.1.1.1.9.10106|70|110470823 +1.3.6.1.2.1.31.1.1.1.9.10107|70|10487000 +1.3.6.1.2.1.31.1.1.1.9.10108|70|27740839 +1.3.6.1.2.1.31.1.1.1.9.10109|70|294 +1.3.6.1.2.1.31.1.1.1.9.10110|70|495399 +1.3.6.1.2.1.31.1.1.1.9.10111|70|7587 +1.3.6.1.2.1.31.1.1.1.9.10112|70|1452367 +1.3.6.1.2.1.31.1.1.1.9.10113|70|97682730 +1.3.6.1.2.1.31.1.1.1.9.10114|70|171 +1.3.6.1.2.1.31.1.1.1.9.10115|70|27636762 +1.3.6.1.2.1.31.1.1.1.9.10116|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.10|70|3270093644 +1.3.6.1.2.1.31.1.1.1.10.11|70|4174 +1.3.6.1.2.1.31.1.1.1.10.16|70|22733356 +1.3.6.1.2.1.31.1.1.1.10.18|70|826178429 +1.3.6.1.2.1.31.1.1.1.10.19|70|888084929 +1.3.6.1.2.1.31.1.1.1.10.21|70|1634362266 +1.3.6.1.2.1.31.1.1.1.10.26|70|49675614 +1.3.6.1.2.1.31.1.1.1.10.50|70|9754685 +1.3.6.1.2.1.31.1.1.1.10.65|70|0 +1.3.6.1.2.1.31.1.1.1.10.66|70|1740413110 +1.3.6.1.2.1.31.1.1.1.10.83|70|1957882 +1.3.6.1.2.1.31.1.1.1.10.84|70|311725444 +1.3.6.1.2.1.31.1.1.1.10.90|70|319520611 +1.3.6.1.2.1.31.1.1.1.10.440|70|19388 +1.3.6.1.2.1.31.1.1.1.10.441|70|1426022558 +1.3.6.1.2.1.31.1.1.1.10.448|70|202711661 +1.3.6.1.2.1.31.1.1.1.10.451|70|0 +1.3.6.1.2.1.31.1.1.1.10.454|70|192054459 +1.3.6.1.2.1.31.1.1.1.10.503|70|50389771313 +1.3.6.1.2.1.31.1.1.1.10.724|70|76558011 +1.3.6.1.2.1.31.1.1.1.10.10101|70|3336918220290 +1.3.6.1.2.1.31.1.1.1.10.10102|70|14410342962949 +1.3.6.1.2.1.31.1.1.1.10.10103|70|23918712483255 +1.3.6.1.2.1.31.1.1.1.10.10104|70|214246798960784 +1.3.6.1.2.1.31.1.1.1.10.10105|70|2241421618727 +1.3.6.1.2.1.31.1.1.1.10.10106|70|227268289893060 +1.3.6.1.2.1.31.1.1.1.10.10107|70|5024531012543 +1.3.6.1.2.1.31.1.1.1.10.10108|70|165019524503624 +1.3.6.1.2.1.31.1.1.1.10.10109|70|8202853315616 +1.3.6.1.2.1.31.1.1.1.10.10110|70|14072157289973 +1.3.6.1.2.1.31.1.1.1.10.10111|70|31233004079609 +1.3.6.1.2.1.31.1.1.1.10.10112|70|1996648811891 +1.3.6.1.2.1.31.1.1.1.10.10113|70|9562026799550 +1.3.6.1.2.1.31.1.1.1.10.10114|70|4360351598101 +1.3.6.1.2.1.31.1.1.1.10.10115|70|5793696945245 +1.3.6.1.2.1.31.1.1.1.10.10116|70|0 +1.3.6.1.2.1.31.1.1.1.10.20567|70|198 +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.10|70|31715429 +1.3.6.1.2.1.31.1.1.1.11.11|70|65 +1.3.6.1.2.1.31.1.1.1.11.16|70|350612 +1.3.6.1.2.1.31.1.1.1.11.18|70|12721567 +1.3.6.1.2.1.31.1.1.1.11.19|70|11534946 +1.3.6.1.2.1.31.1.1.1.11.21|70|24242668 +1.3.6.1.2.1.31.1.1.1.11.26|70|775235 +1.3.6.1.2.1.31.1.1.1.11.50|70|152315 +1.3.6.1.2.1.31.1.1.1.11.65|70|0 +1.3.6.1.2.1.31.1.1.1.11.66|70|5870552 +1.3.6.1.2.1.31.1.1.1.11.83|70|26945 +1.3.6.1.2.1.31.1.1.1.11.84|70|3176534 +1.3.6.1.2.1.31.1.1.1.11.90|70|4992501 +1.3.6.1.2.1.31.1.1.1.11.440|70|280 +1.3.6.1.2.1.31.1.1.1.11.441|70|7711727 +1.3.6.1.2.1.31.1.1.1.11.448|70|2436188 +1.3.6.1.2.1.31.1.1.1.11.451|70|0 +1.3.6.1.2.1.31.1.1.1.11.454|70|2712940 +1.3.6.1.2.1.31.1.1.1.11.503|70|623180647 +1.3.6.1.2.1.31.1.1.1.11.724|70|1195907 +1.3.6.1.2.1.31.1.1.1.11.10101|70|2987995032 +1.3.6.1.2.1.31.1.1.1.11.10102|70|15383993586 +1.3.6.1.2.1.31.1.1.1.11.10103|70|7302380098 +1.3.6.1.2.1.31.1.1.1.11.10104|70|11976035656 +1.3.6.1.2.1.31.1.1.1.11.10105|70|2042010410 +1.3.6.1.2.1.31.1.1.1.11.10106|70|231612547635 +1.3.6.1.2.1.31.1.1.1.11.10107|70|1726683659 +1.3.6.1.2.1.31.1.1.1.11.10108|70|121337473924 +1.3.6.1.2.1.31.1.1.1.11.10109|70|29716313792 +1.3.6.1.2.1.31.1.1.1.11.10110|70|13433927379 +1.3.6.1.2.1.31.1.1.1.11.10111|70|29187856592 +1.3.6.1.2.1.31.1.1.1.11.10112|70|8533980747 +1.3.6.1.2.1.31.1.1.1.11.10113|70|12971875627 +1.3.6.1.2.1.31.1.1.1.11.10114|70|11321106909 +1.3.6.1.2.1.31.1.1.1.11.10115|70|5384849499 +1.3.6.1.2.1.31.1.1.1.11.10116|70|0 +1.3.6.1.2.1.31.1.1.1.11.20567|70|4 +1.3.6.1.2.1.31.1.1.1.12.10101|70|336464155 +1.3.6.1.2.1.31.1.1.1.12.10102|70|133266719 +1.3.6.1.2.1.31.1.1.1.12.10103|70|12462659162 +1.3.6.1.2.1.31.1.1.1.12.10104|70|184431441552 +1.3.6.1.2.1.31.1.1.1.12.10105|70|211423712 +1.3.6.1.2.1.31.1.1.1.12.10106|70|184801197533 +1.3.6.1.2.1.31.1.1.1.12.10107|70|2879343575 +1.3.6.1.2.1.31.1.1.1.12.10108|70|71501517061 +1.3.6.1.2.1.31.1.1.1.12.10109|70|15309396 +1.3.6.1.2.1.31.1.1.1.12.10110|70|45471674 +1.3.6.1.2.1.31.1.1.1.12.10111|70|106862363 +1.3.6.1.2.1.31.1.1.1.12.10112|70|46021236 +1.3.6.1.2.1.31.1.1.1.12.10113|70|1261386155 +1.3.6.1.2.1.31.1.1.1.12.10114|70|30117504 +1.3.6.1.2.1.31.1.1.1.12.10115|70|971126164 +1.3.6.1.2.1.31.1.1.1.12.10116|70|0 +1.3.6.1.2.1.31.1.1.1.13.10101|70|324977085 +1.3.6.1.2.1.31.1.1.1.13.10102|70|215957333 +1.3.6.1.2.1.31.1.1.1.13.10103|70|47180757 +1.3.6.1.2.1.31.1.1.1.13.10104|70|426558604 +1.3.6.1.2.1.31.1.1.1.13.10105|70|111512258 +1.3.6.1.2.1.31.1.1.1.13.10106|70|393305933 +1.3.6.1.2.1.31.1.1.1.13.10107|70|435047557 +1.3.6.1.2.1.31.1.1.1.13.10108|70|46885 +1.3.6.1.2.1.31.1.1.1.13.10109|70|10 +1.3.6.1.2.1.31.1.1.1.13.10110|70|597058 +1.3.6.1.2.1.31.1.1.1.13.10111|70|21184632 +1.3.6.1.2.1.31.1.1.1.13.10112|70|2590169 +1.3.6.1.2.1.31.1.1.1.13.10113|70|342695098 +1.3.6.1.2.1.31.1.1.1.13.10114|70|3 +1.3.6.1.2.1.31.1.1.1.13.10115|70|428004831 +1.3.6.1.2.1.31.1.1.1.13.10116|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.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.16|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.21|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.50|2|1 +1.3.6.1.2.1.31.1.1.1.14.65|2|1 +1.3.6.1.2.1.31.1.1.1.14.66|2|1 +1.3.6.1.2.1.31.1.1.1.14.83|2|1 +1.3.6.1.2.1.31.1.1.1.14.84|2|1 +1.3.6.1.2.1.31.1.1.1.14.90|2|1 +1.3.6.1.2.1.31.1.1.1.14.440|2|1 +1.3.6.1.2.1.31.1.1.1.14.441|2|1 +1.3.6.1.2.1.31.1.1.1.14.448|2|1 +1.3.6.1.2.1.31.1.1.1.14.451|2|1 +1.3.6.1.2.1.31.1.1.1.14.454|2|1 +1.3.6.1.2.1.31.1.1.1.14.503|2|1 +1.3.6.1.2.1.31.1.1.1.14.724|2|1 +1.3.6.1.2.1.31.1.1.1.14.10101|2|1 +1.3.6.1.2.1.31.1.1.1.14.10102|2|1 +1.3.6.1.2.1.31.1.1.1.14.10103|2|1 +1.3.6.1.2.1.31.1.1.1.14.10104|2|1 +1.3.6.1.2.1.31.1.1.1.14.10105|2|1 +1.3.6.1.2.1.31.1.1.1.14.10106|2|1 +1.3.6.1.2.1.31.1.1.1.14.10107|2|1 +1.3.6.1.2.1.31.1.1.1.14.10108|2|1 +1.3.6.1.2.1.31.1.1.1.14.10109|2|1 +1.3.6.1.2.1.31.1.1.1.14.10110|2|1 +1.3.6.1.2.1.31.1.1.1.14.10111|2|1 +1.3.6.1.2.1.31.1.1.1.14.10112|2|1 +1.3.6.1.2.1.31.1.1.1.14.10113|2|1 +1.3.6.1.2.1.31.1.1.1.14.10114|2|1 +1.3.6.1.2.1.31.1.1.1.14.10115|2|1 +1.3.6.1.2.1.31.1.1.1.14.10116|2|1 +1.3.6.1.2.1.31.1.1.1.14.10501|2|1 +1.3.6.1.2.1.31.1.1.1.14.20567|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10|66|1000 +1.3.6.1.2.1.31.1.1.1.15.11|66|1000 +1.3.6.1.2.1.31.1.1.1.15.16|66|1000 +1.3.6.1.2.1.31.1.1.1.15.18|66|1000 +1.3.6.1.2.1.31.1.1.1.15.19|66|1000 +1.3.6.1.2.1.31.1.1.1.15.21|66|1000 +1.3.6.1.2.1.31.1.1.1.15.26|66|1000 +1.3.6.1.2.1.31.1.1.1.15.50|66|1000 +1.3.6.1.2.1.31.1.1.1.15.65|66|1000 +1.3.6.1.2.1.31.1.1.1.15.66|66|1000 +1.3.6.1.2.1.31.1.1.1.15.83|66|10 +1.3.6.1.2.1.31.1.1.1.15.84|66|10 +1.3.6.1.2.1.31.1.1.1.15.90|66|1000 +1.3.6.1.2.1.31.1.1.1.15.440|66|1000 +1.3.6.1.2.1.31.1.1.1.15.441|66|1000 +1.3.6.1.2.1.31.1.1.1.15.448|66|1000 +1.3.6.1.2.1.31.1.1.1.15.451|66|1000 +1.3.6.1.2.1.31.1.1.1.15.454|66|1000 +1.3.6.1.2.1.31.1.1.1.15.503|66|1000 +1.3.6.1.2.1.31.1.1.1.15.724|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10101|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10102|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10103|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10104|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10105|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10106|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10107|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10108|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10109|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10110|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10111|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10112|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10113|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10114|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10115|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10116|66|10 +1.3.6.1.2.1.31.1.1.1.15.10501|66|10000 +1.3.6.1.2.1.31.1.1.1.15.20567|66|8000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.50|2|2 +1.3.6.1.2.1.31.1.1.1.16.65|2|2 +1.3.6.1.2.1.31.1.1.1.16.66|2|2 +1.3.6.1.2.1.31.1.1.1.16.83|2|2 +1.3.6.1.2.1.31.1.1.1.16.84|2|2 +1.3.6.1.2.1.31.1.1.1.16.90|2|2 +1.3.6.1.2.1.31.1.1.1.16.440|2|2 +1.3.6.1.2.1.31.1.1.1.16.441|2|2 +1.3.6.1.2.1.31.1.1.1.16.448|2|2 +1.3.6.1.2.1.31.1.1.1.16.451|2|2 +1.3.6.1.2.1.31.1.1.1.16.454|2|2 +1.3.6.1.2.1.31.1.1.1.16.503|2|2 +1.3.6.1.2.1.31.1.1.1.16.724|2|2 +1.3.6.1.2.1.31.1.1.1.16.10101|2|2 +1.3.6.1.2.1.31.1.1.1.16.10102|2|2 +1.3.6.1.2.1.31.1.1.1.16.10103|2|2 +1.3.6.1.2.1.31.1.1.1.16.10104|2|2 +1.3.6.1.2.1.31.1.1.1.16.10105|2|2 +1.3.6.1.2.1.31.1.1.1.16.10106|2|2 +1.3.6.1.2.1.31.1.1.1.16.10107|2|2 +1.3.6.1.2.1.31.1.1.1.16.10108|2|2 +1.3.6.1.2.1.31.1.1.1.16.10109|2|2 +1.3.6.1.2.1.31.1.1.1.16.10110|2|2 +1.3.6.1.2.1.31.1.1.1.16.10111|2|2 +1.3.6.1.2.1.31.1.1.1.16.10112|2|2 +1.3.6.1.2.1.31.1.1.1.16.10113|2|2 +1.3.6.1.2.1.31.1.1.1.16.10114|2|2 +1.3.6.1.2.1.31.1.1.1.16.10115|2|2 +1.3.6.1.2.1.31.1.1.1.16.10116|2|2 +1.3.6.1.2.1.31.1.1.1.16.10501|2|2 +1.3.6.1.2.1.31.1.1.1.16.20567|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|2 +1.3.6.1.2.1.31.1.1.1.17.10|2|2 +1.3.6.1.2.1.31.1.1.1.17.11|2|2 +1.3.6.1.2.1.31.1.1.1.17.16|2|2 +1.3.6.1.2.1.31.1.1.1.17.18|2|2 +1.3.6.1.2.1.31.1.1.1.17.19|2|2 +1.3.6.1.2.1.31.1.1.1.17.21|2|2 +1.3.6.1.2.1.31.1.1.1.17.26|2|2 +1.3.6.1.2.1.31.1.1.1.17.50|2|2 +1.3.6.1.2.1.31.1.1.1.17.65|2|2 +1.3.6.1.2.1.31.1.1.1.17.66|2|2 +1.3.6.1.2.1.31.1.1.1.17.83|2|2 +1.3.6.1.2.1.31.1.1.1.17.84|2|2 +1.3.6.1.2.1.31.1.1.1.17.90|2|2 +1.3.6.1.2.1.31.1.1.1.17.440|2|2 +1.3.6.1.2.1.31.1.1.1.17.441|2|2 +1.3.6.1.2.1.31.1.1.1.17.448|2|2 +1.3.6.1.2.1.31.1.1.1.17.451|2|2 +1.3.6.1.2.1.31.1.1.1.17.454|2|2 +1.3.6.1.2.1.31.1.1.1.17.503|2|2 +1.3.6.1.2.1.31.1.1.1.17.724|2|2 +1.3.6.1.2.1.31.1.1.1.17.10101|2|1 +1.3.6.1.2.1.31.1.1.1.17.10102|2|1 +1.3.6.1.2.1.31.1.1.1.17.10103|2|1 +1.3.6.1.2.1.31.1.1.1.17.10104|2|1 +1.3.6.1.2.1.31.1.1.1.17.10105|2|1 +1.3.6.1.2.1.31.1.1.1.17.10106|2|1 +1.3.6.1.2.1.31.1.1.1.17.10107|2|1 +1.3.6.1.2.1.31.1.1.1.17.10108|2|1 +1.3.6.1.2.1.31.1.1.1.17.10109|2|1 +1.3.6.1.2.1.31.1.1.1.17.10110|2|1 +1.3.6.1.2.1.31.1.1.1.17.10111|2|1 +1.3.6.1.2.1.31.1.1.1.17.10112|2|1 +1.3.6.1.2.1.31.1.1.1.17.10113|2|1 +1.3.6.1.2.1.31.1.1.1.17.10114|2|1 +1.3.6.1.2.1.31.1.1.1.17.10115|2|1 +1.3.6.1.2.1.31.1.1.1.17.10116|2|1 +1.3.6.1.2.1.31.1.1.1.17.10501|2|2 +1.3.6.1.2.1.31.1.1.1.17.20567|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.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.16|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.21|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.50|4| +1.3.6.1.2.1.31.1.1.1.18.65|4| +1.3.6.1.2.1.31.1.1.1.18.66|4| +1.3.6.1.2.1.31.1.1.1.18.83|4| +1.3.6.1.2.1.31.1.1.1.18.84|4| +1.3.6.1.2.1.31.1.1.1.18.90|4| +1.3.6.1.2.1.31.1.1.1.18.440|4| +1.3.6.1.2.1.31.1.1.1.18.441|4| +1.3.6.1.2.1.31.1.1.1.18.448|4| +1.3.6.1.2.1.31.1.1.1.18.451|4| +1.3.6.1.2.1.31.1.1.1.18.454|4| +1.3.6.1.2.1.31.1.1.1.18.503|4| +1.3.6.1.2.1.31.1.1.1.18.724|4| +1.3.6.1.2.1.31.1.1.1.18.10101|4| +1.3.6.1.2.1.31.1.1.1.18.10102|4| +1.3.6.1.2.1.31.1.1.1.18.10103|4| +1.3.6.1.2.1.31.1.1.1.18.10104|4| +1.3.6.1.2.1.31.1.1.1.18.10105|4| +1.3.6.1.2.1.31.1.1.1.18.10106|4| +1.3.6.1.2.1.31.1.1.1.18.10107|4| +1.3.6.1.2.1.31.1.1.1.18.10108|4| +1.3.6.1.2.1.31.1.1.1.18.10109|4| +1.3.6.1.2.1.31.1.1.1.18.10110|4| +1.3.6.1.2.1.31.1.1.1.18.10111|4| +1.3.6.1.2.1.31.1.1.1.18.10112|4| +1.3.6.1.2.1.31.1.1.1.18.10113|4| +1.3.6.1.2.1.31.1.1.1.18.10114|4| +1.3.6.1.2.1.31.1.1.1.18.10115|4| +1.3.6.1.2.1.31.1.1.1.18.10116|4| +1.3.6.1.2.1.31.1.1.1.18.10501|4| +1.3.6.1.2.1.31.1.1.1.18.20567|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.26|67|0 +1.3.6.1.2.1.31.1.1.1.19.50|67|0 +1.3.6.1.2.1.31.1.1.1.19.65|67|0 +1.3.6.1.2.1.31.1.1.1.19.66|67|0 +1.3.6.1.2.1.31.1.1.1.19.83|67|0 +1.3.6.1.2.1.31.1.1.1.19.84|67|0 +1.3.6.1.2.1.31.1.1.1.19.90|67|0 +1.3.6.1.2.1.31.1.1.1.19.440|67|0 +1.3.6.1.2.1.31.1.1.1.19.441|67|0 +1.3.6.1.2.1.31.1.1.1.19.448|67|0 +1.3.6.1.2.1.31.1.1.1.19.451|67|0 +1.3.6.1.2.1.31.1.1.1.19.454|67|0 +1.3.6.1.2.1.31.1.1.1.19.503|67|0 +1.3.6.1.2.1.31.1.1.1.19.724|67|0 +1.3.6.1.2.1.31.1.1.1.19.10101|67|0 +1.3.6.1.2.1.31.1.1.1.19.10102|67|0 +1.3.6.1.2.1.31.1.1.1.19.10103|67|0 +1.3.6.1.2.1.31.1.1.1.19.10104|67|0 +1.3.6.1.2.1.31.1.1.1.19.10105|67|0 +1.3.6.1.2.1.31.1.1.1.19.10106|67|0 +1.3.6.1.2.1.31.1.1.1.19.10107|67|0 +1.3.6.1.2.1.31.1.1.1.19.10108|67|0 +1.3.6.1.2.1.31.1.1.1.19.10109|67|0 +1.3.6.1.2.1.31.1.1.1.19.10110|67|0 +1.3.6.1.2.1.31.1.1.1.19.10111|67|0 +1.3.6.1.2.1.31.1.1.1.19.10112|67|0 +1.3.6.1.2.1.31.1.1.1.19.10113|67|0 +1.3.6.1.2.1.31.1.1.1.19.10114|67|0 +1.3.6.1.2.1.31.1.1.1.19.10115|67|0 +1.3.6.1.2.1.31.1.1.1.19.10116|67|0 +1.3.6.1.2.1.31.1.1.1.19.10501|67|0 +1.3.6.1.2.1.31.1.1.1.19.20567|67|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10101|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10102|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10103|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10104|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10105|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10106|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10107|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10108|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10109|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10110|2|441 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10111|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10112|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10113|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10114|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10115|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.10116|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10101|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10102|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10103|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10104|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10105|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10106|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10107|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10108|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10109|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10110|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10111|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10112|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10113|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10114|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10115|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.10116|2|6 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.10103|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.10109|2|444 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.1.0.12.66.113.123.81|65|473780 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.1.0.12.66.208.208.224|65|398336 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.1.100.160.231.29.104.71|65|138995 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.1.184.39.235.101.200.64|65|36 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.1.192.103.175.103.134.101|65|1 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.1.236.244.187.67.119.17|65|8 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.0.12.66.113.123.81|65|5 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.0.12.66.208.208.224|65|20 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.0.19.59.22.122.29|65|2 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.16.123.239.254.235.32|65|1127 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.100.160.231.29.104.71|65|140658 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.184.163.134.173.224.211|65|215 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.192.103.175.103.134.101|65|1 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.21.2.255.255.255.255.255.255|65|1 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.1.0.12.66.113.123.81|65|162031620 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.1.0.12.66.208.208.224|65|132039216 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.1.100.160.231.29.104.71|65|33186098 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.1.184.39.235.101.200.64|65|5832 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.1.192.103.175.103.134.101|65|342 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.1.236.244.187.67.119.17|65|2736 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.0.12.66.113.123.81|65|570 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.0.12.66.208.208.224|65|1876 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.0.19.59.22.122.29|65|484 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.16.123.239.254.235.32|65|139809 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.100.160.231.29.104.71|65|33576455 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.184.163.134.173.224.211|65|15222 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.192.103.175.103.134.101|65|242 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.21.2.255.255.255.255.255.255|65|342 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.1.0.12.66.113.123.81|70|473780 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.1.0.12.66.208.208.224|70|398336 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.1.100.160.231.29.104.71|70|138995 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.1.184.39.235.101.200.64|70|36 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.1.192.103.175.103.134.101|70|1 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.1.236.244.187.67.119.17|70|8 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.0.12.66.113.123.81|70|5 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.0.12.66.208.208.224|70|20 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.0.19.59.22.122.29|70|2 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.16.123.239.254.235.32|70|1127 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.100.160.231.29.104.71|70|140658 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.184.163.134.173.224.211|70|215 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.192.103.175.103.134.101|70|1 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.21.2.255.255.255.255.255.255|70|1 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.1.0.12.66.113.123.81|70|162031620 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.1.0.12.66.208.208.224|70|132039216 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.1.100.160.231.29.104.71|70|33186098 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.1.184.39.235.101.200.64|70|5832 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.1.192.103.175.103.134.101|70|342 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.1.236.244.187.67.119.17|70|2736 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.0.12.66.113.123.81|70|570 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.0.12.66.208.208.224|70|1876 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.0.19.59.22.122.29|70|484 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.16.123.239.254.235.32|70|139809 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.100.160.231.29.104.71|70|33576455 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.184.163.134.173.224.211|70|15222 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.192.103.175.103.134.101|70|242 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.21.2.255.255.255.255.255.255|70|342 +1.3.6.1.6.3.10.2.1.3.0|2|29722596 diff --git a/tests/snmpsim/iosxr.snmprec b/tests/snmpsim/iosxr.snmprec index 602f3fc968..ed83a627b8 100644 --- a/tests/snmpsim/iosxr.snmprec +++ b/tests/snmpsim/iosxr.snmprec @@ -4,6 +4,662 @@ 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.2|4|Null0 +1.3.6.1.2.1.2.2.1.2.3|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.2.2.1.2.4|4|MgmtEth0/RSP0/CPU0/1 +1.3.6.1.2.1.2.2.1.2.5|4|PTP0/RSP0/CPU0/0 +1.3.6.1.2.1.2.2.1.2.11|4|dwdm0/0/0/0 +1.3.6.1.2.1.2.2.1.2.12|4|dwdm0/0/0/1 +1.3.6.1.2.1.2.2.1.2.13|4|dwdm0/0/0/2 +1.3.6.1.2.1.2.2.1.2.14|4|dwdm0/0/0/3 +1.3.6.1.2.1.2.2.1.2.15|4|dwdm0/0/0/4 +1.3.6.1.2.1.2.2.1.2.16|4|dwdm0/0/0/5 +1.3.6.1.2.1.2.2.1.2.17|4|dwdm0/0/0/6 +1.3.6.1.2.1.2.2.1.2.18|4|dwdm0/0/0/7 +1.3.6.1.2.1.2.2.1.2.19|4|dwdm0/0/0/8 +1.3.6.1.2.1.2.2.1.2.20|4|dwdm0/0/0/9 +1.3.6.1.2.1.2.2.1.2.21|4|dwdm0/0/0/10 +1.3.6.1.2.1.2.2.1.2.22|4|dwdm0/0/0/11 +1.3.6.1.2.1.2.2.1.2.23|4|dwdm0/0/0/12 +1.3.6.1.2.1.2.2.1.2.24|4|dwdm0/0/0/13 +1.3.6.1.2.1.2.2.1.2.25|4|dwdm0/0/0/14 +1.3.6.1.2.1.2.2.1.2.26|4|dwdm0/0/0/15 +1.3.6.1.2.1.2.2.1.2.27|4|dwdm0/0/0/16 +1.3.6.1.2.1.2.2.1.2.28|4|dwdm0/0/0/17 +1.3.6.1.2.1.2.2.1.2.29|4|dwdm0/0/0/18 +1.3.6.1.2.1.2.2.1.2.30|4|dwdm0/0/0/19 +1.3.6.1.2.1.2.2.1.2.31|4|TenGigE0/0/0/0 +1.3.6.1.2.1.2.2.1.2.32|4|TenGigE0/0/0/1 +1.3.6.1.2.1.2.2.1.2.33|4|TenGigE0/0/0/2 +1.3.6.1.2.1.2.2.1.2.34|4|TenGigE0/0/0/3 +1.3.6.1.2.1.2.2.1.2.35|4|TenGigE0/0/0/4 +1.3.6.1.2.1.2.2.1.2.36|4|TenGigE0/0/0/5 +1.3.6.1.2.1.2.2.1.2.37|4|TenGigE0/0/0/6 +1.3.6.1.2.1.2.2.1.2.38|4|TenGigE0/0/0/7 +1.3.6.1.2.1.2.2.1.2.39|4|TenGigE0/0/0/8 +1.3.6.1.2.1.2.2.1.2.40|4|TenGigE0/0/0/9 +1.3.6.1.2.1.2.2.1.2.41|4|TenGigE0/0/0/10 +1.3.6.1.2.1.2.2.1.2.42|4|TenGigE0/0/0/11 +1.3.6.1.2.1.2.2.1.2.43|4|TenGigE0/0/0/12 +1.3.6.1.2.1.2.2.1.2.44|4|TenGigE0/0/0/13 +1.3.6.1.2.1.2.2.1.2.45|4|TenGigE0/0/0/14 +1.3.6.1.2.1.2.2.1.2.46|4|TenGigE0/0/0/15 +1.3.6.1.2.1.2.2.1.2.47|4|TenGigE0/0/0/16 +1.3.6.1.2.1.2.2.1.2.48|4|TenGigE0/0/0/17 +1.3.6.1.2.1.2.2.1.2.49|4|TenGigE0/0/0/18 +1.3.6.1.2.1.2.2.1.2.50|4|TenGigE0/0/0/19 +1.3.6.1.2.1.2.2.1.2.71|4|Loopback0 +1.3.6.1.2.1.2.2.1.2.72|4|Bundle-Ether6 +1.3.6.1.2.1.2.2.1.2.73|4|Bundle-Ether80 +1.3.6.1.2.1.2.2.1.2.75|4|Bundle-Ether6.1604 +1.3.6.1.2.1.2.2.1.2.76|4|Bundle-Ether6.1605 +1.3.6.1.2.1.2.2.1.2.77|4|Bundle-Ether6.1520 +1.3.6.1.2.1.2.2.1.2.79|4|Bundle-Ether6.1514 +1.3.6.1.2.1.2.2.1.2.81|4|Bundle-Ether6.1609 +1.3.6.1.2.1.2.2.1.2.82|4|Bundle-Ether80.1589 +1.3.6.1.2.1.2.2.1.2.83|4|Bundle-Ether6.1512 +1.3.6.1.2.1.2.2.1.2.84|4|Bundle-Ether6.100 +1.3.6.1.2.1.2.2.1.2.85|4|Bundle-Ether80.4061 +1.3.6.1.2.1.2.2.1.2.87|4|Bundle-Ether80.1582 +1.3.6.1.2.1.2.2.1.2.88|4|Bundle-Ether6.1515 +1.3.6.1.2.1.2.2.1.2.89|4|Bundle-Ether80.4050 +1.3.6.1.2.1.2.2.1.2.91|4|Bundle-Ether80.4008 +1.3.6.1.2.1.2.2.1.2.92|4|Bundle-Ether80.4002 +1.3.6.1.2.1.2.2.1.2.93|4|Bundle-Ether80.4006 +1.3.6.1.2.1.2.2.1.2.94|4|Bundle-Ether80.4000 +1.3.6.1.2.1.2.2.1.2.95|4|Bundle-Ether80.4081 +1.3.6.1.2.1.2.2.1.2.96|4|Bundle-Ether1 +1.3.6.1.2.1.2.2.1.2.97|4|Bundle-Ether80.4058 +1.3.6.1.2.1.2.2.1.2.98|4|Bundle-Ether80.4041 +1.3.6.1.2.1.2.2.1.3.2|2|1 +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|1 +1.3.6.1.2.1.2.2.1.3.11|2|1 +1.3.6.1.2.1.2.2.1.3.12|2|1 +1.3.6.1.2.1.2.2.1.3.13|2|1 +1.3.6.1.2.1.2.2.1.3.14|2|1 +1.3.6.1.2.1.2.2.1.3.15|2|1 +1.3.6.1.2.1.2.2.1.3.16|2|1 +1.3.6.1.2.1.2.2.1.3.17|2|1 +1.3.6.1.2.1.2.2.1.3.18|2|1 +1.3.6.1.2.1.2.2.1.3.19|2|1 +1.3.6.1.2.1.2.2.1.3.20|2|1 +1.3.6.1.2.1.2.2.1.3.21|2|1 +1.3.6.1.2.1.2.2.1.3.22|2|1 +1.3.6.1.2.1.2.2.1.3.23|2|1 +1.3.6.1.2.1.2.2.1.3.24|2|1 +1.3.6.1.2.1.2.2.1.3.25|2|1 +1.3.6.1.2.1.2.2.1.3.26|2|1 +1.3.6.1.2.1.2.2.1.3.27|2|1 +1.3.6.1.2.1.2.2.1.3.28|2|1 +1.3.6.1.2.1.2.2.1.3.29|2|1 +1.3.6.1.2.1.2.2.1.3.30|2|1 +1.3.6.1.2.1.2.2.1.3.31|2|6 +1.3.6.1.2.1.2.2.1.3.32|2|6 +1.3.6.1.2.1.2.2.1.3.33|2|6 +1.3.6.1.2.1.2.2.1.3.34|2|6 +1.3.6.1.2.1.2.2.1.3.35|2|6 +1.3.6.1.2.1.2.2.1.3.36|2|6 +1.3.6.1.2.1.2.2.1.3.37|2|6 +1.3.6.1.2.1.2.2.1.3.38|2|6 +1.3.6.1.2.1.2.2.1.3.39|2|6 +1.3.6.1.2.1.2.2.1.3.40|2|6 +1.3.6.1.2.1.2.2.1.3.41|2|6 +1.3.6.1.2.1.2.2.1.3.42|2|6 +1.3.6.1.2.1.2.2.1.3.43|2|6 +1.3.6.1.2.1.2.2.1.3.44|2|6 +1.3.6.1.2.1.2.2.1.3.45|2|6 +1.3.6.1.2.1.2.2.1.3.46|2|6 +1.3.6.1.2.1.2.2.1.3.47|2|6 +1.3.6.1.2.1.2.2.1.3.48|2|6 +1.3.6.1.2.1.2.2.1.3.49|2|6 +1.3.6.1.2.1.2.2.1.3.50|2|6 +1.3.6.1.2.1.2.2.1.3.71|2|24 +1.3.6.1.2.1.2.2.1.3.72|2|161 +1.3.6.1.2.1.2.2.1.3.73|2|161 +1.3.6.1.2.1.2.2.1.3.75|2|135 +1.3.6.1.2.1.2.2.1.3.76|2|135 +1.3.6.1.2.1.2.2.1.3.77|2|135 +1.3.6.1.2.1.2.2.1.3.79|2|135 +1.3.6.1.2.1.2.2.1.3.81|2|135 +1.3.6.1.2.1.2.2.1.3.82|2|135 +1.3.6.1.2.1.2.2.1.3.83|2|135 +1.3.6.1.2.1.2.2.1.3.84|2|135 +1.3.6.1.2.1.2.2.1.3.85|2|135 +1.3.6.1.2.1.2.2.1.3.87|2|135 +1.3.6.1.2.1.2.2.1.3.88|2|135 +1.3.6.1.2.1.2.2.1.3.89|2|135 +1.3.6.1.2.1.2.2.1.3.91|2|135 +1.3.6.1.2.1.2.2.1.3.92|2|135 +1.3.6.1.2.1.2.2.1.3.93|2|135 +1.3.6.1.2.1.2.2.1.3.94|2|135 +1.3.6.1.2.1.2.2.1.3.95|2|135 +1.3.6.1.2.1.2.2.1.3.96|2|161 +1.3.6.1.2.1.2.2.1.3.97|2|135 +1.3.6.1.2.1.2.2.1.3.98|2|135 +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|1514 +1.3.6.1.2.1.2.2.1.4.4|2|1514 +1.3.6.1.2.1.2.2.1.4.5|2|1514 +1.3.6.1.2.1.2.2.1.4.31|2|1518 +1.3.6.1.2.1.2.2.1.4.32|2|1518 +1.3.6.1.2.1.2.2.1.4.33|2|1518 +1.3.6.1.2.1.2.2.1.4.34|2|1518 +1.3.6.1.2.1.2.2.1.4.35|2|9188 +1.3.6.1.2.1.2.2.1.4.36|2|9188 +1.3.6.1.2.1.2.2.1.4.37|2|9188 +1.3.6.1.2.1.2.2.1.4.38|2|9188 +1.3.6.1.2.1.2.2.1.4.39|2|1514 +1.3.6.1.2.1.2.2.1.4.40|2|1514 +1.3.6.1.2.1.2.2.1.4.41|2|1514 +1.3.6.1.2.1.2.2.1.4.42|2|1514 +1.3.6.1.2.1.2.2.1.4.43|2|1514 +1.3.6.1.2.1.2.2.1.4.44|2|1514 +1.3.6.1.2.1.2.2.1.4.45|2|1514 +1.3.6.1.2.1.2.2.1.4.46|2|1514 +1.3.6.1.2.1.2.2.1.4.47|2|1514 +1.3.6.1.2.1.2.2.1.4.48|2|1514 +1.3.6.1.2.1.2.2.1.4.49|2|1514 +1.3.6.1.2.1.2.2.1.4.50|2|1514 +1.3.6.1.2.1.2.2.1.4.71|2|1500 +1.3.6.1.2.1.2.2.1.4.72|2|1514 +1.3.6.1.2.1.2.2.1.4.73|2|9184 +1.3.6.1.2.1.2.2.1.4.75|2|1518 +1.3.6.1.2.1.2.2.1.4.76|2|1518 +1.3.6.1.2.1.2.2.1.4.77|2|1518 +1.3.6.1.2.1.2.2.1.4.79|2|1518 +1.3.6.1.2.1.2.2.1.4.81|2|1518 +1.3.6.1.2.1.2.2.1.4.82|2|1518 +1.3.6.1.2.1.2.2.1.4.83|2|1518 +1.3.6.1.2.1.2.2.1.4.84|2|1518 +1.3.6.1.2.1.2.2.1.4.85|2|1518 +1.3.6.1.2.1.2.2.1.4.87|2|1518 +1.3.6.1.2.1.2.2.1.4.88|2|1518 +1.3.6.1.2.1.2.2.1.4.89|2|1518 +1.3.6.1.2.1.2.2.1.4.91|2|1518 +1.3.6.1.2.1.2.2.1.4.92|2|1518 +1.3.6.1.2.1.2.2.1.4.93|2|1518 +1.3.6.1.2.1.2.2.1.4.94|2|1518 +1.3.6.1.2.1.2.2.1.4.95|2|1518 +1.3.6.1.2.1.2.2.1.4.96|2|1514 +1.3.6.1.2.1.2.2.1.4.97|2|2000 +1.3.6.1.2.1.2.2.1.4.98|2|2000 +1.3.6.1.2.1.2.2.1.6.2|4| +1.3.6.1.2.1.2.2.1.6.3|4x|0896AD74F7F0 +1.3.6.1.2.1.2.2.1.6.4|4x|0896AD74F7F1 +1.3.6.1.2.1.2.2.1.6.5|4x|0896AD74F7F2 +1.3.6.1.2.1.2.2.1.6.11|4| +1.3.6.1.2.1.2.2.1.6.12|4| +1.3.6.1.2.1.2.2.1.6.13|4| +1.3.6.1.2.1.2.2.1.6.14|4| +1.3.6.1.2.1.2.2.1.6.15|4| +1.3.6.1.2.1.2.2.1.6.16|4| +1.3.6.1.2.1.2.2.1.6.17|4| +1.3.6.1.2.1.2.2.1.6.18|4| +1.3.6.1.2.1.2.2.1.6.19|4| +1.3.6.1.2.1.2.2.1.6.20|4| +1.3.6.1.2.1.2.2.1.6.21|4| +1.3.6.1.2.1.2.2.1.6.22|4| +1.3.6.1.2.1.2.2.1.6.23|4| +1.3.6.1.2.1.2.2.1.6.24|4| +1.3.6.1.2.1.2.2.1.6.25|4| +1.3.6.1.2.1.2.2.1.6.26|4| +1.3.6.1.2.1.2.2.1.6.27|4| +1.3.6.1.2.1.2.2.1.6.28|4| +1.3.6.1.2.1.2.2.1.6.29|4| +1.3.6.1.2.1.2.2.1.6.30|4| +1.3.6.1.2.1.2.2.1.6.31|4x|0896AD46FB94 +1.3.6.1.2.1.2.2.1.6.32|4x|0896AD46FB95 +1.3.6.1.2.1.2.2.1.6.33|4x|0896AD46FB96 +1.3.6.1.2.1.2.2.1.6.34|4x|0896AD46FB97 +1.3.6.1.2.1.2.2.1.6.35|4x|0896AD46FB98 +1.3.6.1.2.1.2.2.1.6.36|4x|0896AD46FB99 +1.3.6.1.2.1.2.2.1.6.37|4x|0896AD46FB9A +1.3.6.1.2.1.2.2.1.6.38|4x|0896AD46FB9B +1.3.6.1.2.1.2.2.1.6.39|4x|0896AD46FB9C +1.3.6.1.2.1.2.2.1.6.40|4x|0896AD46FB9D +1.3.6.1.2.1.2.2.1.6.41|4x|0896AD46FB9E +1.3.6.1.2.1.2.2.1.6.42|4x|0896AD46FB9F +1.3.6.1.2.1.2.2.1.6.43|4x|0896AD46FBA0 +1.3.6.1.2.1.2.2.1.6.44|4x|0896AD46FBA1 +1.3.6.1.2.1.2.2.1.6.45|4x|0896AD46FBA2 +1.3.6.1.2.1.2.2.1.6.46|4x|0896AD46FBA3 +1.3.6.1.2.1.2.2.1.6.47|4x|0896AD46FBA4 +1.3.6.1.2.1.2.2.1.6.48|4x|0896AD46FBA5 +1.3.6.1.2.1.2.2.1.6.49|4x|0896AD46FBA6 +1.3.6.1.2.1.2.2.1.6.50|4x|0896AD46FBA7 +1.3.6.1.2.1.2.2.1.6.71|4| +1.3.6.1.2.1.2.2.1.6.72|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.73|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.75|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.76|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.77|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.79|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.81|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.82|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.83|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.84|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.85|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.87|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.88|4x|0896AD728F73 +1.3.6.1.2.1.2.2.1.6.89|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.91|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.92|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.93|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.94|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.95|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.96|4x|0896AD728F74 +1.3.6.1.2.1.2.2.1.6.97|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.6.98|4x|0896AD728F72 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|2 +1.3.6.1.2.1.2.2.1.7.5|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.23|2|1 +1.3.6.1.2.1.2.2.1.7.24|2|1 +1.3.6.1.2.1.2.2.1.7.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.29|2|1 +1.3.6.1.2.1.2.2.1.7.30|2|1 +1.3.6.1.2.1.2.2.1.7.31|2|1 +1.3.6.1.2.1.2.2.1.7.32|2|1 +1.3.6.1.2.1.2.2.1.7.33|2|1 +1.3.6.1.2.1.2.2.1.7.34|2|1 +1.3.6.1.2.1.2.2.1.7.35|2|1 +1.3.6.1.2.1.2.2.1.7.36|2|1 +1.3.6.1.2.1.2.2.1.7.37|2|1 +1.3.6.1.2.1.2.2.1.7.38|2|1 +1.3.6.1.2.1.2.2.1.7.39|2|1 +1.3.6.1.2.1.2.2.1.7.40|2|1 +1.3.6.1.2.1.2.2.1.7.41|2|1 +1.3.6.1.2.1.2.2.1.7.42|2|2 +1.3.6.1.2.1.2.2.1.7.43|2|2 +1.3.6.1.2.1.2.2.1.7.44|2|2 +1.3.6.1.2.1.2.2.1.7.45|2|2 +1.3.6.1.2.1.2.2.1.7.46|2|2 +1.3.6.1.2.1.2.2.1.7.47|2|2 +1.3.6.1.2.1.2.2.1.7.48|2|2 +1.3.6.1.2.1.2.2.1.7.49|2|1 +1.3.6.1.2.1.2.2.1.7.50|2|1 +1.3.6.1.2.1.2.2.1.7.71|2|1 +1.3.6.1.2.1.2.2.1.7.72|2|1 +1.3.6.1.2.1.2.2.1.7.73|2|1 +1.3.6.1.2.1.2.2.1.7.75|2|1 +1.3.6.1.2.1.2.2.1.7.76|2|1 +1.3.6.1.2.1.2.2.1.7.77|2|1 +1.3.6.1.2.1.2.2.1.7.79|2|1 +1.3.6.1.2.1.2.2.1.7.81|2|1 +1.3.6.1.2.1.2.2.1.7.82|2|1 +1.3.6.1.2.1.2.2.1.7.83|2|1 +1.3.6.1.2.1.2.2.1.7.84|2|1 +1.3.6.1.2.1.2.2.1.7.85|2|1 +1.3.6.1.2.1.2.2.1.7.87|2|1 +1.3.6.1.2.1.2.2.1.7.88|2|1 +1.3.6.1.2.1.2.2.1.7.89|2|1 +1.3.6.1.2.1.2.2.1.7.91|2|1 +1.3.6.1.2.1.2.2.1.7.92|2|1 +1.3.6.1.2.1.2.2.1.7.93|2|1 +1.3.6.1.2.1.2.2.1.7.94|2|1 +1.3.6.1.2.1.2.2.1.7.95|2|1 +1.3.6.1.2.1.2.2.1.7.96|2|1 +1.3.6.1.2.1.2.2.1.7.97|2|1 +1.3.6.1.2.1.2.2.1.7.98|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.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|1 +1.3.6.1.2.1.2.2.1.8.15|2|1 +1.3.6.1.2.1.2.2.1.8.16|2|1 +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|1 +1.3.6.1.2.1.2.2.1.8.20|2|1 +1.3.6.1.2.1.2.2.1.8.21|2|1 +1.3.6.1.2.1.2.2.1.8.22|2|1 +1.3.6.1.2.1.2.2.1.8.23|2|1 +1.3.6.1.2.1.2.2.1.8.24|2|1 +1.3.6.1.2.1.2.2.1.8.25|2|1 +1.3.6.1.2.1.2.2.1.8.26|2|1 +1.3.6.1.2.1.2.2.1.8.27|2|1 +1.3.6.1.2.1.2.2.1.8.28|2|1 +1.3.6.1.2.1.2.2.1.8.29|2|1 +1.3.6.1.2.1.2.2.1.8.30|2|1 +1.3.6.1.2.1.2.2.1.8.31|2|1 +1.3.6.1.2.1.2.2.1.8.32|2|1 +1.3.6.1.2.1.2.2.1.8.33|2|1 +1.3.6.1.2.1.2.2.1.8.34|2|1 +1.3.6.1.2.1.2.2.1.8.35|2|1 +1.3.6.1.2.1.2.2.1.8.36|2|1 +1.3.6.1.2.1.2.2.1.8.37|2|1 +1.3.6.1.2.1.2.2.1.8.38|2|1 +1.3.6.1.2.1.2.2.1.8.39|2|1 +1.3.6.1.2.1.2.2.1.8.40|2|1 +1.3.6.1.2.1.2.2.1.8.41|2|1 +1.3.6.1.2.1.2.2.1.8.42|2|2 +1.3.6.1.2.1.2.2.1.8.43|2|2 +1.3.6.1.2.1.2.2.1.8.44|2|2 +1.3.6.1.2.1.2.2.1.8.45|2|2 +1.3.6.1.2.1.2.2.1.8.46|2|2 +1.3.6.1.2.1.2.2.1.8.47|2|2 +1.3.6.1.2.1.2.2.1.8.48|2|2 +1.3.6.1.2.1.2.2.1.8.49|2|1 +1.3.6.1.2.1.2.2.1.8.50|2|1 +1.3.6.1.2.1.2.2.1.8.71|2|1 +1.3.6.1.2.1.2.2.1.8.72|2|1 +1.3.6.1.2.1.2.2.1.8.73|2|1 +1.3.6.1.2.1.2.2.1.8.75|2|1 +1.3.6.1.2.1.2.2.1.8.76|2|1 +1.3.6.1.2.1.2.2.1.8.77|2|1 +1.3.6.1.2.1.2.2.1.8.79|2|1 +1.3.6.1.2.1.2.2.1.8.81|2|1 +1.3.6.1.2.1.2.2.1.8.82|2|1 +1.3.6.1.2.1.2.2.1.8.83|2|1 +1.3.6.1.2.1.2.2.1.8.84|2|1 +1.3.6.1.2.1.2.2.1.8.85|2|1 +1.3.6.1.2.1.2.2.1.8.87|2|1 +1.3.6.1.2.1.2.2.1.8.88|2|1 +1.3.6.1.2.1.2.2.1.8.89|2|1 +1.3.6.1.2.1.2.2.1.8.91|2|1 +1.3.6.1.2.1.2.2.1.8.92|2|1 +1.3.6.1.2.1.2.2.1.8.93|2|1 +1.3.6.1.2.1.2.2.1.8.94|2|1 +1.3.6.1.2.1.2.2.1.8.95|2|1 +1.3.6.1.2.1.2.2.1.8.96|2|1 +1.3.6.1.2.1.2.2.1.8.97|2|1 +1.3.6.1.2.1.2.2.1.8.98|2|1 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|830 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|22611 +1.3.6.1.2.1.2.2.1.9.12|67|22611 +1.3.6.1.2.1.2.2.1.9.13|67|22611 +1.3.6.1.2.1.2.2.1.9.14|67|22611 +1.3.6.1.2.1.2.2.1.9.15|67|22611 +1.3.6.1.2.1.2.2.1.9.16|67|22611 +1.3.6.1.2.1.2.2.1.9.17|67|22611 +1.3.6.1.2.1.2.2.1.9.18|67|22611 +1.3.6.1.2.1.2.2.1.9.19|67|22611 +1.3.6.1.2.1.2.2.1.9.20|67|22611 +1.3.6.1.2.1.2.2.1.9.21|67|22611 +1.3.6.1.2.1.2.2.1.9.22|67|22611 +1.3.6.1.2.1.2.2.1.9.23|67|22611 +1.3.6.1.2.1.2.2.1.9.24|67|22611 +1.3.6.1.2.1.2.2.1.9.25|67|22611 +1.3.6.1.2.1.2.2.1.9.26|67|22611 +1.3.6.1.2.1.2.2.1.9.27|67|22611 +1.3.6.1.2.1.2.2.1.9.28|67|22611 +1.3.6.1.2.1.2.2.1.9.29|67|22611 +1.3.6.1.2.1.2.2.1.9.30|67|22611 +1.3.6.1.2.1.2.2.1.9.31|67|25299 +1.3.6.1.2.1.2.2.1.9.32|67|25299 +1.3.6.1.2.1.2.2.1.9.33|67|25300 +1.3.6.1.2.1.2.2.1.9.34|67|25300 +1.3.6.1.2.1.2.2.1.9.35|67|25300 +1.3.6.1.2.1.2.2.1.9.36|67|25301 +1.3.6.1.2.1.2.2.1.9.37|67|25301 +1.3.6.1.2.1.2.2.1.9.38|67|25301 +1.3.6.1.2.1.2.2.1.9.39|67|25302 +1.3.6.1.2.1.2.2.1.9.40|67|25407 +1.3.6.1.2.1.2.2.1.9.41|67|25655 +1.3.6.1.2.1.2.2.1.9.42|67|0 +1.3.6.1.2.1.2.2.1.9.43|67|0 +1.3.6.1.2.1.2.2.1.9.44|67|0 +1.3.6.1.2.1.2.2.1.9.45|67|0 +1.3.6.1.2.1.2.2.1.9.46|67|0 +1.3.6.1.2.1.2.2.1.9.47|67|0 +1.3.6.1.2.1.2.2.1.9.48|67|0 +1.3.6.1.2.1.2.2.1.9.49|67|25302 +1.3.6.1.2.1.2.2.1.9.50|67|25303 +1.3.6.1.2.1.2.2.1.9.71|67|472 +1.3.6.1.2.1.2.2.1.9.72|67|25924 +1.3.6.1.2.1.2.2.1.9.73|67|25724 +1.3.6.1.2.1.2.2.1.9.75|67|25925 +1.3.6.1.2.1.2.2.1.9.76|67|25925 +1.3.6.1.2.1.2.2.1.9.77|67|25925 +1.3.6.1.2.1.2.2.1.9.79|67|25925 +1.3.6.1.2.1.2.2.1.9.81|67|25925 +1.3.6.1.2.1.2.2.1.9.82|67|25725 +1.3.6.1.2.1.2.2.1.9.83|67|25925 +1.3.6.1.2.1.2.2.1.9.84|67|25925 +1.3.6.1.2.1.2.2.1.9.85|67|25725 +1.3.6.1.2.1.2.2.1.9.87|67|25725 +1.3.6.1.2.1.2.2.1.9.88|67|25925 +1.3.6.1.2.1.2.2.1.9.89|67|25725 +1.3.6.1.2.1.2.2.1.9.91|67|25725 +1.3.6.1.2.1.2.2.1.9.92|67|25725 +1.3.6.1.2.1.2.2.1.9.93|67|25725 +1.3.6.1.2.1.2.2.1.9.94|67|25725 +1.3.6.1.2.1.2.2.1.9.95|67|25725 +1.3.6.1.2.1.2.2.1.9.96|67|25567 +1.3.6.1.2.1.2.2.1.9.97|67|25725 +1.3.6.1.2.1.2.2.1.9.98|67|25725 +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.31|65|0 +1.3.6.1.2.1.2.2.1.13.32|65|0 +1.3.6.1.2.1.2.2.1.13.33|65|0 +1.3.6.1.2.1.2.2.1.13.34|65|0 +1.3.6.1.2.1.2.2.1.13.35|65|0 +1.3.6.1.2.1.2.2.1.13.36|65|0 +1.3.6.1.2.1.2.2.1.13.37|65|0 +1.3.6.1.2.1.2.2.1.13.38|65|0 +1.3.6.1.2.1.2.2.1.13.39|65|4971 +1.3.6.1.2.1.2.2.1.13.40|65|2610 +1.3.6.1.2.1.2.2.1.13.41|65|0 +1.3.6.1.2.1.2.2.1.13.42|65|0 +1.3.6.1.2.1.2.2.1.13.43|65|0 +1.3.6.1.2.1.2.2.1.13.44|65|0 +1.3.6.1.2.1.2.2.1.13.45|65|0 +1.3.6.1.2.1.2.2.1.13.46|65|0 +1.3.6.1.2.1.2.2.1.13.47|65|0 +1.3.6.1.2.1.2.2.1.13.48|65|0 +1.3.6.1.2.1.2.2.1.13.49|65|0 +1.3.6.1.2.1.2.2.1.13.50|65|0 +1.3.6.1.2.1.2.2.1.13.72|65|12 +1.3.6.1.2.1.2.2.1.13.73|65|0 +1.3.6.1.2.1.2.2.1.13.75|65|2 +1.3.6.1.2.1.2.2.1.13.76|65|8 +1.3.6.1.2.1.2.2.1.13.77|65|10 +1.3.6.1.2.1.2.2.1.13.79|65|4589 +1.3.6.1.2.1.2.2.1.13.81|65|60457 +1.3.6.1.2.1.2.2.1.13.82|65|0 +1.3.6.1.2.1.2.2.1.13.83|65|1 +1.3.6.1.2.1.2.2.1.13.84|65|1889 +1.3.6.1.2.1.2.2.1.13.85|65|99463 +1.3.6.1.2.1.2.2.1.13.87|65|0 +1.3.6.1.2.1.2.2.1.13.88|65|3 +1.3.6.1.2.1.2.2.1.13.89|65|0 +1.3.6.1.2.1.2.2.1.13.91|65|0 +1.3.6.1.2.1.2.2.1.13.92|65|0 +1.3.6.1.2.1.2.2.1.13.93|65|0 +1.3.6.1.2.1.2.2.1.13.94|65|0 +1.3.6.1.2.1.2.2.1.13.95|65|0 +1.3.6.1.2.1.2.2.1.13.96|65|5 +1.3.6.1.2.1.2.2.1.13.97|65|0 +1.3.6.1.2.1.2.2.1.13.98|65|7 +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.31|65|1 +1.3.6.1.2.1.2.2.1.14.32|65|2 +1.3.6.1.2.1.2.2.1.14.33|65|0 +1.3.6.1.2.1.2.2.1.14.34|65|0 +1.3.6.1.2.1.2.2.1.14.35|65|0 +1.3.6.1.2.1.2.2.1.14.36|65|0 +1.3.6.1.2.1.2.2.1.14.37|65|0 +1.3.6.1.2.1.2.2.1.14.38|65|1 +1.3.6.1.2.1.2.2.1.14.39|65|0 +1.3.6.1.2.1.2.2.1.14.40|65|1 +1.3.6.1.2.1.2.2.1.14.41|65|1 +1.3.6.1.2.1.2.2.1.14.42|65|0 +1.3.6.1.2.1.2.2.1.14.43|65|0 +1.3.6.1.2.1.2.2.1.14.44|65|0 +1.3.6.1.2.1.2.2.1.14.45|65|0 +1.3.6.1.2.1.2.2.1.14.46|65|0 +1.3.6.1.2.1.2.2.1.14.47|65|2 +1.3.6.1.2.1.2.2.1.14.48|65|0 +1.3.6.1.2.1.2.2.1.14.49|65|0 +1.3.6.1.2.1.2.2.1.14.50|65|0 +1.3.6.1.2.1.2.2.1.14.72|65|0 +1.3.6.1.2.1.2.2.1.14.73|65|0 +1.3.6.1.2.1.2.2.1.14.75|65|0 +1.3.6.1.2.1.2.2.1.14.76|65|0 +1.3.6.1.2.1.2.2.1.14.77|65|0 +1.3.6.1.2.1.2.2.1.14.79|65|0 +1.3.6.1.2.1.2.2.1.14.81|65|0 +1.3.6.1.2.1.2.2.1.14.82|65|0 +1.3.6.1.2.1.2.2.1.14.83|65|0 +1.3.6.1.2.1.2.2.1.14.84|65|0 +1.3.6.1.2.1.2.2.1.14.85|65|0 +1.3.6.1.2.1.2.2.1.14.87|65|0 +1.3.6.1.2.1.2.2.1.14.88|65|0 +1.3.6.1.2.1.2.2.1.14.89|65|0 +1.3.6.1.2.1.2.2.1.14.91|65|0 +1.3.6.1.2.1.2.2.1.14.92|65|0 +1.3.6.1.2.1.2.2.1.14.93|65|0 +1.3.6.1.2.1.2.2.1.14.94|65|0 +1.3.6.1.2.1.2.2.1.14.95|65|0 +1.3.6.1.2.1.2.2.1.14.96|65|1 +1.3.6.1.2.1.2.2.1.14.97|65|0 +1.3.6.1.2.1.2.2.1.14.98|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.31|65|0 +1.3.6.1.2.1.2.2.1.19.32|65|0 +1.3.6.1.2.1.2.2.1.19.33|65|0 +1.3.6.1.2.1.2.2.1.19.34|65|0 +1.3.6.1.2.1.2.2.1.19.35|65|0 +1.3.6.1.2.1.2.2.1.19.36|65|0 +1.3.6.1.2.1.2.2.1.19.37|65|0 +1.3.6.1.2.1.2.2.1.19.38|65|0 +1.3.6.1.2.1.2.2.1.19.39|65|0 +1.3.6.1.2.1.2.2.1.19.40|65|0 +1.3.6.1.2.1.2.2.1.19.41|65|0 +1.3.6.1.2.1.2.2.1.19.42|65|0 +1.3.6.1.2.1.2.2.1.19.43|65|0 +1.3.6.1.2.1.2.2.1.19.44|65|0 +1.3.6.1.2.1.2.2.1.19.45|65|0 +1.3.6.1.2.1.2.2.1.19.46|65|0 +1.3.6.1.2.1.2.2.1.19.47|65|0 +1.3.6.1.2.1.2.2.1.19.48|65|0 +1.3.6.1.2.1.2.2.1.19.49|65|0 +1.3.6.1.2.1.2.2.1.19.50|65|0 +1.3.6.1.2.1.2.2.1.19.72|65|0 +1.3.6.1.2.1.2.2.1.19.73|65|0 +1.3.6.1.2.1.2.2.1.19.75|65|0 +1.3.6.1.2.1.2.2.1.19.76|65|0 +1.3.6.1.2.1.2.2.1.19.77|65|0 +1.3.6.1.2.1.2.2.1.19.79|65|0 +1.3.6.1.2.1.2.2.1.19.81|65|0 +1.3.6.1.2.1.2.2.1.19.82|65|0 +1.3.6.1.2.1.2.2.1.19.83|65|0 +1.3.6.1.2.1.2.2.1.19.84|65|0 +1.3.6.1.2.1.2.2.1.19.85|65|0 +1.3.6.1.2.1.2.2.1.19.87|65|0 +1.3.6.1.2.1.2.2.1.19.88|65|0 +1.3.6.1.2.1.2.2.1.19.89|65|0 +1.3.6.1.2.1.2.2.1.19.91|65|0 +1.3.6.1.2.1.2.2.1.19.92|65|0 +1.3.6.1.2.1.2.2.1.19.93|65|0 +1.3.6.1.2.1.2.2.1.19.94|65|0 +1.3.6.1.2.1.2.2.1.19.95|65|0 +1.3.6.1.2.1.2.2.1.19.96|65|0 +1.3.6.1.2.1.2.2.1.19.97|65|0 +1.3.6.1.2.1.2.2.1.19.98|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.31|65|0 +1.3.6.1.2.1.2.2.1.20.32|65|0 +1.3.6.1.2.1.2.2.1.20.33|65|0 +1.3.6.1.2.1.2.2.1.20.34|65|0 +1.3.6.1.2.1.2.2.1.20.35|65|0 +1.3.6.1.2.1.2.2.1.20.36|65|0 +1.3.6.1.2.1.2.2.1.20.37|65|0 +1.3.6.1.2.1.2.2.1.20.38|65|0 +1.3.6.1.2.1.2.2.1.20.39|65|0 +1.3.6.1.2.1.2.2.1.20.40|65|0 +1.3.6.1.2.1.2.2.1.20.41|65|0 +1.3.6.1.2.1.2.2.1.20.42|65|0 +1.3.6.1.2.1.2.2.1.20.43|65|0 +1.3.6.1.2.1.2.2.1.20.44|65|0 +1.3.6.1.2.1.2.2.1.20.45|65|0 +1.3.6.1.2.1.2.2.1.20.46|65|0 +1.3.6.1.2.1.2.2.1.20.47|65|0 +1.3.6.1.2.1.2.2.1.20.48|65|0 +1.3.6.1.2.1.2.2.1.20.49|65|0 +1.3.6.1.2.1.2.2.1.20.50|65|0 +1.3.6.1.2.1.2.2.1.20.72|65|0 +1.3.6.1.2.1.2.2.1.20.73|65|0 +1.3.6.1.2.1.2.2.1.20.75|65|0 +1.3.6.1.2.1.2.2.1.20.76|65|0 +1.3.6.1.2.1.2.2.1.20.77|65|0 +1.3.6.1.2.1.2.2.1.20.79|65|0 +1.3.6.1.2.1.2.2.1.20.81|65|0 +1.3.6.1.2.1.2.2.1.20.82|65|0 +1.3.6.1.2.1.2.2.1.20.83|65|0 +1.3.6.1.2.1.2.2.1.20.84|65|0 +1.3.6.1.2.1.2.2.1.20.85|65|0 +1.3.6.1.2.1.2.2.1.20.87|65|0 +1.3.6.1.2.1.2.2.1.20.88|65|0 +1.3.6.1.2.1.2.2.1.20.89|65|0 +1.3.6.1.2.1.2.2.1.20.91|65|0 +1.3.6.1.2.1.2.2.1.20.92|65|0 +1.3.6.1.2.1.2.2.1.20.93|65|0 +1.3.6.1.2.1.2.2.1.20.94|65|0 +1.3.6.1.2.1.2.2.1.20.95|65|0 +1.3.6.1.2.1.2.2.1.20.96|65|0 +1.3.6.1.2.1.2.2.1.20.97|65|0 +1.3.6.1.2.1.2.2.1.20.98|65|0 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +1.3.6.1.2.1.10.7.2.1.19.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.5|2|1 +1.3.6.1.2.1.10.7.2.1.19.31|2|3 +1.3.6.1.2.1.10.7.2.1.19.32|2|3 +1.3.6.1.2.1.10.7.2.1.19.33|2|3 +1.3.6.1.2.1.10.7.2.1.19.34|2|3 +1.3.6.1.2.1.10.7.2.1.19.35|2|3 +1.3.6.1.2.1.10.7.2.1.19.36|2|3 +1.3.6.1.2.1.10.7.2.1.19.37|2|3 +1.3.6.1.2.1.10.7.2.1.19.38|2|3 +1.3.6.1.2.1.10.7.2.1.19.39|2|3 +1.3.6.1.2.1.10.7.2.1.19.40|2|3 +1.3.6.1.2.1.10.7.2.1.19.41|2|3 +1.3.6.1.2.1.10.7.2.1.19.42|2|3 +1.3.6.1.2.1.10.7.2.1.19.43|2|3 +1.3.6.1.2.1.10.7.2.1.19.44|2|3 +1.3.6.1.2.1.10.7.2.1.19.45|2|3 +1.3.6.1.2.1.10.7.2.1.19.46|2|3 +1.3.6.1.2.1.10.7.2.1.19.47|2|3 +1.3.6.1.2.1.10.7.2.1.19.48|2|3 +1.3.6.1.2.1.10.7.2.1.19.49|2|3 +1.3.6.1.2.1.10.7.2.1.19.50|2|3 1.3.6.1.2.1.15.2.0|2|65351 1.3.6.1.2.1.15.3.1.9.192.168.5.149|2|65578 1.3.6.1.2.1.15.3.1.9.192.168.7.43|2|65787 @@ -34,8 +690,3264 @@ 1.3.6.1.2.1.15.3.1.9.192.168.13.254|2|65351 1.3.6.1.2.1.15.3.1.9.192.168.27.145|2|65578 1.3.6.1.2.1.15.3.1.9.192.168.71.169|2|65164 +1.3.6.1.2.1.31.1.1.1.1.2|4|Null0 +1.3.6.1.2.1.31.1.1.1.1.3|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.31.1.1.1.1.4|4|MgmtEth0/RSP0/CPU0/1 +1.3.6.1.2.1.31.1.1.1.1.5|4|PTP0/RSP0/CPU0/0 +1.3.6.1.2.1.31.1.1.1.1.11|4|dwdm0/0/0/0 +1.3.6.1.2.1.31.1.1.1.1.12|4|dwdm0/0/0/1 +1.3.6.1.2.1.31.1.1.1.1.13|4|dwdm0/0/0/2 +1.3.6.1.2.1.31.1.1.1.1.14|4|dwdm0/0/0/3 +1.3.6.1.2.1.31.1.1.1.1.15|4|dwdm0/0/0/4 +1.3.6.1.2.1.31.1.1.1.1.16|4|dwdm0/0/0/5 +1.3.6.1.2.1.31.1.1.1.1.17|4|dwdm0/0/0/6 +1.3.6.1.2.1.31.1.1.1.1.18|4|dwdm0/0/0/7 +1.3.6.1.2.1.31.1.1.1.1.19|4|dwdm0/0/0/8 +1.3.6.1.2.1.31.1.1.1.1.20|4|dwdm0/0/0/9 +1.3.6.1.2.1.31.1.1.1.1.21|4|dwdm0/0/0/10 +1.3.6.1.2.1.31.1.1.1.1.22|4|dwdm0/0/0/11 +1.3.6.1.2.1.31.1.1.1.1.23|4|dwdm0/0/0/12 +1.3.6.1.2.1.31.1.1.1.1.24|4|dwdm0/0/0/13 +1.3.6.1.2.1.31.1.1.1.1.25|4|dwdm0/0/0/14 +1.3.6.1.2.1.31.1.1.1.1.26|4|dwdm0/0/0/15 +1.3.6.1.2.1.31.1.1.1.1.27|4|dwdm0/0/0/16 +1.3.6.1.2.1.31.1.1.1.1.28|4|dwdm0/0/0/17 +1.3.6.1.2.1.31.1.1.1.1.29|4|dwdm0/0/0/18 +1.3.6.1.2.1.31.1.1.1.1.30|4|dwdm0/0/0/19 +1.3.6.1.2.1.31.1.1.1.1.31|4|TenGigE0/0/0/0 +1.3.6.1.2.1.31.1.1.1.1.32|4|TenGigE0/0/0/1 +1.3.6.1.2.1.31.1.1.1.1.33|4|TenGigE0/0/0/2 +1.3.6.1.2.1.31.1.1.1.1.34|4|TenGigE0/0/0/3 +1.3.6.1.2.1.31.1.1.1.1.35|4|TenGigE0/0/0/4 +1.3.6.1.2.1.31.1.1.1.1.36|4|TenGigE0/0/0/5 +1.3.6.1.2.1.31.1.1.1.1.37|4|TenGigE0/0/0/6 +1.3.6.1.2.1.31.1.1.1.1.38|4|TenGigE0/0/0/7 +1.3.6.1.2.1.31.1.1.1.1.39|4|TenGigE0/0/0/8 +1.3.6.1.2.1.31.1.1.1.1.40|4|TenGigE0/0/0/9 +1.3.6.1.2.1.31.1.1.1.1.41|4|TenGigE0/0/0/10 +1.3.6.1.2.1.31.1.1.1.1.42|4|TenGigE0/0/0/11 +1.3.6.1.2.1.31.1.1.1.1.43|4|TenGigE0/0/0/12 +1.3.6.1.2.1.31.1.1.1.1.44|4|TenGigE0/0/0/13 +1.3.6.1.2.1.31.1.1.1.1.45|4|TenGigE0/0/0/14 +1.3.6.1.2.1.31.1.1.1.1.46|4|TenGigE0/0/0/15 +1.3.6.1.2.1.31.1.1.1.1.47|4|TenGigE0/0/0/16 +1.3.6.1.2.1.31.1.1.1.1.48|4|TenGigE0/0/0/17 +1.3.6.1.2.1.31.1.1.1.1.49|4|TenGigE0/0/0/18 +1.3.6.1.2.1.31.1.1.1.1.50|4|TenGigE0/0/0/19 +1.3.6.1.2.1.31.1.1.1.1.71|4|Loopback0 +1.3.6.1.2.1.31.1.1.1.1.72|4|Bundle-Ether6 +1.3.6.1.2.1.31.1.1.1.1.73|4|Bundle-Ether80 +1.3.6.1.2.1.31.1.1.1.1.75|4|Bundle-Ether6.1604 +1.3.6.1.2.1.31.1.1.1.1.76|4|Bundle-Ether6.1605 +1.3.6.1.2.1.31.1.1.1.1.77|4|Bundle-Ether6.1520 +1.3.6.1.2.1.31.1.1.1.1.79|4|Bundle-Ether6.1514 +1.3.6.1.2.1.31.1.1.1.1.81|4|Bundle-Ether6.1609 +1.3.6.1.2.1.31.1.1.1.1.82|4|Bundle-Ether80.1589 +1.3.6.1.2.1.31.1.1.1.1.83|4|Bundle-Ether6.1512 +1.3.6.1.2.1.31.1.1.1.1.84|4|Bundle-Ether6.100 +1.3.6.1.2.1.31.1.1.1.1.85|4|Bundle-Ether80.4061 +1.3.6.1.2.1.31.1.1.1.1.87|4|Bundle-Ether80.1582 +1.3.6.1.2.1.31.1.1.1.1.88|4|Bundle-Ether6.1515 +1.3.6.1.2.1.31.1.1.1.1.89|4|Bundle-Ether80.4050 +1.3.6.1.2.1.31.1.1.1.1.91|4|Bundle-Ether80.4008 +1.3.6.1.2.1.31.1.1.1.1.92|4|Bundle-Ether80.4002 +1.3.6.1.2.1.31.1.1.1.1.93|4|Bundle-Ether80.4006 +1.3.6.1.2.1.31.1.1.1.1.94|4|Bundle-Ether80.4000 +1.3.6.1.2.1.31.1.1.1.1.95|4|Bundle-Ether80.4081 +1.3.6.1.2.1.31.1.1.1.1.96|4|Bundle-Ether1 +1.3.6.1.2.1.31.1.1.1.1.97|4|Bundle-Ether80.4058 +1.3.6.1.2.1.31.1.1.1.1.98|4|Bundle-Ether80.4041 +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|7648 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.31|65|4613549 +1.3.6.1.2.1.31.1.1.1.2.32|65|2775972 +1.3.6.1.2.1.31.1.1.1.2.33|65|3693081 +1.3.6.1.2.1.31.1.1.1.2.34|65|3293277 +1.3.6.1.2.1.31.1.1.1.2.35|65|2081376 +1.3.6.1.2.1.31.1.1.1.2.36|65|24946 +1.3.6.1.2.1.31.1.1.1.2.37|65|25062 +1.3.6.1.2.1.31.1.1.1.2.38|65|24973 +1.3.6.1.2.1.31.1.1.1.2.39|65|2865 +1.3.6.1.2.1.31.1.1.1.2.40|65|1101369 +1.3.6.1.2.1.31.1.1.1.2.41|65|72925 +1.3.6.1.2.1.31.1.1.1.2.42|65|0 +1.3.6.1.2.1.31.1.1.1.2.43|65|0 +1.3.6.1.2.1.31.1.1.1.2.44|65|0 +1.3.6.1.2.1.31.1.1.1.2.45|65|0 +1.3.6.1.2.1.31.1.1.1.2.46|65|0 +1.3.6.1.2.1.31.1.1.1.2.47|65|0 +1.3.6.1.2.1.31.1.1.1.2.48|65|0 +1.3.6.1.2.1.31.1.1.1.2.49|65|17732 +1.3.6.1.2.1.31.1.1.1.2.50|65|14946 +1.3.6.1.2.1.31.1.1.1.2.72|65|14375879 +1.3.6.1.2.1.31.1.1.1.2.73|65|2156357 +1.3.6.1.2.1.31.1.1.1.2.75|65|228519 +1.3.6.1.2.1.31.1.1.1.2.76|65|231063 +1.3.6.1.2.1.31.1.1.1.2.77|65|231050 +1.3.6.1.2.1.31.1.1.1.2.79|65|8050235 +1.3.6.1.2.1.31.1.1.1.2.81|65|232644 +1.3.6.1.2.1.31.1.1.1.2.82|65|1 +1.3.6.1.2.1.31.1.1.1.2.83|65|229273 +1.3.6.1.2.1.31.1.1.1.2.84|65|4327246 +1.3.6.1.2.1.31.1.1.1.2.85|65|228674 +1.3.6.1.2.1.31.1.1.1.2.87|65|0 +1.3.6.1.2.1.31.1.1.1.2.88|65|228517 +1.3.6.1.2.1.31.1.1.1.2.89|65|228465 +1.3.6.1.2.1.31.1.1.1.2.91|65|228512 +1.3.6.1.2.1.31.1.1.1.2.92|65|228466 +1.3.6.1.2.1.31.1.1.1.2.93|65|228519 +1.3.6.1.2.1.31.1.1.1.2.94|65|228473 +1.3.6.1.2.1.31.1.1.1.2.95|65|228479 +1.3.6.1.2.1.31.1.1.1.2.96|65|32678 +1.3.6.1.2.1.31.1.1.1.2.97|65|228465 +1.3.6.1.2.1.31.1.1.1.2.98|65|228512 +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|14338 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.31|65|3143380 +1.3.6.1.2.1.31.1.1.1.3.32|65|3903744 +1.3.6.1.2.1.31.1.1.1.3.33|65|5999146 +1.3.6.1.2.1.31.1.1.1.3.34|65|7998502 +1.3.6.1.2.1.31.1.1.1.3.35|65|216 +1.3.6.1.2.1.31.1.1.1.3.36|65|4 +1.3.6.1.2.1.31.1.1.1.3.37|65|1 +1.3.6.1.2.1.31.1.1.1.3.38|65|7679 +1.3.6.1.2.1.31.1.1.1.3.39|65|1 +1.3.6.1.2.1.31.1.1.1.3.40|65|663761 +1.3.6.1.2.1.31.1.1.1.3.41|65|3 +1.3.6.1.2.1.31.1.1.1.3.42|65|0 +1.3.6.1.2.1.31.1.1.1.3.43|65|0 +1.3.6.1.2.1.31.1.1.1.3.44|65|0 +1.3.6.1.2.1.31.1.1.1.3.45|65|0 +1.3.6.1.2.1.31.1.1.1.3.46|65|0 +1.3.6.1.2.1.31.1.1.1.3.47|65|0 +1.3.6.1.2.1.31.1.1.1.3.48|65|0 +1.3.6.1.2.1.31.1.1.1.3.49|65|0 +1.3.6.1.2.1.31.1.1.1.3.50|65|1 +1.3.6.1.2.1.31.1.1.1.3.72|65|21044771 +1.3.6.1.2.1.31.1.1.1.3.73|65|7900 +1.3.6.1.2.1.31.1.1.1.3.75|65|0 +1.3.6.1.2.1.31.1.1.1.3.76|65|0 +1.3.6.1.2.1.31.1.1.1.3.77|65|4 +1.3.6.1.2.1.31.1.1.1.3.79|65|7508068 +1.3.6.1.2.1.31.1.1.1.3.81|65|117747 +1.3.6.1.2.1.31.1.1.1.3.82|65|7619 +1.3.6.1.2.1.31.1.1.1.3.83|65|0 +1.3.6.1.2.1.31.1.1.1.3.84|65|13418750 +1.3.6.1.2.1.31.1.1.1.3.85|65|273 +1.3.6.1.2.1.31.1.1.1.3.87|65|0 +1.3.6.1.2.1.31.1.1.1.3.88|65|0 +1.3.6.1.2.1.31.1.1.1.3.89|65|0 +1.3.6.1.2.1.31.1.1.1.3.91|65|0 +1.3.6.1.2.1.31.1.1.1.3.92|65|0 +1.3.6.1.2.1.31.1.1.1.3.93|65|1 +1.3.6.1.2.1.31.1.1.1.3.94|65|4 +1.3.6.1.2.1.31.1.1.1.3.95|65|3 +1.3.6.1.2.1.31.1.1.1.3.96|65|1 +1.3.6.1.2.1.31.1.1.1.3.97|65|0 +1.3.6.1.2.1.31.1.1.1.3.98|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.31|65|14949 +1.3.6.1.2.1.31.1.1.1.4.32|65|30803 +1.3.6.1.2.1.31.1.1.1.4.33|65|14950 +1.3.6.1.2.1.31.1.1.1.4.34|65|14950 +1.3.6.1.2.1.31.1.1.1.4.35|65|17506 +1.3.6.1.2.1.31.1.1.1.4.36|65|14946 +1.3.6.1.2.1.31.1.1.1.4.37|65|14947 +1.3.6.1.2.1.31.1.1.1.4.38|65|14947 +1.3.6.1.2.1.31.1.1.1.4.39|65|8 +1.3.6.1.2.1.31.1.1.1.4.40|65|4386 +1.3.6.1.2.1.31.1.1.1.4.41|65|8 +1.3.6.1.2.1.31.1.1.1.4.42|65|0 +1.3.6.1.2.1.31.1.1.1.4.43|65|0 +1.3.6.1.2.1.31.1.1.1.4.44|65|0 +1.3.6.1.2.1.31.1.1.1.4.45|65|0 +1.3.6.1.2.1.31.1.1.1.4.46|65|0 +1.3.6.1.2.1.31.1.1.1.4.47|65|0 +1.3.6.1.2.1.31.1.1.1.4.48|65|0 +1.3.6.1.2.1.31.1.1.1.4.49|65|17496 +1.3.6.1.2.1.31.1.1.1.4.50|65|14945 +1.3.6.1.2.1.31.1.1.1.4.72|65|75652 +1.3.6.1.2.1.31.1.1.1.4.73|65|62346 +1.3.6.1.2.1.31.1.1.1.4.75|65|2554 +1.3.6.1.2.1.31.1.1.1.4.76|65|2545 +1.3.6.1.2.1.31.1.1.1.4.77|65|11 +1.3.6.1.2.1.31.1.1.1.4.79|65|4889 +1.3.6.1.2.1.31.1.1.1.4.81|65|2799 +1.3.6.1.2.1.31.1.1.1.4.82|65|7 +1.3.6.1.2.1.31.1.1.1.4.83|65|0 +1.3.6.1.2.1.31.1.1.1.4.84|65|2803 +1.3.6.1.2.1.31.1.1.1.4.85|65|0 +1.3.6.1.2.1.31.1.1.1.4.87|65|0 +1.3.6.1.2.1.31.1.1.1.4.88|65|251 +1.3.6.1.2.1.31.1.1.1.4.89|65|0 +1.3.6.1.2.1.31.1.1.1.4.91|65|0 +1.3.6.1.2.1.31.1.1.1.4.92|65|0 +1.3.6.1.2.1.31.1.1.1.4.93|65|0 +1.3.6.1.2.1.31.1.1.1.4.94|65|0 +1.3.6.1.2.1.31.1.1.1.4.95|65|2553 +1.3.6.1.2.1.31.1.1.1.4.96|65|32441 +1.3.6.1.2.1.31.1.1.1.4.97|65|0 +1.3.6.1.2.1.31.1.1.1.4.98|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|2 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.31|65|5610793 +1.3.6.1.2.1.31.1.1.1.5.32|65|30 +1.3.6.1.2.1.31.1.1.1.5.33|65|9 +1.3.6.1.2.1.31.1.1.1.5.34|65|0 +1.3.6.1.2.1.31.1.1.1.5.35|65|2325692 +1.3.6.1.2.1.31.1.1.1.5.36|65|0 +1.3.6.1.2.1.31.1.1.1.5.37|65|35 +1.3.6.1.2.1.31.1.1.1.5.38|65|0 +1.3.6.1.2.1.31.1.1.1.5.39|65|1 +1.3.6.1.2.1.31.1.1.1.5.40|65|57 +1.3.6.1.2.1.31.1.1.1.5.41|65|1 +1.3.6.1.2.1.31.1.1.1.5.42|65|0 +1.3.6.1.2.1.31.1.1.1.5.43|65|0 +1.3.6.1.2.1.31.1.1.1.5.44|65|0 +1.3.6.1.2.1.31.1.1.1.5.45|65|0 +1.3.6.1.2.1.31.1.1.1.5.46|65|0 +1.3.6.1.2.1.31.1.1.1.5.47|65|0 +1.3.6.1.2.1.31.1.1.1.5.48|65|0 +1.3.6.1.2.1.31.1.1.1.5.49|65|1 +1.3.6.1.2.1.31.1.1.1.5.50|65|0 +1.3.6.1.2.1.31.1.1.1.5.72|65|5610832 +1.3.6.1.2.1.31.1.1.1.5.73|65|2325727 +1.3.6.1.2.1.31.1.1.1.5.75|65|12 +1.3.6.1.2.1.31.1.1.1.5.76|65|2 +1.3.6.1.2.1.31.1.1.1.5.77|65|12 +1.3.6.1.2.1.31.1.1.1.5.79|65|130 +1.3.6.1.2.1.31.1.1.1.5.81|65|4797046 +1.3.6.1.2.1.31.1.1.1.5.82|65|10 +1.3.6.1.2.1.31.1.1.1.5.83|65|18 +1.3.6.1.2.1.31.1.1.1.5.84|65|813540 +1.3.6.1.2.1.31.1.1.1.5.85|65|745155 +1.3.6.1.2.1.31.1.1.1.5.87|65|4 +1.3.6.1.2.1.31.1.1.1.5.88|65|22 +1.3.6.1.2.1.31.1.1.1.5.89|65|1164711 +1.3.6.1.2.1.31.1.1.1.5.91|65|10 +1.3.6.1.2.1.31.1.1.1.5.92|65|11 +1.3.6.1.2.1.31.1.1.1.5.93|65|5 +1.3.6.1.2.1.31.1.1.1.5.94|65|4 +1.3.6.1.2.1.31.1.1.1.5.95|65|11 +1.3.6.1.2.1.31.1.1.1.5.96|65|1 +1.3.6.1.2.1.31.1.1.1.5.97|65|415786 +1.3.6.1.2.1.31.1.1.1.5.98|65|2 +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|346353683 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.31|70|95043347853284 +1.3.6.1.2.1.31.1.1.1.6.32|70|90974555038536 +1.3.6.1.2.1.31.1.1.1.6.33|70|93486910934452 +1.3.6.1.2.1.31.1.1.1.6.34|70|93730325483728 +1.3.6.1.2.1.31.1.1.1.6.35|70|24453658086096 +1.3.6.1.2.1.31.1.1.1.6.36|70|25349546980792 +1.3.6.1.2.1.31.1.1.1.6.37|70|19798739450466 +1.3.6.1.2.1.31.1.1.1.6.38|70|19068638953876 +1.3.6.1.2.1.31.1.1.1.6.39|70|88990996772388 +1.3.6.1.2.1.31.1.1.1.6.40|70|166125117216462 +1.3.6.1.2.1.31.1.1.1.6.41|70|12932738 +1.3.6.1.2.1.31.1.1.1.6.42|70|0 +1.3.6.1.2.1.31.1.1.1.6.43|70|0 +1.3.6.1.2.1.31.1.1.1.6.44|70|0 +1.3.6.1.2.1.31.1.1.1.6.45|70|0 +1.3.6.1.2.1.31.1.1.1.6.46|70|0 +1.3.6.1.2.1.31.1.1.1.6.47|70|16 +1.3.6.1.2.1.31.1.1.1.6.48|70|0 +1.3.6.1.2.1.31.1.1.1.6.49|70|62821232515745 +1.3.6.1.2.1.31.1.1.1.6.50|70|63173246911905 +1.3.6.1.2.1.31.1.1.1.6.72|70|373235126099357 +1.3.6.1.2.1.31.1.1.1.6.73|70|88670581158116 +1.3.6.1.2.1.31.1.1.1.6.75|70|85580174165558 +1.3.6.1.2.1.31.1.1.1.6.76|70|18470216 +1.3.6.1.2.1.31.1.1.1.6.77|70|36468225 +1.3.6.1.2.1.31.1.1.1.6.79|70|105025309697448 +1.3.6.1.2.1.31.1.1.1.6.81|70|328166476177 +1.3.6.1.2.1.31.1.1.1.6.82|70|569814541076 +1.3.6.1.2.1.31.1.1.1.6.83|70|2905696282589 +1.3.6.1.2.1.31.1.1.1.6.84|70|176191141136001 +1.3.6.1.2.1.31.1.1.1.6.85|70|223804400 +1.3.6.1.2.1.31.1.1.1.6.87|70|11161949893 +1.3.6.1.2.1.31.1.1.1.6.88|70|3199609566196 +1.3.6.1.2.1.31.1.1.1.6.89|70|3942275614925 +1.3.6.1.2.1.31.1.1.1.6.91|70|373523871 +1.3.6.1.2.1.31.1.1.1.6.92|70|14026557939374 +1.3.6.1.2.1.31.1.1.1.6.93|70|17620856 +1.3.6.1.2.1.31.1.1.1.6.94|70|29962347637060 +1.3.6.1.2.1.31.1.1.1.6.95|70|39821544995327 +1.3.6.1.2.1.31.1.1.1.6.96|70|125994489363549 +1.3.6.1.2.1.31.1.1.1.6.97|70|22507808807 +1.3.6.1.2.1.31.1.1.1.6.98|70|315482991245 +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|1978247 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.31|70|71827927168 +1.3.6.1.2.1.31.1.1.1.7.32|70|68967630657 +1.3.6.1.2.1.31.1.1.1.7.33|70|71118375865 +1.3.6.1.2.1.31.1.1.1.7.34|70|71135828975 +1.3.6.1.2.1.31.1.1.1.7.35|70|92883766789 +1.3.6.1.2.1.31.1.1.1.7.36|70|91587724195 +1.3.6.1.2.1.31.1.1.1.7.37|70|56375495259 +1.3.6.1.2.1.31.1.1.1.7.38|70|52430326529 +1.3.6.1.2.1.31.1.1.1.7.39|70|95363784234 +1.3.6.1.2.1.31.1.1.1.7.40|70|149542153692 +1.3.6.1.2.1.31.1.1.1.7.41|70|36593 +1.3.6.1.2.1.31.1.1.1.7.42|70|0 +1.3.6.1.2.1.31.1.1.1.7.43|70|0 +1.3.6.1.2.1.31.1.1.1.7.44|70|0 +1.3.6.1.2.1.31.1.1.1.7.45|70|0 +1.3.6.1.2.1.31.1.1.1.7.46|70|0 +1.3.6.1.2.1.31.1.1.1.7.47|70|0 +1.3.6.1.2.1.31.1.1.1.7.48|70|0 +1.3.6.1.2.1.31.1.1.1.7.49|70|61022176077 +1.3.6.1.2.1.31.1.1.1.7.50|70|61320679170 +1.3.6.1.2.1.31.1.1.1.7.72|70|283049752582 +1.3.6.1.2.1.31.1.1.1.7.73|70|293277304152 +1.3.6.1.2.1.31.1.1.1.7.75|70|60474172490 +1.3.6.1.2.1.31.1.1.1.7.76|70|15560 +1.3.6.1.2.1.31.1.1.1.7.77|70|71286 +1.3.6.1.2.1.31.1.1.1.7.79|70|81862058904 +1.3.6.1.2.1.31.1.1.1.7.81|70|240419923 +1.3.6.1.2.1.31.1.1.1.7.82|70|879311403 +1.3.6.1.2.1.31.1.1.1.7.83|70|7702303750 +1.3.6.1.2.1.31.1.1.1.7.84|70|127047225211 +1.3.6.1.2.1.31.1.1.1.7.85|70|2779622 +1.3.6.1.2.1.31.1.1.1.7.87|70|53339696 +1.3.6.1.2.1.31.1.1.1.7.88|70|5719736705 +1.3.6.1.2.1.31.1.1.1.7.89|70|20248739735 +1.3.6.1.2.1.31.1.1.1.7.91|70|1691247 +1.3.6.1.2.1.31.1.1.1.7.92|70|78354320477 +1.3.6.1.2.1.31.1.1.1.7.93|70|16006 +1.3.6.1.2.1.31.1.1.1.7.94|70|92574764730 +1.3.6.1.2.1.31.1.1.1.7.95|70|100834237799 +1.3.6.1.2.1.31.1.1.1.7.96|70|122342864874 +1.3.6.1.2.1.31.1.1.1.7.97|70|104124061 +1.3.6.1.2.1.31.1.1.1.7.98|70|228862198 +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|7648 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.31|70|4613549 +1.3.6.1.2.1.31.1.1.1.8.32|70|2775972 +1.3.6.1.2.1.31.1.1.1.8.33|70|3693081 +1.3.6.1.2.1.31.1.1.1.8.34|70|3293277 +1.3.6.1.2.1.31.1.1.1.8.35|70|2081376 +1.3.6.1.2.1.31.1.1.1.8.36|70|24946 +1.3.6.1.2.1.31.1.1.1.8.37|70|25062 +1.3.6.1.2.1.31.1.1.1.8.38|70|24973 +1.3.6.1.2.1.31.1.1.1.8.39|70|2865 +1.3.6.1.2.1.31.1.1.1.8.40|70|1101369 +1.3.6.1.2.1.31.1.1.1.8.41|70|72925 +1.3.6.1.2.1.31.1.1.1.8.42|70|0 +1.3.6.1.2.1.31.1.1.1.8.43|70|0 +1.3.6.1.2.1.31.1.1.1.8.44|70|0 +1.3.6.1.2.1.31.1.1.1.8.45|70|0 +1.3.6.1.2.1.31.1.1.1.8.46|70|0 +1.3.6.1.2.1.31.1.1.1.8.47|70|0 +1.3.6.1.2.1.31.1.1.1.8.48|70|0 +1.3.6.1.2.1.31.1.1.1.8.49|70|17732 +1.3.6.1.2.1.31.1.1.1.8.50|70|14946 +1.3.6.1.2.1.31.1.1.1.8.72|70|14375879 +1.3.6.1.2.1.31.1.1.1.8.73|70|2156357 +1.3.6.1.2.1.31.1.1.1.8.75|70|228519 +1.3.6.1.2.1.31.1.1.1.8.76|70|231063 +1.3.6.1.2.1.31.1.1.1.8.77|70|231050 +1.3.6.1.2.1.31.1.1.1.8.79|70|8050235 +1.3.6.1.2.1.31.1.1.1.8.81|70|232644 +1.3.6.1.2.1.31.1.1.1.8.82|70|1 +1.3.6.1.2.1.31.1.1.1.8.83|70|229273 +1.3.6.1.2.1.31.1.1.1.8.84|70|4327246 +1.3.6.1.2.1.31.1.1.1.8.85|70|228674 +1.3.6.1.2.1.31.1.1.1.8.87|70|0 +1.3.6.1.2.1.31.1.1.1.8.88|70|228517 +1.3.6.1.2.1.31.1.1.1.8.89|70|228465 +1.3.6.1.2.1.31.1.1.1.8.91|70|228512 +1.3.6.1.2.1.31.1.1.1.8.92|70|228466 +1.3.6.1.2.1.31.1.1.1.8.93|70|228519 +1.3.6.1.2.1.31.1.1.1.8.94|70|228473 +1.3.6.1.2.1.31.1.1.1.8.95|70|228479 +1.3.6.1.2.1.31.1.1.1.8.96|70|32678 +1.3.6.1.2.1.31.1.1.1.8.97|70|228465 +1.3.6.1.2.1.31.1.1.1.8.98|70|228512 +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|14338 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.31|70|3143380 +1.3.6.1.2.1.31.1.1.1.9.32|70|3903744 +1.3.6.1.2.1.31.1.1.1.9.33|70|5999146 +1.3.6.1.2.1.31.1.1.1.9.34|70|7998502 +1.3.6.1.2.1.31.1.1.1.9.35|70|216 +1.3.6.1.2.1.31.1.1.1.9.36|70|4 +1.3.6.1.2.1.31.1.1.1.9.37|70|1 +1.3.6.1.2.1.31.1.1.1.9.38|70|7679 +1.3.6.1.2.1.31.1.1.1.9.39|70|1 +1.3.6.1.2.1.31.1.1.1.9.40|70|663761 +1.3.6.1.2.1.31.1.1.1.9.41|70|3 +1.3.6.1.2.1.31.1.1.1.9.42|70|0 +1.3.6.1.2.1.31.1.1.1.9.43|70|0 +1.3.6.1.2.1.31.1.1.1.9.44|70|0 +1.3.6.1.2.1.31.1.1.1.9.45|70|0 +1.3.6.1.2.1.31.1.1.1.9.46|70|0 +1.3.6.1.2.1.31.1.1.1.9.47|70|0 +1.3.6.1.2.1.31.1.1.1.9.48|70|0 +1.3.6.1.2.1.31.1.1.1.9.49|70|0 +1.3.6.1.2.1.31.1.1.1.9.50|70|1 +1.3.6.1.2.1.31.1.1.1.9.72|70|21044771 +1.3.6.1.2.1.31.1.1.1.9.73|70|7900 +1.3.6.1.2.1.31.1.1.1.9.75|70|0 +1.3.6.1.2.1.31.1.1.1.9.76|70|0 +1.3.6.1.2.1.31.1.1.1.9.77|70|4 +1.3.6.1.2.1.31.1.1.1.9.79|70|7508068 +1.3.6.1.2.1.31.1.1.1.9.81|70|117747 +1.3.6.1.2.1.31.1.1.1.9.82|70|7619 +1.3.6.1.2.1.31.1.1.1.9.83|70|0 +1.3.6.1.2.1.31.1.1.1.9.84|70|13418750 +1.3.6.1.2.1.31.1.1.1.9.85|70|273 +1.3.6.1.2.1.31.1.1.1.9.87|70|0 +1.3.6.1.2.1.31.1.1.1.9.88|70|0 +1.3.6.1.2.1.31.1.1.1.9.89|70|0 +1.3.6.1.2.1.31.1.1.1.9.91|70|0 +1.3.6.1.2.1.31.1.1.1.9.92|70|0 +1.3.6.1.2.1.31.1.1.1.9.93|70|1 +1.3.6.1.2.1.31.1.1.1.9.94|70|4 +1.3.6.1.2.1.31.1.1.1.9.95|70|3 +1.3.6.1.2.1.31.1.1.1.9.96|70|1 +1.3.6.1.2.1.31.1.1.1.9.97|70|0 +1.3.6.1.2.1.31.1.1.1.9.98|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|30019173369 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.31|70|14221874167468 +1.3.6.1.2.1.31.1.1.1.10.32|70|13673044722804 +1.3.6.1.2.1.31.1.1.1.10.33|70|13978464699963 +1.3.6.1.2.1.31.1.1.1.10.34|70|13973028193697 +1.3.6.1.2.1.31.1.1.1.10.35|70|165337582616632 +1.3.6.1.2.1.31.1.1.1.10.36|70|165598479904346 +1.3.6.1.2.1.31.1.1.1.10.37|70|171138685632412 +1.3.6.1.2.1.31.1.1.1.10.38|70|163867546924491 +1.3.6.1.2.1.31.1.1.1.10.39|70|10362203067751 +1.3.6.1.2.1.31.1.1.1.10.40|70|40130907955013 +1.3.6.1.2.1.31.1.1.1.10.41|70|495823669468 +1.3.6.1.2.1.31.1.1.1.10.42|70|0 +1.3.6.1.2.1.31.1.1.1.10.43|70|0 +1.3.6.1.2.1.31.1.1.1.10.44|70|0 +1.3.6.1.2.1.31.1.1.1.10.45|70|0 +1.3.6.1.2.1.31.1.1.1.10.46|70|0 +1.3.6.1.2.1.31.1.1.1.10.47|70|0 +1.3.6.1.2.1.31.1.1.1.10.48|70|0 +1.3.6.1.2.1.31.1.1.1.10.49|70|34893579350908 +1.3.6.1.2.1.31.1.1.1.10.50|70|35758301695041 +1.3.6.1.2.1.31.1.1.1.10.72|70|55846409910240 +1.3.6.1.2.1.31.1.1.1.10.73|70|665942271840674 +1.3.6.1.2.1.31.1.1.1.10.75|70|4741647719904 +1.3.6.1.2.1.31.1.1.1.10.76|70|1591474 +1.3.6.1.2.1.31.1.1.1.10.77|70|44519537 +1.3.6.1.2.1.31.1.1.1.10.79|70|5121831930927 +1.3.6.1.2.1.31.1.1.1.10.81|70|15208658114 +1.3.6.1.2.1.31.1.1.1.10.82|70|88676900370 +1.3.6.1.2.1.31.1.1.1.10.83|70|4621939127242 +1.3.6.1.2.1.31.1.1.1.10.84|70|37230266707271 +1.3.6.1.2.1.31.1.1.1.10.85|70|298504198 +1.3.6.1.2.1.31.1.1.1.10.87|70|1018328831885 +1.3.6.1.2.1.31.1.1.1.10.88|70|4114638501227 +1.3.6.1.2.1.31.1.1.1.10.89|70|58132034389150 +1.3.6.1.2.1.31.1.1.1.10.91|70|57534184 +1.3.6.1.2.1.31.1.1.1.10.92|70|165112768734194 +1.3.6.1.2.1.31.1.1.1.10.93|70|113637293889668 +1.3.6.1.2.1.31.1.1.1.10.94|70|144764146125739 +1.3.6.1.2.1.31.1.1.1.10.95|70|182865062545897 +1.3.6.1.2.1.31.1.1.1.10.96|70|70651886152141 +1.3.6.1.2.1.31.1.1.1.10.97|70|315634630545 +1.3.6.1.2.1.31.1.1.1.10.98|70|22347058998 +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|23219389 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.31|70|25644162161 +1.3.6.1.2.1.31.1.1.1.11.32|70|25426660187 +1.3.6.1.2.1.31.1.1.1.11.33|70|25338074906 +1.3.6.1.2.1.31.1.1.1.11.34|70|25576207560 +1.3.6.1.2.1.31.1.1.1.11.35|70|137482702730 +1.3.6.1.2.1.31.1.1.1.11.36|70|137997062721 +1.3.6.1.2.1.31.1.1.1.11.37|70|149024592916 +1.3.6.1.2.1.31.1.1.1.11.38|70|135923014337 +1.3.6.1.2.1.31.1.1.1.11.39|70|36702145988 +1.3.6.1.2.1.31.1.1.1.11.40|70|78303132656 +1.3.6.1.2.1.31.1.1.1.11.41|70|1683804479 +1.3.6.1.2.1.31.1.1.1.11.42|70|0 +1.3.6.1.2.1.31.1.1.1.11.43|70|0 +1.3.6.1.2.1.31.1.1.1.11.44|70|0 +1.3.6.1.2.1.31.1.1.1.11.45|70|0 +1.3.6.1.2.1.31.1.1.1.11.46|70|0 +1.3.6.1.2.1.31.1.1.1.11.47|70|0 +1.3.6.1.2.1.31.1.1.1.11.48|70|0 +1.3.6.1.2.1.31.1.1.1.11.49|70|81964301357 +1.3.6.1.2.1.31.1.1.1.11.50|70|81863341846 +1.3.6.1.2.1.31.1.1.1.11.72|70|101985101254 +1.3.6.1.2.1.31.1.1.1.11.73|70|560427353772 +1.3.6.1.2.1.31.1.1.1.11.75|70|14662012644 +1.3.6.1.2.1.31.1.1.1.11.76|70|17996 +1.3.6.1.2.1.31.1.1.1.11.77|70|115047 +1.3.6.1.2.1.31.1.1.1.11.79|70|18394934391 +1.3.6.1.2.1.31.1.1.1.11.81|70|124095909 +1.3.6.1.2.1.31.1.1.1.11.82|70|765967192 +1.3.6.1.2.1.31.1.1.1.11.83|70|4027615295 +1.3.6.1.2.1.31.1.1.1.11.84|70|60738649231 +1.3.6.1.2.1.31.1.1.1.11.85|70|2935786 +1.3.6.1.2.1.31.1.1.1.11.87|70|1197477846 +1.3.6.1.2.1.31.1.1.1.11.88|70|4036010654 +1.3.6.1.2.1.31.1.1.1.11.89|70|45272992377 +1.3.6.1.2.1.31.1.1.1.11.91|70|772949 +1.3.6.1.2.1.31.1.1.1.11.92|70|136524550544 +1.3.6.1.2.1.31.1.1.1.11.93|70|85458959756 +1.3.6.1.2.1.31.1.1.1.11.94|70|115952482717 +1.3.6.1.2.1.31.1.1.1.11.95|70|174930062958 +1.3.6.1.2.1.31.1.1.1.11.96|70|163827655031 +1.3.6.1.2.1.31.1.1.1.11.97|70|230852801 +1.3.6.1.2.1.31.1.1.1.11.98|70|102174062 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.31|70|14949 +1.3.6.1.2.1.31.1.1.1.12.32|70|30803 +1.3.6.1.2.1.31.1.1.1.12.33|70|14950 +1.3.6.1.2.1.31.1.1.1.12.34|70|14950 +1.3.6.1.2.1.31.1.1.1.12.35|70|17506 +1.3.6.1.2.1.31.1.1.1.12.36|70|14946 +1.3.6.1.2.1.31.1.1.1.12.37|70|14947 +1.3.6.1.2.1.31.1.1.1.12.38|70|14947 +1.3.6.1.2.1.31.1.1.1.12.39|70|8 +1.3.6.1.2.1.31.1.1.1.12.40|70|4386 +1.3.6.1.2.1.31.1.1.1.12.41|70|8 +1.3.6.1.2.1.31.1.1.1.12.42|70|0 +1.3.6.1.2.1.31.1.1.1.12.43|70|0 +1.3.6.1.2.1.31.1.1.1.12.44|70|0 +1.3.6.1.2.1.31.1.1.1.12.45|70|0 +1.3.6.1.2.1.31.1.1.1.12.46|70|0 +1.3.6.1.2.1.31.1.1.1.12.47|70|0 +1.3.6.1.2.1.31.1.1.1.12.48|70|0 +1.3.6.1.2.1.31.1.1.1.12.49|70|17496 +1.3.6.1.2.1.31.1.1.1.12.50|70|14945 +1.3.6.1.2.1.31.1.1.1.12.72|70|75652 +1.3.6.1.2.1.31.1.1.1.12.73|70|62346 +1.3.6.1.2.1.31.1.1.1.12.75|70|2554 +1.3.6.1.2.1.31.1.1.1.12.76|70|2545 +1.3.6.1.2.1.31.1.1.1.12.77|70|11 +1.3.6.1.2.1.31.1.1.1.12.79|70|4889 +1.3.6.1.2.1.31.1.1.1.12.81|70|2799 +1.3.6.1.2.1.31.1.1.1.12.82|70|7 +1.3.6.1.2.1.31.1.1.1.12.83|70|0 +1.3.6.1.2.1.31.1.1.1.12.84|70|2803 +1.3.6.1.2.1.31.1.1.1.12.85|70|0 +1.3.6.1.2.1.31.1.1.1.12.87|70|0 +1.3.6.1.2.1.31.1.1.1.12.88|70|251 +1.3.6.1.2.1.31.1.1.1.12.89|70|0 +1.3.6.1.2.1.31.1.1.1.12.91|70|0 +1.3.6.1.2.1.31.1.1.1.12.92|70|0 +1.3.6.1.2.1.31.1.1.1.12.93|70|0 +1.3.6.1.2.1.31.1.1.1.12.94|70|0 +1.3.6.1.2.1.31.1.1.1.12.95|70|2553 +1.3.6.1.2.1.31.1.1.1.12.96|70|32441 +1.3.6.1.2.1.31.1.1.1.12.97|70|0 +1.3.6.1.2.1.31.1.1.1.12.98|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|2 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.31|70|5610793 +1.3.6.1.2.1.31.1.1.1.13.32|70|30 +1.3.6.1.2.1.31.1.1.1.13.33|70|9 +1.3.6.1.2.1.31.1.1.1.13.34|70|0 +1.3.6.1.2.1.31.1.1.1.13.35|70|2325692 +1.3.6.1.2.1.31.1.1.1.13.36|70|0 +1.3.6.1.2.1.31.1.1.1.13.37|70|35 +1.3.6.1.2.1.31.1.1.1.13.38|70|0 +1.3.6.1.2.1.31.1.1.1.13.39|70|1 +1.3.6.1.2.1.31.1.1.1.13.40|70|57 +1.3.6.1.2.1.31.1.1.1.13.41|70|1 +1.3.6.1.2.1.31.1.1.1.13.42|70|0 +1.3.6.1.2.1.31.1.1.1.13.43|70|0 +1.3.6.1.2.1.31.1.1.1.13.44|70|0 +1.3.6.1.2.1.31.1.1.1.13.45|70|0 +1.3.6.1.2.1.31.1.1.1.13.46|70|0 +1.3.6.1.2.1.31.1.1.1.13.47|70|0 +1.3.6.1.2.1.31.1.1.1.13.48|70|0 +1.3.6.1.2.1.31.1.1.1.13.49|70|1 +1.3.6.1.2.1.31.1.1.1.13.50|70|0 +1.3.6.1.2.1.31.1.1.1.13.72|70|5610832 +1.3.6.1.2.1.31.1.1.1.13.73|70|2325727 +1.3.6.1.2.1.31.1.1.1.13.75|70|12 +1.3.6.1.2.1.31.1.1.1.13.76|70|2 +1.3.6.1.2.1.31.1.1.1.13.77|70|12 +1.3.6.1.2.1.31.1.1.1.13.79|70|130 +1.3.6.1.2.1.31.1.1.1.13.81|70|4797046 +1.3.6.1.2.1.31.1.1.1.13.82|70|10 +1.3.6.1.2.1.31.1.1.1.13.83|70|18 +1.3.6.1.2.1.31.1.1.1.13.84|70|813540 +1.3.6.1.2.1.31.1.1.1.13.85|70|745155 +1.3.6.1.2.1.31.1.1.1.13.87|70|4 +1.3.6.1.2.1.31.1.1.1.13.88|70|22 +1.3.6.1.2.1.31.1.1.1.13.89|70|1164711 +1.3.6.1.2.1.31.1.1.1.13.91|70|10 +1.3.6.1.2.1.31.1.1.1.13.92|70|11 +1.3.6.1.2.1.31.1.1.1.13.93|70|5 +1.3.6.1.2.1.31.1.1.1.13.94|70|4 +1.3.6.1.2.1.31.1.1.1.13.95|70|11 +1.3.6.1.2.1.31.1.1.1.13.96|70|1 +1.3.6.1.2.1.31.1.1.1.13.97|70|415786 +1.3.6.1.2.1.31.1.1.1.13.98|70|2 +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.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.29|2|1 +1.3.6.1.2.1.31.1.1.1.14.30|2|1 +1.3.6.1.2.1.31.1.1.1.14.31|2|1 +1.3.6.1.2.1.31.1.1.1.14.32|2|1 +1.3.6.1.2.1.31.1.1.1.14.33|2|1 +1.3.6.1.2.1.31.1.1.1.14.34|2|1 +1.3.6.1.2.1.31.1.1.1.14.35|2|1 +1.3.6.1.2.1.31.1.1.1.14.36|2|1 +1.3.6.1.2.1.31.1.1.1.14.37|2|1 +1.3.6.1.2.1.31.1.1.1.14.38|2|1 +1.3.6.1.2.1.31.1.1.1.14.39|2|1 +1.3.6.1.2.1.31.1.1.1.14.40|2|1 +1.3.6.1.2.1.31.1.1.1.14.41|2|1 +1.3.6.1.2.1.31.1.1.1.14.42|2|1 +1.3.6.1.2.1.31.1.1.1.14.43|2|1 +1.3.6.1.2.1.31.1.1.1.14.44|2|1 +1.3.6.1.2.1.31.1.1.1.14.45|2|1 +1.3.6.1.2.1.31.1.1.1.14.46|2|1 +1.3.6.1.2.1.31.1.1.1.14.47|2|1 +1.3.6.1.2.1.31.1.1.1.14.48|2|1 +1.3.6.1.2.1.31.1.1.1.14.49|2|1 +1.3.6.1.2.1.31.1.1.1.14.50|2|1 +1.3.6.1.2.1.31.1.1.1.14.71|2|1 +1.3.6.1.2.1.31.1.1.1.14.72|2|1 +1.3.6.1.2.1.31.1.1.1.14.73|2|1 +1.3.6.1.2.1.31.1.1.1.14.75|2|2 +1.3.6.1.2.1.31.1.1.1.14.76|2|2 +1.3.6.1.2.1.31.1.1.1.14.77|2|2 +1.3.6.1.2.1.31.1.1.1.14.79|2|2 +1.3.6.1.2.1.31.1.1.1.14.81|2|2 +1.3.6.1.2.1.31.1.1.1.14.82|2|2 +1.3.6.1.2.1.31.1.1.1.14.83|2|2 +1.3.6.1.2.1.31.1.1.1.14.84|2|2 +1.3.6.1.2.1.31.1.1.1.14.85|2|2 +1.3.6.1.2.1.31.1.1.1.14.87|2|2 +1.3.6.1.2.1.31.1.1.1.14.88|2|2 +1.3.6.1.2.1.31.1.1.1.14.89|2|2 +1.3.6.1.2.1.31.1.1.1.14.91|2|2 +1.3.6.1.2.1.31.1.1.1.14.92|2|2 +1.3.6.1.2.1.31.1.1.1.14.93|2|2 +1.3.6.1.2.1.31.1.1.1.14.94|2|2 +1.3.6.1.2.1.31.1.1.1.14.95|2|2 +1.3.6.1.2.1.31.1.1.1.14.96|2|1 +1.3.6.1.2.1.31.1.1.1.14.97|2|2 +1.3.6.1.2.1.31.1.1.1.14.98|2|2 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|100 +1.3.6.1.2.1.31.1.1.1.15.4|66|1000 +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.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +1.3.6.1.2.1.31.1.1.1.15.13|66|0 +1.3.6.1.2.1.31.1.1.1.15.14|66|0 +1.3.6.1.2.1.31.1.1.1.15.15|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.17|66|0 +1.3.6.1.2.1.31.1.1.1.15.18|66|0 +1.3.6.1.2.1.31.1.1.1.15.19|66|0 +1.3.6.1.2.1.31.1.1.1.15.20|66|0 +1.3.6.1.2.1.31.1.1.1.15.21|66|0 +1.3.6.1.2.1.31.1.1.1.15.22|66|0 +1.3.6.1.2.1.31.1.1.1.15.23|66|0 +1.3.6.1.2.1.31.1.1.1.15.24|66|0 +1.3.6.1.2.1.31.1.1.1.15.25|66|0 +1.3.6.1.2.1.31.1.1.1.15.26|66|0 +1.3.6.1.2.1.31.1.1.1.15.27|66|0 +1.3.6.1.2.1.31.1.1.1.15.28|66|0 +1.3.6.1.2.1.31.1.1.1.15.29|66|0 +1.3.6.1.2.1.31.1.1.1.15.30|66|0 +1.3.6.1.2.1.31.1.1.1.15.31|66|10000 +1.3.6.1.2.1.31.1.1.1.15.32|66|10000 +1.3.6.1.2.1.31.1.1.1.15.33|66|10000 +1.3.6.1.2.1.31.1.1.1.15.34|66|10000 +1.3.6.1.2.1.31.1.1.1.15.35|66|10000 +1.3.6.1.2.1.31.1.1.1.15.36|66|10000 +1.3.6.1.2.1.31.1.1.1.15.37|66|10000 +1.3.6.1.2.1.31.1.1.1.15.38|66|10000 +1.3.6.1.2.1.31.1.1.1.15.39|66|10000 +1.3.6.1.2.1.31.1.1.1.15.40|66|10000 +1.3.6.1.2.1.31.1.1.1.15.41|66|10000 +1.3.6.1.2.1.31.1.1.1.15.42|66|10000 +1.3.6.1.2.1.31.1.1.1.15.43|66|10000 +1.3.6.1.2.1.31.1.1.1.15.44|66|10000 +1.3.6.1.2.1.31.1.1.1.15.45|66|10000 +1.3.6.1.2.1.31.1.1.1.15.46|66|10000 +1.3.6.1.2.1.31.1.1.1.15.47|66|10000 +1.3.6.1.2.1.31.1.1.1.15.48|66|10000 +1.3.6.1.2.1.31.1.1.1.15.49|66|10000 +1.3.6.1.2.1.31.1.1.1.15.50|66|10000 +1.3.6.1.2.1.31.1.1.1.15.71|66|0 +1.3.6.1.2.1.31.1.1.1.15.72|66|40000 +1.3.6.1.2.1.31.1.1.1.15.73|66|40000 +1.3.6.1.2.1.31.1.1.1.15.75|66|40000 +1.3.6.1.2.1.31.1.1.1.15.76|66|40000 +1.3.6.1.2.1.31.1.1.1.15.77|66|40000 +1.3.6.1.2.1.31.1.1.1.15.79|66|40000 +1.3.6.1.2.1.31.1.1.1.15.81|66|40000 +1.3.6.1.2.1.31.1.1.1.15.82|66|40000 +1.3.6.1.2.1.31.1.1.1.15.83|66|40000 +1.3.6.1.2.1.31.1.1.1.15.84|66|40000 +1.3.6.1.2.1.31.1.1.1.15.85|66|40000 +1.3.6.1.2.1.31.1.1.1.15.87|66|50 +1.3.6.1.2.1.31.1.1.1.15.88|66|40000 +1.3.6.1.2.1.31.1.1.1.15.89|66|40000 +1.3.6.1.2.1.31.1.1.1.15.91|66|40000 +1.3.6.1.2.1.31.1.1.1.15.92|66|40000 +1.3.6.1.2.1.31.1.1.1.15.93|66|40000 +1.3.6.1.2.1.31.1.1.1.15.94|66|40000 +1.3.6.1.2.1.31.1.1.1.15.95|66|40000 +1.3.6.1.2.1.31.1.1.1.15.96|66|20000 +1.3.6.1.2.1.31.1.1.1.15.97|66|40000 +1.3.6.1.2.1.31.1.1.1.15.98|66|40000 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.25|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.27|2|2 +1.3.6.1.2.1.31.1.1.1.16.28|2|2 +1.3.6.1.2.1.31.1.1.1.16.29|2|2 +1.3.6.1.2.1.31.1.1.1.16.30|2|2 +1.3.6.1.2.1.31.1.1.1.16.31|2|2 +1.3.6.1.2.1.31.1.1.1.16.32|2|2 +1.3.6.1.2.1.31.1.1.1.16.33|2|2 +1.3.6.1.2.1.31.1.1.1.16.34|2|2 +1.3.6.1.2.1.31.1.1.1.16.35|2|2 +1.3.6.1.2.1.31.1.1.1.16.36|2|2 +1.3.6.1.2.1.31.1.1.1.16.37|2|2 +1.3.6.1.2.1.31.1.1.1.16.38|2|2 +1.3.6.1.2.1.31.1.1.1.16.39|2|2 +1.3.6.1.2.1.31.1.1.1.16.40|2|2 +1.3.6.1.2.1.31.1.1.1.16.41|2|2 +1.3.6.1.2.1.31.1.1.1.16.42|2|2 +1.3.6.1.2.1.31.1.1.1.16.43|2|2 +1.3.6.1.2.1.31.1.1.1.16.44|2|2 +1.3.6.1.2.1.31.1.1.1.16.45|2|2 +1.3.6.1.2.1.31.1.1.1.16.46|2|2 +1.3.6.1.2.1.31.1.1.1.16.47|2|2 +1.3.6.1.2.1.31.1.1.1.16.48|2|2 +1.3.6.1.2.1.31.1.1.1.16.49|2|2 +1.3.6.1.2.1.31.1.1.1.16.50|2|2 +1.3.6.1.2.1.31.1.1.1.16.71|2|2 +1.3.6.1.2.1.31.1.1.1.16.72|2|2 +1.3.6.1.2.1.31.1.1.1.16.73|2|2 +1.3.6.1.2.1.31.1.1.1.16.75|2|2 +1.3.6.1.2.1.31.1.1.1.16.76|2|2 +1.3.6.1.2.1.31.1.1.1.16.77|2|2 +1.3.6.1.2.1.31.1.1.1.16.79|2|2 +1.3.6.1.2.1.31.1.1.1.16.81|2|2 +1.3.6.1.2.1.31.1.1.1.16.82|2|2 +1.3.6.1.2.1.31.1.1.1.16.83|2|2 +1.3.6.1.2.1.31.1.1.1.16.84|2|2 +1.3.6.1.2.1.31.1.1.1.16.85|2|2 +1.3.6.1.2.1.31.1.1.1.16.87|2|2 +1.3.6.1.2.1.31.1.1.1.16.88|2|2 +1.3.6.1.2.1.31.1.1.1.16.89|2|2 +1.3.6.1.2.1.31.1.1.1.16.91|2|2 +1.3.6.1.2.1.31.1.1.1.16.92|2|2 +1.3.6.1.2.1.31.1.1.1.16.93|2|2 +1.3.6.1.2.1.31.1.1.1.16.94|2|2 +1.3.6.1.2.1.31.1.1.1.16.95|2|2 +1.3.6.1.2.1.31.1.1.1.16.96|2|2 +1.3.6.1.2.1.31.1.1.1.16.97|2|2 +1.3.6.1.2.1.31.1.1.1.16.98|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|2 +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.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.29|2|1 +1.3.6.1.2.1.31.1.1.1.17.30|2|1 +1.3.6.1.2.1.31.1.1.1.17.31|2|1 +1.3.6.1.2.1.31.1.1.1.17.32|2|1 +1.3.6.1.2.1.31.1.1.1.17.33|2|1 +1.3.6.1.2.1.31.1.1.1.17.34|2|1 +1.3.6.1.2.1.31.1.1.1.17.35|2|1 +1.3.6.1.2.1.31.1.1.1.17.36|2|1 +1.3.6.1.2.1.31.1.1.1.17.37|2|1 +1.3.6.1.2.1.31.1.1.1.17.38|2|1 +1.3.6.1.2.1.31.1.1.1.17.39|2|1 +1.3.6.1.2.1.31.1.1.1.17.40|2|1 +1.3.6.1.2.1.31.1.1.1.17.41|2|1 +1.3.6.1.2.1.31.1.1.1.17.42|2|1 +1.3.6.1.2.1.31.1.1.1.17.43|2|1 +1.3.6.1.2.1.31.1.1.1.17.44|2|1 +1.3.6.1.2.1.31.1.1.1.17.45|2|1 +1.3.6.1.2.1.31.1.1.1.17.46|2|1 +1.3.6.1.2.1.31.1.1.1.17.47|2|1 +1.3.6.1.2.1.31.1.1.1.17.48|2|1 +1.3.6.1.2.1.31.1.1.1.17.49|2|1 +1.3.6.1.2.1.31.1.1.1.17.50|2|1 +1.3.6.1.2.1.31.1.1.1.17.71|2|2 +1.3.6.1.2.1.31.1.1.1.17.72|2|2 +1.3.6.1.2.1.31.1.1.1.17.73|2|2 +1.3.6.1.2.1.31.1.1.1.17.75|2|2 +1.3.6.1.2.1.31.1.1.1.17.76|2|2 +1.3.6.1.2.1.31.1.1.1.17.77|2|2 +1.3.6.1.2.1.31.1.1.1.17.79|2|2 +1.3.6.1.2.1.31.1.1.1.17.81|2|2 +1.3.6.1.2.1.31.1.1.1.17.82|2|2 +1.3.6.1.2.1.31.1.1.1.17.83|2|2 +1.3.6.1.2.1.31.1.1.1.17.84|2|2 +1.3.6.1.2.1.31.1.1.1.17.85|2|2 +1.3.6.1.2.1.31.1.1.1.17.87|2|2 +1.3.6.1.2.1.31.1.1.1.17.88|2|2 +1.3.6.1.2.1.31.1.1.1.17.89|2|2 +1.3.6.1.2.1.31.1.1.1.17.91|2|2 +1.3.6.1.2.1.31.1.1.1.17.92|2|2 +1.3.6.1.2.1.31.1.1.1.17.93|2|2 +1.3.6.1.2.1.31.1.1.1.17.94|2|2 +1.3.6.1.2.1.31.1.1.1.17.95|2|2 +1.3.6.1.2.1.31.1.1.1.17.96|2|2 +1.3.6.1.2.1.31.1.1.1.17.97|2|2 +1.3.6.1.2.1.31.1.1.1.17.98|2|2 +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.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.29|4| +1.3.6.1.2.1.31.1.1.1.18.30|4| +1.3.6.1.2.1.31.1.1.1.18.31|4| +1.3.6.1.2.1.31.1.1.1.18.32|4| +1.3.6.1.2.1.31.1.1.1.18.33|4| +1.3.6.1.2.1.31.1.1.1.18.34|4| +1.3.6.1.2.1.31.1.1.1.18.35|4| +1.3.6.1.2.1.31.1.1.1.18.36|4| +1.3.6.1.2.1.31.1.1.1.18.37|4| +1.3.6.1.2.1.31.1.1.1.18.38|4| +1.3.6.1.2.1.31.1.1.1.18.39|4| +1.3.6.1.2.1.31.1.1.1.18.40|4| +1.3.6.1.2.1.31.1.1.1.18.41|4| +1.3.6.1.2.1.31.1.1.1.18.42|4| +1.3.6.1.2.1.31.1.1.1.18.43|4| +1.3.6.1.2.1.31.1.1.1.18.44|4| +1.3.6.1.2.1.31.1.1.1.18.45|4| +1.3.6.1.2.1.31.1.1.1.18.46|4| +1.3.6.1.2.1.31.1.1.1.18.47|4| +1.3.6.1.2.1.31.1.1.1.18.48|4| +1.3.6.1.2.1.31.1.1.1.18.49|4| +1.3.6.1.2.1.31.1.1.1.18.50|4| +1.3.6.1.2.1.31.1.1.1.18.71|4| +1.3.6.1.2.1.31.1.1.1.18.72|4| +1.3.6.1.2.1.31.1.1.1.18.73|4| +1.3.6.1.2.1.31.1.1.1.18.75|4| +1.3.6.1.2.1.31.1.1.1.18.76|4| +1.3.6.1.2.1.31.1.1.1.18.77|4| +1.3.6.1.2.1.31.1.1.1.18.79|4| +1.3.6.1.2.1.31.1.1.1.18.81|4| +1.3.6.1.2.1.31.1.1.1.18.82|4| +1.3.6.1.2.1.31.1.1.1.18.83|4| +1.3.6.1.2.1.31.1.1.1.18.84|4| +1.3.6.1.2.1.31.1.1.1.18.85|4| +1.3.6.1.2.1.31.1.1.1.18.87|4| +1.3.6.1.2.1.31.1.1.1.18.88|4| +1.3.6.1.2.1.31.1.1.1.18.89|4| +1.3.6.1.2.1.31.1.1.1.18.91|4| +1.3.6.1.2.1.31.1.1.1.18.92|4| +1.3.6.1.2.1.31.1.1.1.18.93|4| +1.3.6.1.2.1.31.1.1.1.18.94|4| +1.3.6.1.2.1.31.1.1.1.18.95|4| +1.3.6.1.2.1.31.1.1.1.18.96|4| +1.3.6.1.2.1.31.1.1.1.18.97|4| +1.3.6.1.2.1.31.1.1.1.18.98|4| +1.3.6.1.2.1.31.1.1.1.19.2|67|1200 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.31|67|22300 +1.3.6.1.2.1.31.1.1.1.19.32|67|22300 +1.3.6.1.2.1.31.1.1.1.19.33|67|22300 +1.3.6.1.2.1.31.1.1.1.19.34|67|22300 +1.3.6.1.2.1.31.1.1.1.19.35|67|22300 +1.3.6.1.2.1.31.1.1.1.19.36|67|22300 +1.3.6.1.2.1.31.1.1.1.19.37|67|22300 +1.3.6.1.2.1.31.1.1.1.19.38|67|22300 +1.3.6.1.2.1.31.1.1.1.19.39|67|22300 +1.3.6.1.2.1.31.1.1.1.19.40|67|22300 +1.3.6.1.2.1.31.1.1.1.19.41|67|22300 +1.3.6.1.2.1.31.1.1.1.19.42|67|22300 +1.3.6.1.2.1.31.1.1.1.19.43|67|22300 +1.3.6.1.2.1.31.1.1.1.19.44|67|22300 +1.3.6.1.2.1.31.1.1.1.19.45|67|22300 +1.3.6.1.2.1.31.1.1.1.19.46|67|22300 +1.3.6.1.2.1.31.1.1.1.19.47|67|22300 +1.3.6.1.2.1.31.1.1.1.19.48|67|22300 +1.3.6.1.2.1.31.1.1.1.19.49|67|22300 +1.3.6.1.2.1.31.1.1.1.19.50|67|22300 +1.3.6.1.2.1.31.1.1.1.19.72|67|25100 +1.3.6.1.2.1.31.1.1.1.19.73|67|25100 +1.3.6.1.2.1.31.1.1.1.19.75|67|25300 +1.3.6.1.2.1.31.1.1.1.19.76|67|25300 +1.3.6.1.2.1.31.1.1.1.19.77|67|25300 +1.3.6.1.2.1.31.1.1.1.19.79|67|25300 +1.3.6.1.2.1.31.1.1.1.19.81|67|25300 +1.3.6.1.2.1.31.1.1.1.19.82|67|25300 +1.3.6.1.2.1.31.1.1.1.19.83|67|25300 +1.3.6.1.2.1.31.1.1.1.19.84|67|25300 +1.3.6.1.2.1.31.1.1.1.19.85|67|25300 +1.3.6.1.2.1.31.1.1.1.19.87|67|25300 +1.3.6.1.2.1.31.1.1.1.19.88|67|25300 +1.3.6.1.2.1.31.1.1.1.19.89|67|25300 +1.3.6.1.2.1.31.1.1.1.19.91|67|25300 +1.3.6.1.2.1.31.1.1.1.19.92|67|25300 +1.3.6.1.2.1.31.1.1.1.19.93|67|500 +1.3.6.1.2.1.31.1.1.1.19.94|67|500 +1.3.6.1.2.1.31.1.1.1.19.95|67|25300 +1.3.6.1.2.1.31.1.1.1.19.96|67|25100 +1.3.6.1.2.1.31.1.1.1.19.97|67|25300 +1.3.6.1.2.1.31.1.1.1.19.98|67|25300 1.3.6.1.2.1.47.1.1.1.1.7.18788073|4|module 0/0/CPU0 1.3.6.1.2.1.47.1.1.1.1.7.52690955|4|module 0/RSP0/CPU0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.11.253.152.49.0|65|21022 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.13.101.80.186.24|65|890490990 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.19.127.107.109.69|65|15252 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.20.27.63.32.0|65|131675368 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.26.48.43.110.64|65|22699290 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.27.213.64.7.193|65|150101084 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.28.176.183.230.64|65|31001026 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.29.112.12.222.63|65|15237 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.29.113.113.143.192|65|70311 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.30.19.36.227.127|65|103698880 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.30.74.25.220.0|65|250000924 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.33.85.53.172.240|65|174303 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.33.90.245.1.114|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.37.69.1.131.128|65|191577270 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.37.132.214.160.255|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.64.199.108.1.25|65|16405 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.129.196.110.190.1|65|1400003 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.167.66.9.87.132|65|2264618076 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.167.66.22.190.187|65|274734 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.167.66.23.35.91|65|149081 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.0.183.113.59.104.0|65|629601 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.8.150.173.50.251.78|65|435717896 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.8.150.173.87.172.30|65|3216390529 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.8.150.173.111.0.204|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.16.232.120.16.65.66|65|205764 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.16.243.17.54.128.34|65|71320 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.24.102.218.150.51.38|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.24.231.40.86.195.127|65|1864503 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.32.241.124.82.190.225|65|3005725454 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.40.199.206.190.7.242|65|19327 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.44.84.45.230.127.63|65|2163737414 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.52.30.107.92.60.57|65|1182683136 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.56.99.187.67.235.134|65|133684 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.56.99.187.68.170.94|65|133644 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.60.138.176.136.62.201|65|493505612 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.72.253.142.144.255.113|65|137114869 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.76.94.12.19.183.198|65|25 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.84.117.208.175.228.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.84.162.116.144.253.1|65|2095382 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.92.138.56.203.83.19|65|266 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.96.156.159.92.62.52|65|16238 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.96.156.159.131.68.30|65|783791767 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.100.158.243.170.1.255|65|353473090 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.108.65.106.151.179.127|65|5273208 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.108.156.237.60.176.134|65|4271604659 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.112.202.155.142.2.255|65|25220040 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.116.160.47.136.177.113|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.120.186.249.71.200.106|65|3997 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.120.186.249.76.125.74|65|3846133173 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.128.113.31.116.248.82|65|28387751 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.132.181.156.178.159.200|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.136.224.243.185.28.82|65|206350214 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.168.12.13.250.14.96|65|31987 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.180.164.227.148.129.34|65|743454258 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.180.222.49.61.219.19|65|11343642 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.184.105.244.210.201.237|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.196.125.79.196.57.127|65|2223443 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.216.103.217.105.249.240|65|15245 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.216.158.243.166.202.39|65|575970416 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.224.172.241.19.43.26|65|688804585 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.228.129.132.158.20.117|65|2159238476 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.228.199.34.33.12.3|65|222464 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.228.199.34.33.12.91|65|157235 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.228.199.34.228.139.63|65|136035866 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.232.183.72.1.31.63|65|7 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.232.186.112.66.116.128|65|19393311 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.248.102.242.105.61.191|65|13234298 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.1.248.194.136.112.220.191|65|24033270 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.11.253.152.49.0|65|10028994 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.13.101.80.186.24|65|829857004 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.19.127.107.109.69|65|15279 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.20.27.63.32.0|65|67547897 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.26.48.43.110.64|65|461329604 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.27.213.64.7.193|65|203160731 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.28.176.183.230.64|65|54824455 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.29.112.12.222.63|65|16619144 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.29.113.113.143.192|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.30.19.36.227.127|65|21504821 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.30.74.25.220.0|65|138057 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.33.85.53.172.240|65|164435772 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.33.90.245.1.114|65|45001 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.37.69.1.131.128|65|433651994 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.37.132.214.160.255|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.64.199.108.1.25|65|506024211 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.129.196.110.190.1|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.167.66.9.87.132|65|1038884045 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.167.66.22.190.187|65|824353 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.167.66.23.35.91|65|1662158906 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.0.183.113.59.104.0|65|4401367 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.8.150.173.50.251.78|65|73453130 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.8.150.173.87.172.30|65|30516 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.8.150.173.111.0.204|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.16.232.120.16.65.66|65|181840 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.16.243.17.54.128.34|65|28234 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.24.102.218.150.51.38|65|41454 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.24.231.40.86.195.127|65|11644366 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.32.241.124.82.190.225|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.40.199.206.190.7.242|65|188283962 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.44.84.45.230.127.63|65|1156664572 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.52.30.107.92.60.57|65|462679280 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.56.99.187.67.235.134|65|131970 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.56.99.187.68.170.94|65|131965 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.60.138.176.136.62.201|65|1521692325 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.72.253.142.144.255.113|65|309806633 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.76.94.12.19.183.198|65|70145021 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.84.117.208.175.228.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.84.162.116.144.253.1|65|12548261 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.92.138.56.203.83.19|65|1896260 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.96.156.159.92.62.52|65|333694677 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.96.156.159.131.68.30|65|1720024073 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.100.158.243.170.1.255|65|3315990707 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.108.65.106.151.179.127|65|155268232 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.108.156.237.60.176.134|65|1177357428 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.112.202.155.142.2.255|65|75767102 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.116.160.47.136.177.113|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.120.186.249.71.200.106|65|49147860 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.120.186.249.76.125.74|65|3847607158 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.128.113.31.116.248.82|65|328842110 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.132.181.156.178.159.200|65|36612521 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.136.224.243.185.28.82|65|462153054 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.168.12.13.250.14.96|65|32021 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.180.164.227.148.129.34|65|253457934 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.180.222.49.61.219.19|65|92706399 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.184.105.244.210.201.237|65|2779293 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.196.125.79.196.57.127|65|38831715 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.216.103.217.105.249.240|65|201042678 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.216.158.243.166.202.39|65|1135166471 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.224.172.241.19.43.26|65|1467908102 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.228.129.132.158.20.117|65|2398879313 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.228.199.34.33.12.3|65|136553326 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.228.199.34.33.12.91|65|122844 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.228.199.34.228.139.63|65|184641679 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.232.183.72.1.31.63|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.232.186.112.66.116.128|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.248.102.242.105.61.191|65|7178028 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.40.2.248.194.136.112.220.191|65|58899679 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.2.201.249.248.113|65|6385806 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.6.246.95.119.127|65|897170 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.8.227.255.252.76|65|53517777 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.9.15.9.0.11|65|23012 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.12.41.34.76.236|65|73604893 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.12.41.62.162.147|65|520480 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.12.41.181.190.238|65|139 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.12.66.178.187.210|65|1794172 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.12.66.252.252.86|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.16.24.231.134.178|65|12071308 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.16.24.231.164.16|65|17085963 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.17.50.133.186.149|65|166172147 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.19.195.96.184.0|65|9202093 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.20.27.63.32.0|65|13632 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.21.23.30.84.94|65|830717 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.24.116.21.210.64|65|38012521 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.25.169.118.1.192|65|559265793 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.25.226.181.239.195|65|41293208 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.27.33.164.155.156|65|153475 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.27.33.177.29.32|65|2123443 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.27.33.187.95.180|65|26821345 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.115.38.204.82|65|1892797281 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.115.103.236.219|65|4470 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.115.179.149.5|65|3949 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.115.215.100.17|65|790110397 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.115.234.215.81|65|1837736235 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.115.234.215.82|65|1983243885 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.176.183.230.64|65|10677 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.28.176.200.212.192|65|10709 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.30.121.156.112.0|65|718575450 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.31.202.178.123.128|65|6760 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.31.226.65.171.59|65|198622 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.33.160.11.182.192|65|34217399 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.35.4.24.221.64|65|5250512 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.35.156.92.15.192|65|302684996 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.35.156.94.159.240|65|11400144 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.37.132.41.224.128|65|55365647 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.37.144.225.195.65|65|21350879 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.37.144.235.232.42|65|23940 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.37.144.235.238.28|65|64543654 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.37.144.235.242.28|65|23683 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.37.144.235.242.110|65|23477 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.38.203.80.192.192|65|48227232 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.48.72.95.57.47|65|161035 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.48.72.100.234.155|65|902676 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.80.86.187.3.112|65|42393612 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.95.134.146.75.192|65|1052624 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.129.196.110.190.2|65|1423362722 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.129.196.110.223.5|65|11216 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.138.150.149.96.227|65|11042223 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.144.105.117.127.240|65|1658205 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.167.66.9.47.41|65|27724 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.167.66.9.87.148|65|20028 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.167.66.88.23.6|65|24132 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.190.117.58.203.128|65|51431104 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.193.100.27.61.240|65|71895568 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.193.100.51.166.171|65|2855 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.193.100.51.237.27|65|16887693 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.0.193.100.65.92.213|65|2937605 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.2.250.85.1.7.2|65|70268353 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.4.51.137.72.155.34|65|521537950 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.129.244.134.96.176|65|4636351 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.129.244.154.66.149|65|25061 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.129.244.225.239.206|65|26916892 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.150.173.111.0.204|65|18062 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.150.173.246.246.128|65|23913171 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.178.88.103.45.195|65|648432574 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.8.178.88.144.210.163|65|46289397 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.81.157.235|65|2264213 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.143.55.67|65|34006 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.188.184.105|65|3315541 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.189.64.177|65|16249434 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.189.93.0|65|6963161 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.224.213.167|65|5925878 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.235.36.230|65|4573978 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.12.196.122.235.85.152|65|4648405 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.16.5.202.156.4.64|65|17813 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.16.193.114.213.19.94|65|1 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.16.243.17.10.216.158|65|4406388 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.16.243.17.10.216.246|65|7881403 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.16.243.17.104.42.32|65|19659436 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.24.102.218.122.15.147|65|2896748951 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.24.102.218.122.53.204|65|3479974281 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.24.102.218.122.91.149|65|409305968 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.24.102.218.147.231.181|65|1238462 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.32.224.156.83.193.66|65|1551298 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.32.253.241.76.18.129|65|32303 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.40.153.58.38.139.45|65|179626046 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.40.153.58.191.5.156|65|374140946 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.40.153.58.207.128.210|65|310837373 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.44.33.49.127.241.242|65|7384777 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.52.23.235.75.173.15|65|20892 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.56.188.1.178.91.190|65|2138892 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.64.85.57.64.143.120|65|206506726 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.64.85.57.64.158.145|65|292991027 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.64.180.240.239.56.170|65|35573401 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.64.206.36.6.129.138|65|2710 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.68.76.168.32.234.157|65|3833 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.68.76.168.185.151.121|65|283972040 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.68.236.206.66.148.132|65|1178 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.68.244.119.27.144.32|65|60304401 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.68.244.119.158.95.248|65|2140 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.68.244.119.158.111.248|65|728861 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.76.31.204.1.119.97|65|16249394 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.76.78.53.54.205.255|65|112 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.76.94.12.2.171.236|65|2302000 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.76.94.12.19.222.153|65|17473441 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.76.94.12.20.38.88|65|10880 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.80.61.229.175.250.192|65|783921147 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.80.135.137.24.71.119|65|66176 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.84.117.208.188.232.0|65|8579357 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.84.127.238.97.193.124|65|34 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.84.137.152.224.157.191|65|13834838 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.84.162.116.144.253.0|65|12997 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.88.141.9.180.92.0|65|98006376 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.92.69.39.123.36.54|65|84842234 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.92.69.39.127.191.1|65|111 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.92.94.171.97.249.6|65|1319058 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.92.94.171.176.63.192|65|33 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.92.138.56.58.42.32|65|52839678 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.94.94.171.94.41.28|65|2972040373 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.0.241.116.137.128|65|347989973 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.18.37.234.169.64|65|138357169 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.100.155.215.80.176|65|21191631 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.127.218.0.87.138|65|10025 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.158.243.170.1.255|65|3424693 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.195.214.91.43.155|65|2893519836 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.100.209.84.59.56.26|65|2647523 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.102.100.155.186.149.28|65|1608967117 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.59.107.239.12.216|65|329082 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.108.211.28.99.104|65|9697693 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.108.211.32.207.218|65|10461256 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.156.237.16.85.3|65|2801457 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.156.237.123.27.209|65|5606 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.156.237.123.93.49|65|519696970 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.179.17.59.157.224|65|202343 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.108.179.17.59.157.244|65|12471421 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.110.218.217.246.228.219|65|85714 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.112.76.165.74.158.178|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.112.228.34.47.210.97|65|4051999 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.116.131.239.37.170.104|65|1188324157 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.116.131.239.37.177.142|65|1185580308 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.116.131.239.46.228.167|65|121533307 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.116.131.239.70.179.65|65|1580772763 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.116.131.239.70.179.68|65|1548515941 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.116.142.248.168.148.129|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.120.186.249.159.52.11|65|1959 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.122.25.247.92.193.30|65|1998861151 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.124.37.134.248.116.96|65|965095307 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.124.173.116.0.187.191|65|3819 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.124.226.202.79.77.84|65|1146121735 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.128.113.31.116.249.157|65|78509 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.132.120.172.119.75.134|65|1312997326 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.132.181.156.146.224.193|65|100316 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.132.184.2.3.207.16|65|37883024 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.25.35.68|65|22847 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.122.177.141|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.124.36.21|65|11062814 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.130.92.73|65|36844 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.130.110.61|65|4516707 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.134.9.64|65|52440 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.134.10.160|65|36182937 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.144.226.186.136.52.152|65|282085049 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.160.8.111.207.180.145|65|609 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.160.54.159.27.163.196|65|88554 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.160.54.159.103.176.222|65|15 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.160.54.159.215.217.54|65|19649199 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.160.140.248.187.109.17|65|86056632 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.160.224.175.234.64.192|65|24135398 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.164.147.76.218.45.255|65|101 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.172.31.107.33.233.121|65|1027699 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.172.31.107.70.200.117|65|31910 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.172.242.197.113.44.63|65|54637640 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.176.51.166.111.48.26|65|974 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.184.175.103.215.51.196|65|634634 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.184.175.103.216.65.24|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.188.38.199.91.56.97|65|233541517 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.192.103.175.41.32.191|65|10483 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.194.198.97.166.12.124|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.200.141.131.106.119.164|65|1 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.26.250.234.191.96|65|14924835 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.45.224.15.34.141|65|1983 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.45.224.15.39.24|65|6211932 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.78.36.69.9.9|65|2 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.78.36.69.74.9|65|7 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.78.36.77.103.12|65|549774 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.78.36.146.82.0|65|644224205 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.204.78.36.146.104.0|65|374394968 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.4.255.44.205.239|65|8010465 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.4.255.216.51.232|65|195962003 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.4.255.216.51.233|65|189161521 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.201.60.131.10.35|65|7113987 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.202.109.1.215.169|65|21730 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.202.109.137.106.169|65|1192630 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.212.202.109.172.245.242|65|50 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.216.158.243.166.202.47|65|731 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.220.56.225.17.229.123|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.220.210.252.36.73.75|65|19195515 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.224.172.241.3.205.137|65|9208 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.224.172.241.16.227.113|65|308147 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.232.101.73.198.199.128|65|877643653 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.232.186.112.66.116.128|65|3407755260 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.236.19.219.121.143.200|65|100425 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.236.56.115.52.236.16|65|1007026010 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.240.28.45.138.26.139|65|362099534 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.240.47.167.186.142.226|65|2570327 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.240.75.58.179.92.115|65|1479680014 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.240.75.58.238.176.132|65|159875538 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.240.99.249.119.67.246|65|6 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.240.247.85.64.152.127|65|25297370 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.244.167.57.208.160.198|65|3107 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.244.181.47.211.224.203|65|24968988 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.248.102.242.105.61.191|65|11240 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.1.248.152.239.195.3.21|65|405740392 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.2.201.249.248.113|65|2583 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.6.246.95.119.127|65|370777 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.8.227.255.252.76|65|14197012 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.9.15.9.0.11|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.12.41.34.76.236|65|36739587 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.12.41.62.162.147|65|612504 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.12.41.181.190.238|65|4 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.12.66.178.187.210|65|710329 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.12.66.252.252.86|65|744784 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.16.24.231.134.178|65|21662072 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.16.24.231.164.16|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.17.50.133.186.149|65|86749857 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.19.195.96.184.0|65|40101554 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.20.27.63.32.0|65|5966 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.21.23.30.84.94|65|318015 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.24.116.21.210.64|65|5649 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.25.169.118.1.192|65|55327384 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.25.226.181.239.195|65|2901 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.27.33.164.155.156|65|797591 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.27.33.177.29.32|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.27.33.187.95.180|65|6068 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.115.38.204.82|65|550754174 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.115.103.236.219|65|2565 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.115.179.149.5|65|2537 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.115.215.100.17|65|629393980 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.115.234.215.81|65|22936 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.115.234.215.82|65|3114337 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.176.183.230.64|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.28.176.200.212.192|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.30.121.156.112.0|65|96335957 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.31.202.178.123.128|65|5140 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.31.226.65.171.59|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.33.160.11.182.192|65|56426682 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.35.4.24.221.64|65|15484860 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.35.156.92.15.192|65|735682 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.35.156.94.159.240|65|2897 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.37.132.41.224.128|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.37.144.225.195.65|65|1933972 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.37.144.235.232.42|65|31664844 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.37.144.235.238.28|65|5301 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.37.144.235.242.28|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.37.144.235.242.110|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.38.203.80.192.192|65|5062 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.48.72.95.57.47|65|132953 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.48.72.100.234.155|65|119312 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.80.86.187.3.112|65|38251553 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.95.134.146.75.192|65|272814 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.129.196.110.190.2|65|4036214891 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.129.196.110.223.5|65|5056 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.138.150.149.96.227|65|2754243 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.144.105.117.127.240|65|2902 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.167.66.9.47.41|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.167.66.9.87.148|65|4787 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.167.66.88.23.6|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.190.117.58.203.128|65|6387 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.193.100.27.61.240|65|62614 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.193.100.51.166.171|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.193.100.51.237.27|65|6487108 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.0.193.100.65.92.213|65|1358692 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.2.250.85.1.7.2|65|6176 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.4.51.137.72.155.34|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.129.244.134.96.176|65|2905 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.129.244.154.66.149|65|2903 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.129.244.225.239.206|65|31244402 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.150.173.111.0.204|65|17963 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.150.173.246.246.128|65|4924240 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.178.88.103.45.195|65|277604631 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.8.178.88.144.210.163|65|78106882 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.81.157.235|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.143.55.67|65|669047 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.188.184.105|65|3894554 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.189.64.177|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.189.93.0|65|4942 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.224.213.167|65|896 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.235.36.230|65|4935 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.12.196.122.235.85.152|65|6221 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.16.5.202.156.4.64|65|4672 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.16.193.114.213.19.94|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.16.243.17.10.216.158|65|4933 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.16.243.17.10.216.246|65|167 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.16.243.17.104.42.32|65|10236230 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.24.102.218.122.15.147|65|2774999808 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.24.102.218.122.53.204|65|3066518932 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.24.102.218.122.91.149|65|3362170816 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.24.102.218.147.231.181|65|7428 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.32.224.156.83.193.66|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.32.253.241.76.18.129|65|1468933 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.40.153.58.38.139.45|65|103491318 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.40.153.58.191.5.156|65|34623968 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.40.153.58.207.128.210|65|42888225 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.44.33.49.127.241.242|65|5234 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.52.23.235.75.173.15|65|2747 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.56.188.1.178.91.190|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.64.85.57.64.143.120|65|5051 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.64.85.57.64.158.145|65|5056 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.64.180.240.239.56.170|65|12049597 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.64.206.36.6.129.138|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.68.76.168.32.234.157|65|2516 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.68.76.168.185.151.121|65|274763049 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.68.236.206.66.148.132|65|2900 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.68.244.119.27.144.32|65|23402393 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.68.244.119.158.95.248|65|2901 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.68.244.119.158.111.248|65|320245158 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.76.31.204.1.119.97|65|23977852 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.76.78.53.54.205.255|65|487619164 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.76.94.12.2.171.236|65|25847 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.76.94.12.19.222.153|65|10955764 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.76.94.12.20.38.88|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.80.61.229.175.250.192|65|8199611 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.80.135.137.24.71.119|65|115011 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.84.117.208.188.232.0|65|2875054 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.84.127.238.97.193.124|65|1 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.84.137.152.224.157.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.84.162.116.144.253.0|65|5813 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.88.141.9.180.92.0|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.92.69.39.123.36.54|65|406007 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.92.69.39.127.191.1|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.92.94.171.97.249.6|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.92.94.171.176.63.192|65|20389 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.92.138.56.58.42.32|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.94.94.171.94.41.28|65|60657 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.0.241.116.137.128|65|1778224041 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.18.37.234.169.64|65|58940146 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.100.155.215.80.176|65|6977188 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.127.218.0.87.138|65|6924 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.158.243.170.1.255|65|2618105 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.195.214.91.43.155|65|1056802071 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.100.209.84.59.56.26|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.102.100.155.186.149.28|65|569566238 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.59.107.239.12.216|65|342228 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.108.211.28.99.104|65|5059 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.108.211.32.207.218|65|5060 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.156.237.16.85.3|65|4997 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.156.237.123.27.209|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.156.237.123.93.49|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.179.17.59.157.224|65|27335 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.108.179.17.59.157.244|65|6287 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.110.218.217.246.228.219|65|5620 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.112.76.165.74.158.178|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.112.228.34.47.210.97|65|2095679 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.116.131.239.37.170.104|65|989803 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.116.131.239.37.177.142|65|39162 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.116.131.239.46.228.167|65|36158026 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.116.131.239.70.179.65|65|1957531937 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.116.131.239.70.179.68|65|2551 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.116.142.248.168.148.129|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.120.186.249.159.52.11|65|3171015924 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.122.25.247.92.193.30|65|63732 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.124.37.134.248.116.96|65|2900 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.124.173.116.0.187.191|65|4996 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.124.226.202.79.77.84|65|2901 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.128.113.31.116.249.157|65|74905 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.132.120.172.119.75.134|65|368962424 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.132.181.156.146.224.193|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.132.184.2.3.207.16|65|5205 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.25.35.68|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.122.177.141|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.124.36.21|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.130.92.73|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.130.110.61|65|5132 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.134.9.64|65|6741 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.134.10.160|65|19253802 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.144.226.186.136.52.152|65|159506638 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.160.8.111.207.180.145|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.160.54.159.27.163.196|65|5144 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.160.54.159.103.176.222|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.160.54.159.215.217.54|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.160.140.248.187.109.17|65|36699995 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.160.224.175.234.64.192|65|13 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.164.147.76.218.45.255|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.172.31.107.33.233.121|65|610 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.172.31.107.70.200.117|65|4115 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.172.242.197.113.44.63|65|16795197 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.176.51.166.111.48.26|65|2910 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.184.175.103.215.51.196|65|295928 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.184.175.103.216.65.24|65|5051655 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.188.38.199.91.56.97|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.192.103.175.41.32.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.194.198.97.166.12.124|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.200.141.131.106.119.164|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.26.250.234.191.96|65|6174677 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.45.224.15.34.141|65|94 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.45.224.15.39.24|65|839552 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.78.36.69.9.9|65|2532471691 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.78.36.69.74.9|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.78.36.77.103.12|65|2970 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.78.36.146.82.0|65|132248813 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.204.78.36.146.104.0|65|150956229 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.4.255.44.205.239|65|3688059 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.4.255.216.51.232|65|2901 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.4.255.216.51.233|65|160035055 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.201.60.131.10.35|65|982754 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.202.109.1.215.169|65|25702 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.202.109.137.106.169|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.212.202.109.172.245.242|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.216.158.243.166.202.47|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.220.56.225.17.229.123|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.220.210.252.36.73.75|65|8832195 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.224.172.241.3.205.137|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.224.172.241.16.227.113|65|5098 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.232.101.73.198.199.128|65|159026155 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.232.186.112.66.116.128|65|4028032635 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.236.19.219.121.143.200|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.236.56.115.52.236.16|65|2901 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.240.28.45.138.26.139|65|132433334 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.240.47.167.186.142.226|65|735680 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.240.75.58.179.92.115|65|2898 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.240.75.58.238.176.132|65|9423160 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.240.99.249.119.67.246|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.240.247.85.64.152.127|65|5862714 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.244.167.57.208.160.198|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.244.181.47.211.224.203|65|3656017 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.248.102.242.105.61.191|65|5077 +1.3.6.1.4.1.9.9.84.1.2.1.1.3.72.2.248.152.239.195.3.21|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.11.253.152.49.0|65|1592556 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.13.101.80.186.24|65|4226292393 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.19.127.107.109.69|65|1014231 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.20.27.63.32.0|65|244352023 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.26.48.43.110.64|65|1512860051 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.27.213.64.7.193|65|3801531054 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.28.176.183.230.64|65|84104366 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.29.112.12.222.63|65|1028651 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.29.113.113.143.192|65|6046746 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.30.19.36.227.127|65|4001154952 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.30.74.25.220.0|65|889189441 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.33.85.53.172.240|65|14329626 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.33.90.245.1.114|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.37.69.1.131.128|65|2704071130 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.37.132.214.160.255|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.64.199.108.1.25|65|1109814 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.129.196.110.190.1|65|574157640 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.167.66.9.87.132|65|611781706 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.167.66.22.190.187|65|25533021 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.167.66.23.35.91|65|13244971 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.0.183.113.59.104.0|65|550341944 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.8.150.173.50.251.78|65|1054619807 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.8.150.173.87.172.30|65|1006989759 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.8.150.173.111.0.204|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.16.232.120.16.65.66|65|15923439 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.16.243.17.54.128.34|65|5803844 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.24.102.218.150.51.38|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.24.231.40.86.195.127|65|1200115651 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.32.241.124.82.190.225|65|2361841482 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.40.199.206.190.7.242|65|1367049 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.44.84.45.230.127.63|65|2116947238 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.52.30.107.92.60.57|65|4228052941 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.56.99.187.67.235.134|65|21390758 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.56.99.187.68.170.94|65|21328619 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.60.138.176.136.62.201|65|3964176207 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.72.253.142.144.255.113|65|970878352 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.76.94.12.19.183.198|65|1840 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.84.117.208.175.228.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.84.162.116.144.253.1|65|1830382741 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.92.138.56.203.83.19|65|19492 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.96.156.159.92.62.52|65|1086335 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.96.156.159.131.68.30|65|1720904370 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.100.158.243.170.1.255|65|3099151103 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.108.65.106.151.179.127|65|3915679663 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.108.156.237.60.176.134|65|1332255747 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.112.202.155.142.2.255|65|296810504 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.116.160.47.136.177.113|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.120.186.249.71.200.106|65|343572 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.120.186.249.76.125.74|65|772326312 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.128.113.31.116.248.82|65|501896568 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.132.181.156.178.159.200|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.136.224.243.185.28.82|65|1481409421 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.168.12.13.250.14.96|65|2411880 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.180.164.227.148.129.34|65|2180026161 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.180.222.49.61.219.19|65|1724917460 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.184.105.244.210.201.237|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.196.125.79.196.57.127|65|1700349894 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.216.103.217.105.249.240|65|1013937 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.216.158.243.166.202.39|65|3022720914 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.224.172.241.19.43.26|65|2429870114 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.228.129.132.158.20.117|65|4248579796 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.228.199.34.33.12.3|65|15636983 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.228.199.34.33.12.91|65|127043912 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.228.199.34.228.139.63|65|2360443234 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.232.183.72.1.31.63|65|1007 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.232.186.112.66.116.128|65|2448953623 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.248.102.242.105.61.191|65|3286380359 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.1.248.194.136.112.220.191|65|3200055271 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.11.253.152.49.0|65|2950182673 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.13.101.80.186.24|65|223025323 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.19.127.107.109.69|65|972385 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.20.27.63.32.0|65|1909233595 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.26.48.43.110.64|65|1791381866 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.27.213.64.7.193|65|2331215262 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.28.176.183.230.64|65|471480501 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.29.112.12.222.63|65|2167598333 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.29.113.113.143.192|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.30.19.36.227.127|65|3235311223 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.30.74.25.220.0|65|26634409 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.33.85.53.172.240|65|2490321424 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.33.90.245.1.114|65|2790062 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.37.69.1.131.128|65|3470806323 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.37.132.214.160.255|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.64.199.108.1.25|65|4248150604 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.129.196.110.190.1|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.167.66.9.87.132|65|1901359040 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.167.66.22.190.187|65|474574371 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.167.66.23.35.91|65|280857986 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.0.183.113.59.104.0|65|1929440629 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.8.150.173.50.251.78|65|3791177341 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.8.150.173.87.172.30|65|2244964 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.8.150.173.111.0.204|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.16.232.120.16.65.66|65|13463069 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.16.243.17.54.128.34|65|2057424 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.24.102.218.150.51.38|65|20558001 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.24.231.40.86.195.127|65|2797020861 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.32.241.124.82.190.225|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.40.199.206.190.7.242|65|3214987359 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.44.84.45.230.127.63|65|3803298655 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.52.30.107.92.60.57|65|1800088288 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.56.99.187.67.235.134|65|8819124 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.56.99.187.68.170.94|65|8819095 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.60.138.176.136.62.201|65|2547603661 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.72.253.142.144.255.113|65|1960767454 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.76.94.12.19.183.198|65|3115869730 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.84.117.208.175.228.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.84.162.116.144.253.1|65|1295834138 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.92.138.56.203.83.19|65|1402792149 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.96.156.159.92.62.52|65|1402410962 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.96.156.159.131.68.30|65|1772589136 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.100.158.243.170.1.255|65|3813389193 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.108.65.106.151.179.127|65|1184566806 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.108.156.237.60.176.134|65|2822485914 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.112.202.155.142.2.255|65|1920746146 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.116.160.47.136.177.113|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.120.186.249.71.200.106|65|2760009800 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.120.186.249.76.125.74|65|1871989519 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.128.113.31.116.248.82|65|1825833121 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.132.181.156.178.159.200|65|2144630059 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.136.224.243.185.28.82|65|4273532743 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.168.12.13.250.14.96|65|2341979 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.180.164.227.148.129.34|65|4284424091 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.180.222.49.61.219.19|65|1522034760 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.184.105.244.210.201.237|65|1799779443 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.196.125.79.196.57.127|65|236052285 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.216.103.217.105.249.240|65|962217299 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.216.158.243.166.202.39|65|4235066635 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.224.172.241.19.43.26|65|3457262890 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.228.129.132.158.20.117|65|2722512406 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.228.199.34.33.12.3|65|3559570584 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.228.199.34.33.12.91|65|15210552 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.228.199.34.228.139.63|65|2780838103 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.232.183.72.1.31.63|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.232.186.112.66.116.128|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.248.102.242.105.61.191|65|1089701852 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.40.2.248.194.136.112.220.191|65|1661908262 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.2.201.249.248.113|65|1261987581 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.6.246.95.119.127|65|257361976 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.8.227.255.252.76|65|4110680989 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.9.15.9.0.11|65|2071080 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.12.41.34.76.236|65|3239800117 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.12.41.62.162.147|65|99904549 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.12.41.181.190.238|65|12510 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.12.66.178.187.210|65|911162902 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.12.66.252.252.86|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.16.24.231.134.178|65|2446341673 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.16.24.231.164.16|65|1617736940 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.17.50.133.186.149|65|1716503925 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.19.195.96.184.0|65|243539194 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.20.27.63.32.0|65|1279219 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.21.23.30.84.94|65|678592681 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.24.116.21.210.64|65|3266521380 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.25.169.118.1.192|65|3095503853 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.25.226.181.239.195|65|3263667927 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.27.33.164.155.156|65|172799523 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.27.33.177.29.32|65|2791307010 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.27.33.187.95.180|65|3927627007 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.115.38.204.82|65|1579823753 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.115.103.236.219|65|412296 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.115.179.149.5|65|355410 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.115.215.100.17|65|4129979208 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.115.234.215.81|65|1209346560 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.115.234.215.82|65|3136219577 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.176.183.230.64|65|960930 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.28.176.200.212.192|65|963810 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.30.121.156.112.0|65|875635445 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.31.202.178.123.128|65|603512 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.31.226.65.171.59|65|73319551 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.33.160.11.182.192|65|1722235291 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.35.4.24.221.64|65|2278373390 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.35.156.92.15.192|65|599353804 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.35.156.94.159.240|65|4266112120 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.37.132.41.224.128|65|2282854944 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.37.144.225.195.65|65|2840216283 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.37.144.235.232.42|65|2154600 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.37.144.235.238.28|65|2846751249 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.37.144.235.242.28|65|2131470 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.37.144.235.242.110|65|2112930 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.38.203.80.192.192|65|543829760 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.48.72.95.57.47|65|40693115 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.48.72.100.234.155|65|107463547 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.80.86.187.3.112|65|322923550 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.95.134.146.75.192|65|235493418 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.129.196.110.190.2|65|1808811347 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.129.196.110.223.5|65|1009440 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.138.150.149.96.227|65|1691791383 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.144.105.117.127.240|65|1327504268 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.167.66.9.47.41|65|2495160 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.167.66.9.87.148|65|1802520 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.167.66.88.23.6|65|2171880 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.190.117.58.203.128|65|2972237974 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.193.100.27.61.240|65|300130958 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.193.100.51.166.171|65|256950 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.193.100.51.237.27|65|343396883 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.0.193.100.65.92.213|65|1867675241 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.2.250.85.1.7.2|65|100107138 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.4.51.137.72.155.34|65|155724346 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.129.244.134.96.176|65|1481921584 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.129.244.154.66.149|65|2736959 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.129.244.225.239.206|65|3852716475 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.150.173.111.0.204|65|1941385 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.150.173.246.246.128|65|1247486335 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.178.88.103.45.195|65|4279654731 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.8.178.88.144.210.163|65|2644146388 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.81.157.235|65|203779170 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.143.55.67|65|3060540 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.188.184.105|65|2901073799 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.189.64.177|65|1639980493 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.189.93.0|65|4181550800 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.224.213.167|65|1647114587 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.235.36.230|65|3209068469 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.12.196.122.235.85.152|65|2287234599 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.16.5.202.156.4.64|65|1603170 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.16.193.114.213.19.94|65|64 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.16.243.17.10.216.158|65|2620933512 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.16.243.17.10.216.246|65|1156403709 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.16.243.17.104.42.32|65|4262181233 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.24.102.218.122.15.147|65|2038063057 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.24.102.218.122.53.204|65|906844668 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.24.102.218.122.91.149|65|662166994 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.24.102.218.147.231.181|65|1160553639 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.32.224.156.83.193.66|65|600490689 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.32.253.241.76.18.129|65|2907270 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.40.153.58.38.139.45|65|3370786556 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.40.153.58.191.5.156|65|2701556268 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.40.153.58.207.128.210|65|2612368267 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.44.33.49.127.241.242|65|2223787884 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.52.23.235.75.173.15|65|1937902 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.56.188.1.178.91.190|65|855973410 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.64.85.57.64.143.120|65|1150155747 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.64.85.57.64.158.145|65|4033443290 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.64.180.240.239.56.170|65|776666240 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.64.206.36.6.129.138|65|243900 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.68.76.168.32.234.157|65|344970 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.68.76.168.185.151.121|65|1951950768 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.68.236.206.66.148.132|65|149922 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.68.244.119.27.144.32|65|764857638 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.68.244.119.158.95.248|65|284071 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.68.244.119.158.111.248|65|150605472 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.76.31.204.1.119.97|65|2563253944 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.76.78.53.54.205.255|65|11395 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.76.94.12.2.171.236|65|1779155821 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.76.94.12.19.222.153|65|1393253879 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.76.94.12.20.38.88|65|832328 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.80.61.229.175.250.192|65|4293009132 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.80.135.137.24.71.119|65|19032655 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.84.117.208.188.232.0|65|847982899 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.84.127.238.97.193.124|65|3060 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.84.137.152.224.157.191|65|2554122160 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.84.162.116.144.253.0|65|1209248 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.88.141.9.180.92.0|65|2191039823 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.92.69.39.123.36.54|65|1426544285 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.92.69.39.127.191.1|65|48819 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.92.94.171.97.249.6|65|784994695 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.92.94.171.176.63.192|65|3599 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.92.138.56.58.42.32|65|4027218778 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.94.94.171.94.41.28|65|2358578500 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.0.241.116.137.128|65|1972256916 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.18.37.234.169.64|65|1006885784 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.100.155.215.80.176|65|982027093 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.127.218.0.87.138|65|1068982 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.158.243.170.1.255|65|722751445 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.195.214.91.43.155|65|1313624979 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.100.209.84.59.56.26|65|776299576 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.102.100.155.186.149.28|65|1053449275 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.59.107.239.12.216|65|352765235 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.108.211.28.99.104|65|1632684647 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.108.211.32.207.218|65|2039282694 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.156.237.16.85.3|65|1879365022 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.156.237.123.27.209|65|504540 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.156.237.123.93.49|65|4087594560 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.179.17.59.157.224|65|23948450 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.108.179.17.59.157.244|65|1488350583 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.110.218.217.246.228.219|65|57260472 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.112.76.165.74.158.178|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.112.228.34.47.210.97|65|1896376957 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.116.131.239.37.170.104|65|3815128975 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.116.131.239.37.177.142|65|2329608100 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.116.131.239.46.228.167|65|545936862 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.116.131.239.70.179.65|65|483563051 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.116.131.239.70.179.68|65|2705678582 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.116.142.248.168.148.129|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.120.186.249.159.52.11|65|380332 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.122.25.247.92.193.30|65|898561840 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.124.37.134.248.116.96|65|335206393 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.124.173.116.0.187.191|65|812290 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.124.226.202.79.77.84|65|2884252059 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.128.113.31.116.249.157|65|8027301 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.132.120.172.119.75.134|65|424185513 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.132.181.156.146.224.193|65|9028350 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.132.184.2.3.207.16|65|3862258717 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.25.35.68|65|2056230 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.122.177.141|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.124.36.21|65|1784124724 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.130.92.73|65|3315717 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.130.110.61|65|2011089202 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.134.9.64|65|5160582 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.134.10.160|65|400165535 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.144.226.186.136.52.152|65|1556778733 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.160.8.111.207.180.145|65|49846 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.160.54.159.27.163.196|65|8026326 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.160.54.159.103.176.222|65|3855 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.160.54.159.215.217.54|65|1487700671 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.160.140.248.187.109.17|65|3011844179 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.160.224.175.234.64.192|65|2734275586 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.164.147.76.218.45.255|65|7474 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.172.31.107.33.233.121|65|77626597 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.172.31.107.70.200.117|65|2884759 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.172.242.197.113.44.63|65|1379683216 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.176.51.166.111.48.26|65|115222 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.184.175.103.215.51.196|65|748173042 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.184.175.103.216.65.24|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.188.38.199.91.56.97|65|3397129528 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.192.103.175.41.32.191|65|943470 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.194.198.97.166.12.124|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.200.141.131.106.119.164|65|90 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.26.250.234.191.96|65|2072912624 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.45.224.15.34.141|65|235893 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.45.224.15.39.24|65|2849611527 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.78.36.69.9.9|65|3036 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.78.36.69.74.9|65|3431 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.78.36.77.103.12|65|49477871 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.78.36.146.82.0|65|1889280462 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.204.78.36.146.104.0|65|4193989327 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.4.255.44.205.239|65|4051274515 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.4.255.216.51.232|65|2586972155 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.4.255.216.51.233|65|3984602018 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.201.60.131.10.35|65|4118989314 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.202.109.1.215.169|65|1955700 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.202.109.137.106.169|65|496453720 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.212.202.109.172.245.242|65|4868 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.216.158.243.166.202.47|65|65790 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.220.56.225.17.229.123|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.220.210.252.36.73.75|65|2739269338 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.224.172.241.3.205.137|65|828720 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.224.172.241.16.227.113|65|37458866 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.232.101.73.198.199.128|65|3360629245 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.232.186.112.66.116.128|65|1579456069 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.236.19.219.121.143.200|65|9038220 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.236.56.115.52.236.16|65|3901843435 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.240.28.45.138.26.139|65|1001470432 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.240.47.167.186.142.226|65|760451867 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.240.75.58.179.92.115|65|3294017721 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.240.75.58.238.176.132|65|774338890 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.240.99.249.119.67.246|65|524 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.240.247.85.64.152.127|65|1698312572 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.244.167.57.208.160.198|65|749467 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.244.181.47.211.224.203|65|155732140 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.248.102.242.105.61.191|65|1013662 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.1.248.152.239.195.3.21|65|2330276722 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.2.201.249.248.113|65|232470 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.6.246.95.119.127|65|257500002 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.8.227.255.252.76|65|1721895629 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.9.15.9.0.11|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.12.41.34.76.236|65|2572851786 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.12.41.62.162.147|65|266168470 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.12.41.181.190.238|65|252 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.12.66.178.187.210|65|403995590 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.12.66.252.252.86|65|76812200 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.16.24.231.134.178|65|1712094227 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.16.24.231.164.16|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.17.50.133.186.149|65|3042984462 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.19.195.96.184.0|65|3368384625 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.20.27.63.32.0|65|536914 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.21.23.30.84.94|65|65553526 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.24.116.21.210.64|65|509538 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.25.169.118.1.192|65|232008378 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.25.226.181.239.195|65|261090 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.27.33.164.155.156|65|114853388 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.27.33.177.29.32|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.27.33.187.95.180|65|546120 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.115.38.204.82|65|4130011803 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.115.103.236.219|65|230774 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.115.179.149.5|65|228330 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.115.215.100.17|65|311658669 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.115.234.215.81|65|1721639 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.115.234.215.82|65|1003234011 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.176.183.230.64|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.28.176.200.212.192|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.30.121.156.112.0|65|4254691709 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.31.202.178.123.128|65|462600 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.31.226.65.171.59|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.33.160.11.182.192|65|3094204889 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.35.4.24.221.64|65|3085046660 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.35.156.92.15.192|65|1072146649 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.35.156.94.159.240|65|260730 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.37.132.41.224.128|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.37.144.225.195.65|65|585181100 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.37.144.235.232.42|65|897011896 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.37.144.235.238.28|65|477090 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.37.144.235.242.28|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.37.144.235.242.110|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.38.203.80.192.192|65|455580 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.48.72.95.57.47|65|9342788 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.48.72.100.234.155|65|8153818 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.80.86.187.3.112|65|1297310280 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.95.134.146.75.192|65|162168753 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.129.196.110.190.2|65|1201282389 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.129.196.110.223.5|65|455040 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.138.150.149.96.227|65|2179960672 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.144.105.117.127.240|65|261239 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.167.66.9.47.41|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.167.66.9.87.148|65|430830 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.167.66.88.23.6|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.190.117.58.203.128|65|595984 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.193.100.27.61.240|65|5844081 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.193.100.51.166.171|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.193.100.51.237.27|65|3813065552 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.0.193.100.65.92.213|65|506356861 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.2.250.85.1.7.2|65|555840 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.4.51.137.72.155.34|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.129.244.134.96.176|65|261450 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.129.244.154.66.149|65|261270 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.129.244.225.239.206|65|1746815332 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.150.173.111.0.204|65|1197442 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.150.173.246.246.128|65|3583229104 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.178.88.103.45.195|65|2914847737 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.8.178.88.144.210.163|65|3568200225 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.81.157.235|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.143.55.67|65|601762505 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.188.184.105|65|3896824087 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.189.64.177|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.189.93.0|65|444780 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.224.213.167|65|80665 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.235.36.230|65|444150 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.12.196.122.235.85.152|65|559890 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.16.5.202.156.4.64|65|420390 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.16.193.114.213.19.94|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.16.243.17.10.216.158|65|443970 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.16.243.17.10.216.246|65|15030 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.16.243.17.104.42.32|65|2437331306 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.24.102.218.122.15.147|65|2445554197 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.24.102.218.122.53.204|65|506012940 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.24.102.218.122.91.149|65|2111176469 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.24.102.218.147.231.181|65|671879 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.32.224.156.83.193.66|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.32.253.241.76.18.129|65|1427808593 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.40.153.58.38.139.45|65|3685827136 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.40.153.58.191.5.156|65|2871696860 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.40.153.58.207.128.210|65|1282032910 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.44.33.49.127.241.242|65|1320852 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.52.23.235.75.173.15|65|247230 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.56.188.1.178.91.190|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.64.85.57.64.143.120|65|454590 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.64.85.57.64.158.145|65|455040 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.64.180.240.239.56.170|65|1757257738 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.64.206.36.6.129.138|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.68.76.168.32.234.157|65|226440 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.68.76.168.185.151.121|65|2848384585 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.68.236.206.66.148.132|65|261000 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.68.244.119.27.144.32|65|1182719489 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.68.244.119.158.95.248|65|261090 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.68.244.119.158.111.248|65|4085078070 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.76.31.204.1.119.97|65|808249869 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.76.78.53.54.205.255|65|821141532 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.76.94.12.2.171.236|65|32032747 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.76.94.12.19.222.153|65|2685412664 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.76.94.12.20.38.88|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.80.61.229.175.250.192|65|1677962496 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.80.135.137.24.71.119|65|44056134 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.84.117.208.188.232.0|65|2545439357 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.84.127.238.97.193.124|65|60 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.84.137.152.224.157.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.84.162.116.144.253.0|65|523170 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.88.141.9.180.92.0|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.92.69.39.123.36.54|65|278972003 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.92.69.39.127.191.1|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.92.94.171.97.249.6|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.92.94.171.176.63.192|65|3050008 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.92.138.56.58.42.32|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.94.94.171.94.41.28|65|4687576 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.0.241.116.137.128|65|1668189638 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.18.37.234.169.64|65|3627940232 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.100.155.215.80.176|65|42010935 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.127.218.0.87.138|65|789336 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.158.243.170.1.255|65|994922626 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.195.214.91.43.155|65|2350070972 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.100.209.84.59.56.26|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.102.100.155.186.149.28|65|424098750 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.59.107.239.12.216|65|60086413 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.108.211.28.99.104|65|455310 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.108.211.32.207.218|65|455400 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.156.237.16.85.3|65|449730 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.156.237.123.27.209|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.156.237.123.93.49|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.179.17.59.157.224|65|7906056 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.108.179.17.59.157.244|65|565830 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.110.218.217.246.228.219|65|564946 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.112.76.165.74.158.178|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.112.228.34.47.210.97|65|189392469 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.116.131.239.37.170.104|65|98555312 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.116.131.239.37.177.142|65|4068986 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.116.131.239.46.228.167|65|1133102856 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.116.131.239.70.179.65|65|3217081209 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.116.131.239.70.179.68|65|229590 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.116.142.248.168.148.129|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.120.186.249.159.52.11|65|3832873271 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.122.25.247.92.193.30|65|4960272 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.124.37.134.248.116.96|65|261000 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.124.173.116.0.187.191|65|1328390 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.124.226.202.79.77.84|65|261090 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.128.113.31.116.249.157|65|5556930 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.132.120.172.119.75.134|65|2708939687 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.132.181.156.146.224.193|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.132.184.2.3.207.16|65|479751 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.25.35.68|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.122.177.141|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.124.36.21|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.130.92.73|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.130.110.61|65|461880 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.134.9.64|65|606690 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.134.10.160|65|3518327019 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.144.226.186.136.52.152|65|3570866331 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.160.8.111.207.180.145|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.160.54.159.27.163.196|65|462960 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.160.54.159.103.176.222|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.160.54.159.215.217.54|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.160.140.248.187.109.17|65|1756342349 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.160.224.175.234.64.192|65|888 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.164.147.76.218.45.255|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.172.31.107.33.233.121|65|69899 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.172.31.107.70.200.117|65|370990 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.172.242.197.113.44.63|65|1218946123 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.176.51.166.111.48.26|65|261716 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.184.175.103.215.51.196|65|80260591 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.184.175.103.216.65.24|65|1916213098 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.188.38.199.91.56.97|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.192.103.175.41.32.191|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.194.198.97.166.12.124|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.200.141.131.106.119.164|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.26.250.234.191.96|65|684051088 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.45.224.15.34.141|65|96002 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.45.224.15.39.24|65|526030912 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.78.36.69.9.9|65|3896754920 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.78.36.69.74.9|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.78.36.77.103.12|65|362893 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.78.36.146.82.0|65|3576412276 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.204.78.36.146.104.0|65|2367261506 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.4.255.44.205.239|65|684697024 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.4.255.216.51.232|65|261090 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.4.255.216.51.233|65|4121544404 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.201.60.131.10.35|65|162692387 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.202.109.1.215.169|65|23487046 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.202.109.137.106.169|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.212.202.109.172.245.242|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.216.158.243.166.202.47|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.220.56.225.17.229.123|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.220.210.252.36.73.75|65|3779579892 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.224.172.241.3.205.137|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.224.172.241.16.227.113|65|458820 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.232.101.73.198.199.128|65|3452830496 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.232.186.112.66.116.128|65|1985050129 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.236.19.219.121.143.200|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.236.56.115.52.236.16|65|261090 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.240.28.45.138.26.139|65|1803020223 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.240.47.167.186.142.226|65|867473603 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.240.75.58.179.92.115|65|260820 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.240.75.58.238.176.132|65|781065153 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.240.99.249.119.67.246|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.240.247.85.64.152.127|65|3834169927 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.244.167.57.208.160.198|65|0 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.244.181.47.211.224.203|65|1069219983 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.248.102.242.105.61.191|65|456840 +1.3.6.1.4.1.9.9.84.1.2.1.1.4.72.2.248.152.239.195.3.21|65|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.11.253.152.49.0|70|21022 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.13.101.80.186.24|70|890490990 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.19.127.107.109.69|70|15252 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.20.27.63.32.0|70|131675368 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.26.48.43.110.64|70|22699290 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.27.213.64.7.193|70|150101084 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.28.176.183.230.64|70|31001026 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.29.112.12.222.63|70|15237 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.29.113.113.143.192|70|70311 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.30.19.36.227.127|70|103698880 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.30.74.25.220.0|70|250000924 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.33.85.53.172.240|70|174303 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.33.90.245.1.114|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.37.69.1.131.128|70|191577270 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.37.132.214.160.255|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.64.199.108.1.25|70|16405 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.129.196.110.190.1|70|1400003 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.167.66.9.87.132|70|2264618076 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.167.66.22.190.187|70|274734 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.167.66.23.35.91|70|149081 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.0.183.113.59.104.0|70|629601 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.8.150.173.50.251.78|70|26205521672 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.8.150.173.87.172.30|70|3216390529 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.8.150.173.111.0.204|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.16.232.120.16.65.66|70|205764 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.16.243.17.54.128.34|70|71320 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.24.102.218.150.51.38|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.24.231.40.86.195.127|70|1864503 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.32.241.124.82.190.225|70|24480561934 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.40.199.206.190.7.242|70|19327 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.44.84.45.230.127.63|70|2163737414 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.52.30.107.92.60.57|70|1182683136 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.56.99.187.67.235.134|70|133684 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.56.99.187.68.170.94|70|133644 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.60.138.176.136.62.201|70|493505612 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.72.253.142.144.255.113|70|137114869 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.76.94.12.19.183.198|70|25 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.84.117.208.175.228.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.84.162.116.144.253.1|70|2095382 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.92.138.56.203.83.19|70|266 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.96.156.159.92.62.52|70|16238 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.96.156.159.131.68.30|70|783791767 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.100.158.243.170.1.255|70|353473090 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.108.65.106.151.179.127|70|5273208 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.108.156.237.60.176.134|70|8566571955 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.112.202.155.142.2.255|70|25220040 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.116.160.47.136.177.113|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.120.186.249.71.200.106|70|3997 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.120.186.249.76.125.74|70|68270642613 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.128.113.31.116.248.82|70|28387751 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.132.181.156.178.159.200|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.136.224.243.185.28.82|70|206350214 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.168.12.13.250.14.96|70|31987 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.180.164.227.148.129.34|70|743454258 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.180.222.49.61.219.19|70|11343642 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.184.105.244.210.201.237|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.196.125.79.196.57.127|70|2223443 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.216.103.217.105.249.240|70|15245 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.216.158.243.166.202.39|70|575970416 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.224.172.241.19.43.26|70|688804585 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.228.129.132.158.20.117|70|6454205772 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.228.199.34.33.12.3|70|222464 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.228.199.34.33.12.91|70|157235 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.228.199.34.228.139.63|70|136035866 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.232.183.72.1.31.63|70|7 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.232.186.112.66.116.128|70|19393311 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.248.102.242.105.61.191|70|13234298 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.1.248.194.136.112.220.191|70|24033270 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.11.253.152.49.0|70|10028994 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.13.101.80.186.24|70|829857004 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.19.127.107.109.69|70|15279 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.20.27.63.32.0|70|67547897 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.26.48.43.110.64|70|461329604 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.27.213.64.7.193|70|203160731 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.28.176.183.230.64|70|54824455 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.29.112.12.222.63|70|16619144 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.29.113.113.143.192|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.30.19.36.227.127|70|21504821 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.30.74.25.220.0|70|138057 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.33.85.53.172.240|70|164435772 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.33.90.245.1.114|70|45001 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.37.69.1.131.128|70|433651994 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.37.132.214.160.255|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.64.199.108.1.25|70|506024211 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.129.196.110.190.1|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.167.66.9.87.132|70|1038884045 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.167.66.22.190.187|70|824353 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.167.66.23.35.91|70|1662158906 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.0.183.113.59.104.0|70|4401367 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.8.150.173.50.251.78|70|12958355018 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.8.150.173.87.172.30|70|30516 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.8.150.173.111.0.204|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.16.232.120.16.65.66|70|181840 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.16.243.17.54.128.34|70|28234 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.24.102.218.150.51.38|70|41454 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.24.231.40.86.195.127|70|11644366 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.32.241.124.82.190.225|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.40.199.206.190.7.242|70|188283962 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.44.84.45.230.127.63|70|1156664572 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.52.30.107.92.60.57|70|462679280 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.56.99.187.67.235.134|70|131970 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.56.99.187.68.170.94|70|131965 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.60.138.176.136.62.201|70|1521692325 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.72.253.142.144.255.113|70|309806633 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.76.94.12.19.183.198|70|70145021 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.84.117.208.175.228.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.84.162.116.144.253.1|70|12548261 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.92.138.56.203.83.19|70|1896260 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.96.156.159.92.62.52|70|333694677 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.96.156.159.131.68.30|70|1720024073 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.100.158.243.170.1.255|70|11905925299 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.108.65.106.151.179.127|70|155268232 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.108.156.237.60.176.134|70|5472324724 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.112.202.155.142.2.255|70|75767102 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.116.160.47.136.177.113|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.120.186.249.71.200.106|70|49147860 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.120.186.249.76.125.74|70|3847607158 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.128.113.31.116.248.82|70|13213743998 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.132.181.156.178.159.200|70|36612521 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.136.224.243.185.28.82|70|4757120350 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.168.12.13.250.14.96|70|32021 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.180.164.227.148.129.34|70|253457934 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.180.222.49.61.219.19|70|92706399 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.184.105.244.210.201.237|70|2779293 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.196.125.79.196.57.127|70|38831715 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.216.103.217.105.249.240|70|201042678 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.216.158.243.166.202.39|70|1135166471 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.224.172.241.19.43.26|70|5762875398 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.228.129.132.158.20.117|70|6693846609 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.228.199.34.33.12.3|70|136553326 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.228.199.34.33.12.91|70|122844 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.228.199.34.228.139.63|70|184641679 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.232.183.72.1.31.63|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.232.186.112.66.116.128|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.248.102.242.105.61.191|70|7178028 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.40.2.248.194.136.112.220.191|70|58899679 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.2.201.249.248.113|70|6385806 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.6.246.95.119.127|70|897170 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.8.227.255.252.76|70|53517777 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.9.15.9.0.11|70|23012 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.12.41.34.76.236|70|73604893 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.12.41.62.162.147|70|520480 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.12.41.181.190.238|70|139 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.12.66.178.187.210|70|1794172 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.12.66.252.252.86|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.16.24.231.134.178|70|12071308 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.16.24.231.164.16|70|17085963 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.17.50.133.186.149|70|166172147 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.19.195.96.184.0|70|9202093 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.20.27.63.32.0|70|13632 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.21.23.30.84.94|70|830717 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.24.116.21.210.64|70|38012521 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.25.169.118.1.192|70|559265793 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.25.226.181.239.195|70|41293208 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.27.33.164.155.156|70|153475 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.27.33.177.29.32|70|2123443 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.27.33.187.95.180|70|26821345 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.115.38.204.82|70|1892797281 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.115.103.236.219|70|4470 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.115.179.149.5|70|3949 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.115.215.100.17|70|790110397 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.115.234.215.81|70|10427670827 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.115.234.215.82|70|10573178477 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.176.183.230.64|70|10677 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.28.176.200.212.192|70|10709 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.30.121.156.112.0|70|13603477338 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.31.202.178.123.128|70|6760 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.31.226.65.171.59|70|198622 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.33.160.11.182.192|70|34217399 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.35.4.24.221.64|70|5250512 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.35.156.92.15.192|70|302684996 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.35.156.94.159.240|70|11400144 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.37.132.41.224.128|70|55365647 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.37.144.225.195.65|70|21350879 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.37.144.235.232.42|70|23940 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.37.144.235.238.28|70|64543654 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.37.144.235.242.28|70|23683 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.37.144.235.242.110|70|23477 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.38.203.80.192.192|70|48227232 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.48.72.95.57.47|70|161035 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.48.72.100.234.155|70|902676 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.80.86.187.3.112|70|42393612 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.95.134.146.75.192|70|1052624 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.129.196.110.190.2|70|5718330018 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.129.196.110.223.5|70|11216 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.138.150.149.96.227|70|11042223 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.144.105.117.127.240|70|1658205 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.167.66.9.47.41|70|27724 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.167.66.9.87.148|70|20028 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.167.66.88.23.6|70|24132 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.190.117.58.203.128|70|51431104 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.193.100.27.61.240|70|71895568 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.193.100.51.166.171|70|2855 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.193.100.51.237.27|70|16887693 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.0.193.100.65.92.213|70|2937605 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.2.250.85.1.7.2|70|70268353 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.4.51.137.72.155.34|70|521537950 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.129.244.134.96.176|70|4636351 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.129.244.154.66.149|70|25061 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.129.244.225.239.206|70|26916892 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.150.173.111.0.204|70|18062 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.150.173.246.246.128|70|23913171 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.178.88.103.45.195|70|648432574 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.8.178.88.144.210.163|70|46289397 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.81.157.235|70|2264213 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.143.55.67|70|34006 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.188.184.105|70|3315541 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.189.64.177|70|16249434 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.189.93.0|70|6963161 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.224.213.167|70|5925878 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.235.36.230|70|4573978 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.12.196.122.235.85.152|70|4648405 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.16.5.202.156.4.64|70|17813 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.16.193.114.213.19.94|70|1 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.16.243.17.10.216.158|70|4406388 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.16.243.17.10.216.246|70|7881403 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.16.243.17.104.42.32|70|19659436 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.24.102.218.122.15.147|70|41551454615 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.24.102.218.122.53.204|70|42134679945 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.24.102.218.122.91.149|70|43358978928 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.24.102.218.147.231.181|70|1238462 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.32.224.156.83.193.66|70|1551298 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.32.253.241.76.18.129|70|32303 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.40.153.58.38.139.45|70|179626046 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.40.153.58.191.5.156|70|374140946 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.40.153.58.207.128.210|70|310837373 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.44.33.49.127.241.242|70|7384777 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.52.23.235.75.173.15|70|20892 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.56.188.1.178.91.190|70|2138892 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.64.85.57.64.143.120|70|206506726 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.64.85.57.64.158.145|70|292991027 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.64.180.240.239.56.170|70|35573401 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.64.206.36.6.129.138|70|2710 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.68.76.168.32.234.157|70|3833 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.68.76.168.185.151.121|70|283972040 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.68.236.206.66.148.132|70|1178 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.68.244.119.27.144.32|70|60304401 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.68.244.119.158.95.248|70|2140 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.68.244.119.158.111.248|70|728861 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.76.31.204.1.119.97|70|16249394 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.76.78.53.54.205.255|70|112 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.76.94.12.2.171.236|70|2302000 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.76.94.12.19.222.153|70|17473441 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.76.94.12.20.38.88|70|10880 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.80.61.229.175.250.192|70|783921147 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.80.135.137.24.71.119|70|66176 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.84.117.208.188.232.0|70|8579357 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.84.127.238.97.193.124|70|34 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.84.137.152.224.157.191|70|13834838 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.84.162.116.144.253.0|70|12997 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.88.141.9.180.92.0|70|98006376 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.92.69.39.123.36.54|70|84842234 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.92.69.39.127.191.1|70|111 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.92.94.171.97.249.6|70|1319058 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.92.94.171.176.63.192|70|33 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.92.138.56.58.42.32|70|52839678 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.94.94.171.94.41.28|70|2972040373 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.0.241.116.137.128|70|60477532117 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.18.37.234.169.64|70|138357169 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.100.155.215.80.176|70|21191631 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.127.218.0.87.138|70|10025 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.158.243.170.1.255|70|3424693 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.195.214.91.43.155|70|2893519836 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.100.209.84.59.56.26|70|2647523 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.102.100.155.186.149.28|70|1608967117 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.59.107.239.12.216|70|329082 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.108.211.28.99.104|70|9697660 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.108.211.32.207.218|70|10461256 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.156.237.16.85.3|70|2801457 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.156.237.123.27.209|70|5606 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.156.237.123.93.49|70|519696970 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.179.17.59.157.224|70|202343 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.108.179.17.59.157.244|70|12470837 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.110.218.217.246.228.219|70|85714 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.112.76.165.74.158.178|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.112.228.34.47.210.97|70|4051931 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.116.131.239.37.170.104|70|1188324157 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.116.131.239.37.177.142|70|1185580308 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.116.131.239.46.228.167|70|121533307 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.116.131.239.70.179.65|70|1580772763 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.116.131.239.70.179.68|70|1548472977 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.116.142.248.168.148.129|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.120.186.249.159.52.11|70|1959 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.122.25.247.92.193.30|70|1998821628 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.124.37.134.248.116.96|70|5260062602 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.124.173.116.0.187.191|70|3819 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.124.226.202.79.77.84|70|5440991632 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.128.113.31.116.249.157|70|78507 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.132.120.172.119.75.134|70|1312970035 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.132.181.156.146.224.193|70|100315 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.132.184.2.3.207.16|70|37882079 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.25.35.68|70|22847 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.122.177.141|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.124.36.21|70|11062812 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.130.92.73|70|36841 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.130.110.61|70|4516699 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.134.9.64|70|52440 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.134.10.160|70|36182825 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.144.226.186.136.52.152|70|282080065 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.160.8.111.207.180.145|70|609 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.160.54.159.27.163.196|70|88552 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.160.54.159.103.176.222|70|15 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.160.54.159.215.217.54|70|19649114 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.160.140.248.187.109.17|70|86054394 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.160.224.175.234.64.192|70|24134607 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.164.147.76.218.45.255|70|101 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.172.31.107.33.233.121|70|1027699 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.172.31.107.70.200.117|70|31908 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.172.242.197.113.44.63|70|54633365 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.176.51.166.111.48.26|70|974 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.184.175.103.215.51.196|70|634634 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.184.175.103.216.65.24|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.188.38.199.91.56.97|70|233533989 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.192.103.175.41.32.191|70|10483 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.194.198.97.166.12.124|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.200.141.131.106.119.164|70|1 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.26.250.234.191.96|70|14924789 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.45.224.15.34.141|70|1983 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.45.224.15.39.24|70|6211930 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.78.36.69.9.9|70|2 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.78.36.69.74.9|70|7 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.78.36.77.103.12|70|549762 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.78.36.146.82.0|70|644213231 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.204.78.36.146.104.0|70|374390256 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.4.255.44.205.239|70|8010463 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.4.255.216.51.232|70|195955721 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.4.255.216.51.233|70|189158153 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.201.60.131.10.35|70|7113985 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.202.109.1.215.169|70|21730 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.202.109.137.106.169|70|1192630 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.212.202.109.172.245.242|70|50 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.216.158.243.166.202.47|70|731 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.220.56.225.17.229.123|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.220.210.252.36.73.75|70|19195325 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.224.172.241.3.205.137|70|9208 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.224.172.241.16.227.113|70|308144 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.232.101.73.198.199.128|70|877633400 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.232.186.112.66.116.128|70|7702486214 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.236.19.219.121.143.200|70|100424 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.236.56.115.52.236.16|70|5301993295 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.240.28.45.138.26.139|70|362095019 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.240.47.167.186.142.226|70|2570325 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.240.75.58.179.92.115|70|1479644237 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.240.75.58.238.176.132|70|159872584 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.240.99.249.119.67.246|70|6 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.240.247.85.64.152.127|70|25293168 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.244.167.57.208.160.198|70|3107 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.244.181.47.211.224.203|70|24968953 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.248.102.242.105.61.191|70|11240 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.1.248.152.239.195.3.21|70|405728548 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.2.201.249.248.113|70|2583 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.6.246.95.119.127|70|370777 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.8.227.255.252.76|70|14196983 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.9.15.9.0.11|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.12.41.34.76.236|70|36735187 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.12.41.62.162.147|70|612503 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.12.41.181.190.238|70|4 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.12.66.178.187.210|70|710329 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.12.66.252.252.86|70|744782 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.16.24.231.134.178|70|21662071 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.16.24.231.164.16|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.17.50.133.186.149|70|86749747 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.19.195.96.184.0|70|40101189 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.20.27.63.32.0|70|5966 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.21.23.30.84.94|70|318015 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.24.116.21.210.64|70|5649 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.25.169.118.1.192|70|55322428 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.25.226.181.239.195|70|2901 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.27.33.164.155.156|70|797585 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.27.33.177.29.32|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.27.33.187.95.180|70|6068 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.115.38.204.82|70|550746312 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.115.103.236.219|70|2565 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.115.179.149.5|70|2537 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.115.215.100.17|70|629383777 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.115.234.215.81|70|22936 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.115.234.215.82|70|3114331 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.176.183.230.64|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.28.176.200.212.192|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.30.121.156.112.0|70|4391193969 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.31.202.178.123.128|70|5140 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.31.226.65.171.59|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.33.160.11.182.192|70|56425429 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.35.4.24.221.64|70|15484850 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.35.156.92.15.192|70|735682 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.35.156.94.159.240|70|2897 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.37.132.41.224.128|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.37.144.225.195.65|70|1933970 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.37.144.235.232.42|70|31663958 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.37.144.235.238.28|70|5301 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.37.144.235.242.28|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.37.144.235.242.110|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.38.203.80.192.192|70|5062 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.48.72.95.57.47|70|132951 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.48.72.100.234.155|70|119312 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.80.86.187.3.112|70|38249264 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.95.134.146.75.192|70|272804 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.129.196.110.190.2|70|4036138775 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.129.196.110.223.5|70|5056 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.138.150.149.96.227|70|2754241 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.144.105.117.127.240|70|2902 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.167.66.9.47.41|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.167.66.9.87.148|70|4787 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.167.66.88.23.6|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.190.117.58.203.128|70|6387 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.193.100.27.61.240|70|62614 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.193.100.51.166.171|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.193.100.51.237.27|70|6486490 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.0.193.100.65.92.213|70|1358654 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.2.250.85.1.7.2|70|6176 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.4.51.137.72.155.34|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.129.244.134.96.176|70|2905 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.129.244.154.66.149|70|2903 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.129.244.225.239.206|70|31244364 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.150.173.111.0.204|70|17963 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.150.173.246.246.128|70|4924237 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.178.88.103.45.195|70|277598080 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.8.178.88.144.210.163|70|78105157 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.81.157.235|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.143.55.67|70|669047 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.188.184.105|70|3894534 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.189.64.177|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.189.93.0|70|4942 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.224.213.167|70|896 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.235.36.230|70|4935 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.12.196.122.235.85.152|70|6221 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.16.5.202.156.4.64|70|4671 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.16.193.114.213.19.94|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.16.243.17.10.216.158|70|4933 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.16.243.17.10.216.246|70|167 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.16.243.17.104.42.32|70|10236168 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.24.102.218.122.15.147|70|19954440597 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.24.102.218.122.53.204|70|20245870477 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.24.102.218.122.91.149|70|20541486718 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.24.102.218.147.231.181|70|7428 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.32.224.156.83.193.66|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.32.253.241.76.18.129|70|1468933 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.40.153.58.38.139.45|70|103487442 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.40.153.58.191.5.156|70|34622935 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.40.153.58.207.128.210|70|42887458 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.44.33.49.127.241.242|70|5234 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.52.23.235.75.173.15|70|2747 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.56.188.1.178.91.190|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.64.85.57.64.143.120|70|5051 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.64.85.57.64.158.145|70|5056 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.64.180.240.239.56.170|70|12049432 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.64.206.36.6.129.138|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.68.76.168.32.234.157|70|2516 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.68.76.168.185.151.121|70|274755721 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.68.236.206.66.148.132|70|2900 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.68.244.119.27.144.32|70|23402360 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.68.244.119.158.95.248|70|2901 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.68.244.119.158.111.248|70|320238423 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.76.31.204.1.119.97|70|23977845 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.76.78.53.54.205.255|70|487603389 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.76.94.12.2.171.236|70|25847 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.76.94.12.19.222.153|70|10955762 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.76.94.12.20.38.88|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.80.61.229.175.250.192|70|8199565 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.80.135.137.24.71.119|70|115009 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.84.117.208.188.232.0|70|2875053 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.84.127.238.97.193.124|70|1 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.84.137.152.224.157.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.84.162.116.144.253.0|70|5813 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.88.141.9.180.92.0|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.92.69.39.123.36.54|70|406005 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.92.69.39.127.191.1|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.92.94.171.97.249.6|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.92.94.171.176.63.192|70|20389 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.92.138.56.58.42.32|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.94.94.171.94.41.28|70|60656 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.0.241.116.137.128|70|14662744478 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.18.37.234.169.64|70|58940130 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.100.155.215.80.176|70|6977185 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.127.218.0.87.138|70|6924 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.158.243.170.1.255|70|2618093 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.195.214.91.43.155|70|1056778122 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.100.209.84.59.56.26|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.102.100.155.186.149.28|70|569550221 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.59.107.239.12.216|70|342228 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.108.211.28.99.104|70|5059 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.108.211.32.207.218|70|5060 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.156.237.16.85.3|70|4997 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.156.237.123.27.209|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.156.237.123.93.49|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.179.17.59.157.224|70|27335 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.108.179.17.59.157.244|70|6287 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.110.218.217.246.228.219|70|5620 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.112.76.165.74.158.178|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.112.228.34.47.210.97|70|2095635 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.116.131.239.37.170.104|70|989778 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.116.131.239.37.177.142|70|39162 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.116.131.239.46.228.167|70|36157621 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.116.131.239.70.179.65|70|1957465065 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.116.131.239.70.179.68|70|2551 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.116.142.248.168.148.129|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.120.186.249.159.52.11|70|3170966724 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.122.25.247.92.193.30|70|63731 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.124.37.134.248.116.96|70|2900 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.124.173.116.0.187.191|70|4996 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.124.226.202.79.77.84|70|2901 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.128.113.31.116.249.157|70|74902 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.132.120.172.119.75.134|70|368953539 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.132.181.156.146.224.193|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.132.184.2.3.207.16|70|5205 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.25.35.68|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.122.177.141|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.124.36.21|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.130.92.73|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.130.110.61|70|5132 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.134.9.64|70|6741 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.134.10.160|70|19253756 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.144.226.186.136.52.152|70|159504622 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.160.8.111.207.180.145|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.160.54.159.27.163.196|70|5144 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.160.54.159.103.176.222|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.160.54.159.215.217.54|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.160.140.248.187.109.17|70|36699986 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.160.224.175.234.64.192|70|13 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.164.147.76.218.45.255|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.172.31.107.33.233.121|70|610 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.172.31.107.70.200.117|70|4115 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.172.242.197.113.44.63|70|16795197 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.176.51.166.111.48.26|70|2910 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.184.175.103.215.51.196|70|295928 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.184.175.103.216.65.24|70|5051655 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.188.38.199.91.56.97|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.192.103.175.41.32.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.194.198.97.166.12.124|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.200.141.131.106.119.164|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.26.250.234.191.96|70|6174664 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.45.224.15.34.141|70|94 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.45.224.15.39.24|70|839552 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.78.36.69.9.9|70|2532436817 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.78.36.69.74.9|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.78.36.77.103.12|70|2970 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.78.36.146.82.0|70|132247383 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.204.78.36.146.104.0|70|150954087 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.4.255.44.205.239|70|3688057 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.4.255.216.51.232|70|2901 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.4.255.216.51.233|70|160028631 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.201.60.131.10.35|70|982753 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.202.109.1.215.169|70|25702 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.202.109.137.106.169|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.212.202.109.172.245.242|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.216.158.243.166.202.47|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.220.56.225.17.229.123|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.220.210.252.36.73.75|70|8832010 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.224.172.241.3.205.137|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.224.172.241.16.227.113|70|5098 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.232.101.73.198.199.128|70|159023672 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.232.186.112.66.116.128|70|4027886019 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.236.19.219.121.143.200|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.236.56.115.52.236.16|70|2901 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.240.28.45.138.26.139|70|132431239 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.240.47.167.186.142.226|70|735680 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.240.75.58.179.92.115|70|2898 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.240.75.58.238.176.132|70|9423157 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.240.99.249.119.67.246|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.240.247.85.64.152.127|70|5861158 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.244.167.57.208.160.198|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.244.181.47.211.224.203|70|3656014 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.248.102.242.105.61.191|70|5076 +1.3.6.1.4.1.9.9.84.1.2.3.1.1.72.2.248.152.239.195.3.21|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.11.253.152.49.0|70|1592556 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.13.101.80.186.24|70|695716027049 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.19.127.107.109.69|70|1014231 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.20.27.63.32.0|70|64668861463 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.26.48.43.110.64|70|10102794643 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.27.213.64.7.193|70|51046171310 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.28.176.183.230.64|70|34443842734 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.29.112.12.222.63|70|1028651 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.29.113.113.143.192|70|6046746 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.30.19.36.227.127|70|89900500872 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.30.74.25.220.0|70|228522456129 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.33.85.53.172.240|70|14329626 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.33.90.245.1.114|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.37.69.1.131.128|70|230337337818 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.37.132.214.160.255|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.64.199.108.1.25|70|1109814 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.129.196.110.190.1|70|574157640 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.167.66.9.87.132|70|2968434183242 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.167.66.22.190.187|70|25533021 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.167.66.23.35.91|70|13244971 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.0.183.113.59.104.0|70|550341944 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.8.150.173.50.251.78|70|19487321241759 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.8.150.173.87.172.30|70|4772715655615 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.8.150.173.111.0.204|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.16.232.120.16.65.66|70|15923439 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.16.243.17.54.128.34|70|5803844 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.24.102.218.150.51.38|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.24.231.40.86.195.127|70|1200115651 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.32.241.124.82.190.225|70|34864611383114 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.40.199.206.190.7.242|70|1367049 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.44.84.45.230.127.63|70|3188982680870 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.52.30.107.92.60.57|70|953415825357 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.56.99.187.67.235.134|70|21390758 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.56.99.187.68.170.94|70|21328619 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.60.138.176.136.62.201|70|532245153615 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.72.253.142.144.255.113|70|151294733712 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.76.94.12.19.183.198|70|1840 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.84.117.208.175.228.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.84.162.116.144.253.1|70|1830382741 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.92.138.56.203.83.19|70|19492 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.96.156.159.92.62.52|70|1086335 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.96.156.159.131.68.30|70|495642143410 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.100.158.243.170.1.255|70|149128039167 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.108.65.106.151.179.127|70|3915679663 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.108.156.237.60.176.134|70|9007878675459 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.112.202.155.142.2.255|70|21771646984 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.116.160.47.136.177.113|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.120.186.249.71.200.106|70|343572 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.120.186.249.76.125.74|70|80613013504936 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.128.113.31.116.248.82|70|34861634936 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.132.181.156.178.159.200|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.136.224.243.185.28.82|70|113150559117 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.168.12.13.250.14.96|70|2411880 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.180.164.227.148.129.34|70|788159041329 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.180.222.49.61.219.19|70|10314852052 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.184.105.244.210.201.237|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.196.125.79.196.57.127|70|1700349894 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.216.103.217.105.249.240|70|1013937 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.216.158.243.166.202.39|70|660152717202 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.224.172.241.19.43.26|70|75444314146 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.228.129.132.158.20.117|70|4479604502228 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.228.199.34.33.12.3|70|15636983 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.228.199.34.33.12.91|70|127043912 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.228.199.34.228.139.63|70|195633971554 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.232.183.72.1.31.63|70|1007 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.232.186.112.66.116.128|70|19628822807 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.248.102.242.105.61.191|70|3286380359 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.1.248.194.136.112.220.191|70|16084957159 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.11.253.152.49.0|70|2950182673 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.13.101.80.186.24|70|511324133547 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.19.127.107.109.69|70|972385 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.20.27.63.32.0|70|31974004667 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.26.48.43.110.64|70|169295106410 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.27.213.64.7.193|70|178424874398 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.28.176.183.230.64|70|30536251573 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.29.112.12.222.63|70|6462565629 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.29.113.113.143.192|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.30.19.36.227.127|70|11825245815 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.30.74.25.220.0|70|26634409 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.33.85.53.172.240|70|36850059792 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.33.90.245.1.114|70|2790062 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.37.69.1.131.128|70|97960086835 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.37.132.214.160.255|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.64.199.108.1.25|70|163161940556 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.129.196.110.190.1|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.167.66.9.87.132|70|255304429504 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.167.66.22.190.187|70|474574371 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.167.66.23.35.91|70|1181396864386 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.0.183.113.59.104.0|70|1929440629 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.8.150.173.50.251.78|70|5466989577853 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.8.150.173.87.172.30|70|2244964 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.8.150.173.111.0.204|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.16.232.120.16.65.66|70|13463069 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.16.243.17.54.128.34|70|2057424 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.24.102.218.150.51.38|70|20558001 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.24.231.40.86.195.127|70|7091988157 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.32.241.124.82.190.225|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.40.199.206.190.7.242|70|101999235167 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.44.84.45.230.127.63|70|76817742687 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.52.30.107.92.60.57|70|177893747424 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.56.99.187.67.235.134|70|8819124 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.56.99.187.68.170.94|70|8819095 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.60.138.176.136.62.201|70|517943679181 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.72.253.142.144.255.113|70|87860113374 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.76.94.12.19.183.198|70|37475608098 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.84.117.208.175.228.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.84.162.116.144.253.1|70|5590801434 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.92.138.56.203.83.19|70|1402792149 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.96.156.159.92.62.52|70|448079009746 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.96.156.159.131.68.30|70|1049744609360 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.100.158.243.170.1.255|70|7889373344649 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.108.65.106.151.179.127|70|104263781910 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.108.156.237.60.176.134|70|3404436584346 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.112.202.155.142.2.255|70|23395582626 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.116.160.47.136.177.113|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.120.186.249.71.200.106|70|24234846280 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.120.186.249.76.125.74|70|2647571843855 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.128.113.31.116.248.82|70|3691202740385 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.132.181.156.178.159.200|70|15029531947 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.136.224.243.185.28.82|70|515374640967 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.168.12.13.250.14.96|70|2341979 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.180.164.227.148.129.34|70|146018344859 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.180.222.49.61.219.19|70|31586805832 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.184.105.244.210.201.237|70|1799779443 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.196.125.79.196.57.127|70|17415921469 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.216.103.217.105.249.240|70|121221301587 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.216.158.243.166.202.39|70|326357613835 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.224.172.241.19.43.26|70|6965599249706 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.228.129.132.158.20.117|70|3073624129046 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.228.199.34.33.12.3|70|46509243544 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.228.199.34.33.12.91|70|15210552 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.228.199.34.228.139.63|70|24255674583 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.232.183.72.1.31.63|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.232.186.112.66.116.128|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.248.102.242.105.61.191|70|5384669148 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.40.2.248.194.136.112.220.191|70|23136744742 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.2.201.249.248.113|70|5556954877 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.6.246.95.119.127|70|257361976 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.8.227.255.252.76|70|25585517469 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.9.15.9.0.11|70|2071080 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.12.41.34.76.236|70|102024047925 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.12.41.62.162.147|70|99904549 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.12.41.181.190.238|70|12510 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.12.66.178.187.210|70|911162902 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.12.66.252.252.86|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.16.24.231.134.178|70|11036276265 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.16.24.231.164.16|70|18797606124 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.17.50.133.186.149|70|225054803317 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.19.195.96.184.0|70|8833473786 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.20.27.63.32.0|70|1279219 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.21.23.30.84.94|70|678592681 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.24.116.21.210.64|70|29036325156 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.25.169.118.1.192|70|368167724013 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.25.226.181.239.195|70|41918373591 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.27.33.164.155.156|70|172799523 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.27.33.177.29.32|70|2791307010 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.27.33.187.95.180|70|8222594303 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.115.38.204.82|70|2806193468041 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.115.103.236.219|70|412296 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.115.179.149.5|70|355410 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.115.215.100.17|70|1146591279944 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.115.234.215.81|70|12817391757824 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.115.234.215.82|70|12999707257273 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.176.183.230.64|70|960930 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.28.176.200.212.192|70|963810 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.30.121.156.112.0|70|17021831029493 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.31.202.178.123.128|70|603512 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.31.226.65.171.59|70|73319551 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.33.160.11.182.192|70|31787006363 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.35.4.24.221.64|70|2278373390 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.35.156.92.15.192|70|314131966412 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.35.156.94.159.240|70|17151014008 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.37.132.41.224.128|70|49527495200 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.37.144.225.195.65|70|7135183579 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.37.144.235.232.42|70|2154600 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.37.144.235.238.28|70|67271260689 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.37.144.235.242.28|70|2131470 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.37.144.235.242.110|70|2112930 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.38.203.80.192.192|70|39198535424 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.48.72.95.57.47|70|40693115 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.48.72.100.234.155|70|107463547 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.80.86.187.3.112|70|13207825438 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.95.134.146.75.192|70|235493418 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.129.196.110.190.2|70|3175789643091 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.129.196.110.223.5|70|1009440 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.138.150.149.96.227|70|10281725975 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.144.105.117.127.240|70|1327504268 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.167.66.9.47.41|70|2495160 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.167.66.9.87.148|70|1802520 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.167.66.88.23.6|70|2171880 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.190.117.58.203.128|70|37331976342 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.193.100.27.61.240|70|26069934734 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.193.100.51.166.171|70|256950 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.193.100.51.237.27|70|13228298771 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.0.193.100.65.92.213|70|1867675241 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.2.250.85.1.7.2|70|64524616578 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.4.51.137.72.155.34|70|781839772218 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.129.244.134.96.176|70|1481921584 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.129.244.154.66.149|70|2736959 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.129.244.225.239.206|70|33917487547 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.150.173.111.0.204|70|1941385 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.150.173.246.246.128|70|14132388223 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.178.88.103.45.195|70|605575076171 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.8.178.88.144.210.163|70|41298852052 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.81.157.235|70|203779170 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.143.55.67|70|3060540 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.188.184.105|70|2901073799 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.189.64.177|70|14524882381 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.189.93.0|70|4181550800 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.224.213.167|70|1647114587 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.235.36.230|70|3209068469 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.12.196.122.235.85.152|70|2287234599 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.16.5.202.156.4.64|70|1603170 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.16.193.114.213.19.94|70|64 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.16.243.17.10.216.158|70|2620933512 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.16.243.17.10.216.246|70|5451371005 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.16.243.17.104.42.32|70|8557148529 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.24.102.218.122.15.147|70|57477290418129 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.24.102.218.122.53.204|70|58219188541948 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.24.102.218.122.91.149|70|59992765357522 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.24.102.218.147.231.181|70|1160553639 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.32.224.156.83.193.66|70|600490689 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.32.253.241.76.18.129|70|2907270 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.40.153.58.38.139.45|70|261068824316 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.40.153.58.191.5.156|70|548162402860 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.40.153.58.207.128.210|70|376274523019 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.44.33.49.127.241.242|70|10813722476 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.52.23.235.75.173.15|70|1937902 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.56.188.1.178.91.190|70|855973410 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.64.85.57.64.143.120|70|237373357027 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.64.85.57.64.158.145|70|304681154010 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.64.180.240.239.56.170|70|17956535424 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.64.206.36.6.129.138|70|243900 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.68.76.168.32.234.157|70|344970 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.68.76.168.185.151.121|70|336959399856 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.68.236.206.66.148.132|70|149922 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.68.244.119.27.144.32|70|52304465190 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.68.244.119.158.95.248|70|284071 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.68.244.119.158.111.248|70|150605472 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.76.31.204.1.119.97|70|11153188536 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.76.78.53.54.205.255|70|11395 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.76.94.12.2.171.236|70|1779155821 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.76.94.12.19.222.153|70|14278155767 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.76.94.12.20.38.88|70|832328 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.80.61.229.175.250.192|70|1125279473388 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.80.135.137.24.71.119|70|19032655 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.84.117.208.188.232.0|70|5142950195 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.84.127.238.97.193.124|70|3060 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.84.137.152.224.157.191|70|11144056752 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.84.162.116.144.253.0|70|1209248 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.88.141.9.180.92.0|70|139629993295 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.92.69.39.123.36.54|70|83030922909 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.92.69.39.127.191.1|70|48819 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.92.94.171.97.249.6|70|784994695 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.92.94.171.176.63.192|70|3599 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.92.138.56.58.42.32|70|38386957146 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.94.94.171.94.41.28|70|4198541626692 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.0.241.116.137.128|70|85342972428436 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.18.37.234.169.64|70|151330741144 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.100.155.215.80.176|70|13866928981 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.127.218.0.87.138|70|1068982 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.158.243.170.1.255|70|5017718741 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.195.214.91.43.155|70|3119459881875 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.100.209.84.59.56.26|70|776299576 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.102.100.155.186.149.28|70|2238731410491 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.59.107.239.12.216|70|352765235 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.108.211.28.99.104|70|1632684647 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.108.211.32.207.218|70|2039282694 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.156.237.16.85.3|70|1879365022 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.156.237.123.27.209|70|504540 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.156.237.123.93.49|70|553843408448 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.179.17.59.157.224|70|23948450 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.108.179.17.59.157.244|70|10078285175 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.110.218.217.246.228.219|70|57260472 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.112.76.165.74.158.178|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.112.228.34.47.210.97|70|1896376957 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.116.131.239.37.170.104|70|1726097014671 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.116.131.239.37.177.142|70|1720316526500 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.116.131.239.46.228.167|70|163754694110 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.116.131.239.70.179.65|70|2255341393451 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.116.131.239.70.179.68|70|2210318868726 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.116.142.248.168.148.129|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.120.186.249.159.52.11|70|380332 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.122.25.247.92.193.30|70|2809807173424 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.124.37.134.248.116.96|70|7705506535417 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.124.173.116.0.187.191|70|812290 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.124.226.202.79.77.84|70|8081717735835 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.128.113.31.116.249.157|70|8027301 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.132.120.172.119.75.134|70|1039806271145 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.132.181.156.146.224.193|70|9028350 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.132.184.2.3.207.16|70|29632062493 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.25.35.68|70|2056230 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.122.177.141|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.124.36.21|70|10374059316 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.130.92.73|70|3315717 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.130.110.61|70|2011089202 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.134.9.64|70|5160582 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.134.10.160|70|13285067423 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.144.226.186.136.52.152|70|160470568685 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.160.8.111.207.180.145|70|49846 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.160.54.159.27.163.196|70|8026326 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.160.54.159.103.176.222|70|3855 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.160.54.159.215.217.54|70|18667569855 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.160.140.248.187.109.17|70|88911190099 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.160.224.175.234.64.192|70|19914144770 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.164.147.76.218.45.255|70|7474 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.172.31.107.33.233.121|70|77626597 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.172.31.107.70.200.117|70|2884759 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.172.242.197.113.44.63|70|78689094544 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.176.51.166.111.48.26|70|115222 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.184.175.103.215.51.196|70|748173042 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.184.175.103.216.65.24|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.188.38.199.91.56.97|70|351289480504 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.192.103.175.41.32.191|70|943470 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.194.198.97.166.12.124|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.200.141.131.106.119.164|70|90 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.26.250.234.191.96|70|6367879920 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.45.224.15.34.141|70|235893 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.45.224.15.39.24|70|2849611527 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.78.36.69.9.9|70|3036 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.78.36.69.74.9|70|3431 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.78.36.77.103.12|70|49477871 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.78.36.146.82.0|70|504400454094 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.204.78.36.146.104.0|70|249007125199 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.4.255.44.205.239|70|8346241811 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.4.255.216.51.232|70|161500762107 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.4.255.216.51.233|70|154308457378 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.201.60.131.10.35|70|4118989314 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.202.109.1.215.169|70|1955700 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.202.109.137.106.169|70|496453720 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.212.202.109.172.245.242|70|4868 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.216.158.243.166.202.47|70|65790 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.220.56.225.17.229.123|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.220.210.252.36.73.75|70|19919138522 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.224.172.241.3.205.137|70|828720 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.224.172.241.16.227.113|70|37458866 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.232.101.73.198.199.128|70|853764153853 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.232.186.112.66.116.128|70|2874912577093 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.236.19.219.121.143.200|70|9038220 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.236.56.115.52.236.16|70|7769202714603 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.240.28.45.138.26.139|70|280174344672 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.240.47.167.186.142.226|70|760451867 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.240.75.58.179.92.115|70|2206612240569 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.240.75.58.238.176.132|70|112443488586 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.240.99.249.119.67.246|70|524 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.240.247.85.64.152.127|70|18878181756 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.244.167.57.208.160.198|70|749467 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.244.181.47.211.224.203|70|21630568620 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.248.102.242.105.61.191|70|1013662 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.1.248.152.239.195.3.21|70|341632693106 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.2.201.249.248.113|70|232470 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.6.246.95.119.127|70|257500002 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.8.227.255.252.76|70|1721895629 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.9.15.9.0.11|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.12.41.34.76.236|70|2572851786 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.12.41.62.162.147|70|266168470 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.12.41.181.190.238|70|252 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.12.66.178.187.210|70|403995590 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.12.66.252.252.86|70|76812200 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.16.24.231.134.178|70|14596996115 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.16.24.231.164.16|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.17.50.133.186.149|70|11632919054 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.19.195.96.184.0|70|16253286513 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.20.27.63.32.0|70|536914 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.21.23.30.84.94|70|65553526 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.24.116.21.210.64|70|509538 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.25.169.118.1.192|70|13116910266 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.25.226.181.239.195|70|261090 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.27.33.164.155.156|70|114853388 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.27.33.177.29.32|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.27.33.187.95.180|70|546120 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.115.38.204.82|70|51374652059 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.115.103.236.219|70|230774 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.115.179.149.5|70|228330 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.115.215.100.17|70|51851266221 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.115.234.215.81|70|1721639 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.115.234.215.82|70|1003234011 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.176.183.230.64|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.28.176.200.212.192|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.30.121.156.112.0|70|596960178557 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.31.202.178.123.128|70|462600 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.31.226.65.171.59|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.33.160.11.182.192|70|46043877849 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.35.4.24.221.64|70|3085046660 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.35.156.92.15.192|70|1072146649 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.35.156.94.159.240|70|260730 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.37.132.41.224.128|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.37.144.225.195.65|70|585181100 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.37.144.235.232.42|70|5191979192 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.37.144.235.238.28|70|477090 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.37.144.235.242.28|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.37.144.235.242.110|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.38.203.80.192.192|70|455580 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.48.72.95.57.47|70|9342788 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.48.72.100.234.155|70|8153818 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.80.86.187.3.112|70|18477179464 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.95.134.146.75.192|70|162168753 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.129.196.110.190.2|70|4098600082773 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.129.196.110.223.5|70|455040 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.138.150.149.96.227|70|2179960672 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.144.105.117.127.240|70|261239 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.167.66.9.47.41|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.167.66.9.87.148|70|430830 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.167.66.88.23.6|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.190.117.58.203.128|70|595984 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.193.100.27.61.240|70|5844081 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.193.100.51.166.171|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.193.100.51.237.27|70|3813065552 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.0.193.100.65.92.213|70|506356861 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.2.250.85.1.7.2|70|555840 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.4.51.137.72.155.34|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.129.244.134.96.176|70|261450 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.129.244.154.66.149|70|261270 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.129.244.225.239.206|70|14631717220 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.150.173.111.0.204|70|1197442 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.150.173.246.246.128|70|3583229104 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.178.88.103.45.195|70|24389684217 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.8.178.88.144.210.163|70|16453102113 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.81.157.235|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.143.55.67|70|601762505 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.188.184.105|70|3896824087 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.189.64.177|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.189.93.0|70|444780 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.224.213.167|70|80665 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.235.36.230|70|444150 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.12.196.122.235.85.152|70|559890 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.16.5.202.156.4.64|70|420390 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.16.193.114.213.19.94|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.16.243.17.10.216.158|70|443970 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.16.243.17.10.216.246|70|15030 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.16.243.17.104.42.32|70|6732298602 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.24.102.218.122.15.147|70|12182972805653 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.24.102.218.122.53.204|70|12443026269452 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.24.102.218.122.91.149|70|12363027054357 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.24.102.218.147.231.181|70|671879 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.32.224.156.83.193.66|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.32.253.241.76.18.129|70|1427808593 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.40.153.58.38.139.45|70|7980794432 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.40.153.58.191.5.156|70|2871696860 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.40.153.58.207.128.210|70|31346803982 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.44.33.49.127.241.242|70|1320852 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.52.23.235.75.173.15|70|247230 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.56.188.1.178.91.190|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.64.85.57.64.143.120|70|454590 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.64.85.57.64.158.145|70|455040 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.64.180.240.239.56.170|70|10347192330 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.64.206.36.6.129.138|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.68.76.168.32.234.157|70|226440 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.68.76.168.185.151.121|70|135992370761 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.68.236.206.66.148.132|70|261000 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.68.244.119.27.144.32|70|14067621377 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.68.244.119.158.95.248|70|261090 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.68.244.119.158.111.248|70|21264947254 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.76.31.204.1.119.97|70|22283086349 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.76.78.53.54.205.255|70|35180879900 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.76.94.12.2.171.236|70|32032747 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.76.94.12.19.222.153|70|11275347256 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.76.94.12.20.38.88|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.80.61.229.175.250.192|70|5972929792 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.80.135.137.24.71.119|70|44056134 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.84.117.208.188.232.0|70|2545439357 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.84.127.238.97.193.124|70|60 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.84.137.152.224.157.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.84.162.116.144.253.0|70|523170 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.88.141.9.180.92.0|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.92.69.39.123.36.54|70|278972003 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.92.69.39.127.191.1|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.92.94.171.97.249.6|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.92.94.171.176.63.192|70|3050008 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.92.138.56.58.42.32|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.94.94.171.94.41.28|70|4687576 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.0.241.116.137.128|70|4683182542278 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.18.37.234.169.64|70|29397744008 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.100.155.215.80.176|70|4336978231 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.127.218.0.87.138|70|789336 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.158.243.170.1.255|70|994922626 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.195.214.91.43.155|70|229983337660 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.100.209.84.59.56.26|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.102.100.155.186.149.28|70|56258673598 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.59.107.239.12.216|70|60086413 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.108.211.28.99.104|70|455310 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.108.211.32.207.218|70|455400 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.156.237.16.85.3|70|449730 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.156.237.123.27.209|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.156.237.123.93.49|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.179.17.59.157.224|70|7906056 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.108.179.17.59.157.244|70|565830 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.110.218.217.246.228.219|70|564946 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.112.76.165.74.158.178|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.112.228.34.47.210.97|70|189392469 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.116.131.239.37.170.104|70|98555312 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.116.131.239.37.177.142|70|4068986 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.116.131.239.46.228.167|70|5428070152 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.116.131.239.70.179.65|70|162130871161 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.116.131.239.70.179.68|70|229590 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.116.142.248.168.148.129|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.120.186.249.159.52.11|70|2241510834487 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.122.25.247.92.193.30|70|4960272 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.124.37.134.248.116.96|70|261000 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.124.173.116.0.187.191|70|1328390 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.124.226.202.79.77.84|70|261090 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.128.113.31.116.249.157|70|5556930 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.132.120.172.119.75.134|70|144442860455 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.132.181.156.146.224.193|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.132.184.2.3.207.16|70|479751 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.25.35.68|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.122.177.141|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.124.36.21|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.130.92.73|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.130.110.61|70|461880 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.134.9.64|70|606690 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.134.10.160|70|20698196203 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.144.226.186.136.52.152|70|123829950619 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.160.8.111.207.180.145|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.160.54.159.27.163.196|70|462960 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.160.54.159.103.176.222|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.160.54.159.215.217.54|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.160.140.248.187.109.17|70|31821113421 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.160.224.175.234.64.192|70|888 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.164.147.76.218.45.255|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.172.31.107.33.233.121|70|69899 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.172.31.107.70.200.117|70|370990 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.172.242.197.113.44.63|70|1218946123 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.176.51.166.111.48.26|70|261716 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.184.175.103.215.51.196|70|80260591 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.184.175.103.216.65.24|70|1916213098 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.188.38.199.91.56.97|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.192.103.175.41.32.191|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.194.198.97.166.12.124|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.200.141.131.106.119.164|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.26.250.234.191.96|70|4979018384 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.45.224.15.34.141|70|96002 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.45.224.15.39.24|70|526030912 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.78.36.69.9.9|70|373263942376 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.78.36.69.74.9|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.78.36.77.103.12|70|362893 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.78.36.146.82.0|70|110950594676 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.204.78.36.146.104.0|70|135511247682 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.4.255.44.205.239|70|684697024 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.4.255.216.51.232|70|261090 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.4.255.216.51.233|70|68546053844 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.201.60.131.10.35|70|162692387 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.202.109.1.215.169|70|23487046 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.202.109.137.106.169|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.212.202.109.172.245.242|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.216.158.243.166.202.47|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.220.56.225.17.229.123|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.220.210.252.36.73.75|70|3779579892 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.224.172.241.3.205.137|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.224.172.241.16.227.113|70|458820 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.232.101.73.198.199.128|70|59287405344 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.232.186.112.66.116.128|70|4606189991441 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.236.19.219.121.143.200|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.236.56.115.52.236.16|70|261090 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.240.28.45.138.26.139|70|27572823999 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.240.47.167.186.142.226|70|867473603 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.240.75.58.179.92.115|70|260820 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.240.75.58.238.176.132|70|781065153 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.240.99.249.119.67.246|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.240.247.85.64.152.127|70|3834169927 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.244.167.57.208.160.198|70|0 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.244.181.47.211.224.203|70|1069219983 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.248.102.242.105.61.191|70|456840 +1.3.6.1.4.1.9.9.84.1.2.3.1.2.72.2.248.152.239.195.3.21|70|0 1.3.6.1.4.1.9.9.187.1.2.3.1.3.192.168.5.149.1.1|4|IPv4 Unicast 1.3.6.1.4.1.9.9.187.1.2.3.1.3.192.168.5.149.1.2|4|IPv4 Multicast 1.3.6.1.4.1.9.9.187.1.2.3.1.3.192.168.7.43.1.1|4|IPv4 Unicast