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') {
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|