From 5f3b82de6f9dbaf165f7a5b65b60aadd997d6204 Mon Sep 17 00:00:00 2001 From: PelliX Date: Sun, 31 May 2020 01:24:43 +0200 Subject: [PATCH] Added discovery and graphing for JunOS (SRX) RPM probes (#11187) * Added discovery and graphing for JunOS (SRX) RPM probes * Proposed changes for a percent based sensor type * Fixed missing MIB declaration in JunOS YAML discovery file * Updated Health-information.md to reflect the new percentage value type * Added separate test data for junos_rpm type * Update sensors.php * Update sensors.php * Update functions.inc.php * test re-run * Update junos_rpm.json * percentage -> loss * add ifSpeed prev test data * mis-merge * update sensors * and bgp... Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Co-authored-by: Tony Murray --- app/Models/Sensor.php | 1 + doc/Developing/os/Health-Information.md | 1 + includes/definitions/discovery/junos.yaml | 13 +- includes/discovery/sensors.inc.php | 1 + includes/html/graphs/device/loss.php | 6 + includes/html/graphs/sensor/loss.inc.php | 23 + includes/html/pages/device/health.inc.php | 6 + .../html/pages/device/health/loss.inc.php | 7 + includes/html/pages/device/overview.inc.php | 1 + .../device/overview/sensors/loss.inc.php | 8 + includes/html/pages/health.inc.php | 1 + includes/html/pages/health/loss.inc.php | 7 + resources/lang/en/sensors.php | 6 + tests/data/junos_rpm.json | 13973 ++++++++++++++++ tests/snmpsim/junos_rpm.snmprec | 3635 ++++ 15 files changed, 17688 insertions(+), 1 deletion(-) create mode 100644 includes/html/graphs/device/loss.php create mode 100644 includes/html/graphs/sensor/loss.inc.php create mode 100644 includes/html/pages/device/health/loss.inc.php create mode 100644 includes/html/pages/device/overview/sensors/loss.inc.php create mode 100644 includes/html/pages/health/loss.inc.php create mode 100644 tests/data/junos_rpm.json create mode 100644 tests/snmpsim/junos_rpm.snmprec diff --git a/app/Models/Sensor.php b/app/Models/Sensor.php index 26ff1cee8f..c005b06e2e 100644 --- a/app/Models/Sensor.php +++ b/app/Models/Sensor.php @@ -21,6 +21,7 @@ class Sensor extends DeviceRelatedModel 'frequency' => 'line-chart', 'humidity' => 'tint', 'load' => 'percent', + 'loss' => 'percentage', 'power' => 'power-off', 'power_consumed' => 'plug', 'power_factor' => 'calculator', diff --git a/doc/Developing/os/Health-Information.md b/doc/Developing/os/Health-Information.md index 98d56d00ea..8e85dd0494 100644 --- a/doc/Developing/os/Health-Information.md +++ b/doc/Developing/os/Health-Information.md @@ -25,6 +25,7 @@ the values we expect to see the data in: | frequency | Hz | | humidity | % | | load | % | +| loss | % | | power | W | | power_consumed | kWh | | power_factor | ratio | diff --git a/includes/definitions/discovery/junos.yaml b/includes/definitions/discovery/junos.yaml index 8fbaacdd10..c35c60d849 100644 --- a/includes/definitions/discovery/junos.yaml +++ b/includes/definitions/discovery/junos.yaml @@ -1,4 +1,4 @@ -mib: JUNIPER-IFOPTICS-MIB:JNX-OPT-IF-EXT-MIB:IF-MIB:JUNIPER-MIB:JUNIPER-SRX5000-SPU-MONITORING-MIB:JUNIPER-ALARM-MIB:JUNIPER-VIRTUALCHASSIS-MIB +mib: JUNIPER-IFOPTICS-MIB:JNX-OPT-IF-EXT-MIB:IF-MIB:JUNIPER-MIB:JUNIPER-SRX5000-SPU-MONITORING-MIB:JUNIPER-ALARM-MIB:JUNIPER-VIRTUALCHASSIS-MIB:JUNIPER-VIRTUALCHASSIS-MIB:JUNIPER-RPM-MIB modules: processors: data: @@ -118,6 +118,17 @@ modules: divisor: 1000 descr: '{{ $ifDescr }} Tx Bias' index: 'jnxPMCurTxLaserBiasCurrent.{{ $index }}' + loss: + data: + - + oid: jnxRpmResultsSummaryTable + value: jnxRpmResSumPercentLost + num_oid: '.1.3.6.1.4.1.2636.3.50.1.2.1.{{ $index_string }}' + entPhysicalIndex: '{{ $index }}' + group: RPM Probes + entPhysicalIndex_measured: 'probes' + descr: '{{ $index }} Probe Loss' + index: 'jnxRpmResSumPercentLost.{{ $index }}' count: data: - diff --git a/includes/discovery/sensors.inc.php b/includes/discovery/sensors.inc.php index 6900c7b04b..80b73c4a9f 100644 --- a/includes/discovery/sensors.inc.php +++ b/includes/discovery/sensors.inc.php @@ -51,6 +51,7 @@ $run_sensors = array( 'frequency', 'humidity', 'load', + 'loss', 'power', 'power_consumed', 'power_factor', diff --git a/includes/html/graphs/device/loss.php b/includes/html/graphs/device/loss.php new file mode 100644 index 0000000000..6cd26944f7 --- /dev/null +++ b/includes/html/graphs/device/loss.php @@ -0,0 +1,6 @@ + "Power Factor", 'dbm' => "dBm", 'load' => "Load", + 'loss' => 'Loss', 'state' => "State", 'count' => "Count", 'signal' => "Signal", diff --git a/includes/html/pages/health/loss.inc.php b/includes/html/pages/health/loss.inc.php new file mode 100644 index 0000000000..73548b7ba3 --- /dev/null +++ b/includes/html/pages/health/loss.inc.php @@ -0,0 +1,7 @@ + '%', 'unit_long' => 'Percent', ], + 'loss' => [ + 'short' => 'Percent', + 'long' => 'Loss Percentage', + 'unit' => '%', + 'unit_long' => 'percentage', + ], 'power' => [ 'short' => 'Power', 'long' => 'Power', diff --git a/tests/data/junos_rpm.json b/tests/data/junos_rpm.json new file mode 100644 index 0000000000..dd89bc1338 --- /dev/null +++ b/tests/data/junos_rpm.json @@ -0,0 +1,13973 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2636.1.1.1.2.39", + "sysDescr": "Juniper SRX240B gsm-fw", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "junos", + "type": "network", + "serial": null, + "icon": "junos.png", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2636.1.1.1.2.39", + "sysDescr": "Juniper SRX240B gsm-fw", + "sysContact": "", + "version": "12.1X46-D86", + "hardware": "Juniper SRX240H Internet Router", + "features": null, + "os": "junos", + "type": "network", + "serial": "AG3213AK0210", + "icon": "junos.png", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fxp2", + "ifName": "fxp2", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "fxp2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo0", + "ifName": "lo0", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "tap", + "ifName": "tap", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "tap", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gre", + "ifName": "gre", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "gre", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ipip", + "ifName": "ipip", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ipip", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "pime", + "ifName": "pime", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "pime", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "pimd", + "ifName": "pimd", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "pimd", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "mtun", + "ifName": "mtun", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "mtun", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fxp2.0", + "ifName": "fxp2.0", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "fxp2.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo0.0", + "ifName": "lo0.0", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo0.16384", + "ifName": "lo0.16384", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo0.16384", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo0.16385", + "ifName": "lo0.16385", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo0.16385", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo0.32768", + "ifName": "lo0.32768", + "portName": null, + "ifIndex": 248, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo0.32768", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ae0", + "ifName": "ae0", + "portName": null, + "ifIndex": 501, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "ae0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "pp0", + "ifName": "pp0", + "portName": null, + "ifIndex": 502, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "pp0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "irb", + "ifName": "irb", + "portName": null, + "ifIndex": 503, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "irb", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "st0", + "ifName": "st0", + "portName": null, + "ifIndex": 504, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Tunnel Interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "st0.0", + "ifName": "st0.0", + "portName": null, + "ifIndex": 505, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "st0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ppd0", + "ifName": "ppd0", + "portName": null, + "ifIndex": 506, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ppd0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ppe0", + "ifName": "ppe0", + "portName": null, + "ifIndex": 507, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ppe0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "st0.1", + "ifName": "st0.1", + "portName": null, + "ifIndex": 508, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PADNET #1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan", + "ifName": "vlan", + "portName": null, + "ifIndex": 509, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "vlan", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "st0.2", + "ifName": "st0.2", + "portName": null, + "ifIndex": 510, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PELNET #1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "st0.3", + "ifName": "st0.3", + "portName": null, + "ifIndex": 511, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PADNET #2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "st0.4", + "ifName": "st0.4", + "portName": null, + "ifIndex": 512, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PELNET #2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan.1", + "ifName": "vlan.1", + "portName": null, + "ifIndex": 513, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "Untagged VLAN", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan.2", + "ifName": "vlan.2", + "portName": null, + "ifIndex": 514, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "VLAN #2 (Servers)", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan.5", + "ifName": "vlan.5", + "portName": null, + "ifIndex": 515, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "VLAN #5 (VoIP)", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan.10", + "ifName": "vlan.10", + "portName": null, + "ifIndex": 516, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "VLAN #10 (LAN)", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan.112", + "ifName": "vlan.112", + "portName": null, + "ifIndex": 517, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "VLAN #112 (PELNET Co-Lo)", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/0", + "ifName": "ge-0/0/0", + "portName": null, + "ifIndex": 518, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Uplink GSM-CORE-1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/1", + "ifName": "ge-0/0/1", + "portName": null, + "ifIndex": 519, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Uplink GSM-CORE-2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/0.0", + "ifName": "ge-0/0/0.0", + "portName": null, + "ifIndex": 520, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/2", + "ifName": "ge-0/0/2", + "portName": null, + "ifIndex": 521, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/3", + "ifName": "ge-0/0/3", + "portName": null, + "ifIndex": 522, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/4", + "ifName": "ge-0/0/4", + "portName": null, + "ifIndex": 523, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/5", + "ifName": "ge-0/0/5", + "portName": null, + "ifIndex": 524, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/1.0", + "ifName": "ge-0/0/1.0", + "portName": null, + "ifIndex": 525, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/1.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/6", + "ifName": "ge-0/0/6", + "portName": null, + "ifIndex": 526, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "KPN Uplink", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/7", + "ifName": "ge-0/0/7", + "portName": null, + "ifIndex": 527, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ziggo Uplink", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/8", + "ifName": "ge-0/0/8", + "portName": null, + "ifIndex": 528, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/6.0", + "ifName": "ge-0/0/6.0", + "portName": null, + "ifIndex": 529, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/6.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/7.0", + "ifName": "ge-0/0/7.0", + "portName": null, + "ifIndex": 530, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/7.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/9", + "ifName": "ge-0/0/9", + "portName": null, + "ifIndex": 531, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/10", + "ifName": "ge-0/0/10", + "portName": null, + "ifIndex": 532, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/11", + "ifName": "ge-0/0/11", + "portName": null, + "ifIndex": 533, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/11", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/12", + "ifName": "ge-0/0/12", + "portName": null, + "ifIndex": 534, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/12", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/13", + "ifName": "ge-0/0/13", + "portName": null, + "ifIndex": 535, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/13", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/14", + "ifName": "ge-0/0/14", + "portName": null, + "ifIndex": 536, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/14", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/15", + "ifName": "ge-0/0/15", + "portName": null, + "ifIndex": 537, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/15", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sp-0/0/0", + "ifName": "sp-0/0/0", + "portName": null, + "ifIndex": 538, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "sp-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sp-0/0/0.0", + "ifName": "sp-0/0/0.0", + "portName": null, + "ifIndex": 539, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "sp-0/0/0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gr-0/0/0", + "ifName": "gr-0/0/0", + "portName": null, + "ifIndex": 540, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "gr-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ip-0/0/0", + "ifName": "ip-0/0/0", + "portName": null, + "ifIndex": 541, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ip-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lsq-0/0/0", + "ifName": "lsq-0/0/0", + "portName": null, + "ifIndex": 542, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "pppMultilinkBundle", + "ifAlias": "lsq-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "mt-0/0/0", + "ifName": "mt-0/0/0", + "portName": null, + "ifIndex": 543, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "mt-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lt-0/0/0", + "ifName": "lt-0/0/0", + "portName": null, + "ifIndex": 544, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "lt-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sp-0/0/0.16383", + "ifName": "sp-0/0/0.16383", + "portName": null, + "ifIndex": 545, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "sp-0/0/0.16383", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_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": "fxp2", + "ifName": "fxp2", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "fxp2", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 3207, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": 11931856, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": 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": 596592800, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "lo0", + "ifName": "lo0", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3210, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 31858111, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 31858111, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1465485943, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1465485943, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "tap", + "ifName": "tap", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "tap", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3217, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "gre", + "ifName": "gre", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "gre", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3209, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ipip", + "ifName": "ipip", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "ipip", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3209, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "pime", + "ifName": "pime", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "pime", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3216, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "pimd", + "ifName": "pimd", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "pimd", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3215, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "mtun", + "ifName": "mtun", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "mtun", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3214, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "fxp2.0", + "ifName": "fxp2.0", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "fxp2.0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 3208, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "lo0.0", + "ifName": "lo0.0", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3210, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "lo0.16384", + "ifName": "lo0.16384", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.16384", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3211, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "lo0.16385", + "ifName": "lo0.16385", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.16385", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3212, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "lo0.32768", + "ifName": "lo0.32768", + "portName": null, + "ifIndex": 248, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "softwareLoopback", + "ifAlias": "lo0.32768", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3213, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ae0", + "ifName": "ae0", + "portName": null, + "ifIndex": 501, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "ieee8023adLag", + "ifAlias": "ae0", + "ifPhysAddress": "54e032aaa720", + "ifHardType": null, + "ifLastChange": 4451, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "pp0", + "ifName": "pp0", + "portName": null, + "ifIndex": 502, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1532, + "ifType": "other", + "ifAlias": "pp0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 4455, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "irb", + "ifName": "irb", + "portName": null, + "ifIndex": 503, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "irb", + "ifPhysAddress": "54e032aaa750", + "ifHardType": null, + "ifLastChange": 4460, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "st0", + "ifName": "st0", + "portName": null, + "ifIndex": 504, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "other", + "ifAlias": "Tunnel Interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 4468, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2781655198, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2831521563, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 918682804298, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1867916239978, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "st0.0", + "ifName": "st0.0", + "portName": null, + "ifIndex": 505, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "propVirtual", + "ifAlias": "st0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 4473, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ppd0", + "ifName": "ppd0", + "portName": null, + "ifIndex": 506, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "ppd0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 4470, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ppe0", + "ifName": "ppe0", + "portName": null, + "ifIndex": 507, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "ppe0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 4478, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "st0.1", + "ifName": "st0.1", + "portName": null, + "ifIndex": 508, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1436, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PADNET #1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 1190288449, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 473040485, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2752074, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 60436449064, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 285758024, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "vlan", + "ifName": "vlan", + "portName": null, + "ifIndex": 509, + "ifSpeed": 2000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 2000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "vlan", + "ifPhysAddress": "54e032aaa6b0", + "ifHardType": null, + "ifLastChange": 5765, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4901848760, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 8664842972, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2412312773856, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6326501907915, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 2567625, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": 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": "st0.2", + "ifName": "st0.2", + "portName": null, + "ifIndex": 510, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1436, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PELNET #1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 996705524, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2291190880, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11058649, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 855830447942, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6524550924, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "st0.3", + "ifName": "st0.3", + "portName": null, + "ifIndex": 511, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1436, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PADNET #2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 1172450787, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4718605, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 546159232, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 413304481, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 450515617836, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "st0.4", + "ifName": "st0.4", + "portName": null, + "ifIndex": 512, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1436, + "ifType": "propVirtual", + "ifAlias": "Tunnel Interface PELNET #2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 1174823398, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 12705229, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2271551608, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1907931463, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1410481882029, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "vlan.1", + "ifName": "vlan.1", + "portName": null, + "ifIndex": 513, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "Untagged VLAN", + "ifPhysAddress": "54e032aaa6b0", + "ifHardType": null, + "ifLastChange": 6581, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1791198742, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 3836159958, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 557157994900, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4770096097032, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "vlan #2 ", + "port_descr_descr": "Servers", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": "Servers", + "ifDescr": "vlan.2", + "ifName": "vlan.2", + "portName": null, + "ifIndex": 514, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "VLAN #2 (Servers)", + "ifPhysAddress": "54e032aaa6b0", + "ifHardType": null, + "ifLastChange": 6585, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "vlan #5 ", + "port_descr_descr": "VoIP", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": "VoIP", + "ifDescr": "vlan.5", + "ifName": "vlan.5", + "portName": null, + "ifIndex": 515, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "VLAN #5 (VoIP)", + "ifPhysAddress": "54e032aaa6b0", + "ifHardType": null, + "ifLastChange": 6587, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": 2, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": 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": 168, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "vlan #10 ", + "port_descr_descr": "LAN", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": "LAN", + "ifDescr": "vlan.10", + "ifName": "vlan.10", + "portName": null, + "ifIndex": 516, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "VLAN #10 (LAN)", + "ifPhysAddress": "54e032aaa6b0", + "ifHardType": null, + "ifLastChange": 6582, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": 2, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": 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": 168, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "vlan #112 ", + "port_descr_descr": "PELNET Co-Lo", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": "PELNET Co-Lo", + "ifDescr": "vlan.112", + "ifName": "vlan.112", + "portName": null, + "ifIndex": 517, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "VLAN #112 (PELNET Co-Lo)", + "ifPhysAddress": "54e032aaa6b0", + "ifHardType": null, + "ifLastChange": 6580, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2978837382, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4828683010, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1846668325072, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1555651429987, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "ge-0/0/0", + "ifName": "ge-0/0/0", + "portName": null, + "ifIndex": 518, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "Uplink GSM-CORE-1", + "ifPhysAddress": "54e032aaa6a0", + "ifHardType": null, + "ifLastChange": 6559, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1558004, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 118327954, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 16081013526, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": 45, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 125497976, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 593606, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 49273887, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/1", + "ifName": "ge-0/0/1", + "portName": null, + "ifIndex": 519, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "Uplink GSM-CORE-2", + "ifPhysAddress": "54e032aaa6a1", + "ifHardType": null, + "ifLastChange": 6559, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4758860382, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6719302716, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2512727527832, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5850769967027, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": 107938107, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 17560135, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 41597535, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 6704506, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/0.0", + "ifName": "ge-0/0/0.0", + "portName": null, + "ifIndex": 520, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/0.0", + "ifPhysAddress": "54e032aaa6a0", + "ifHardType": null, + "ifLastChange": 6559, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1187253, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 184408430, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 234277352, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 16206546286, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "ge-0/0/2", + "ifName": "ge-0/0/2", + "portName": null, + "ifIndex": 521, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/2", + "ifPhysAddress": "54e032aaa6a2", + "ifHardType": null, + "ifLastChange": 5561, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/3", + "ifName": "ge-0/0/3", + "portName": null, + "ifIndex": 522, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/3", + "ifPhysAddress": "54e032aaa6a3", + "ifHardType": null, + "ifLastChange": 5564, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/4", + "ifName": "ge-0/0/4", + "portName": null, + "ifIndex": 523, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/4", + "ifPhysAddress": "54e032aaa6a4", + "ifHardType": null, + "ifLastChange": 5569, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/5", + "ifName": "ge-0/0/5", + "portName": null, + "ifIndex": 524, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/5", + "ifPhysAddress": "54e032aaa6a5", + "ifHardType": null, + "ifLastChange": 5573, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/1.0", + "ifName": "ge-0/0/1.0", + "portName": null, + "ifIndex": 525, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/1.0", + "ifPhysAddress": "54e032aaa6a1", + "ifHardType": null, + "ifLastChange": 6559, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4930371563, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6750271840, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2515408342733, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5850895456567, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "ge-0/0/6", + "ifName": "ge-0/0/6", + "portName": null, + "ifIndex": 526, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "KPN Uplink", + "ifPhysAddress": "7c3953e38528", + "ifHardType": null, + "ifLastChange": 6960, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 39182020, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2832934202, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 23194406497, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2042634293609, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": 2124822, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 15715533, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 793578, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 429959, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/7", + "ifName": "ge-0/0/7", + "portName": null, + "ifIndex": 527, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "Ziggo Uplink", + "ifPhysAddress": "940c6dee6ff9", + "ifHardType": null, + "ifLastChange": 369124922, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 6312090361, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1533116623, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 5823315416420, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 490120348210, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": 77162, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 211485, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 429905, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/8", + "ifName": "ge-0/0/8", + "portName": null, + "ifIndex": 528, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/8", + "ifPhysAddress": "54e032aaa6a8", + "ifHardType": null, + "ifLastChange": 5588, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/6.0", + "ifName": "ge-0/0/6.0", + "portName": null, + "ifIndex": 529, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/6.0", + "ifPhysAddress": "7c3953e38528", + "ifHardType": null, + "ifLastChange": 6960, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 42100420, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2850477302, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 23193287737, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2042420576709, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "ge-0/0/7.0", + "ifName": "ge-0/0/7.0", + "portName": null, + "ifIndex": 530, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/7.0", + "ifPhysAddress": "940c6dee6ff9", + "ifHardType": null, + "ifLastChange": 369124922, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 6312158526, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1535029064, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 5823314347860, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 489953556750, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": 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": "ge-0/0/9", + "ifName": "ge-0/0/9", + "portName": null, + "ifIndex": 531, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/9", + "ifPhysAddress": "54e032aaa6a9", + "ifHardType": null, + "ifLastChange": 5596, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/10", + "ifName": "ge-0/0/10", + "portName": null, + "ifIndex": 532, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/10", + "ifPhysAddress": "54e032aaa6aa", + "ifHardType": null, + "ifLastChange": 5602, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/11", + "ifName": "ge-0/0/11", + "portName": null, + "ifIndex": 533, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/11", + "ifPhysAddress": "54e032aaa6ab", + "ifHardType": null, + "ifLastChange": 5603, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/12", + "ifName": "ge-0/0/12", + "portName": null, + "ifIndex": 534, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/12", + "ifPhysAddress": "54e032aaa6ac", + "ifHardType": null, + "ifLastChange": 5606, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/13", + "ifName": "ge-0/0/13", + "portName": null, + "ifIndex": 535, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/13", + "ifPhysAddress": "54e032aaa6ad", + "ifHardType": null, + "ifLastChange": 5614, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/14", + "ifName": "ge-0/0/14", + "portName": null, + "ifIndex": 536, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/14", + "ifPhysAddress": "54e032aaa6ae", + "ifHardType": null, + "ifLastChange": 5621, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ge-0/0/15", + "ifName": "ge-0/0/15", + "portName": null, + "ifIndex": 537, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-0/0/15", + "ifPhysAddress": "54e032aaa6af", + "ifHardType": null, + "ifLastChange": 5625, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "sp-0/0/0", + "ifName": "sp-0/0/0", + "portName": null, + "ifIndex": 538, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "other", + "ifAlias": "sp-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 6359, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "sp-0/0/0.0", + "ifName": "sp-0/0/0.0", + "portName": null, + "ifIndex": 539, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "propVirtual", + "ifAlias": "sp-0/0/0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 6359, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "gr-0/0/0", + "ifName": "gr-0/0/0", + "portName": null, + "ifIndex": 540, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "gr-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 5648, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "ip-0/0/0", + "ifName": "ip-0/0/0", + "portName": null, + "ifIndex": 541, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "ip-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 5652, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "lsq-0/0/0", + "ifName": "lsq-0/0/0", + "portName": null, + "ifIndex": 542, + "ifSpeed": 622000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 622, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1504, + "ifType": "pppMultilinkBundle", + "ifAlias": "lsq-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 6459, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "mt-0/0/0", + "ifName": "mt-0/0/0", + "portName": null, + "ifIndex": 543, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "mt-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 6459, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "lt-0/0/0", + "ifName": "lt-0/0/0", + "portName": null, + "ifIndex": 544, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "lt-0/0/0", + "ifPhysAddress": "54e032aaa6a0", + "ifHardType": null, + "ifLastChange": 5662, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "sp-0/0/0.16383", + "ifName": "sp-0/0/0.16383", + "portName": null, + "ifIndex": 545, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "propVirtual", + "ifAlias": "sp-0/0/0.16383", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 6359, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.8.9.1.0.0", + "processor_index": "9.1.0.0", + "processor_type": "junos", + "processor_usage": 38, + "processor_descr": "Routing Engine", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2636.3.39.1.12.1.1.1.4.0", + "processor_index": "0", + "processor_type": "junos", + "processor_usage": 4, + "processor_descr": "single", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "9.1.0.0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "junos", + "mempool_precision": 1, + "mempool_descr": "Routing Engine", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "9.1.0.0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "junos", + "mempool_precision": 1, + "mempool_descr": "Routing Engine", + "mempool_perc": 70, + "mempool_used": 751619277, + "mempool_free": 322122547, + "mempool_total": 1073741824, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.39.1.12.1.1.1.6.0", + "sensor_index": "jnxJsSPUMonitoringCurrentFlowSession.0", + "sensor_type": "junos", + "sensor_descr": "Node 0 FPC 0 SPU 0 Flow Count", + "group": "Sessions", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 13153, + "sensor_limit": 131072, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.20.75.80.78.46.75.80.78.45.82.80.77.46.97.108.108.84.101.115.116.115", + "sensor_index": "jnxRpmResSumPercentLost.KPN.KPN-RPM.allTests", + "sensor_type": "junos", + "sensor_descr": "KPN.KPN-RPM.allTests Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "KPN.KPN-RPM.allT", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.23.75.80.78.46.75.80.78.45.82.80.77.46.99.117.114.114.101.110.116.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.KPN.KPN-RPM.currentTest", + "sensor_type": "junos", + "sensor_descr": "KPN.KPN-RPM.currentTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "KPN.KPN-RPM.curr", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.29.75.80.78.46.75.80.78.45.82.80.77.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.KPN.KPN-RPM.lastCompletedTest", + "sensor_type": "junos", + "sensor_descr": "KPN.KPN-RPM.lastCompletedTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "KPN.KPN-RPM.last", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.24.90.73.71.71.79.46.90.73.71.71.79.45.82.80.77.46.97.108.108.84.101.115.116.115", + "sensor_index": "jnxRpmResSumPercentLost.ZIGGO.ZIGGO-RPM.allTests", + "sensor_type": "junos", + "sensor_descr": "ZIGGO.ZIGGO-RPM.allTests Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "ZIGGO.ZIGGO-RPM.", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.27.90.73.71.71.79.46.90.73.71.71.79.45.82.80.77.46.99.117.114.114.101.110.116.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.ZIGGO.ZIGGO-RPM.currentTest", + "sensor_type": "junos", + "sensor_descr": "ZIGGO.ZIGGO-RPM.currentTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "ZIGGO.ZIGGO-RPM.", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.33.90.73.71.71.79.46.90.73.71.71.79.45.82.80.77.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.ZIGGO.ZIGGO-RPM.lastCompletedTest", + "sensor_type": "junos", + "sensor_descr": "ZIGGO.ZIGGO-RPM.lastCompletedTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "ZIGGO.ZIGGO-RPM.", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.2.1.0.0", + "sensor_index": "jnxFruName.2.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PEM 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.0.0", + "sensor_index": "jnxFruName.4.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "SRX240 PowerSupply fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.2.0.0", + "sensor_index": "jnxFruName.4.2.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "SRX240 PowerSupply fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.3.0.0", + "sensor_index": "jnxFruName.4.3.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "SRX240 CPU fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.4.0.0", + "sensor_index": "jnxFruName.4.4.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "SRX240 CPU fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.5.0.0", + "sensor_index": "jnxFruName.4.5.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "SRX240 IO fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.6.0.0", + "sensor_index": "jnxFruName.4.6.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "SRX240 IO fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.7.1.0.0", + "sensor_index": "jnxFruName.7.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: FPC @ 0/*/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.1.1.0", + "sensor_index": "jnxFruName.8.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 16x GE Base PIC @ 0/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.9.1.0.0", + "sensor_index": "jnxFruName.9.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Routing Engine", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.4.2.3.1.0", + "sensor_index": "0", + "sensor_type": "jnxRedAlarmState", + "sensor_descr": "Red Alarm", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxRedAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.4.2.2.1.0", + "sensor_index": "0", + "sensor_type": "jnxYellowAlarmState", + "sensor_descr": "Yellow Alarm", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxYellowAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.9.1.0.0", + "sensor_index": "9.1.0.0", + "sensor_type": "junos", + "sensor_descr": "Routing Engine", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 45, + "sensor_limit": 65, + "sensor_limit_warn": null, + "sensor_limit_low": 35, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "jnxFruTable", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "empty", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "present", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "jnxFruTable", + "state_descr": "ready", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "announceOnline", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "online", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "anounceOffline", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "jnxFruTable", + "state_descr": "offline", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "jnxFruTable", + "state_descr": "diagnostic", + "state_draw_graph": 1, + "state_value": 9, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "standby", + "state_draw_graph": 1, + "state_value": 10, + "state_generic_value": 3 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "on", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "on", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 2 + } + ] + }, + "poller": "matches discovery" + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "1", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da0s1a, mounted on: /", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "14", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/usr, mounted on: /junos/cf/usr", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "15", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/boot, mounted on: /junos/cf/boot", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "16", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md1, mounted on: /junos", + "storage_size": 432441344, + "storage_units": 2048, + "storage_used": 432441344, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "17", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf, mounted on: /junos/cf", + "storage_size": 20492288, + "storage_units": 2048, + "storage_used": 1312768, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "2", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/bo0s3e, mounted on: /config", + "storage_size": 25473024, + "storage_units": 2048, + "storage_used": 286720, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "20", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/boot, mounted on: /junos/cf/boot", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "21", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/usr, mounted on: /junos/cf/usr1", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "23", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/var/log, mounted on: /jail/var/log", + "storage_size": 359051264, + "storage_units": 2048, + "storage_used": 10844160, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "5", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/bo0s3f, mounted on: /cf/var", + "storage_size": 359051264, + "storage_units": 2048, + "storage_used": 10844160, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "6", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/var/jail, mounted on: /jail/var", + "storage_size": 359051264, + "storage_units": 2048, + "storage_used": 10844160, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "7", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md2, mounted on: /mfs", + "storage_size": 175984640, + "storage_units": 2048, + "storage_used": 20006912, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "8", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md3, mounted on: /mfs/var/run/utm", + "storage_size": 41136128, + "storage_units": 2048, + "storage_used": 4096, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "9", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md4, mounted on: /jail/mfs", + "storage_size": 1929216, + "storage_units": 2048, + "storage_used": 4096, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "1", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da0s1a, mounted on: /", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 150708224, + "storage_perc": 51, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "14", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/usr, mounted on: /junos/cf/usr", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 150708224, + "storage_perc": 51, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "15", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/boot, mounted on: /junos/cf/boot", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 150708224, + "storage_perc": 51, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "16", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md1, mounted on: /junos", + "storage_size": 432441344, + "storage_units": 2048, + "storage_used": 432441344, + "storage_free": 0, + "storage_perc": 100, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "17", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf, mounted on: /junos/cf", + "storage_size": 20492288, + "storage_units": 2048, + "storage_used": 1312768, + "storage_free": 19179520, + "storage_perc": 6, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "2", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/bo0s3e, mounted on: /config", + "storage_size": 25473024, + "storage_units": 2048, + "storage_used": 286720, + "storage_free": 25186304, + "storage_perc": 1, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "20", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/boot, mounted on: /junos/cf/boot", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 150708224, + "storage_perc": 51, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "21", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/usr, mounted on: /junos/cf/usr1", + "storage_size": 306229248, + "storage_units": 2048, + "storage_used": 155521024, + "storage_free": 150708224, + "storage_perc": 51, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "23", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/var/log, mounted on: /jail/var/log", + "storage_size": 359051264, + "storage_units": 2048, + "storage_used": 10844160, + "storage_free": 348207104, + "storage_perc": 3, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "5", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/bo0s3f, mounted on: /cf/var", + "storage_size": 359051264, + "storage_units": 2048, + "storage_used": 10844160, + "storage_free": 348207104, + "storage_perc": 3, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "6", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/cf/var/jail, mounted on: /jail/var", + "storage_size": 359051264, + "storage_units": 2048, + "storage_used": 10844160, + "storage_free": 348207104, + "storage_perc": 3, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "7", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md2, mounted on: /mfs", + "storage_size": 175984640, + "storage_units": 2048, + "storage_used": 20006912, + "storage_free": 155977728, + "storage_perc": 11, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "8", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md3, mounted on: /mfs/var/run/utm", + "storage_size": 41136128, + "storage_units": 2048, + "storage_used": 4096, + "storage_free": 41132032, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "9", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md4, mounted on: /jail/mfs", + "storage_size": 1929216, + "storage_units": 2048, + "storage_used": 4096, + "storage_free": 1925120, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.13", + "bgpPeerRemoteAs": 65501, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.17", + "bgpPeerRemoteAs": 65501, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.25", + "bgpPeerRemoteAs": 65503, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.29", + "bgpPeerRemoteAs": 65503, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.0.251.13", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.0.251.17", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.0.251.25", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.0.251.29", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + }, + "poller": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.13", + "bgpPeerRemoteAs": 65501, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.0.251.14", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 2951, + "bgpPeerOutUpdates": 1348, + "bgpPeerInTotalMessages": 23084, + "bgpPeerOutTotalMessages": 21544, + "bgpPeerFsmEstablishedTime": 183619, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.17", + "bgpPeerRemoteAs": 65501, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.0.251.18", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 15434, + "bgpPeerOutUpdates": 7161, + "bgpPeerInTotalMessages": 118767, + "bgpPeerOutTotalMessages": 110804, + "bgpPeerFsmEstablishedTime": 942172, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.25", + "bgpPeerRemoteAs": 65503, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.0.251.26", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 7539, + "bgpPeerOutUpdates": 7716, + "bgpPeerInTotalMessages": 117562, + "bgpPeerOutTotalMessages": 117431, + "bgpPeerFsmEstablishedTime": 207345, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.0.251.29", + "bgpPeerRemoteAs": 65503, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.0.251.30", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 272, + "bgpPeerOutUpdates": 278, + "bgpPeerInTotalMessages": 3461, + "bgpPeerOutTotalMessages": 3465, + "bgpPeerFsmEstablishedTime": 28940, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65504, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.0.251.13", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 21, + "DeniedPrefixes": 9, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 24, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 21, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 9, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 24, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.0.251.17", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 21, + "DeniedPrefixes": 21, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 24, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 21, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 21, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 24, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.0.251.25", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 21, + "DeniedPrefixes": 12, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 27, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 21, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 12, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 27, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.0.251.29", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 21, + "DeniedPrefixes": 21, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 27, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 21, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 21, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 27, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "default", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 2, + "vlan_domain": 1, + "vlan_name": "servers", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 5, + "vlan_domain": 1, + "vlan_name": "voip", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 10, + "vlan_domain": 1, + "vlan_name": "lan", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 112, + "vlan_domain": 1, + "vlan_name": "colo", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 1, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 5, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 10, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 112, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/junos_rpm.snmprec b/tests/snmpsim/junos_rpm.snmprec new file mode 100644 index 0000000000..75979a9d13 --- /dev/null +++ b/tests/snmpsim/junos_rpm.snmprec @@ -0,0 +1,3635 @@ +1.0.8802.1.1.2.1.3.7.1.3.520|4|520 +1.0.8802.1.1.2.1.3.7.1.3.525|4|525 +1.0.8802.1.1.2.1.3.7.1.3.529|4|529 +1.0.8802.1.1.2.1.3.7.1.3.530|4|530 +1.0.8802.1.1.2.1.4.1.1.4.52.520.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.80.525.2|2|4 +1.0.8802.1.1.2.1.4.1.1.5.52.520.1|4x|001AC1409080 +1.0.8802.1.1.2.1.4.1.1.5.80.525.2|4x|6CC217948200 +1.0.8802.1.1.2.1.4.1.1.6.52.520.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.80.525.2|2|7 +1.0.8802.1.1.2.1.4.1.1.7.52.520.1|4|GigabitEthernet1/0/3 +1.0.8802.1.1.2.1.4.1.1.7.80.525.2|4|3 +1.0.8802.1.1.2.1.4.1.1.8.52.520.1|4|GigabitEthernet1/0/3 +1.0.8802.1.1.2.1.4.1.1.8.80.525.2|4|Port #3 +1.0.8802.1.1.2.1.4.1.1.9.52.520.1|4|gsm-core-1 +1.0.8802.1.1.2.1.4.1.1.9.80.525.2|4|J9660A +1.0.8802.1.1.2.1.4.1.1.10.52.520.1|4|Switch 5500G-EI 24-Port +1.0.8802.1.1.2.1.4.1.1.10.80.525.2|4|HP V1810-48G, PK.1.36, eCos-2.0, CFE-3.8 +1.0.8802.1.1.2.1.4.1.1.11.52.520.1|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.11.80.525.2|4|20 2 +1.0.8802.1.1.2.1.4.1.1.12.52.520.1|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.12.80.525.2|4|20 2 +1.0.8802.1.1.2.1.4.2.1.3.52.520.1.1.4.10.1.2.241|2|2 +1.0.8802.1.1.2.1.4.2.1.3.80.525.2.1.4.10.1.2.242|2|2 +1.3.6.1.2.1.1.1.0|4|Juniper SRX240B gsm-fw +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2636.1.1.1.2.39 +1.3.6.1.2.1.1.3.0|67|1193184923 +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.3|4|fxp2 +1.3.6.1.2.1.2.2.1.2.4|4|lsi +1.3.6.1.2.1.2.2.1.2.6|4|lo0 +1.3.6.1.2.1.2.2.1.2.7|4|tap +1.3.6.1.2.1.2.2.1.2.8|4|gre +1.3.6.1.2.1.2.2.1.2.9|4|ipip +1.3.6.1.2.1.2.2.1.2.10|4|pime +1.3.6.1.2.1.2.2.1.2.11|4|pimd +1.3.6.1.2.1.2.2.1.2.12|4|mtun +1.3.6.1.2.1.2.2.1.2.15|4|fxp2.0 +1.3.6.1.2.1.2.2.1.2.16|4|lo0.0 +1.3.6.1.2.1.2.2.1.2.21|4|lo0.16384 +1.3.6.1.2.1.2.2.1.2.22|4|lo0.16385 +1.3.6.1.2.1.2.2.1.2.248|4|lo0.32768 +1.3.6.1.2.1.2.2.1.2.501|4|ae0 +1.3.6.1.2.1.2.2.1.2.502|4|pp0 +1.3.6.1.2.1.2.2.1.2.503|4|irb +1.3.6.1.2.1.2.2.1.2.504|4|st0 +1.3.6.1.2.1.2.2.1.2.505|4|st0.0 +1.3.6.1.2.1.2.2.1.2.506|4|ppd0 +1.3.6.1.2.1.2.2.1.2.507|4|ppe0 +1.3.6.1.2.1.2.2.1.2.508|4|st0.1 +1.3.6.1.2.1.2.2.1.2.509|4|vlan +1.3.6.1.2.1.2.2.1.2.510|4|st0.2 +1.3.6.1.2.1.2.2.1.2.511|4|st0.3 +1.3.6.1.2.1.2.2.1.2.512|4|st0.4 +1.3.6.1.2.1.2.2.1.2.513|4|vlan.1 +1.3.6.1.2.1.2.2.1.2.514|4|vlan.2 +1.3.6.1.2.1.2.2.1.2.515|4|vlan.5 +1.3.6.1.2.1.2.2.1.2.516|4|vlan.10 +1.3.6.1.2.1.2.2.1.2.517|4|vlan.112 +1.3.6.1.2.1.2.2.1.2.518|4|ge-0/0/0 +1.3.6.1.2.1.2.2.1.2.519|4|ge-0/0/1 +1.3.6.1.2.1.2.2.1.2.520|4|ge-0/0/0.0 +1.3.6.1.2.1.2.2.1.2.521|4|ge-0/0/2 +1.3.6.1.2.1.2.2.1.2.522|4|ge-0/0/3 +1.3.6.1.2.1.2.2.1.2.523|4|ge-0/0/4 +1.3.6.1.2.1.2.2.1.2.524|4|ge-0/0/5 +1.3.6.1.2.1.2.2.1.2.525|4|ge-0/0/1.0 +1.3.6.1.2.1.2.2.1.2.526|4|ge-0/0/6 +1.3.6.1.2.1.2.2.1.2.527|4|ge-0/0/7 +1.3.6.1.2.1.2.2.1.2.528|4|ge-0/0/8 +1.3.6.1.2.1.2.2.1.2.529|4|ge-0/0/6.0 +1.3.6.1.2.1.2.2.1.2.530|4|ge-0/0/7.0 +1.3.6.1.2.1.2.2.1.2.531|4|ge-0/0/9 +1.3.6.1.2.1.2.2.1.2.532|4|ge-0/0/10 +1.3.6.1.2.1.2.2.1.2.533|4|ge-0/0/11 +1.3.6.1.2.1.2.2.1.2.534|4|ge-0/0/12 +1.3.6.1.2.1.2.2.1.2.535|4|ge-0/0/13 +1.3.6.1.2.1.2.2.1.2.536|4|ge-0/0/14 +1.3.6.1.2.1.2.2.1.2.537|4|ge-0/0/15 +1.3.6.1.2.1.2.2.1.2.538|4|sp-0/0/0 +1.3.6.1.2.1.2.2.1.2.539|4|sp-0/0/0.0 +1.3.6.1.2.1.2.2.1.2.540|4|gr-0/0/0 +1.3.6.1.2.1.2.2.1.2.541|4|ip-0/0/0 +1.3.6.1.2.1.2.2.1.2.542|4|lsq-0/0/0 +1.3.6.1.2.1.2.2.1.2.543|4|mt-0/0/0 +1.3.6.1.2.1.2.2.1.2.544|4|lt-0/0/0 +1.3.6.1.2.1.2.2.1.2.545|4|sp-0/0/0.16383 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|150 +1.3.6.1.2.1.2.2.1.3.6|2|24 +1.3.6.1.2.1.2.2.1.3.7|2|1 +1.3.6.1.2.1.2.2.1.3.8|2|131 +1.3.6.1.2.1.2.2.1.3.9|2|131 +1.3.6.1.2.1.2.2.1.3.10|2|131 +1.3.6.1.2.1.2.2.1.3.11|2|131 +1.3.6.1.2.1.2.2.1.3.12|2|131 +1.3.6.1.2.1.2.2.1.3.15|2|53 +1.3.6.1.2.1.2.2.1.3.16|2|24 +1.3.6.1.2.1.2.2.1.3.21|2|24 +1.3.6.1.2.1.2.2.1.3.22|2|24 +1.3.6.1.2.1.2.2.1.3.248|2|24 +1.3.6.1.2.1.2.2.1.3.501|2|161 +1.3.6.1.2.1.2.2.1.3.502|2|1 +1.3.6.1.2.1.2.2.1.3.503|2|1 +1.3.6.1.2.1.2.2.1.3.504|2|1 +1.3.6.1.2.1.2.2.1.3.505|2|53 +1.3.6.1.2.1.2.2.1.3.506|2|131 +1.3.6.1.2.1.2.2.1.3.507|2|131 +1.3.6.1.2.1.2.2.1.3.508|2|53 +1.3.6.1.2.1.2.2.1.3.509|2|6 +1.3.6.1.2.1.2.2.1.3.510|2|53 +1.3.6.1.2.1.2.2.1.3.511|2|53 +1.3.6.1.2.1.2.2.1.3.512|2|53 +1.3.6.1.2.1.2.2.1.3.513|2|135 +1.3.6.1.2.1.2.2.1.3.514|2|135 +1.3.6.1.2.1.2.2.1.3.515|2|135 +1.3.6.1.2.1.2.2.1.3.516|2|135 +1.3.6.1.2.1.2.2.1.3.517|2|135 +1.3.6.1.2.1.2.2.1.3.518|2|6 +1.3.6.1.2.1.2.2.1.3.519|2|6 +1.3.6.1.2.1.2.2.1.3.520|2|53 +1.3.6.1.2.1.2.2.1.3.521|2|6 +1.3.6.1.2.1.2.2.1.3.522|2|6 +1.3.6.1.2.1.2.2.1.3.523|2|6 +1.3.6.1.2.1.2.2.1.3.524|2|6 +1.3.6.1.2.1.2.2.1.3.525|2|53 +1.3.6.1.2.1.2.2.1.3.526|2|6 +1.3.6.1.2.1.2.2.1.3.527|2|6 +1.3.6.1.2.1.2.2.1.3.528|2|6 +1.3.6.1.2.1.2.2.1.3.529|2|53 +1.3.6.1.2.1.2.2.1.3.530|2|53 +1.3.6.1.2.1.2.2.1.3.531|2|6 +1.3.6.1.2.1.2.2.1.3.532|2|6 +1.3.6.1.2.1.2.2.1.3.533|2|6 +1.3.6.1.2.1.2.2.1.3.534|2|6 +1.3.6.1.2.1.2.2.1.3.535|2|6 +1.3.6.1.2.1.2.2.1.3.536|2|6 +1.3.6.1.2.1.2.2.1.3.537|2|6 +1.3.6.1.2.1.2.2.1.3.538|2|1 +1.3.6.1.2.1.2.2.1.3.539|2|53 +1.3.6.1.2.1.2.2.1.3.540|2|131 +1.3.6.1.2.1.2.2.1.3.541|2|131 +1.3.6.1.2.1.2.2.1.3.542|2|108 +1.3.6.1.2.1.2.2.1.3.543|2|131 +1.3.6.1.2.1.2.2.1.3.544|2|131 +1.3.6.1.2.1.2.2.1.3.545|2|53 +1.3.6.1.2.1.2.2.1.4.3|2|1514 +1.3.6.1.2.1.2.2.1.4.4|2|1496 +1.3.6.1.2.1.2.2.1.4.6|2|2147483647 +1.3.6.1.2.1.2.2.1.4.7|2|2147483647 +1.3.6.1.2.1.2.2.1.4.8|2|2147483647 +1.3.6.1.2.1.2.2.1.4.9|2|2147483647 +1.3.6.1.2.1.2.2.1.4.10|2|2147483647 +1.3.6.1.2.1.2.2.1.4.11|2|2147483647 +1.3.6.1.2.1.2.2.1.4.12|2|2147483647 +1.3.6.1.2.1.2.2.1.4.15|2|1514 +1.3.6.1.2.1.2.2.1.4.16|2|2147483647 +1.3.6.1.2.1.2.2.1.4.21|2|2147483647 +1.3.6.1.2.1.2.2.1.4.22|2|2147483647 +1.3.6.1.2.1.2.2.1.4.248|2|0 +1.3.6.1.2.1.2.2.1.4.501|2|1514 +1.3.6.1.2.1.2.2.1.4.502|2|1532 +1.3.6.1.2.1.2.2.1.4.503|2|1514 +1.3.6.1.2.1.2.2.1.4.504|2|9192 +1.3.6.1.2.1.2.2.1.4.505|2|9192 +1.3.6.1.2.1.2.2.1.4.506|2|2147483647 +1.3.6.1.2.1.2.2.1.4.507|2|2147483647 +1.3.6.1.2.1.2.2.1.4.508|2|1436 +1.3.6.1.2.1.2.2.1.4.509|2|1518 +1.3.6.1.2.1.2.2.1.4.510|2|1436 +1.3.6.1.2.1.2.2.1.4.511|2|1436 +1.3.6.1.2.1.2.2.1.4.512|2|1436 +1.3.6.1.2.1.2.2.1.4.513|2|1500 +1.3.6.1.2.1.2.2.1.4.514|2|1500 +1.3.6.1.2.1.2.2.1.4.515|2|1500 +1.3.6.1.2.1.2.2.1.4.516|2|1500 +1.3.6.1.2.1.2.2.1.4.517|2|1500 +1.3.6.1.2.1.2.2.1.4.518|2|1514 +1.3.6.1.2.1.2.2.1.4.519|2|1514 +1.3.6.1.2.1.2.2.1.4.520|2|1514 +1.3.6.1.2.1.2.2.1.4.521|2|1514 +1.3.6.1.2.1.2.2.1.4.522|2|1514 +1.3.6.1.2.1.2.2.1.4.523|2|1514 +1.3.6.1.2.1.2.2.1.4.524|2|1514 +1.3.6.1.2.1.2.2.1.4.525|2|1514 +1.3.6.1.2.1.2.2.1.4.526|2|1514 +1.3.6.1.2.1.2.2.1.4.527|2|1514 +1.3.6.1.2.1.2.2.1.4.528|2|1514 +1.3.6.1.2.1.2.2.1.4.529|2|1500 +1.3.6.1.2.1.2.2.1.4.530|2|1500 +1.3.6.1.2.1.2.2.1.4.531|2|1514 +1.3.6.1.2.1.2.2.1.4.532|2|1514 +1.3.6.1.2.1.2.2.1.4.533|2|1514 +1.3.6.1.2.1.2.2.1.4.534|2|1514 +1.3.6.1.2.1.2.2.1.4.535|2|1514 +1.3.6.1.2.1.2.2.1.4.536|2|1514 +1.3.6.1.2.1.2.2.1.4.537|2|1514 +1.3.6.1.2.1.2.2.1.4.538|2|9192 +1.3.6.1.2.1.2.2.1.4.539|2|9192 +1.3.6.1.2.1.2.2.1.4.540|2|2147483647 +1.3.6.1.2.1.2.2.1.4.541|2|2147483647 +1.3.6.1.2.1.2.2.1.4.542|2|1504 +1.3.6.1.2.1.2.2.1.4.543|2|2147483647 +1.3.6.1.2.1.2.2.1.4.544|2|2147483647 +1.3.6.1.2.1.2.2.1.4.545|2|9192 +1.3.6.1.2.1.2.2.1.6.3|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.4|4| +1.3.6.1.2.1.2.2.1.6.6|4| +1.3.6.1.2.1.2.2.1.6.7|4| +1.3.6.1.2.1.2.2.1.6.8|4| +1.3.6.1.2.1.2.2.1.6.9|4| +1.3.6.1.2.1.2.2.1.6.10|4| +1.3.6.1.2.1.2.2.1.6.11|4| +1.3.6.1.2.1.2.2.1.6.12|4| +1.3.6.1.2.1.2.2.1.6.15|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.16|4| +1.3.6.1.2.1.2.2.1.6.21|4| +1.3.6.1.2.1.2.2.1.6.22|4| +1.3.6.1.2.1.2.2.1.6.248|4| +1.3.6.1.2.1.2.2.1.6.501|4x|54E032AAA720 +1.3.6.1.2.1.2.2.1.6.502|4| +1.3.6.1.2.1.2.2.1.6.503|4x|54E032AAA750 +1.3.6.1.2.1.2.2.1.6.504|4| +1.3.6.1.2.1.2.2.1.6.505|4| +1.3.6.1.2.1.2.2.1.6.506|4| +1.3.6.1.2.1.2.2.1.6.507|4| +1.3.6.1.2.1.2.2.1.6.508|4| +1.3.6.1.2.1.2.2.1.6.509|4x|54E032AAA6B0 +1.3.6.1.2.1.2.2.1.6.510|4| +1.3.6.1.2.1.2.2.1.6.511|4| +1.3.6.1.2.1.2.2.1.6.512|4| +1.3.6.1.2.1.2.2.1.6.513|4x|54E032AAA6B0 +1.3.6.1.2.1.2.2.1.6.514|4x|54E032AAA6B0 +1.3.6.1.2.1.2.2.1.6.515|4x|54E032AAA6B0 +1.3.6.1.2.1.2.2.1.6.516|4x|54E032AAA6B0 +1.3.6.1.2.1.2.2.1.6.517|4x|54E032AAA6B0 +1.3.6.1.2.1.2.2.1.6.518|4x|54E032AAA6A0 +1.3.6.1.2.1.2.2.1.6.519|4x|54E032AAA6A1 +1.3.6.1.2.1.2.2.1.6.520|4x|54E032AAA6A0 +1.3.6.1.2.1.2.2.1.6.521|4x|54E032AAA6A2 +1.3.6.1.2.1.2.2.1.6.522|4x|54E032AAA6A3 +1.3.6.1.2.1.2.2.1.6.523|4x|54E032AAA6A4 +1.3.6.1.2.1.2.2.1.6.524|4x|54E032AAA6A5 +1.3.6.1.2.1.2.2.1.6.525|4x|54E032AAA6A1 +1.3.6.1.2.1.2.2.1.6.526|4x|7C3953E38528 +1.3.6.1.2.1.2.2.1.6.527|4x|940C6DEE6FF9 +1.3.6.1.2.1.2.2.1.6.528|4x|54E032AAA6A8 +1.3.6.1.2.1.2.2.1.6.529|4x|7C3953E38528 +1.3.6.1.2.1.2.2.1.6.530|4x|940C6DEE6FF9 +1.3.6.1.2.1.2.2.1.6.531|4x|54E032AAA6A9 +1.3.6.1.2.1.2.2.1.6.532|4x|54E032AAA6AA +1.3.6.1.2.1.2.2.1.6.533|4x|54E032AAA6AB +1.3.6.1.2.1.2.2.1.6.534|4x|54E032AAA6AC +1.3.6.1.2.1.2.2.1.6.535|4x|54E032AAA6AD +1.3.6.1.2.1.2.2.1.6.536|4x|54E032AAA6AE +1.3.6.1.2.1.2.2.1.6.537|4x|54E032AAA6AF +1.3.6.1.2.1.2.2.1.6.538|4| +1.3.6.1.2.1.2.2.1.6.539|4| +1.3.6.1.2.1.2.2.1.6.540|4| +1.3.6.1.2.1.2.2.1.6.541|4| +1.3.6.1.2.1.2.2.1.6.542|4| +1.3.6.1.2.1.2.2.1.6.543|4| +1.3.6.1.2.1.2.2.1.6.544|4x|54E032AAA6A0 +1.3.6.1.2.1.2.2.1.6.545|4| +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.248|2|1 +1.3.6.1.2.1.2.2.1.7.501|2|1 +1.3.6.1.2.1.2.2.1.7.502|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.504|2|1 +1.3.6.1.2.1.2.2.1.7.505|2|1 +1.3.6.1.2.1.2.2.1.7.506|2|1 +1.3.6.1.2.1.2.2.1.7.507|2|1 +1.3.6.1.2.1.2.2.1.7.508|2|1 +1.3.6.1.2.1.2.2.1.7.509|2|1 +1.3.6.1.2.1.2.2.1.7.510|2|1 +1.3.6.1.2.1.2.2.1.7.511|2|1 +1.3.6.1.2.1.2.2.1.7.512|2|1 +1.3.6.1.2.1.2.2.1.7.513|2|1 +1.3.6.1.2.1.2.2.1.7.514|2|1 +1.3.6.1.2.1.2.2.1.7.515|2|1 +1.3.6.1.2.1.2.2.1.7.516|2|1 +1.3.6.1.2.1.2.2.1.7.517|2|1 +1.3.6.1.2.1.2.2.1.7.518|2|1 +1.3.6.1.2.1.2.2.1.7.519|2|1 +1.3.6.1.2.1.2.2.1.7.520|2|1 +1.3.6.1.2.1.2.2.1.7.521|2|1 +1.3.6.1.2.1.2.2.1.7.522|2|1 +1.3.6.1.2.1.2.2.1.7.523|2|1 +1.3.6.1.2.1.2.2.1.7.524|2|1 +1.3.6.1.2.1.2.2.1.7.525|2|1 +1.3.6.1.2.1.2.2.1.7.526|2|1 +1.3.6.1.2.1.2.2.1.7.527|2|1 +1.3.6.1.2.1.2.2.1.7.528|2|1 +1.3.6.1.2.1.2.2.1.7.529|2|1 +1.3.6.1.2.1.2.2.1.7.530|2|1 +1.3.6.1.2.1.2.2.1.7.531|2|1 +1.3.6.1.2.1.2.2.1.7.532|2|1 +1.3.6.1.2.1.2.2.1.7.533|2|1 +1.3.6.1.2.1.2.2.1.7.534|2|1 +1.3.6.1.2.1.2.2.1.7.535|2|1 +1.3.6.1.2.1.2.2.1.7.536|2|1 +1.3.6.1.2.1.2.2.1.7.537|2|1 +1.3.6.1.2.1.2.2.1.7.538|2|1 +1.3.6.1.2.1.2.2.1.7.539|2|1 +1.3.6.1.2.1.2.2.1.7.540|2|1 +1.3.6.1.2.1.2.2.1.7.541|2|1 +1.3.6.1.2.1.2.2.1.7.542|2|1 +1.3.6.1.2.1.2.2.1.7.543|2|1 +1.3.6.1.2.1.2.2.1.7.544|2|1 +1.3.6.1.2.1.2.2.1.7.545|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|1 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.8.15|2|1 +1.3.6.1.2.1.2.2.1.8.16|2|1 +1.3.6.1.2.1.2.2.1.8.21|2|1 +1.3.6.1.2.1.2.2.1.8.22|2|1 +1.3.6.1.2.1.2.2.1.8.248|2|1 +1.3.6.1.2.1.2.2.1.8.501|2|2 +1.3.6.1.2.1.2.2.1.8.502|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.504|2|1 +1.3.6.1.2.1.2.2.1.8.505|2|1 +1.3.6.1.2.1.2.2.1.8.506|2|1 +1.3.6.1.2.1.2.2.1.8.507|2|1 +1.3.6.1.2.1.2.2.1.8.508|2|1 +1.3.6.1.2.1.2.2.1.8.509|2|1 +1.3.6.1.2.1.2.2.1.8.510|2|1 +1.3.6.1.2.1.2.2.1.8.511|2|1 +1.3.6.1.2.1.2.2.1.8.512|2|1 +1.3.6.1.2.1.2.2.1.8.513|2|1 +1.3.6.1.2.1.2.2.1.8.514|2|1 +1.3.6.1.2.1.2.2.1.8.515|2|1 +1.3.6.1.2.1.2.2.1.8.516|2|1 +1.3.6.1.2.1.2.2.1.8.517|2|1 +1.3.6.1.2.1.2.2.1.8.518|2|1 +1.3.6.1.2.1.2.2.1.8.519|2|1 +1.3.6.1.2.1.2.2.1.8.520|2|1 +1.3.6.1.2.1.2.2.1.8.521|2|2 +1.3.6.1.2.1.2.2.1.8.522|2|2 +1.3.6.1.2.1.2.2.1.8.523|2|2 +1.3.6.1.2.1.2.2.1.8.524|2|2 +1.3.6.1.2.1.2.2.1.8.525|2|1 +1.3.6.1.2.1.2.2.1.8.526|2|1 +1.3.6.1.2.1.2.2.1.8.527|2|1 +1.3.6.1.2.1.2.2.1.8.528|2|2 +1.3.6.1.2.1.2.2.1.8.529|2|1 +1.3.6.1.2.1.2.2.1.8.530|2|1 +1.3.6.1.2.1.2.2.1.8.531|2|2 +1.3.6.1.2.1.2.2.1.8.532|2|2 +1.3.6.1.2.1.2.2.1.8.533|2|2 +1.3.6.1.2.1.2.2.1.8.534|2|2 +1.3.6.1.2.1.2.2.1.8.535|2|2 +1.3.6.1.2.1.2.2.1.8.536|2|2 +1.3.6.1.2.1.2.2.1.8.537|2|2 +1.3.6.1.2.1.2.2.1.8.538|2|1 +1.3.6.1.2.1.2.2.1.8.539|2|1 +1.3.6.1.2.1.2.2.1.8.540|2|1 +1.3.6.1.2.1.2.2.1.8.541|2|1 +1.3.6.1.2.1.2.2.1.8.542|2|1 +1.3.6.1.2.1.2.2.1.8.543|2|1 +1.3.6.1.2.1.2.2.1.8.544|2|1 +1.3.6.1.2.1.2.2.1.8.545|2|1 +1.3.6.1.2.1.2.2.1.9.3|67|3207 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|3210 +1.3.6.1.2.1.2.2.1.9.7|67|3217 +1.3.6.1.2.1.2.2.1.9.8|67|3209 +1.3.6.1.2.1.2.2.1.9.9|67|3209 +1.3.6.1.2.1.2.2.1.9.10|67|3216 +1.3.6.1.2.1.2.2.1.9.11|67|3215 +1.3.6.1.2.1.2.2.1.9.12|67|3214 +1.3.6.1.2.1.2.2.1.9.15|67|3208 +1.3.6.1.2.1.2.2.1.9.16|67|3210 +1.3.6.1.2.1.2.2.1.9.21|67|3211 +1.3.6.1.2.1.2.2.1.9.22|67|3212 +1.3.6.1.2.1.2.2.1.9.248|67|3213 +1.3.6.1.2.1.2.2.1.9.501|67|4451 +1.3.6.1.2.1.2.2.1.9.502|67|4455 +1.3.6.1.2.1.2.2.1.9.503|67|4460 +1.3.6.1.2.1.2.2.1.9.504|67|4468 +1.3.6.1.2.1.2.2.1.9.505|67|4473 +1.3.6.1.2.1.2.2.1.9.506|67|4470 +1.3.6.1.2.1.2.2.1.9.507|67|4478 +1.3.6.1.2.1.2.2.1.9.508|67|1190288449 +1.3.6.1.2.1.2.2.1.9.509|67|5765 +1.3.6.1.2.1.2.2.1.9.510|67|996705524 +1.3.6.1.2.1.2.2.1.9.511|67|1172450787 +1.3.6.1.2.1.2.2.1.9.512|67|1174823398 +1.3.6.1.2.1.2.2.1.9.513|67|6581 +1.3.6.1.2.1.2.2.1.9.514|67|6585 +1.3.6.1.2.1.2.2.1.9.515|67|6587 +1.3.6.1.2.1.2.2.1.9.516|67|6582 +1.3.6.1.2.1.2.2.1.9.517|67|6580 +1.3.6.1.2.1.2.2.1.9.518|67|6559 +1.3.6.1.2.1.2.2.1.9.519|67|6559 +1.3.6.1.2.1.2.2.1.9.520|67|6559 +1.3.6.1.2.1.2.2.1.9.521|67|5561 +1.3.6.1.2.1.2.2.1.9.522|67|5564 +1.3.6.1.2.1.2.2.1.9.523|67|5569 +1.3.6.1.2.1.2.2.1.9.524|67|5573 +1.3.6.1.2.1.2.2.1.9.525|67|6559 +1.3.6.1.2.1.2.2.1.9.526|67|6960 +1.3.6.1.2.1.2.2.1.9.527|67|369124922 +1.3.6.1.2.1.2.2.1.9.528|67|5588 +1.3.6.1.2.1.2.2.1.9.529|67|6960 +1.3.6.1.2.1.2.2.1.9.530|67|369124922 +1.3.6.1.2.1.2.2.1.9.531|67|5596 +1.3.6.1.2.1.2.2.1.9.532|67|5602 +1.3.6.1.2.1.2.2.1.9.533|67|5603 +1.3.6.1.2.1.2.2.1.9.534|67|5606 +1.3.6.1.2.1.2.2.1.9.535|67|5614 +1.3.6.1.2.1.2.2.1.9.536|67|5621 +1.3.6.1.2.1.2.2.1.9.537|67|5625 +1.3.6.1.2.1.2.2.1.9.538|67|6359 +1.3.6.1.2.1.2.2.1.9.539|67|6359 +1.3.6.1.2.1.2.2.1.9.540|67|5648 +1.3.6.1.2.1.2.2.1.9.541|67|5652 +1.3.6.1.2.1.2.2.1.9.542|67|6459 +1.3.6.1.2.1.2.2.1.9.543|67|6459 +1.3.6.1.2.1.2.2.1.9.544|67|5662 +1.3.6.1.2.1.2.2.1.9.545|67|6359 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.248|65|0 +1.3.6.1.2.1.2.2.1.13.501|65|0 +1.3.6.1.2.1.2.2.1.13.502|65|0 +1.3.6.1.2.1.2.2.1.13.503|65|0 +1.3.6.1.2.1.2.2.1.13.504|65|0 +1.3.6.1.2.1.2.2.1.13.505|65|0 +1.3.6.1.2.1.2.2.1.13.506|65|0 +1.3.6.1.2.1.2.2.1.13.507|65|0 +1.3.6.1.2.1.2.2.1.13.508|65|0 +1.3.6.1.2.1.2.2.1.13.509|65|2567625 +1.3.6.1.2.1.2.2.1.13.510|65|0 +1.3.6.1.2.1.2.2.1.13.511|65|0 +1.3.6.1.2.1.2.2.1.13.512|65|0 +1.3.6.1.2.1.2.2.1.13.513|65|0 +1.3.6.1.2.1.2.2.1.13.514|65|0 +1.3.6.1.2.1.2.2.1.13.515|65|0 +1.3.6.1.2.1.2.2.1.13.516|65|0 +1.3.6.1.2.1.2.2.1.13.517|65|0 +1.3.6.1.2.1.2.2.1.13.518|65|0 +1.3.6.1.2.1.2.2.1.13.519|65|0 +1.3.6.1.2.1.2.2.1.13.520|65|0 +1.3.6.1.2.1.2.2.1.13.521|65|0 +1.3.6.1.2.1.2.2.1.13.522|65|0 +1.3.6.1.2.1.2.2.1.13.523|65|0 +1.3.6.1.2.1.2.2.1.13.524|65|0 +1.3.6.1.2.1.2.2.1.13.525|65|0 +1.3.6.1.2.1.2.2.1.13.526|65|0 +1.3.6.1.2.1.2.2.1.13.527|65|0 +1.3.6.1.2.1.2.2.1.13.528|65|0 +1.3.6.1.2.1.2.2.1.13.529|65|0 +1.3.6.1.2.1.2.2.1.13.530|65|0 +1.3.6.1.2.1.2.2.1.13.531|65|0 +1.3.6.1.2.1.2.2.1.13.532|65|0 +1.3.6.1.2.1.2.2.1.13.533|65|0 +1.3.6.1.2.1.2.2.1.13.534|65|0 +1.3.6.1.2.1.2.2.1.13.535|65|0 +1.3.6.1.2.1.2.2.1.13.536|65|0 +1.3.6.1.2.1.2.2.1.13.537|65|0 +1.3.6.1.2.1.2.2.1.13.538|65|0 +1.3.6.1.2.1.2.2.1.13.539|65|0 +1.3.6.1.2.1.2.2.1.13.540|65|0 +1.3.6.1.2.1.2.2.1.13.541|65|0 +1.3.6.1.2.1.2.2.1.13.542|65|0 +1.3.6.1.2.1.2.2.1.13.543|65|0 +1.3.6.1.2.1.2.2.1.13.544|65|0 +1.3.6.1.2.1.2.2.1.13.545|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.248|65|0 +1.3.6.1.2.1.2.2.1.14.501|65|0 +1.3.6.1.2.1.2.2.1.14.502|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.504|65|0 +1.3.6.1.2.1.2.2.1.14.505|65|0 +1.3.6.1.2.1.2.2.1.14.506|65|0 +1.3.6.1.2.1.2.2.1.14.507|65|0 +1.3.6.1.2.1.2.2.1.14.508|65|0 +1.3.6.1.2.1.2.2.1.14.509|65|0 +1.3.6.1.2.1.2.2.1.14.510|65|0 +1.3.6.1.2.1.2.2.1.14.511|65|0 +1.3.6.1.2.1.2.2.1.14.512|65|0 +1.3.6.1.2.1.2.2.1.14.513|65|0 +1.3.6.1.2.1.2.2.1.14.514|65|0 +1.3.6.1.2.1.2.2.1.14.515|65|0 +1.3.6.1.2.1.2.2.1.14.516|65|0 +1.3.6.1.2.1.2.2.1.14.517|65|0 +1.3.6.1.2.1.2.2.1.14.518|65|0 +1.3.6.1.2.1.2.2.1.14.519|65|0 +1.3.6.1.2.1.2.2.1.14.520|65|0 +1.3.6.1.2.1.2.2.1.14.521|65|0 +1.3.6.1.2.1.2.2.1.14.522|65|0 +1.3.6.1.2.1.2.2.1.14.523|65|0 +1.3.6.1.2.1.2.2.1.14.524|65|0 +1.3.6.1.2.1.2.2.1.14.525|65|0 +1.3.6.1.2.1.2.2.1.14.526|65|0 +1.3.6.1.2.1.2.2.1.14.527|65|0 +1.3.6.1.2.1.2.2.1.14.528|65|0 +1.3.6.1.2.1.2.2.1.14.529|65|0 +1.3.6.1.2.1.2.2.1.14.530|65|0 +1.3.6.1.2.1.2.2.1.14.531|65|0 +1.3.6.1.2.1.2.2.1.14.532|65|0 +1.3.6.1.2.1.2.2.1.14.533|65|0 +1.3.6.1.2.1.2.2.1.14.534|65|0 +1.3.6.1.2.1.2.2.1.14.535|65|0 +1.3.6.1.2.1.2.2.1.14.536|65|0 +1.3.6.1.2.1.2.2.1.14.537|65|0 +1.3.6.1.2.1.2.2.1.14.538|65|0 +1.3.6.1.2.1.2.2.1.14.539|65|0 +1.3.6.1.2.1.2.2.1.14.540|65|0 +1.3.6.1.2.1.2.2.1.14.541|65|0 +1.3.6.1.2.1.2.2.1.14.542|65|0 +1.3.6.1.2.1.2.2.1.14.543|65|0 +1.3.6.1.2.1.2.2.1.14.544|65|0 +1.3.6.1.2.1.2.2.1.14.545|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.248|65|0 +1.3.6.1.2.1.2.2.1.19.501|65|0 +1.3.6.1.2.1.2.2.1.19.502|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.504|65|0 +1.3.6.1.2.1.2.2.1.19.505|65|0 +1.3.6.1.2.1.2.2.1.19.506|65|0 +1.3.6.1.2.1.2.2.1.19.507|65|0 +1.3.6.1.2.1.2.2.1.19.508|65|0 +1.3.6.1.2.1.2.2.1.19.509|65|0 +1.3.6.1.2.1.2.2.1.19.510|65|0 +1.3.6.1.2.1.2.2.1.19.511|65|0 +1.3.6.1.2.1.2.2.1.19.512|65|0 +1.3.6.1.2.1.2.2.1.19.513|65|0 +1.3.6.1.2.1.2.2.1.19.514|65|0 +1.3.6.1.2.1.2.2.1.19.515|65|0 +1.3.6.1.2.1.2.2.1.19.516|65|0 +1.3.6.1.2.1.2.2.1.19.517|65|0 +1.3.6.1.2.1.2.2.1.19.518|65|0 +1.3.6.1.2.1.2.2.1.19.519|65|0 +1.3.6.1.2.1.2.2.1.19.520|65|0 +1.3.6.1.2.1.2.2.1.19.521|65|0 +1.3.6.1.2.1.2.2.1.19.522|65|0 +1.3.6.1.2.1.2.2.1.19.523|65|0 +1.3.6.1.2.1.2.2.1.19.524|65|0 +1.3.6.1.2.1.2.2.1.19.525|65|0 +1.3.6.1.2.1.2.2.1.19.526|65|0 +1.3.6.1.2.1.2.2.1.19.527|65|0 +1.3.6.1.2.1.2.2.1.19.528|65|0 +1.3.6.1.2.1.2.2.1.19.529|65|0 +1.3.6.1.2.1.2.2.1.19.530|65|0 +1.3.6.1.2.1.2.2.1.19.531|65|0 +1.3.6.1.2.1.2.2.1.19.532|65|0 +1.3.6.1.2.1.2.2.1.19.533|65|0 +1.3.6.1.2.1.2.2.1.19.534|65|0 +1.3.6.1.2.1.2.2.1.19.535|65|0 +1.3.6.1.2.1.2.2.1.19.536|65|0 +1.3.6.1.2.1.2.2.1.19.537|65|0 +1.3.6.1.2.1.2.2.1.19.538|65|0 +1.3.6.1.2.1.2.2.1.19.539|65|0 +1.3.6.1.2.1.2.2.1.19.540|65|0 +1.3.6.1.2.1.2.2.1.19.541|65|0 +1.3.6.1.2.1.2.2.1.19.542|65|0 +1.3.6.1.2.1.2.2.1.19.543|65|0 +1.3.6.1.2.1.2.2.1.19.544|65|0 +1.3.6.1.2.1.2.2.1.19.545|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.248|65|0 +1.3.6.1.2.1.2.2.1.20.501|65|0 +1.3.6.1.2.1.2.2.1.20.502|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.504|65|0 +1.3.6.1.2.1.2.2.1.20.505|65|0 +1.3.6.1.2.1.2.2.1.20.506|65|0 +1.3.6.1.2.1.2.2.1.20.507|65|0 +1.3.6.1.2.1.2.2.1.20.508|65|0 +1.3.6.1.2.1.2.2.1.20.509|65|0 +1.3.6.1.2.1.2.2.1.20.510|65|0 +1.3.6.1.2.1.2.2.1.20.511|65|0 +1.3.6.1.2.1.2.2.1.20.512|65|0 +1.3.6.1.2.1.2.2.1.20.513|65|0 +1.3.6.1.2.1.2.2.1.20.514|65|0 +1.3.6.1.2.1.2.2.1.20.515|65|0 +1.3.6.1.2.1.2.2.1.20.516|65|0 +1.3.6.1.2.1.2.2.1.20.517|65|0 +1.3.6.1.2.1.2.2.1.20.518|65|0 +1.3.6.1.2.1.2.2.1.20.519|65|0 +1.3.6.1.2.1.2.2.1.20.520|65|0 +1.3.6.1.2.1.2.2.1.20.521|65|0 +1.3.6.1.2.1.2.2.1.20.522|65|0 +1.3.6.1.2.1.2.2.1.20.523|65|0 +1.3.6.1.2.1.2.2.1.20.524|65|0 +1.3.6.1.2.1.2.2.1.20.525|65|0 +1.3.6.1.2.1.2.2.1.20.526|65|0 +1.3.6.1.2.1.2.2.1.20.527|65|0 +1.3.6.1.2.1.2.2.1.20.528|65|0 +1.3.6.1.2.1.2.2.1.20.529|65|0 +1.3.6.1.2.1.2.2.1.20.530|65|0 +1.3.6.1.2.1.2.2.1.20.531|65|0 +1.3.6.1.2.1.2.2.1.20.532|65|0 +1.3.6.1.2.1.2.2.1.20.533|65|0 +1.3.6.1.2.1.2.2.1.20.534|65|0 +1.3.6.1.2.1.2.2.1.20.535|65|0 +1.3.6.1.2.1.2.2.1.20.536|65|0 +1.3.6.1.2.1.2.2.1.20.537|65|0 +1.3.6.1.2.1.2.2.1.20.538|65|0 +1.3.6.1.2.1.2.2.1.20.539|65|0 +1.3.6.1.2.1.2.2.1.20.540|65|0 +1.3.6.1.2.1.2.2.1.20.541|65|0 +1.3.6.1.2.1.2.2.1.20.542|65|0 +1.3.6.1.2.1.2.2.1.20.543|65|0 +1.3.6.1.2.1.2.2.1.20.544|65|0 +1.3.6.1.2.1.2.2.1.20.545|65|0 +1.3.6.1.2.1.4.3.0|65|39035057 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|2 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|69506620 +1.3.6.1.2.1.4.10.0|65|71454965 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|15611 +1.3.6.1.2.1.4.14.0|65|2240 +1.3.6.1.2.1.4.15.0|65|261 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|257 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|2149 +1.3.6.1.2.1.4.20.1.2.10.0.0.1|2|22 +1.3.6.1.2.1.4.20.1.2.10.0.0.6|2|545 +1.3.6.1.2.1.4.20.1.2.10.0.0.16|2|22 +1.3.6.1.2.1.4.20.1.2.10.0.251.14|2|512 +1.3.6.1.2.1.4.20.1.2.10.0.251.18|2|510 +1.3.6.1.2.1.4.20.1.2.10.0.251.26|2|511 +1.3.6.1.2.1.4.20.1.2.10.0.251.30|2|508 +1.3.6.1.2.1.4.20.1.2.10.1.2.1|2|513 +1.3.6.1.2.1.4.20.1.2.10.1.5.1|2|515 +1.3.6.1.2.1.4.20.1.2.10.1.10.1|2|516 +1.3.6.1.2.1.4.20.1.2.10.1.112.1|2|517 +1.3.6.1.2.1.4.20.1.2.82.74.139.167|2|530 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|16 +1.3.6.1.2.1.4.20.1.2.128.0.0.1|2|22 +1.3.6.1.2.1.4.20.1.2.128.0.0.4|2|22 +1.3.6.1.2.1.4.20.1.2.128.0.0.6|2|545 +1.3.6.1.2.1.4.20.1.2.128.0.1.16|2|22 +1.3.6.1.2.1.4.20.1.2.172.16.97.1|2|16 +1.3.6.1.2.1.4.20.1.2.192.168.1.64|2|529 +1.3.6.1.2.1.4.20.1.3.10.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.10.0.0.6|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.10.0.0.16|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.10.0.251.14|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.0.251.18|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.0.251.26|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.0.251.30|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.1.2.1|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.10.1.5.1|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.10.1.10.1|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.10.1.112.1|64|255.255.254.0 +1.3.6.1.2.1.4.20.1.3.82.74.139.167|64|255.255.254.0 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.128.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.128.0.0.4|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.128.0.0.6|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.128.0.1.16|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.172.16.97.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.192.168.1.64|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.1|4x|54E032AAA6B0 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.2|4x|F09FC2A634BD +1.3.6.1.2.1.4.22.1.2.513.10.1.2.3|4x|000C291F10C6 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.4|4x|0418D6705659 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.5|4x|24A43C1012DB +1.3.6.1.2.1.4.22.1.2.513.10.1.2.7|4x|000C291F10C6 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.9|4x|005056A901C6 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.10|4x|001438EE982D +1.3.6.1.2.1.4.22.1.2.513.10.1.2.11|4x|005056980004 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.12|4x|005056980006 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.13|4x|005056980000 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.14|4x|005056A9EF94 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.20|4x|001438ECBA72 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.21|4x|002264F9448E +1.3.6.1.2.1.4.22.1.2.513.10.1.2.23|4x|AC162DBF0BDA +1.3.6.1.2.1.4.22.1.2.513.10.1.2.28|4x|005056A9EF94 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.29|4x|AC162D378B95 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.31|4x|000C2909D6C8 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.32|4x|000C29C2A213 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.35|4x|64EB8CB2A639 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.40|4x|005056A91CB1 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.41|4x|00408CB9CAB0 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.45|4x|0011E50518C9 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.47|4x|AC162D374BB4 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.52|4x|000C2924751A +1.3.6.1.2.1.4.22.1.2.513.10.1.2.60|4x|005056A92967 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.62|4x|000B822FB1EF +1.3.6.1.2.1.4.22.1.2.513.10.1.2.63|4x|000B820C44BF +1.3.6.1.2.1.4.22.1.2.513.10.1.2.64|4x|000B822FB1F1 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.66|4x|000B82388386 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.70|4x|000B823882B2 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.72|4x|14A78B2EA413 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.73|4x|14A78B2EA3C2 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.80|4x|0011323FD449 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.87|4x|14A78B2EA46A +1.3.6.1.2.1.4.22.1.2.513.10.1.2.90|4x|4C11BF1C9224 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.101|4x|1062E5270605 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.102|4x|1062E5288414 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.111|4x|00215AF2F7C6 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.113|4x|288023A336C8 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.122|4x|BCAEC5ABA985 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.126|4x|485A3F4E3EE0 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.127|4x|901B0E19A1D5 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.135|4x|E4E4AB1CE1D3 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.137|4x|1866DA2C4C48 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.139|4x|C8E0EBDE0618 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.145|4x|402CF4ED02F9 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.153|4x|60C79822D876 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.168|4x|001B9C095DE3 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.170|4x|84C0EF5947DD +1.3.6.1.2.1.4.22.1.2.513.10.1.2.174|4x|000E58483162 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.176|4x|000E5881C6B0 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.177|4x|1866DA1E09DC +1.3.6.1.2.1.4.22.1.2.513.10.1.2.185|4x|B4B52FE08F4C +1.3.6.1.2.1.4.22.1.2.513.10.1.2.194|4x|2002AFD48326 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.201|4x|001761101412 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.208|4x|448A5BC7D600 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.235|4x|586356E3D215 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.237|4x|001B2FCCEF40 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.238|4x|0026CA4C80C0 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.239|4x|CC3E5FE3F55B +1.3.6.1.2.1.4.22.1.2.513.10.1.2.240|4x|4431923BC551 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.241|4x|001AC1409081 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.242|4x|6CC217948200 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.248|4x|000C29FB5D90 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.249|4x|005056A96D9F +1.3.6.1.2.1.4.22.1.2.513.10.1.2.252|4x|005056980004 +1.3.6.1.2.1.4.22.1.2.513.10.1.2.253|4x|005056A96D9F +1.3.6.1.2.1.4.22.1.2.515.10.1.5.1|4x|54E032AAA6B0 +1.3.6.1.2.1.4.22.1.2.516.10.1.10.1|4x|54E032AAA6B0 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.1|4x|54E032AAA6B0 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.11|4x|5254000B6C23 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.12|4x|525400846E25 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.13|4x|5254000B6C23 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.21|4x|525400712A25 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.22|4x|52540087F5EF +1.3.6.1.2.1.4.22.1.2.517.10.1.112.23|4x|525400712A25 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.41|4x|525400188E92 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.42|4x|525400271C2D +1.3.6.1.2.1.4.22.1.2.517.10.1.112.43|4x|525400208F2C +1.3.6.1.2.1.4.22.1.2.517.10.1.112.60|4x|52540077F271 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.70|4x|525400C2E83E +1.3.6.1.2.1.4.22.1.2.517.10.1.112.71|4x|525400DA5297 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.72|4x|525400C2E83E +1.3.6.1.2.1.4.22.1.2.517.10.1.112.73|4x|5254009D60A1 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.79|4x|52540017EDF7 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.94|4x|00E081D5FFED +1.3.6.1.2.1.4.22.1.2.517.10.1.112.111|4x|00E081D61B81 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.112|4x|00E081D25FB8 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.114|4x|00E081D5FFEC +1.3.6.1.2.1.4.22.1.2.517.10.1.112.121|4x|A0369F076999 +1.3.6.1.2.1.4.22.1.2.517.10.1.112.122|4x|A0369F07673D +1.3.6.1.2.1.4.22.1.2.517.10.1.112.251|4x|0026CA4C80C3 +1.3.6.1.2.1.4.22.1.2.529.192.168.1.64|4x|7C3953E38528 +1.3.6.1.2.1.4.22.1.2.529.192.168.1.254|4x|7C3953E38529 +1.3.6.1.2.1.4.22.1.2.530.82.74.138.1|4x|285261291C19 +1.3.6.1.2.1.4.22.1.2.530.82.74.138.234|4x|BCC81063B5A0 +1.3.6.1.2.1.4.22.1.2.530.82.74.139.167|4x|940C6DEE6FF9 +1.3.6.1.2.1.4.24.3.0|66|47 +1.3.6.1.2.1.5.1.0|65|7790765 +1.3.6.1.2.1.5.2.0|65|91 +1.3.6.1.2.1.5.3.0|65|25024 +1.3.6.1.2.1.5.4.0|65|59 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|5 +1.3.6.1.2.1.5.8.0|65|1018 +1.3.6.1.2.1.5.9.0|65|7764568 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|81728 +1.3.6.1.2.1.5.15.0|65|32886 +1.3.6.1.2.1.5.16.0|65|12788 +1.3.6.1.2.1.5.17.0|65|1260 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|273 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|1018 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|428 +1.3.6.1.2.1.6.6.0|65|129113 +1.3.6.1.2.1.6.7.0|65|11 +1.3.6.1.2.1.6.8.0|65|11374 +1.3.6.1.2.1.6.9.0|66|23 +1.3.6.1.2.1.6.10.0|65|44054973 +1.3.6.1.2.1.6.11.0|65|27716607 +1.3.6.1.2.1.6.12.0|65|30512 +1.3.6.1.2.1.6.14.0|65|41935 +1.3.6.1.2.1.6.15.0|65|66100 +1.3.6.1.2.1.7.1.0|65|12422882 +1.3.6.1.2.1.7.2.0|65|12308 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|13897948 +1.3.6.1.2.1.10.7.2.1.19.518|2|3 +1.3.6.1.2.1.10.7.2.1.19.519|2|3 +1.3.6.1.2.1.10.7.2.1.19.520|2|3 +1.3.6.1.2.1.10.7.2.1.19.521|2|3 +1.3.6.1.2.1.10.7.2.1.19.522|2|3 +1.3.6.1.2.1.10.7.2.1.19.523|2|3 +1.3.6.1.2.1.10.7.2.1.19.524|2|3 +1.3.6.1.2.1.10.7.2.1.19.525|2|3 +1.3.6.1.2.1.10.7.2.1.19.526|2|3 +1.3.6.1.2.1.10.7.2.1.19.527|2|3 +1.3.6.1.2.1.10.7.2.1.19.528|2|3 +1.3.6.1.2.1.10.7.2.1.19.529|2|3 +1.3.6.1.2.1.10.7.2.1.19.530|2|3 +1.3.6.1.2.1.10.7.2.1.19.531|2|3 +1.3.6.1.2.1.10.7.2.1.19.532|2|3 +1.3.6.1.2.1.10.7.2.1.19.533|2|3 +1.3.6.1.2.1.10.7.2.1.19.534|2|3 +1.3.6.1.2.1.10.7.2.1.19.535|2|3 +1.3.6.1.2.1.10.7.2.1.19.536|2|3 +1.3.6.1.2.1.10.7.2.1.19.537|2|3 +1.3.6.1.2.1.11.1.0|65|11743954 +1.3.6.1.2.1.11.2.0|65|11742989 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|5 +1.3.6.1.2.1.11.5.0|65|927 +1.3.6.1.2.1.11.6.0|65|25 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|104920202 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|1493465 +1.3.6.1.2.1.11.16.0|65|141152 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|6 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|11742991 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|1 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.15.2.0|2|65504 +1.3.6.1.2.1.17.1.1.0|4x|54E032AAA6B0 +1.3.6.1.2.1.17.2.1.0|2|3 +1.3.6.1.2.1.17.2.2.0|2|0 +1.3.6.1.2.1.17.2.3.0|67|8964600 +1.3.6.1.2.1.17.2.4.0|65|3923 +1.3.6.1.2.1.17.2.5.0|4x|000054E032AAA6B0 +1.3.6.1.2.1.17.2.6.0|2|0 +1.3.6.1.2.1.17.2.7.0|2|0 +1.3.6.1.2.1.17.2.8.0|2|2000 +1.3.6.1.2.1.17.2.9.0|2|200 +1.3.6.1.2.1.17.2.10.0|2|100 +1.3.6.1.2.1.17.2.11.0|2|1500 +1.3.6.1.2.1.17.2.12.0|2|2000 +1.3.6.1.2.1.17.2.13.0|2|200 +1.3.6.1.2.1.17.2.14.0|2|1500 +1.3.6.1.2.1.17.2.15.1.1.513|2|513 +1.3.6.1.2.1.17.2.15.1.1.514|2|514 +1.3.6.1.2.1.17.2.15.1.2.513|2|128 +1.3.6.1.2.1.17.2.15.1.2.514|2|128 +1.3.6.1.2.1.17.2.15.1.3.513|2|5 +1.3.6.1.2.1.17.2.15.1.3.514|2|5 +1.3.6.1.2.1.17.2.15.1.4.513|2|1 +1.3.6.1.2.1.17.2.15.1.4.514|2|1 +1.3.6.1.2.1.17.2.15.1.5.513|2|20000 +1.3.6.1.2.1.17.2.15.1.5.514|2|20000 +1.3.6.1.2.1.17.2.15.1.6.513|4x|000054E032AAA6B0 +1.3.6.1.2.1.17.2.15.1.6.514|4x|000054E032AAA6B0 +1.3.6.1.2.1.17.2.15.1.7.513|2|0 +1.3.6.1.2.1.17.2.15.1.7.514|2|0 +1.3.6.1.2.1.17.2.15.1.8.513|4x|000054E032AAA6B0 +1.3.6.1.2.1.17.2.15.1.8.514|4x|000054E032AAA6B0 +1.3.6.1.2.1.17.2.15.1.9.513|4x|8201 +1.3.6.1.2.1.17.2.15.1.9.514|4x|8202 +1.3.6.1.2.1.17.2.15.1.10.513|65|1 +1.3.6.1.2.1.17.2.15.1.10.514|65|20 +1.3.6.1.2.1.17.2.15.1.11.513|2|20000 +1.3.6.1.2.1.17.2.15.1.11.514|2|20000 +1.3.6.1.2.1.17.2.16.0|2|2 +1.3.6.1.2.1.17.2.17.0|2|6 +1.3.6.1.2.1.17.2.19.1.1.513|2|2 +1.3.6.1.2.1.17.2.19.1.1.514|2|2 +1.3.6.1.2.1.17.2.19.1.2.513|2|2 +1.3.6.1.2.1.17.2.19.1.2.514|2|2 +1.3.6.1.2.1.17.2.19.1.3.513|2|2 +1.3.6.1.2.1.17.2.19.1.3.514|2|2 +1.3.6.1.2.1.17.2.19.1.4.513|2|2 +1.3.6.1.2.1.17.2.19.1.4.514|2|2 +1.3.6.1.2.1.17.2.19.1.5.513|2|1 +1.3.6.1.2.1.17.2.19.1.5.514|2|1 +1.3.6.1.2.1.17.2.19.1.6.513|2|20000 +1.3.6.1.2.1.17.2.19.1.6.514|2|20000 +1.3.6.1.2.1.17.4.3.1.2.0.11.130.12.68.191|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.11.130.47.177.239|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.11.130.47.177.241|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.11.130.56.130.178|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.11.130.56.131.134|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.12.41.9.214.200|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.12.41.31.16.198|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.12.41.36.117.26|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.12.41.194.162.19|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.12.41.251.93.144|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.14.88.72.49.98|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.14.88.129.198.176|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.17.50.63.212.73|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.17.229.5.24.201|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.20.56.236.186.114|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.20.56.238.152.45|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.23.97.16.20.18|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.26.193.64.144.128|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.26.193.64.144.129|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.26.193.64.144.195|2|513 +1.3.6.1.2.1.17.4.3.1.2.0.27.47.204.239.64|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.27.156.9.93.227|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.33.90.242.247.198|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.34.100.249.68.142|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.38.202.76.128.192|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.64.140.185.202.176|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.82.247.196|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.82.247.198|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.83.54.200|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.83.54.203|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.0.0|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.0.4|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.152.0.6|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.169.1.198|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.169.28.177|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.169.41.103|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.169.109.159|2|514 +1.3.6.1.2.1.17.4.3.1.2.0.80.86.169.239.148|2|514 +1.3.6.1.2.1.17.4.3.1.2.4.24.214.112.86.89|2|514 +1.3.6.1.2.1.17.4.3.1.2.16.98.229.39.6.5|2|514 +1.3.6.1.2.1.17.4.3.1.2.16.98.229.40.132.20|2|514 +1.3.6.1.2.1.17.4.3.1.2.20.167.139.46.163.194|2|514 +1.3.6.1.2.1.17.4.3.1.2.20.167.139.46.164.19|2|514 +1.3.6.1.2.1.17.4.3.1.2.20.167.139.46.164.106|2|514 +1.3.6.1.2.1.17.4.3.1.2.24.102.218.30.9.220|2|514 +1.3.6.1.2.1.17.4.3.1.2.24.102.218.44.76.72|2|514 +1.3.6.1.2.1.17.4.3.1.2.32.2.175.212.131.38|2|514 +1.3.6.1.2.1.17.4.3.1.2.36.164.60.16.18.219|2|514 +1.3.6.1.2.1.17.4.3.1.2.40.128.35.163.54.200|2|514 +1.3.6.1.2.1.17.4.3.1.2.64.44.244.237.2.249|2|514 +1.3.6.1.2.1.17.4.3.1.2.68.49.146.59.197.81|2|514 +1.3.6.1.2.1.17.4.3.1.2.68.49.146.59.197.129|2|514 +1.3.6.1.2.1.17.4.3.1.2.68.138.91.199.214.0|2|514 +1.3.6.1.2.1.17.4.3.1.2.72.90.63.78.62.224|2|514 +1.3.6.1.2.1.17.4.3.1.2.76.17.191.28.146.36|2|514 +1.3.6.1.2.1.17.4.3.1.2.84.224.50.170.166.176|2|0 +1.3.6.1.2.1.17.4.3.1.2.88.99.86.227.210.21|2|514 +1.3.6.1.2.1.17.4.3.1.2.96.199.152.34.216.118|2|514 +1.3.6.1.2.1.17.4.3.1.2.100.235.140.178.166.57|2|514 +1.3.6.1.2.1.17.4.3.1.2.108.194.23.148.130.0|2|514 +1.3.6.1.2.1.17.4.3.1.2.108.194.23.148.130.2|2|514 +1.3.6.1.2.1.17.4.3.1.2.132.192.239.89.71.221|2|514 +1.3.6.1.2.1.17.4.3.1.2.144.27.14.25.161.213|2|514 +1.3.6.1.2.1.17.4.3.1.2.172.22.45.55.75.180|2|514 +1.3.6.1.2.1.17.4.3.1.2.172.22.45.55.139.149|2|514 +1.3.6.1.2.1.17.4.3.1.2.172.22.45.191.11.218|2|514 +1.3.6.1.2.1.17.4.3.1.2.180.181.47.224.143.76|2|514 +1.3.6.1.2.1.17.4.3.1.2.188.174.197.171.169.133|2|514 +1.3.6.1.2.1.17.4.3.1.2.192.160.187.74.138.204|2|514 +1.3.6.1.2.1.17.4.3.1.2.200.224.235.222.6.24|2|514 +1.3.6.1.2.1.17.4.3.1.2.204.62.95.227.245.91|2|514 +1.3.6.1.2.1.17.4.3.1.2.228.228.171.28.225.211|2|514 +1.3.6.1.2.1.17.4.3.1.2.240.159.194.166.52.189|2|514 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.25.1.1.0|67|1193209241 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|137 +1.3.6.1.2.1.25.2.3.1.1.1|2|1 +1.3.6.1.2.1.25.2.3.1.1.2|2|2 +1.3.6.1.2.1.25.2.3.1.1.5|2|5 +1.3.6.1.2.1.25.2.3.1.1.6|2|6 +1.3.6.1.2.1.25.2.3.1.1.7|2|7 +1.3.6.1.2.1.25.2.3.1.1.8|2|8 +1.3.6.1.2.1.25.2.3.1.1.9|2|9 +1.3.6.1.2.1.25.2.3.1.1.10|2|10 +1.3.6.1.2.1.25.2.3.1.1.11|2|11 +1.3.6.1.2.1.25.2.3.1.1.12|2|12 +1.3.6.1.2.1.25.2.3.1.1.13|2|13 +1.3.6.1.2.1.25.2.3.1.1.14|2|14 +1.3.6.1.2.1.25.2.3.1.1.15|2|15 +1.3.6.1.2.1.25.2.3.1.1.16|2|16 +1.3.6.1.2.1.25.2.3.1.1.17|2|17 +1.3.6.1.2.1.25.2.3.1.1.18|2|18 +1.3.6.1.2.1.25.2.3.1.1.19|2|19 +1.3.6.1.2.1.25.2.3.1.1.20|2|20 +1.3.6.1.2.1.25.2.3.1.1.21|2|21 +1.3.6.1.2.1.25.2.3.1.1.22|2|22 +1.3.6.1.2.1.25.2.3.1.1.23|2|23 +1.3.6.1.2.1.25.2.3.1.1.24|2|24 +1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.2|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.5|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.9|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.11|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.12|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.13|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.14|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.15|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.16|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.17|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.18|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.19|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.20|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.21|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.22|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.23|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.24|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.3.1|4|/dev/da0s1a, mounted on: / +1.3.6.1.2.1.25.2.3.1.3.2|4|/dev/bo0s3e, mounted on: /config +1.3.6.1.2.1.25.2.3.1.3.5|4|/dev/bo0s3f, mounted on: /cf/var +1.3.6.1.2.1.25.2.3.1.3.6|4|/cf/var/jail, mounted on: /jail/var +1.3.6.1.2.1.25.2.3.1.3.7|4|/dev/md2, mounted on: /mfs +1.3.6.1.2.1.25.2.3.1.3.8|4|/dev/md3, mounted on: /mfs/var/run/utm +1.3.6.1.2.1.25.2.3.1.3.9|4|/dev/md4, mounted on: /jail/mfs +1.3.6.1.2.1.25.2.3.1.3.10|4|devfs: dev file system, mounted on: /dev +1.3.6.1.2.1.25.2.3.1.3.11|4|/dev/md0, mounted on: /junos +1.3.6.1.2.1.25.2.3.1.3.12|4|/cf/packages, mounted on: /junos/cf/packages +1.3.6.1.2.1.25.2.3.1.3.13|4|devfs: dev file system, mounted on: /junos/cf/dev +1.3.6.1.2.1.25.2.3.1.3.14|4|/cf/usr, mounted on: /junos/cf/usr +1.3.6.1.2.1.25.2.3.1.3.15|4|/cf/boot, mounted on: /junos/cf/boot +1.3.6.1.2.1.25.2.3.1.3.16|4|/dev/md1, mounted on: /junos +1.3.6.1.2.1.25.2.3.1.3.17|4|/cf, mounted on: /junos/cf +1.3.6.1.2.1.25.2.3.1.3.18|4|devfs: dev file system, mounted on: /junos/dev/ +1.3.6.1.2.1.25.2.3.1.3.19|4|/cf/packages, mounted on: /junos/cf/packages1 +1.3.6.1.2.1.25.2.3.1.3.20|4|/cf/boot, mounted on: /junos/cf/boot +1.3.6.1.2.1.25.2.3.1.3.21|4|/cf/usr, mounted on: /junos/cf/usr1 +1.3.6.1.2.1.25.2.3.1.3.22|4|procfs: process file system, mounted on: /proc +1.3.6.1.2.1.25.2.3.1.3.23|4|/cf/var/log, mounted on: /jail/var/log +1.3.6.1.2.1.25.2.3.1.3.24|4|devfs: dev file system, mounted on: /jail/dev +1.3.6.1.2.1.25.2.3.1.4.1|2|2048 +1.3.6.1.2.1.25.2.3.1.4.2|2|2048 +1.3.6.1.2.1.25.2.3.1.4.5|2|2048 +1.3.6.1.2.1.25.2.3.1.4.6|2|2048 +1.3.6.1.2.1.25.2.3.1.4.7|2|2048 +1.3.6.1.2.1.25.2.3.1.4.8|2|2048 +1.3.6.1.2.1.25.2.3.1.4.9|2|2048 +1.3.6.1.2.1.25.2.3.1.4.10|2|512 +1.3.6.1.2.1.25.2.3.1.4.11|2|2048 +1.3.6.1.2.1.25.2.3.1.4.12|2|2048 +1.3.6.1.2.1.25.2.3.1.4.13|2|512 +1.3.6.1.2.1.25.2.3.1.4.14|2|2048 +1.3.6.1.2.1.25.2.3.1.4.15|2|2048 +1.3.6.1.2.1.25.2.3.1.4.16|2|2048 +1.3.6.1.2.1.25.2.3.1.4.17|2|2048 +1.3.6.1.2.1.25.2.3.1.4.18|2|512 +1.3.6.1.2.1.25.2.3.1.4.19|2|2048 +1.3.6.1.2.1.25.2.3.1.4.20|2|2048 +1.3.6.1.2.1.25.2.3.1.4.21|2|2048 +1.3.6.1.2.1.25.2.3.1.4.22|2|4096 +1.3.6.1.2.1.25.2.3.1.4.23|2|2048 +1.3.6.1.2.1.25.2.3.1.4.24|2|512 +1.3.6.1.2.1.25.2.3.1.5.1|2|149526 +1.3.6.1.2.1.25.2.3.1.5.2|2|12438 +1.3.6.1.2.1.25.2.3.1.5.5|2|175318 +1.3.6.1.2.1.25.2.3.1.5.6|2|175318 +1.3.6.1.2.1.25.2.3.1.5.7|2|85930 +1.3.6.1.2.1.25.2.3.1.5.8|2|20086 +1.3.6.1.2.1.25.2.3.1.5.9|2|942 +1.3.6.1.2.1.25.2.3.1.5.10|2|2 +1.3.6.1.2.1.25.2.3.1.5.11|2|10006 +1.3.6.1.2.1.25.2.3.1.5.12|2|149526 +1.3.6.1.2.1.25.2.3.1.5.13|2|2 +1.3.6.1.2.1.25.2.3.1.5.14|2|149526 +1.3.6.1.2.1.25.2.3.1.5.15|2|149526 +1.3.6.1.2.1.25.2.3.1.5.16|2|211153 +1.3.6.1.2.1.25.2.3.1.5.17|2|10006 +1.3.6.1.2.1.25.2.3.1.5.18|2|2 +1.3.6.1.2.1.25.2.3.1.5.19|2|149526 +1.3.6.1.2.1.25.2.3.1.5.20|2|149526 +1.3.6.1.2.1.25.2.3.1.5.21|2|149526 +1.3.6.1.2.1.25.2.3.1.5.22|2|1 +1.3.6.1.2.1.25.2.3.1.5.23|2|175318 +1.3.6.1.2.1.25.2.3.1.5.24|2|2 +1.3.6.1.2.1.25.2.3.1.6.1|2|75938 +1.3.6.1.2.1.25.2.3.1.6.2|2|140 +1.3.6.1.2.1.25.2.3.1.6.5|2|5295 +1.3.6.1.2.1.25.2.3.1.6.6|2|5295 +1.3.6.1.2.1.25.2.3.1.6.7|2|9769 +1.3.6.1.2.1.25.2.3.1.6.8|2|2 +1.3.6.1.2.1.25.2.3.1.6.9|2|2 +1.3.6.1.2.1.25.2.3.1.6.10|2|2 +1.3.6.1.2.1.25.2.3.1.6.11|2|641 +1.3.6.1.2.1.25.2.3.1.6.12|2|75938 +1.3.6.1.2.1.25.2.3.1.6.13|2|2 +1.3.6.1.2.1.25.2.3.1.6.14|2|75938 +1.3.6.1.2.1.25.2.3.1.6.15|2|75938 +1.3.6.1.2.1.25.2.3.1.6.16|2|211153 +1.3.6.1.2.1.25.2.3.1.6.17|2|641 +1.3.6.1.2.1.25.2.3.1.6.18|2|2 +1.3.6.1.2.1.25.2.3.1.6.19|2|75938 +1.3.6.1.2.1.25.2.3.1.6.20|2|75938 +1.3.6.1.2.1.25.2.3.1.6.21|2|75938 +1.3.6.1.2.1.25.2.3.1.6.22|2|1 +1.3.6.1.2.1.25.2.3.1.6.23|2|5295 +1.3.6.1.2.1.25.2.3.1.6.24|2|2 +1.3.6.1.2.1.25.2.3.1.7.1|65|0 +1.3.6.1.2.1.25.2.3.1.7.2|65|0 +1.3.6.1.2.1.25.2.3.1.7.5|65|0 +1.3.6.1.2.1.25.2.3.1.7.6|65|0 +1.3.6.1.2.1.25.2.3.1.7.7|65|0 +1.3.6.1.2.1.25.2.3.1.7.8|65|0 +1.3.6.1.2.1.25.2.3.1.7.9|65|0 +1.3.6.1.2.1.25.2.3.1.7.10|65|0 +1.3.6.1.2.1.25.2.3.1.7.11|65|0 +1.3.6.1.2.1.25.2.3.1.7.12|65|0 +1.3.6.1.2.1.25.2.3.1.7.13|65|0 +1.3.6.1.2.1.25.2.3.1.7.14|65|0 +1.3.6.1.2.1.25.2.3.1.7.15|65|0 +1.3.6.1.2.1.25.2.3.1.7.16|65|0 +1.3.6.1.2.1.25.2.3.1.7.17|65|0 +1.3.6.1.2.1.25.2.3.1.7.18|65|0 +1.3.6.1.2.1.25.2.3.1.7.19|65|0 +1.3.6.1.2.1.25.2.3.1.7.20|65|0 +1.3.6.1.2.1.25.2.3.1.7.21|65|0 +1.3.6.1.2.1.25.2.3.1.7.22|65|0 +1.3.6.1.2.1.25.2.3.1.7.23|65|0 +1.3.6.1.2.1.25.2.3.1.7.24|65|0 +1.3.6.1.2.1.25.6.3.1.2.2|4|JUNOS Software Release [12.1X46-D86] +1.3.6.1.2.1.31.1.1.1.1.3|4|fxp2 +1.3.6.1.2.1.31.1.1.1.1.4|4|lsi +1.3.6.1.2.1.31.1.1.1.1.6|4|lo0 +1.3.6.1.2.1.31.1.1.1.1.7|4|tap +1.3.6.1.2.1.31.1.1.1.1.8|4|gre +1.3.6.1.2.1.31.1.1.1.1.9|4|ipip +1.3.6.1.2.1.31.1.1.1.1.10|4|pime +1.3.6.1.2.1.31.1.1.1.1.11|4|pimd +1.3.6.1.2.1.31.1.1.1.1.12|4|mtun +1.3.6.1.2.1.31.1.1.1.1.15|4|fxp2.0 +1.3.6.1.2.1.31.1.1.1.1.16|4|lo0.0 +1.3.6.1.2.1.31.1.1.1.1.21|4|lo0.16384 +1.3.6.1.2.1.31.1.1.1.1.22|4|lo0.16385 +1.3.6.1.2.1.31.1.1.1.1.248|4|lo0.32768 +1.3.6.1.2.1.31.1.1.1.1.501|4|ae0 +1.3.6.1.2.1.31.1.1.1.1.502|4|pp0 +1.3.6.1.2.1.31.1.1.1.1.503|4|irb +1.3.6.1.2.1.31.1.1.1.1.504|4|st0 +1.3.6.1.2.1.31.1.1.1.1.505|4|st0.0 +1.3.6.1.2.1.31.1.1.1.1.506|4|ppd0 +1.3.6.1.2.1.31.1.1.1.1.507|4|ppe0 +1.3.6.1.2.1.31.1.1.1.1.508|4|st0.1 +1.3.6.1.2.1.31.1.1.1.1.509|4|vlan +1.3.6.1.2.1.31.1.1.1.1.510|4|st0.2 +1.3.6.1.2.1.31.1.1.1.1.511|4|st0.3 +1.3.6.1.2.1.31.1.1.1.1.512|4|st0.4 +1.3.6.1.2.1.31.1.1.1.1.513|4|vlan.1 +1.3.6.1.2.1.31.1.1.1.1.514|4|vlan.2 +1.3.6.1.2.1.31.1.1.1.1.515|4|vlan.5 +1.3.6.1.2.1.31.1.1.1.1.516|4|vlan.10 +1.3.6.1.2.1.31.1.1.1.1.517|4|vlan.112 +1.3.6.1.2.1.31.1.1.1.1.518|4|ge-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.519|4|ge-0/0/1 +1.3.6.1.2.1.31.1.1.1.1.520|4|ge-0/0/0.0 +1.3.6.1.2.1.31.1.1.1.1.521|4|ge-0/0/2 +1.3.6.1.2.1.31.1.1.1.1.522|4|ge-0/0/3 +1.3.6.1.2.1.31.1.1.1.1.523|4|ge-0/0/4 +1.3.6.1.2.1.31.1.1.1.1.524|4|ge-0/0/5 +1.3.6.1.2.1.31.1.1.1.1.525|4|ge-0/0/1.0 +1.3.6.1.2.1.31.1.1.1.1.526|4|ge-0/0/6 +1.3.6.1.2.1.31.1.1.1.1.527|4|ge-0/0/7 +1.3.6.1.2.1.31.1.1.1.1.528|4|ge-0/0/8 +1.3.6.1.2.1.31.1.1.1.1.529|4|ge-0/0/6.0 +1.3.6.1.2.1.31.1.1.1.1.530|4|ge-0/0/7.0 +1.3.6.1.2.1.31.1.1.1.1.531|4|ge-0/0/9 +1.3.6.1.2.1.31.1.1.1.1.532|4|ge-0/0/10 +1.3.6.1.2.1.31.1.1.1.1.533|4|ge-0/0/11 +1.3.6.1.2.1.31.1.1.1.1.534|4|ge-0/0/12 +1.3.6.1.2.1.31.1.1.1.1.535|4|ge-0/0/13 +1.3.6.1.2.1.31.1.1.1.1.536|4|ge-0/0/14 +1.3.6.1.2.1.31.1.1.1.1.537|4|ge-0/0/15 +1.3.6.1.2.1.31.1.1.1.1.538|4|sp-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.539|4|sp-0/0/0.0 +1.3.6.1.2.1.31.1.1.1.1.540|4|gr-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.541|4|ip-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.542|4|lsq-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.543|4|mt-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.544|4|lt-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.545|4|sp-0/0/0.16383 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.248|65|0 +1.3.6.1.2.1.31.1.1.1.2.501|65|0 +1.3.6.1.2.1.31.1.1.1.2.502|65|0 +1.3.6.1.2.1.31.1.1.1.2.503|65|0 +1.3.6.1.2.1.31.1.1.1.2.504|65|0 +1.3.6.1.2.1.31.1.1.1.2.505|65|0 +1.3.6.1.2.1.31.1.1.1.2.506|65|0 +1.3.6.1.2.1.31.1.1.1.2.507|65|0 +1.3.6.1.2.1.31.1.1.1.2.508|65|0 +1.3.6.1.2.1.31.1.1.1.2.509|65|0 +1.3.6.1.2.1.31.1.1.1.2.510|65|0 +1.3.6.1.2.1.31.1.1.1.2.511|65|0 +1.3.6.1.2.1.31.1.1.1.2.512|65|0 +1.3.6.1.2.1.31.1.1.1.2.513|65|0 +1.3.6.1.2.1.31.1.1.1.2.514|65|0 +1.3.6.1.2.1.31.1.1.1.2.515|65|0 +1.3.6.1.2.1.31.1.1.1.2.516|65|0 +1.3.6.1.2.1.31.1.1.1.2.517|65|0 +1.3.6.1.2.1.31.1.1.1.2.518|65|593606 +1.3.6.1.2.1.31.1.1.1.2.519|65|41597535 +1.3.6.1.2.1.31.1.1.1.2.520|65|0 +1.3.6.1.2.1.31.1.1.1.2.521|65|0 +1.3.6.1.2.1.31.1.1.1.2.522|65|0 +1.3.6.1.2.1.31.1.1.1.2.523|65|0 +1.3.6.1.2.1.31.1.1.1.2.524|65|0 +1.3.6.1.2.1.31.1.1.1.2.525|65|0 +1.3.6.1.2.1.31.1.1.1.2.526|65|793578 +1.3.6.1.2.1.31.1.1.1.2.527|65|0 +1.3.6.1.2.1.31.1.1.1.2.528|65|0 +1.3.6.1.2.1.31.1.1.1.2.529|65|0 +1.3.6.1.2.1.31.1.1.1.2.530|65|0 +1.3.6.1.2.1.31.1.1.1.2.531|65|0 +1.3.6.1.2.1.31.1.1.1.2.532|65|0 +1.3.6.1.2.1.31.1.1.1.2.533|65|0 +1.3.6.1.2.1.31.1.1.1.2.534|65|0 +1.3.6.1.2.1.31.1.1.1.2.535|65|0 +1.3.6.1.2.1.31.1.1.1.2.536|65|0 +1.3.6.1.2.1.31.1.1.1.2.537|65|0 +1.3.6.1.2.1.31.1.1.1.2.538|65|0 +1.3.6.1.2.1.31.1.1.1.2.539|65|0 +1.3.6.1.2.1.31.1.1.1.2.540|65|0 +1.3.6.1.2.1.31.1.1.1.2.541|65|0 +1.3.6.1.2.1.31.1.1.1.2.542|65|0 +1.3.6.1.2.1.31.1.1.1.2.543|65|0 +1.3.6.1.2.1.31.1.1.1.2.544|65|0 +1.3.6.1.2.1.31.1.1.1.2.545|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.248|65|0 +1.3.6.1.2.1.31.1.1.1.3.501|65|0 +1.3.6.1.2.1.31.1.1.1.3.502|65|0 +1.3.6.1.2.1.31.1.1.1.3.503|65|0 +1.3.6.1.2.1.31.1.1.1.3.504|65|0 +1.3.6.1.2.1.31.1.1.1.3.505|65|0 +1.3.6.1.2.1.31.1.1.1.3.506|65|0 +1.3.6.1.2.1.31.1.1.1.3.507|65|0 +1.3.6.1.2.1.31.1.1.1.3.508|65|0 +1.3.6.1.2.1.31.1.1.1.3.509|65|0 +1.3.6.1.2.1.31.1.1.1.3.510|65|0 +1.3.6.1.2.1.31.1.1.1.3.511|65|0 +1.3.6.1.2.1.31.1.1.1.3.512|65|0 +1.3.6.1.2.1.31.1.1.1.3.513|65|0 +1.3.6.1.2.1.31.1.1.1.3.514|65|0 +1.3.6.1.2.1.31.1.1.1.3.515|65|0 +1.3.6.1.2.1.31.1.1.1.3.516|65|0 +1.3.6.1.2.1.31.1.1.1.3.517|65|0 +1.3.6.1.2.1.31.1.1.1.3.518|65|45 +1.3.6.1.2.1.31.1.1.1.3.519|65|107938107 +1.3.6.1.2.1.31.1.1.1.3.520|65|0 +1.3.6.1.2.1.31.1.1.1.3.521|65|0 +1.3.6.1.2.1.31.1.1.1.3.522|65|0 +1.3.6.1.2.1.31.1.1.1.3.523|65|0 +1.3.6.1.2.1.31.1.1.1.3.524|65|0 +1.3.6.1.2.1.31.1.1.1.3.525|65|0 +1.3.6.1.2.1.31.1.1.1.3.526|65|2124822 +1.3.6.1.2.1.31.1.1.1.3.527|65|77162 +1.3.6.1.2.1.31.1.1.1.3.528|65|0 +1.3.6.1.2.1.31.1.1.1.3.529|65|0 +1.3.6.1.2.1.31.1.1.1.3.530|65|0 +1.3.6.1.2.1.31.1.1.1.3.531|65|0 +1.3.6.1.2.1.31.1.1.1.3.532|65|0 +1.3.6.1.2.1.31.1.1.1.3.533|65|0 +1.3.6.1.2.1.31.1.1.1.3.534|65|0 +1.3.6.1.2.1.31.1.1.1.3.535|65|0 +1.3.6.1.2.1.31.1.1.1.3.536|65|0 +1.3.6.1.2.1.31.1.1.1.3.537|65|0 +1.3.6.1.2.1.31.1.1.1.3.538|65|0 +1.3.6.1.2.1.31.1.1.1.3.539|65|0 +1.3.6.1.2.1.31.1.1.1.3.540|65|0 +1.3.6.1.2.1.31.1.1.1.3.541|65|0 +1.3.6.1.2.1.31.1.1.1.3.542|65|0 +1.3.6.1.2.1.31.1.1.1.3.543|65|0 +1.3.6.1.2.1.31.1.1.1.3.544|65|0 +1.3.6.1.2.1.31.1.1.1.3.545|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.248|65|0 +1.3.6.1.2.1.31.1.1.1.4.501|65|0 +1.3.6.1.2.1.31.1.1.1.4.502|65|0 +1.3.6.1.2.1.31.1.1.1.4.503|65|0 +1.3.6.1.2.1.31.1.1.1.4.504|65|0 +1.3.6.1.2.1.31.1.1.1.4.505|65|0 +1.3.6.1.2.1.31.1.1.1.4.506|65|0 +1.3.6.1.2.1.31.1.1.1.4.507|65|0 +1.3.6.1.2.1.31.1.1.1.4.508|65|0 +1.3.6.1.2.1.31.1.1.1.4.509|65|0 +1.3.6.1.2.1.31.1.1.1.4.510|65|0 +1.3.6.1.2.1.31.1.1.1.4.511|65|0 +1.3.6.1.2.1.31.1.1.1.4.512|65|0 +1.3.6.1.2.1.31.1.1.1.4.513|65|0 +1.3.6.1.2.1.31.1.1.1.4.514|65|0 +1.3.6.1.2.1.31.1.1.1.4.515|65|0 +1.3.6.1.2.1.31.1.1.1.4.516|65|0 +1.3.6.1.2.1.31.1.1.1.4.517|65|0 +1.3.6.1.2.1.31.1.1.1.4.518|65|49273887 +1.3.6.1.2.1.31.1.1.1.4.519|65|6704506 +1.3.6.1.2.1.31.1.1.1.4.520|65|0 +1.3.6.1.2.1.31.1.1.1.4.521|65|0 +1.3.6.1.2.1.31.1.1.1.4.522|65|0 +1.3.6.1.2.1.31.1.1.1.4.523|65|0 +1.3.6.1.2.1.31.1.1.1.4.524|65|0 +1.3.6.1.2.1.31.1.1.1.4.525|65|0 +1.3.6.1.2.1.31.1.1.1.4.526|65|429959 +1.3.6.1.2.1.31.1.1.1.4.527|65|429905 +1.3.6.1.2.1.31.1.1.1.4.528|65|0 +1.3.6.1.2.1.31.1.1.1.4.529|65|0 +1.3.6.1.2.1.31.1.1.1.4.530|65|0 +1.3.6.1.2.1.31.1.1.1.4.531|65|0 +1.3.6.1.2.1.31.1.1.1.4.532|65|0 +1.3.6.1.2.1.31.1.1.1.4.533|65|0 +1.3.6.1.2.1.31.1.1.1.4.534|65|0 +1.3.6.1.2.1.31.1.1.1.4.535|65|0 +1.3.6.1.2.1.31.1.1.1.4.536|65|0 +1.3.6.1.2.1.31.1.1.1.4.537|65|0 +1.3.6.1.2.1.31.1.1.1.4.538|65|0 +1.3.6.1.2.1.31.1.1.1.4.539|65|0 +1.3.6.1.2.1.31.1.1.1.4.540|65|0 +1.3.6.1.2.1.31.1.1.1.4.541|65|0 +1.3.6.1.2.1.31.1.1.1.4.542|65|0 +1.3.6.1.2.1.31.1.1.1.4.543|65|0 +1.3.6.1.2.1.31.1.1.1.4.544|65|0 +1.3.6.1.2.1.31.1.1.1.4.545|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.248|65|0 +1.3.6.1.2.1.31.1.1.1.5.501|65|0 +1.3.6.1.2.1.31.1.1.1.5.502|65|0 +1.3.6.1.2.1.31.1.1.1.5.503|65|0 +1.3.6.1.2.1.31.1.1.1.5.504|65|0 +1.3.6.1.2.1.31.1.1.1.5.505|65|0 +1.3.6.1.2.1.31.1.1.1.5.506|65|0 +1.3.6.1.2.1.31.1.1.1.5.507|65|0 +1.3.6.1.2.1.31.1.1.1.5.508|65|0 +1.3.6.1.2.1.31.1.1.1.5.509|65|0 +1.3.6.1.2.1.31.1.1.1.5.510|65|0 +1.3.6.1.2.1.31.1.1.1.5.511|65|0 +1.3.6.1.2.1.31.1.1.1.5.512|65|0 +1.3.6.1.2.1.31.1.1.1.5.513|65|0 +1.3.6.1.2.1.31.1.1.1.5.514|65|0 +1.3.6.1.2.1.31.1.1.1.5.515|65|0 +1.3.6.1.2.1.31.1.1.1.5.516|65|0 +1.3.6.1.2.1.31.1.1.1.5.517|65|0 +1.3.6.1.2.1.31.1.1.1.5.518|65|125497976 +1.3.6.1.2.1.31.1.1.1.5.519|65|17560135 +1.3.6.1.2.1.31.1.1.1.5.520|65|0 +1.3.6.1.2.1.31.1.1.1.5.521|65|0 +1.3.6.1.2.1.31.1.1.1.5.522|65|0 +1.3.6.1.2.1.31.1.1.1.5.523|65|0 +1.3.6.1.2.1.31.1.1.1.5.524|65|0 +1.3.6.1.2.1.31.1.1.1.5.525|65|0 +1.3.6.1.2.1.31.1.1.1.5.526|65|15715533 +1.3.6.1.2.1.31.1.1.1.5.527|65|211485 +1.3.6.1.2.1.31.1.1.1.5.528|65|0 +1.3.6.1.2.1.31.1.1.1.5.529|65|0 +1.3.6.1.2.1.31.1.1.1.5.530|65|0 +1.3.6.1.2.1.31.1.1.1.5.531|65|0 +1.3.6.1.2.1.31.1.1.1.5.532|65|0 +1.3.6.1.2.1.31.1.1.1.5.533|65|0 +1.3.6.1.2.1.31.1.1.1.5.534|65|0 +1.3.6.1.2.1.31.1.1.1.5.535|65|0 +1.3.6.1.2.1.31.1.1.1.5.536|65|0 +1.3.6.1.2.1.31.1.1.1.5.537|65|0 +1.3.6.1.2.1.31.1.1.1.5.538|65|0 +1.3.6.1.2.1.31.1.1.1.5.539|65|0 +1.3.6.1.2.1.31.1.1.1.5.540|65|0 +1.3.6.1.2.1.31.1.1.1.5.541|65|0 +1.3.6.1.2.1.31.1.1.1.5.542|65|0 +1.3.6.1.2.1.31.1.1.1.5.543|65|0 +1.3.6.1.2.1.31.1.1.1.5.544|65|0 +1.3.6.1.2.1.31.1.1.1.5.545|65|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|1465485943 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|0 +1.3.6.1.2.1.31.1.1.1.6.248|70|0 +1.3.6.1.2.1.31.1.1.1.6.501|70|0 +1.3.6.1.2.1.31.1.1.1.6.502|70|0 +1.3.6.1.2.1.31.1.1.1.6.503|70|0 +1.3.6.1.2.1.31.1.1.1.6.504|70|918682804298 +1.3.6.1.2.1.31.1.1.1.6.505|70|0 +1.3.6.1.2.1.31.1.1.1.6.506|70|0 +1.3.6.1.2.1.31.1.1.1.6.507|70|0 +1.3.6.1.2.1.31.1.1.1.6.508|70|60436449064 +1.3.6.1.2.1.31.1.1.1.6.509|70|2412312773856 +1.3.6.1.2.1.31.1.1.1.6.510|70|855830447942 +1.3.6.1.2.1.31.1.1.1.6.511|70|413304481 +1.3.6.1.2.1.31.1.1.1.6.512|70|1907931463 +1.3.6.1.2.1.31.1.1.1.6.513|70|557157994900 +1.3.6.1.2.1.31.1.1.1.6.514|70|0 +1.3.6.1.2.1.31.1.1.1.6.515|70|0 +1.3.6.1.2.1.31.1.1.1.6.516|70|0 +1.3.6.1.2.1.31.1.1.1.6.517|70|1846668325072 +1.3.6.1.2.1.31.1.1.1.6.518|70|118327954 +1.3.6.1.2.1.31.1.1.1.6.519|70|2512727527832 +1.3.6.1.2.1.31.1.1.1.6.520|70|234277352 +1.3.6.1.2.1.31.1.1.1.6.521|70|0 +1.3.6.1.2.1.31.1.1.1.6.522|70|0 +1.3.6.1.2.1.31.1.1.1.6.523|70|0 +1.3.6.1.2.1.31.1.1.1.6.524|70|0 +1.3.6.1.2.1.31.1.1.1.6.525|70|2515408342733 +1.3.6.1.2.1.31.1.1.1.6.526|70|23194406497 +1.3.6.1.2.1.31.1.1.1.6.527|70|5823315416420 +1.3.6.1.2.1.31.1.1.1.6.528|70|0 +1.3.6.1.2.1.31.1.1.1.6.529|70|23193287737 +1.3.6.1.2.1.31.1.1.1.6.530|70|5823314347860 +1.3.6.1.2.1.31.1.1.1.6.531|70|0 +1.3.6.1.2.1.31.1.1.1.6.532|70|0 +1.3.6.1.2.1.31.1.1.1.6.533|70|0 +1.3.6.1.2.1.31.1.1.1.6.534|70|0 +1.3.6.1.2.1.31.1.1.1.6.535|70|0 +1.3.6.1.2.1.31.1.1.1.6.536|70|0 +1.3.6.1.2.1.31.1.1.1.6.537|70|0 +1.3.6.1.2.1.31.1.1.1.6.538|70|0 +1.3.6.1.2.1.31.1.1.1.6.539|70|0 +1.3.6.1.2.1.31.1.1.1.6.540|70|0 +1.3.6.1.2.1.31.1.1.1.6.541|70|0 +1.3.6.1.2.1.31.1.1.1.6.542|70|0 +1.3.6.1.2.1.31.1.1.1.6.543|70|0 +1.3.6.1.2.1.31.1.1.1.6.544|70|0 +1.3.6.1.2.1.31.1.1.1.6.545|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|31858111 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|0 +1.3.6.1.2.1.31.1.1.1.7.248|70|0 +1.3.6.1.2.1.31.1.1.1.7.501|70|0 +1.3.6.1.2.1.31.1.1.1.7.502|70|0 +1.3.6.1.2.1.31.1.1.1.7.503|70|0 +1.3.6.1.2.1.31.1.1.1.7.504|70|2781655198 +1.3.6.1.2.1.31.1.1.1.7.505|70|0 +1.3.6.1.2.1.31.1.1.1.7.506|70|0 +1.3.6.1.2.1.31.1.1.1.7.507|70|0 +1.3.6.1.2.1.31.1.1.1.7.508|70|473040485 +1.3.6.1.2.1.31.1.1.1.7.509|70|4901848760 +1.3.6.1.2.1.31.1.1.1.7.510|70|2291190880 +1.3.6.1.2.1.31.1.1.1.7.511|70|4718605 +1.3.6.1.2.1.31.1.1.1.7.512|70|12705229 +1.3.6.1.2.1.31.1.1.1.7.513|70|1791198742 +1.3.6.1.2.1.31.1.1.1.7.514|70|0 +1.3.6.1.2.1.31.1.1.1.7.515|70|0 +1.3.6.1.2.1.31.1.1.1.7.516|70|0 +1.3.6.1.2.1.31.1.1.1.7.517|70|2978837382 +1.3.6.1.2.1.31.1.1.1.7.518|70|3 +1.3.6.1.2.1.31.1.1.1.7.519|70|4758860382 +1.3.6.1.2.1.31.1.1.1.7.520|70|1187253 +1.3.6.1.2.1.31.1.1.1.7.521|70|0 +1.3.6.1.2.1.31.1.1.1.7.522|70|0 +1.3.6.1.2.1.31.1.1.1.7.523|70|0 +1.3.6.1.2.1.31.1.1.1.7.524|70|0 +1.3.6.1.2.1.31.1.1.1.7.525|70|4930371563 +1.3.6.1.2.1.31.1.1.1.7.526|70|39182020 +1.3.6.1.2.1.31.1.1.1.7.527|70|6312090361 +1.3.6.1.2.1.31.1.1.1.7.528|70|0 +1.3.6.1.2.1.31.1.1.1.7.529|70|42100420 +1.3.6.1.2.1.31.1.1.1.7.530|70|6312158526 +1.3.6.1.2.1.31.1.1.1.7.531|70|0 +1.3.6.1.2.1.31.1.1.1.7.532|70|0 +1.3.6.1.2.1.31.1.1.1.7.533|70|0 +1.3.6.1.2.1.31.1.1.1.7.534|70|0 +1.3.6.1.2.1.31.1.1.1.7.535|70|0 +1.3.6.1.2.1.31.1.1.1.7.536|70|0 +1.3.6.1.2.1.31.1.1.1.7.537|70|0 +1.3.6.1.2.1.31.1.1.1.7.538|70|0 +1.3.6.1.2.1.31.1.1.1.7.539|70|0 +1.3.6.1.2.1.31.1.1.1.7.540|70|0 +1.3.6.1.2.1.31.1.1.1.7.541|70|0 +1.3.6.1.2.1.31.1.1.1.7.542|70|0 +1.3.6.1.2.1.31.1.1.1.7.543|70|0 +1.3.6.1.2.1.31.1.1.1.7.544|70|0 +1.3.6.1.2.1.31.1.1.1.7.545|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.248|70|0 +1.3.6.1.2.1.31.1.1.1.8.501|70|0 +1.3.6.1.2.1.31.1.1.1.8.502|70|0 +1.3.6.1.2.1.31.1.1.1.8.503|70|0 +1.3.6.1.2.1.31.1.1.1.8.504|70|0 +1.3.6.1.2.1.31.1.1.1.8.505|70|0 +1.3.6.1.2.1.31.1.1.1.8.506|70|0 +1.3.6.1.2.1.31.1.1.1.8.507|70|0 +1.3.6.1.2.1.31.1.1.1.8.508|70|0 +1.3.6.1.2.1.31.1.1.1.8.509|70|0 +1.3.6.1.2.1.31.1.1.1.8.510|70|0 +1.3.6.1.2.1.31.1.1.1.8.511|70|0 +1.3.6.1.2.1.31.1.1.1.8.512|70|0 +1.3.6.1.2.1.31.1.1.1.8.513|70|0 +1.3.6.1.2.1.31.1.1.1.8.514|70|0 +1.3.6.1.2.1.31.1.1.1.8.515|70|0 +1.3.6.1.2.1.31.1.1.1.8.516|70|0 +1.3.6.1.2.1.31.1.1.1.8.517|70|0 +1.3.6.1.2.1.31.1.1.1.8.518|70|593606 +1.3.6.1.2.1.31.1.1.1.8.519|70|41597535 +1.3.6.1.2.1.31.1.1.1.8.520|70|0 +1.3.6.1.2.1.31.1.1.1.8.521|70|0 +1.3.6.1.2.1.31.1.1.1.8.522|70|0 +1.3.6.1.2.1.31.1.1.1.8.523|70|0 +1.3.6.1.2.1.31.1.1.1.8.524|70|0 +1.3.6.1.2.1.31.1.1.1.8.525|70|0 +1.3.6.1.2.1.31.1.1.1.8.526|70|793578 +1.3.6.1.2.1.31.1.1.1.8.527|70|0 +1.3.6.1.2.1.31.1.1.1.8.528|70|0 +1.3.6.1.2.1.31.1.1.1.8.529|70|0 +1.3.6.1.2.1.31.1.1.1.8.530|70|0 +1.3.6.1.2.1.31.1.1.1.8.531|70|0 +1.3.6.1.2.1.31.1.1.1.8.532|70|0 +1.3.6.1.2.1.31.1.1.1.8.533|70|0 +1.3.6.1.2.1.31.1.1.1.8.534|70|0 +1.3.6.1.2.1.31.1.1.1.8.535|70|0 +1.3.6.1.2.1.31.1.1.1.8.536|70|0 +1.3.6.1.2.1.31.1.1.1.8.537|70|0 +1.3.6.1.2.1.31.1.1.1.8.538|70|0 +1.3.6.1.2.1.31.1.1.1.8.539|70|0 +1.3.6.1.2.1.31.1.1.1.8.540|70|0 +1.3.6.1.2.1.31.1.1.1.8.541|70|0 +1.3.6.1.2.1.31.1.1.1.8.542|70|0 +1.3.6.1.2.1.31.1.1.1.8.543|70|0 +1.3.6.1.2.1.31.1.1.1.8.544|70|0 +1.3.6.1.2.1.31.1.1.1.8.545|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.248|70|0 +1.3.6.1.2.1.31.1.1.1.9.501|70|0 +1.3.6.1.2.1.31.1.1.1.9.502|70|0 +1.3.6.1.2.1.31.1.1.1.9.503|70|0 +1.3.6.1.2.1.31.1.1.1.9.504|70|0 +1.3.6.1.2.1.31.1.1.1.9.505|70|0 +1.3.6.1.2.1.31.1.1.1.9.506|70|0 +1.3.6.1.2.1.31.1.1.1.9.507|70|0 +1.3.6.1.2.1.31.1.1.1.9.508|70|0 +1.3.6.1.2.1.31.1.1.1.9.509|70|0 +1.3.6.1.2.1.31.1.1.1.9.510|70|0 +1.3.6.1.2.1.31.1.1.1.9.511|70|0 +1.3.6.1.2.1.31.1.1.1.9.512|70|0 +1.3.6.1.2.1.31.1.1.1.9.513|70|0 +1.3.6.1.2.1.31.1.1.1.9.514|70|0 +1.3.6.1.2.1.31.1.1.1.9.515|70|0 +1.3.6.1.2.1.31.1.1.1.9.516|70|0 +1.3.6.1.2.1.31.1.1.1.9.517|70|0 +1.3.6.1.2.1.31.1.1.1.9.518|70|45 +1.3.6.1.2.1.31.1.1.1.9.519|70|107938107 +1.3.6.1.2.1.31.1.1.1.9.520|70|0 +1.3.6.1.2.1.31.1.1.1.9.521|70|0 +1.3.6.1.2.1.31.1.1.1.9.522|70|0 +1.3.6.1.2.1.31.1.1.1.9.523|70|0 +1.3.6.1.2.1.31.1.1.1.9.524|70|0 +1.3.6.1.2.1.31.1.1.1.9.525|70|0 +1.3.6.1.2.1.31.1.1.1.9.526|70|2124822 +1.3.6.1.2.1.31.1.1.1.9.527|70|77162 +1.3.6.1.2.1.31.1.1.1.9.528|70|0 +1.3.6.1.2.1.31.1.1.1.9.529|70|0 +1.3.6.1.2.1.31.1.1.1.9.530|70|0 +1.3.6.1.2.1.31.1.1.1.9.531|70|0 +1.3.6.1.2.1.31.1.1.1.9.532|70|0 +1.3.6.1.2.1.31.1.1.1.9.533|70|0 +1.3.6.1.2.1.31.1.1.1.9.534|70|0 +1.3.6.1.2.1.31.1.1.1.9.535|70|0 +1.3.6.1.2.1.31.1.1.1.9.536|70|0 +1.3.6.1.2.1.31.1.1.1.9.537|70|0 +1.3.6.1.2.1.31.1.1.1.9.538|70|0 +1.3.6.1.2.1.31.1.1.1.9.539|70|0 +1.3.6.1.2.1.31.1.1.1.9.540|70|0 +1.3.6.1.2.1.31.1.1.1.9.541|70|0 +1.3.6.1.2.1.31.1.1.1.9.542|70|0 +1.3.6.1.2.1.31.1.1.1.9.543|70|0 +1.3.6.1.2.1.31.1.1.1.9.544|70|0 +1.3.6.1.2.1.31.1.1.1.9.545|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|596592800 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|1465485943 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|0 +1.3.6.1.2.1.31.1.1.1.10.22|70|0 +1.3.6.1.2.1.31.1.1.1.10.248|70|0 +1.3.6.1.2.1.31.1.1.1.10.501|70|0 +1.3.6.1.2.1.31.1.1.1.10.502|70|0 +1.3.6.1.2.1.31.1.1.1.10.503|70|0 +1.3.6.1.2.1.31.1.1.1.10.504|70|1867916239978 +1.3.6.1.2.1.31.1.1.1.10.505|70|0 +1.3.6.1.2.1.31.1.1.1.10.506|70|0 +1.3.6.1.2.1.31.1.1.1.10.507|70|0 +1.3.6.1.2.1.31.1.1.1.10.508|70|285758024 +1.3.6.1.2.1.31.1.1.1.10.509|70|6326501907915 +1.3.6.1.2.1.31.1.1.1.10.510|70|6524550924 +1.3.6.1.2.1.31.1.1.1.10.511|70|450515617836 +1.3.6.1.2.1.31.1.1.1.10.512|70|1410481882029 +1.3.6.1.2.1.31.1.1.1.10.513|70|4770096097032 +1.3.6.1.2.1.31.1.1.1.10.514|70|0 +1.3.6.1.2.1.31.1.1.1.10.515|70|168 +1.3.6.1.2.1.31.1.1.1.10.516|70|168 +1.3.6.1.2.1.31.1.1.1.10.517|70|1555651429987 +1.3.6.1.2.1.31.1.1.1.10.518|70|16081013526 +1.3.6.1.2.1.31.1.1.1.10.519|70|5850769967027 +1.3.6.1.2.1.31.1.1.1.10.520|70|16206546286 +1.3.6.1.2.1.31.1.1.1.10.521|70|0 +1.3.6.1.2.1.31.1.1.1.10.522|70|0 +1.3.6.1.2.1.31.1.1.1.10.523|70|0 +1.3.6.1.2.1.31.1.1.1.10.524|70|0 +1.3.6.1.2.1.31.1.1.1.10.525|70|5850895456567 +1.3.6.1.2.1.31.1.1.1.10.526|70|2042634293609 +1.3.6.1.2.1.31.1.1.1.10.527|70|490120348210 +1.3.6.1.2.1.31.1.1.1.10.528|70|0 +1.3.6.1.2.1.31.1.1.1.10.529|70|2042420576709 +1.3.6.1.2.1.31.1.1.1.10.530|70|489953556750 +1.3.6.1.2.1.31.1.1.1.10.531|70|0 +1.3.6.1.2.1.31.1.1.1.10.532|70|0 +1.3.6.1.2.1.31.1.1.1.10.533|70|0 +1.3.6.1.2.1.31.1.1.1.10.534|70|0 +1.3.6.1.2.1.31.1.1.1.10.535|70|0 +1.3.6.1.2.1.31.1.1.1.10.536|70|0 +1.3.6.1.2.1.31.1.1.1.10.537|70|0 +1.3.6.1.2.1.31.1.1.1.10.538|70|0 +1.3.6.1.2.1.31.1.1.1.10.539|70|0 +1.3.6.1.2.1.31.1.1.1.10.540|70|0 +1.3.6.1.2.1.31.1.1.1.10.541|70|0 +1.3.6.1.2.1.31.1.1.1.10.542|70|0 +1.3.6.1.2.1.31.1.1.1.10.543|70|0 +1.3.6.1.2.1.31.1.1.1.10.544|70|0 +1.3.6.1.2.1.31.1.1.1.10.545|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|11931856 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|31858111 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|0 +1.3.6.1.2.1.31.1.1.1.11.248|70|0 +1.3.6.1.2.1.31.1.1.1.11.501|70|0 +1.3.6.1.2.1.31.1.1.1.11.502|70|0 +1.3.6.1.2.1.31.1.1.1.11.503|70|0 +1.3.6.1.2.1.31.1.1.1.11.504|70|2831521563 +1.3.6.1.2.1.31.1.1.1.11.505|70|0 +1.3.6.1.2.1.31.1.1.1.11.506|70|0 +1.3.6.1.2.1.31.1.1.1.11.507|70|0 +1.3.6.1.2.1.31.1.1.1.11.508|70|2752074 +1.3.6.1.2.1.31.1.1.1.11.509|70|8664842972 +1.3.6.1.2.1.31.1.1.1.11.510|70|11058649 +1.3.6.1.2.1.31.1.1.1.11.511|70|546159232 +1.3.6.1.2.1.31.1.1.1.11.512|70|2271551608 +1.3.6.1.2.1.31.1.1.1.11.513|70|3836159958 +1.3.6.1.2.1.31.1.1.1.11.514|70|0 +1.3.6.1.2.1.31.1.1.1.11.515|70|2 +1.3.6.1.2.1.31.1.1.1.11.516|70|2 +1.3.6.1.2.1.31.1.1.1.11.517|70|4828683010 +1.3.6.1.2.1.31.1.1.1.11.518|70|1558004 +1.3.6.1.2.1.31.1.1.1.11.519|70|6719302716 +1.3.6.1.2.1.31.1.1.1.11.520|70|184408430 +1.3.6.1.2.1.31.1.1.1.11.521|70|0 +1.3.6.1.2.1.31.1.1.1.11.522|70|0 +1.3.6.1.2.1.31.1.1.1.11.523|70|0 +1.3.6.1.2.1.31.1.1.1.11.524|70|0 +1.3.6.1.2.1.31.1.1.1.11.525|70|6750271840 +1.3.6.1.2.1.31.1.1.1.11.526|70|2832934202 +1.3.6.1.2.1.31.1.1.1.11.527|70|1533116623 +1.3.6.1.2.1.31.1.1.1.11.528|70|0 +1.3.6.1.2.1.31.1.1.1.11.529|70|2850477302 +1.3.6.1.2.1.31.1.1.1.11.530|70|1535029064 +1.3.6.1.2.1.31.1.1.1.11.531|70|0 +1.3.6.1.2.1.31.1.1.1.11.532|70|0 +1.3.6.1.2.1.31.1.1.1.11.533|70|0 +1.3.6.1.2.1.31.1.1.1.11.534|70|0 +1.3.6.1.2.1.31.1.1.1.11.535|70|0 +1.3.6.1.2.1.31.1.1.1.11.536|70|0 +1.3.6.1.2.1.31.1.1.1.11.537|70|0 +1.3.6.1.2.1.31.1.1.1.11.538|70|0 +1.3.6.1.2.1.31.1.1.1.11.539|70|0 +1.3.6.1.2.1.31.1.1.1.11.540|70|0 +1.3.6.1.2.1.31.1.1.1.11.541|70|0 +1.3.6.1.2.1.31.1.1.1.11.542|70|0 +1.3.6.1.2.1.31.1.1.1.11.543|70|0 +1.3.6.1.2.1.31.1.1.1.11.544|70|0 +1.3.6.1.2.1.31.1.1.1.11.545|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.248|70|0 +1.3.6.1.2.1.31.1.1.1.12.501|70|0 +1.3.6.1.2.1.31.1.1.1.12.502|70|0 +1.3.6.1.2.1.31.1.1.1.12.503|70|0 +1.3.6.1.2.1.31.1.1.1.12.504|70|0 +1.3.6.1.2.1.31.1.1.1.12.505|70|0 +1.3.6.1.2.1.31.1.1.1.12.506|70|0 +1.3.6.1.2.1.31.1.1.1.12.507|70|0 +1.3.6.1.2.1.31.1.1.1.12.508|70|0 +1.3.6.1.2.1.31.1.1.1.12.509|70|0 +1.3.6.1.2.1.31.1.1.1.12.510|70|0 +1.3.6.1.2.1.31.1.1.1.12.511|70|0 +1.3.6.1.2.1.31.1.1.1.12.512|70|0 +1.3.6.1.2.1.31.1.1.1.12.513|70|0 +1.3.6.1.2.1.31.1.1.1.12.514|70|0 +1.3.6.1.2.1.31.1.1.1.12.515|70|0 +1.3.6.1.2.1.31.1.1.1.12.516|70|0 +1.3.6.1.2.1.31.1.1.1.12.517|70|0 +1.3.6.1.2.1.31.1.1.1.12.518|70|49273887 +1.3.6.1.2.1.31.1.1.1.12.519|70|6704506 +1.3.6.1.2.1.31.1.1.1.12.520|70|0 +1.3.6.1.2.1.31.1.1.1.12.521|70|0 +1.3.6.1.2.1.31.1.1.1.12.522|70|0 +1.3.6.1.2.1.31.1.1.1.12.523|70|0 +1.3.6.1.2.1.31.1.1.1.12.524|70|0 +1.3.6.1.2.1.31.1.1.1.12.525|70|0 +1.3.6.1.2.1.31.1.1.1.12.526|70|429959 +1.3.6.1.2.1.31.1.1.1.12.527|70|429905 +1.3.6.1.2.1.31.1.1.1.12.528|70|0 +1.3.6.1.2.1.31.1.1.1.12.529|70|0 +1.3.6.1.2.1.31.1.1.1.12.530|70|0 +1.3.6.1.2.1.31.1.1.1.12.531|70|0 +1.3.6.1.2.1.31.1.1.1.12.532|70|0 +1.3.6.1.2.1.31.1.1.1.12.533|70|0 +1.3.6.1.2.1.31.1.1.1.12.534|70|0 +1.3.6.1.2.1.31.1.1.1.12.535|70|0 +1.3.6.1.2.1.31.1.1.1.12.536|70|0 +1.3.6.1.2.1.31.1.1.1.12.537|70|0 +1.3.6.1.2.1.31.1.1.1.12.538|70|0 +1.3.6.1.2.1.31.1.1.1.12.539|70|0 +1.3.6.1.2.1.31.1.1.1.12.540|70|0 +1.3.6.1.2.1.31.1.1.1.12.541|70|0 +1.3.6.1.2.1.31.1.1.1.12.542|70|0 +1.3.6.1.2.1.31.1.1.1.12.543|70|0 +1.3.6.1.2.1.31.1.1.1.12.544|70|0 +1.3.6.1.2.1.31.1.1.1.12.545|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.248|70|0 +1.3.6.1.2.1.31.1.1.1.13.501|70|0 +1.3.6.1.2.1.31.1.1.1.13.502|70|0 +1.3.6.1.2.1.31.1.1.1.13.503|70|0 +1.3.6.1.2.1.31.1.1.1.13.504|70|0 +1.3.6.1.2.1.31.1.1.1.13.505|70|0 +1.3.6.1.2.1.31.1.1.1.13.506|70|0 +1.3.6.1.2.1.31.1.1.1.13.507|70|0 +1.3.6.1.2.1.31.1.1.1.13.508|70|0 +1.3.6.1.2.1.31.1.1.1.13.509|70|0 +1.3.6.1.2.1.31.1.1.1.13.510|70|0 +1.3.6.1.2.1.31.1.1.1.13.511|70|0 +1.3.6.1.2.1.31.1.1.1.13.512|70|0 +1.3.6.1.2.1.31.1.1.1.13.513|70|0 +1.3.6.1.2.1.31.1.1.1.13.514|70|0 +1.3.6.1.2.1.31.1.1.1.13.515|70|0 +1.3.6.1.2.1.31.1.1.1.13.516|70|0 +1.3.6.1.2.1.31.1.1.1.13.517|70|0 +1.3.6.1.2.1.31.1.1.1.13.518|70|125497976 +1.3.6.1.2.1.31.1.1.1.13.519|70|17560135 +1.3.6.1.2.1.31.1.1.1.13.520|70|0 +1.3.6.1.2.1.31.1.1.1.13.521|70|0 +1.3.6.1.2.1.31.1.1.1.13.522|70|0 +1.3.6.1.2.1.31.1.1.1.13.523|70|0 +1.3.6.1.2.1.31.1.1.1.13.524|70|0 +1.3.6.1.2.1.31.1.1.1.13.525|70|0 +1.3.6.1.2.1.31.1.1.1.13.526|70|15715533 +1.3.6.1.2.1.31.1.1.1.13.527|70|211485 +1.3.6.1.2.1.31.1.1.1.13.528|70|0 +1.3.6.1.2.1.31.1.1.1.13.529|70|0 +1.3.6.1.2.1.31.1.1.1.13.530|70|0 +1.3.6.1.2.1.31.1.1.1.13.531|70|0 +1.3.6.1.2.1.31.1.1.1.13.532|70|0 +1.3.6.1.2.1.31.1.1.1.13.533|70|0 +1.3.6.1.2.1.31.1.1.1.13.534|70|0 +1.3.6.1.2.1.31.1.1.1.13.535|70|0 +1.3.6.1.2.1.31.1.1.1.13.536|70|0 +1.3.6.1.2.1.31.1.1.1.13.537|70|0 +1.3.6.1.2.1.31.1.1.1.13.538|70|0 +1.3.6.1.2.1.31.1.1.1.13.539|70|0 +1.3.6.1.2.1.31.1.1.1.13.540|70|0 +1.3.6.1.2.1.31.1.1.1.13.541|70|0 +1.3.6.1.2.1.31.1.1.1.13.542|70|0 +1.3.6.1.2.1.31.1.1.1.13.543|70|0 +1.3.6.1.2.1.31.1.1.1.13.544|70|0 +1.3.6.1.2.1.31.1.1.1.13.545|70|0 +1.3.6.1.2.1.31.1.1.1.14.3|2|2 +1.3.6.1.2.1.31.1.1.1.14.4|2|2 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|2 +1.3.6.1.2.1.31.1.1.1.14.11|2|2 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.248|2|2 +1.3.6.1.2.1.31.1.1.1.14.501|2|1 +1.3.6.1.2.1.31.1.1.1.14.502|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.504|2|2 +1.3.6.1.2.1.31.1.1.1.14.505|2|1 +1.3.6.1.2.1.31.1.1.1.14.506|2|1 +1.3.6.1.2.1.31.1.1.1.14.507|2|1 +1.3.6.1.2.1.31.1.1.1.14.508|2|1 +1.3.6.1.2.1.31.1.1.1.14.509|2|2 +1.3.6.1.2.1.31.1.1.1.14.510|2|1 +1.3.6.1.2.1.31.1.1.1.14.511|2|1 +1.3.6.1.2.1.31.1.1.1.14.512|2|1 +1.3.6.1.2.1.31.1.1.1.14.513|2|1 +1.3.6.1.2.1.31.1.1.1.14.514|2|1 +1.3.6.1.2.1.31.1.1.1.14.515|2|1 +1.3.6.1.2.1.31.1.1.1.14.516|2|1 +1.3.6.1.2.1.31.1.1.1.14.517|2|1 +1.3.6.1.2.1.31.1.1.1.14.518|2|1 +1.3.6.1.2.1.31.1.1.1.14.519|2|1 +1.3.6.1.2.1.31.1.1.1.14.520|2|1 +1.3.6.1.2.1.31.1.1.1.14.521|2|1 +1.3.6.1.2.1.31.1.1.1.14.522|2|1 +1.3.6.1.2.1.31.1.1.1.14.523|2|1 +1.3.6.1.2.1.31.1.1.1.14.524|2|1 +1.3.6.1.2.1.31.1.1.1.14.525|2|1 +1.3.6.1.2.1.31.1.1.1.14.526|2|1 +1.3.6.1.2.1.31.1.1.1.14.527|2|1 +1.3.6.1.2.1.31.1.1.1.14.528|2|1 +1.3.6.1.2.1.31.1.1.1.14.529|2|1 +1.3.6.1.2.1.31.1.1.1.14.530|2|1 +1.3.6.1.2.1.31.1.1.1.14.531|2|1 +1.3.6.1.2.1.31.1.1.1.14.532|2|1 +1.3.6.1.2.1.31.1.1.1.14.533|2|1 +1.3.6.1.2.1.31.1.1.1.14.534|2|1 +1.3.6.1.2.1.31.1.1.1.14.535|2|1 +1.3.6.1.2.1.31.1.1.1.14.536|2|1 +1.3.6.1.2.1.31.1.1.1.14.537|2|1 +1.3.6.1.2.1.31.1.1.1.14.538|2|1 +1.3.6.1.2.1.31.1.1.1.14.539|2|1 +1.3.6.1.2.1.31.1.1.1.14.540|2|2 +1.3.6.1.2.1.31.1.1.1.14.541|2|2 +1.3.6.1.2.1.31.1.1.1.14.542|2|1 +1.3.6.1.2.1.31.1.1.1.14.543|2|1 +1.3.6.1.2.1.31.1.1.1.14.544|2|1 +1.3.6.1.2.1.31.1.1.1.14.545|2|1 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|0 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +1.3.6.1.2.1.31.1.1.1.15.15|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.21|66|0 +1.3.6.1.2.1.31.1.1.1.15.22|66|0 +1.3.6.1.2.1.31.1.1.1.15.248|66|0 +1.3.6.1.2.1.31.1.1.1.15.501|66|0 +1.3.6.1.2.1.31.1.1.1.15.502|66|0 +1.3.6.1.2.1.31.1.1.1.15.503|66|0 +1.3.6.1.2.1.31.1.1.1.15.504|66|0 +1.3.6.1.2.1.31.1.1.1.15.505|66|0 +1.3.6.1.2.1.31.1.1.1.15.506|66|800 +1.3.6.1.2.1.31.1.1.1.15.507|66|800 +1.3.6.1.2.1.31.1.1.1.15.508|66|0 +1.3.6.1.2.1.31.1.1.1.15.509|66|2000 +1.3.6.1.2.1.31.1.1.1.15.510|66|0 +1.3.6.1.2.1.31.1.1.1.15.511|66|0 +1.3.6.1.2.1.31.1.1.1.15.512|66|0 +1.3.6.1.2.1.31.1.1.1.15.513|66|0 +1.3.6.1.2.1.31.1.1.1.15.514|66|0 +1.3.6.1.2.1.31.1.1.1.15.515|66|0 +1.3.6.1.2.1.31.1.1.1.15.516|66|0 +1.3.6.1.2.1.31.1.1.1.15.517|66|0 +1.3.6.1.2.1.31.1.1.1.15.518|66|1000 +1.3.6.1.2.1.31.1.1.1.15.519|66|1000 +1.3.6.1.2.1.31.1.1.1.15.520|66|1000 +1.3.6.1.2.1.31.1.1.1.15.521|66|1000 +1.3.6.1.2.1.31.1.1.1.15.522|66|1000 +1.3.6.1.2.1.31.1.1.1.15.523|66|1000 +1.3.6.1.2.1.31.1.1.1.15.524|66|1000 +1.3.6.1.2.1.31.1.1.1.15.525|66|1000 +1.3.6.1.2.1.31.1.1.1.15.526|66|1000 +1.3.6.1.2.1.31.1.1.1.15.527|66|1000 +1.3.6.1.2.1.31.1.1.1.15.528|66|1000 +1.3.6.1.2.1.31.1.1.1.15.529|66|1000 +1.3.6.1.2.1.31.1.1.1.15.530|66|1000 +1.3.6.1.2.1.31.1.1.1.15.531|66|1000 +1.3.6.1.2.1.31.1.1.1.15.532|66|1000 +1.3.6.1.2.1.31.1.1.1.15.533|66|1000 +1.3.6.1.2.1.31.1.1.1.15.534|66|1000 +1.3.6.1.2.1.31.1.1.1.15.535|66|1000 +1.3.6.1.2.1.31.1.1.1.15.536|66|1000 +1.3.6.1.2.1.31.1.1.1.15.537|66|1000 +1.3.6.1.2.1.31.1.1.1.15.538|66|800 +1.3.6.1.2.1.31.1.1.1.15.539|66|800 +1.3.6.1.2.1.31.1.1.1.15.540|66|800 +1.3.6.1.2.1.31.1.1.1.15.541|66|800 +1.3.6.1.2.1.31.1.1.1.15.542|66|622 +1.3.6.1.2.1.31.1.1.1.15.543|66|800 +1.3.6.1.2.1.31.1.1.1.15.544|66|800 +1.3.6.1.2.1.31.1.1.1.15.545|66|800 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.248|2|2 +1.3.6.1.2.1.31.1.1.1.16.501|2|2 +1.3.6.1.2.1.31.1.1.1.16.502|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.504|2|2 +1.3.6.1.2.1.31.1.1.1.16.505|2|2 +1.3.6.1.2.1.31.1.1.1.16.506|2|2 +1.3.6.1.2.1.31.1.1.1.16.507|2|2 +1.3.6.1.2.1.31.1.1.1.16.508|2|2 +1.3.6.1.2.1.31.1.1.1.16.509|2|2 +1.3.6.1.2.1.31.1.1.1.16.510|2|2 +1.3.6.1.2.1.31.1.1.1.16.511|2|2 +1.3.6.1.2.1.31.1.1.1.16.512|2|2 +1.3.6.1.2.1.31.1.1.1.16.513|2|2 +1.3.6.1.2.1.31.1.1.1.16.514|2|2 +1.3.6.1.2.1.31.1.1.1.16.515|2|2 +1.3.6.1.2.1.31.1.1.1.16.516|2|2 +1.3.6.1.2.1.31.1.1.1.16.517|2|2 +1.3.6.1.2.1.31.1.1.1.16.518|2|2 +1.3.6.1.2.1.31.1.1.1.16.519|2|2 +1.3.6.1.2.1.31.1.1.1.16.520|2|2 +1.3.6.1.2.1.31.1.1.1.16.521|2|2 +1.3.6.1.2.1.31.1.1.1.16.522|2|2 +1.3.6.1.2.1.31.1.1.1.16.523|2|2 +1.3.6.1.2.1.31.1.1.1.16.524|2|2 +1.3.6.1.2.1.31.1.1.1.16.525|2|2 +1.3.6.1.2.1.31.1.1.1.16.526|2|2 +1.3.6.1.2.1.31.1.1.1.16.527|2|2 +1.3.6.1.2.1.31.1.1.1.16.528|2|2 +1.3.6.1.2.1.31.1.1.1.16.529|2|2 +1.3.6.1.2.1.31.1.1.1.16.530|2|2 +1.3.6.1.2.1.31.1.1.1.16.531|2|2 +1.3.6.1.2.1.31.1.1.1.16.532|2|2 +1.3.6.1.2.1.31.1.1.1.16.533|2|2 +1.3.6.1.2.1.31.1.1.1.16.534|2|2 +1.3.6.1.2.1.31.1.1.1.16.535|2|2 +1.3.6.1.2.1.31.1.1.1.16.536|2|2 +1.3.6.1.2.1.31.1.1.1.16.537|2|2 +1.3.6.1.2.1.31.1.1.1.16.538|2|2 +1.3.6.1.2.1.31.1.1.1.16.539|2|2 +1.3.6.1.2.1.31.1.1.1.16.540|2|2 +1.3.6.1.2.1.31.1.1.1.16.541|2|2 +1.3.6.1.2.1.31.1.1.1.16.542|2|2 +1.3.6.1.2.1.31.1.1.1.16.543|2|2 +1.3.6.1.2.1.31.1.1.1.16.544|2|2 +1.3.6.1.2.1.31.1.1.1.16.545|2|2 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|2 +1.3.6.1.2.1.31.1.1.1.17.6|2|2 +1.3.6.1.2.1.31.1.1.1.17.7|2|2 +1.3.6.1.2.1.31.1.1.1.17.8|2|2 +1.3.6.1.2.1.31.1.1.1.17.9|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.12|2|2 +1.3.6.1.2.1.31.1.1.1.17.15|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.21|2|2 +1.3.6.1.2.1.31.1.1.1.17.22|2|2 +1.3.6.1.2.1.31.1.1.1.17.248|2|2 +1.3.6.1.2.1.31.1.1.1.17.501|2|2 +1.3.6.1.2.1.31.1.1.1.17.502|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.504|2|2 +1.3.6.1.2.1.31.1.1.1.17.505|2|2 +1.3.6.1.2.1.31.1.1.1.17.506|2|2 +1.3.6.1.2.1.31.1.1.1.17.507|2|2 +1.3.6.1.2.1.31.1.1.1.17.508|2|2 +1.3.6.1.2.1.31.1.1.1.17.509|2|2 +1.3.6.1.2.1.31.1.1.1.17.510|2|2 +1.3.6.1.2.1.31.1.1.1.17.511|2|2 +1.3.6.1.2.1.31.1.1.1.17.512|2|2 +1.3.6.1.2.1.31.1.1.1.17.513|2|2 +1.3.6.1.2.1.31.1.1.1.17.514|2|2 +1.3.6.1.2.1.31.1.1.1.17.515|2|2 +1.3.6.1.2.1.31.1.1.1.17.516|2|2 +1.3.6.1.2.1.31.1.1.1.17.517|2|2 +1.3.6.1.2.1.31.1.1.1.17.518|2|1 +1.3.6.1.2.1.31.1.1.1.17.519|2|1 +1.3.6.1.2.1.31.1.1.1.17.520|2|2 +1.3.6.1.2.1.31.1.1.1.17.521|2|1 +1.3.6.1.2.1.31.1.1.1.17.522|2|1 +1.3.6.1.2.1.31.1.1.1.17.523|2|1 +1.3.6.1.2.1.31.1.1.1.17.524|2|1 +1.3.6.1.2.1.31.1.1.1.17.525|2|2 +1.3.6.1.2.1.31.1.1.1.17.526|2|1 +1.3.6.1.2.1.31.1.1.1.17.527|2|1 +1.3.6.1.2.1.31.1.1.1.17.528|2|1 +1.3.6.1.2.1.31.1.1.1.17.529|2|2 +1.3.6.1.2.1.31.1.1.1.17.530|2|2 +1.3.6.1.2.1.31.1.1.1.17.531|2|1 +1.3.6.1.2.1.31.1.1.1.17.532|2|1 +1.3.6.1.2.1.31.1.1.1.17.533|2|1 +1.3.6.1.2.1.31.1.1.1.17.534|2|1 +1.3.6.1.2.1.31.1.1.1.17.535|2|1 +1.3.6.1.2.1.31.1.1.1.17.536|2|1 +1.3.6.1.2.1.31.1.1.1.17.537|2|1 +1.3.6.1.2.1.31.1.1.1.17.538|2|2 +1.3.6.1.2.1.31.1.1.1.17.539|2|2 +1.3.6.1.2.1.31.1.1.1.17.540|2|2 +1.3.6.1.2.1.31.1.1.1.17.541|2|2 +1.3.6.1.2.1.31.1.1.1.17.542|2|2 +1.3.6.1.2.1.31.1.1.1.17.543|2|2 +1.3.6.1.2.1.31.1.1.1.17.544|2|2 +1.3.6.1.2.1.31.1.1.1.17.545|2|2 +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4| +1.3.6.1.2.1.31.1.1.1.18.248|4| +1.3.6.1.2.1.31.1.1.1.18.501|4| +1.3.6.1.2.1.31.1.1.1.18.502|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.504|4|Tunnel Interface +1.3.6.1.2.1.31.1.1.1.18.505|4| +1.3.6.1.2.1.31.1.1.1.18.506|4| +1.3.6.1.2.1.31.1.1.1.18.507|4| +1.3.6.1.2.1.31.1.1.1.18.508|4|Tunnel Interface PADNET #1 +1.3.6.1.2.1.31.1.1.1.18.509|4| +1.3.6.1.2.1.31.1.1.1.18.510|4|Tunnel Interface PELNET #1 +1.3.6.1.2.1.31.1.1.1.18.511|4|Tunnel Interface PADNET #2 +1.3.6.1.2.1.31.1.1.1.18.512|4|Tunnel Interface PELNET #2 +1.3.6.1.2.1.31.1.1.1.18.513|4|Untagged VLAN +1.3.6.1.2.1.31.1.1.1.18.514|4|VLAN #2 (Servers) +1.3.6.1.2.1.31.1.1.1.18.515|4|VLAN #5 (VoIP) +1.3.6.1.2.1.31.1.1.1.18.516|4|VLAN #10 (LAN) +1.3.6.1.2.1.31.1.1.1.18.517|4|VLAN #112 (PELNET Co-Lo) +1.3.6.1.2.1.31.1.1.1.18.518|4|Uplink GSM-CORE-1 +1.3.6.1.2.1.31.1.1.1.18.519|4|Uplink GSM-CORE-2 +1.3.6.1.2.1.31.1.1.1.18.520|4| +1.3.6.1.2.1.31.1.1.1.18.521|4| +1.3.6.1.2.1.31.1.1.1.18.522|4| +1.3.6.1.2.1.31.1.1.1.18.523|4| +1.3.6.1.2.1.31.1.1.1.18.524|4| +1.3.6.1.2.1.31.1.1.1.18.525|4| +1.3.6.1.2.1.31.1.1.1.18.526|4|KPN Uplink +1.3.6.1.2.1.31.1.1.1.18.527|4|Ziggo Uplink +1.3.6.1.2.1.31.1.1.1.18.528|4| +1.3.6.1.2.1.31.1.1.1.18.529|4| +1.3.6.1.2.1.31.1.1.1.18.530|4| +1.3.6.1.2.1.31.1.1.1.18.531|4| +1.3.6.1.2.1.31.1.1.1.18.532|4| +1.3.6.1.2.1.31.1.1.1.18.533|4| +1.3.6.1.2.1.31.1.1.1.18.534|4| +1.3.6.1.2.1.31.1.1.1.18.535|4| +1.3.6.1.2.1.31.1.1.1.18.536|4| +1.3.6.1.2.1.31.1.1.1.18.537|4| +1.3.6.1.2.1.31.1.1.1.18.538|4| +1.3.6.1.2.1.31.1.1.1.18.539|4| +1.3.6.1.2.1.31.1.1.1.18.540|4| +1.3.6.1.2.1.31.1.1.1.18.541|4| +1.3.6.1.2.1.31.1.1.1.18.542|4| +1.3.6.1.2.1.31.1.1.1.18.543|4| +1.3.6.1.2.1.31.1.1.1.18.544|4| +1.3.6.1.2.1.31.1.1.1.18.545|4| +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.248|67|0 +1.3.6.1.2.1.31.1.1.1.19.501|67|0 +1.3.6.1.2.1.31.1.1.1.19.502|67|0 +1.3.6.1.2.1.31.1.1.1.19.503|67|0 +1.3.6.1.2.1.31.1.1.1.19.504|67|0 +1.3.6.1.2.1.31.1.1.1.19.505|67|0 +1.3.6.1.2.1.31.1.1.1.19.506|67|0 +1.3.6.1.2.1.31.1.1.1.19.507|67|0 +1.3.6.1.2.1.31.1.1.1.19.508|67|0 +1.3.6.1.2.1.31.1.1.1.19.509|67|0 +1.3.6.1.2.1.31.1.1.1.19.510|67|0 +1.3.6.1.2.1.31.1.1.1.19.511|67|0 +1.3.6.1.2.1.31.1.1.1.19.512|67|0 +1.3.6.1.2.1.31.1.1.1.19.513|67|0 +1.3.6.1.2.1.31.1.1.1.19.514|67|0 +1.3.6.1.2.1.31.1.1.1.19.515|67|0 +1.3.6.1.2.1.31.1.1.1.19.516|67|0 +1.3.6.1.2.1.31.1.1.1.19.517|67|0 +1.3.6.1.2.1.31.1.1.1.19.518|67|0 +1.3.6.1.2.1.31.1.1.1.19.519|67|0 +1.3.6.1.2.1.31.1.1.1.19.520|67|0 +1.3.6.1.2.1.31.1.1.1.19.521|67|0 +1.3.6.1.2.1.31.1.1.1.19.522|67|0 +1.3.6.1.2.1.31.1.1.1.19.523|67|0 +1.3.6.1.2.1.31.1.1.1.19.524|67|0 +1.3.6.1.2.1.31.1.1.1.19.525|67|0 +1.3.6.1.2.1.31.1.1.1.19.526|67|0 +1.3.6.1.2.1.31.1.1.1.19.527|67|0 +1.3.6.1.2.1.31.1.1.1.19.528|67|0 +1.3.6.1.2.1.31.1.1.1.19.529|67|0 +1.3.6.1.2.1.31.1.1.1.19.530|67|0 +1.3.6.1.2.1.31.1.1.1.19.531|67|0 +1.3.6.1.2.1.31.1.1.1.19.532|67|0 +1.3.6.1.2.1.31.1.1.1.19.533|67|0 +1.3.6.1.2.1.31.1.1.1.19.534|67|0 +1.3.6.1.2.1.31.1.1.1.19.535|67|0 +1.3.6.1.2.1.31.1.1.1.19.536|67|0 +1.3.6.1.2.1.31.1.1.1.19.537|67|0 +1.3.6.1.2.1.31.1.1.1.19.538|67|0 +1.3.6.1.2.1.31.1.1.1.19.539|67|0 +1.3.6.1.2.1.31.1.1.1.19.540|67|0 +1.3.6.1.2.1.31.1.1.1.19.541|67|0 +1.3.6.1.2.1.31.1.1.1.19.542|67|0 +1.3.6.1.2.1.31.1.1.1.19.543|67|0 +1.3.6.1.2.1.31.1.1.1.19.544|67|0 +1.3.6.1.2.1.31.1.1.1.19.545|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.7|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.8|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.9|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.10|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.11|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.15|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.21|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.22|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.248|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.501|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.502|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.503|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.505|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.506|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.507|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.508|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.510|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.511|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.512|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.513|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.514|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.515|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.516|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.517|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.520|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.521|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.522|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.523|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.524|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.525|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.528|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.529|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.530|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.531|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.532|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.533|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.534|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.535|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.536|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.537|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.539|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.540|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.541|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.542|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.543|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.544|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.545|2|1 +1.3.6.1.2.1.31.1.2.1.3.3.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.6.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.8.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.9.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.15.3|2|1 +1.3.6.1.2.1.31.1.2.1.3.16.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.21.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.22.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.248.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.501.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.502.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.503.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.504.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.505.504|2|1 +1.3.6.1.2.1.31.1.2.1.3.506.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.507.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.508.504|2|1 +1.3.6.1.2.1.31.1.2.1.3.509.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.510.504|2|1 +1.3.6.1.2.1.31.1.2.1.3.511.504|2|1 +1.3.6.1.2.1.31.1.2.1.3.512.504|2|1 +1.3.6.1.2.1.31.1.2.1.3.513.509|2|1 +1.3.6.1.2.1.31.1.2.1.3.514.509|2|1 +1.3.6.1.2.1.31.1.2.1.3.515.509|2|1 +1.3.6.1.2.1.31.1.2.1.3.516.509|2|1 +1.3.6.1.2.1.31.1.2.1.3.517.509|2|1 +1.3.6.1.2.1.31.1.2.1.3.518.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.519.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.520.518|2|1 +1.3.6.1.2.1.31.1.2.1.3.521.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.522.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.523.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.524.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.525.519|2|1 +1.3.6.1.2.1.31.1.2.1.3.526.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.527.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.528.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.529.526|2|1 +1.3.6.1.2.1.31.1.2.1.3.530.527|2|1 +1.3.6.1.2.1.31.1.2.1.3.531.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.532.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.533.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.534.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.535.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.536.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.537.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.538.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.539.538|2|1 +1.3.6.1.2.1.31.1.2.1.3.540.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.541.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.542.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.543.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.544.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.545.538|2|1 +1.3.6.1.4.1.2636.3.1.1.0|6|1.3.6.1.4.1.2636.1.1.1.1.39.0 +1.3.6.1.4.1.2636.3.1.2.0|4|Juniper SRX240H Internet Router +1.3.6.1.4.1.2636.3.1.3.0|4|AG3213AK0210 +1.3.6.1.4.1.2636.3.1.4.0|4| +1.3.6.1.4.1.2636.3.1.5.0|67|1193207600 +1.3.6.1.4.1.2636.3.1.6.1.1.1|2|1 +1.3.6.1.4.1.2636.3.1.6.1.1.2|2|2 +1.3.6.1.4.1.2636.3.1.6.1.1.4|2|4 +1.3.6.1.4.1.2636.3.1.6.1.1.7|2|7 +1.3.6.1.4.1.2636.3.1.6.1.1.8|2|8 +1.3.6.1.4.1.2636.3.1.6.1.1.9|2|9 +1.3.6.1.4.1.2636.3.1.6.1.2.1|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.2|2|2 +1.3.6.1.4.1.2636.3.1.6.1.2.4|2|2 +1.3.6.1.4.1.2636.3.1.6.1.2.7|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.8|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.1|2|0 +1.3.6.1.4.1.2636.3.1.6.1.3.2|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.4|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.7|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.8|2|2 +1.3.6.1.4.1.2636.3.1.6.1.3.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.1|2|0 +1.3.6.1.4.1.2636.3.1.6.1.4.2|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.4|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.7|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.8|2|7 +1.3.6.1.4.1.2636.3.1.6.1.4.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.5.1|6|1.3.6.1.4.1.2636.1.1.2.1.39.0 +1.3.6.1.4.1.2636.3.1.6.1.5.2|6|1.3.6.1.4.1.2636.1.1.2.2.39.3.0 +1.3.6.1.4.1.2636.3.1.6.1.5.4|6|1.3.6.1.4.1.2636.1.1.2.2.39.4.0 +1.3.6.1.4.1.2636.3.1.6.1.5.7|6|1.3.6.1.4.1.2636.1.1.2.2.39.1.0 +1.3.6.1.4.1.2636.3.1.6.1.5.8|6|1.3.6.1.4.1.2636.1.1.2.3.39.1.0 +1.3.6.1.4.1.2636.3.1.6.1.5.9|6|1.3.6.1.4.1.2636.1.1.2.2.39.2.0 +1.3.6.1.4.1.2636.3.1.6.1.6.1|4|chassis frame +1.3.6.1.4.1.2636.3.1.6.1.6.2|4|PEM slot +1.3.6.1.4.1.2636.3.1.6.1.6.4|4|FAN slot +1.3.6.1.4.1.2636.3.1.6.1.6.7|4|FPC slot +1.3.6.1.4.1.2636.3.1.6.1.6.8|4|PIC slot +1.3.6.1.4.1.2636.3.1.6.1.6.9|4|Routing Engine slot +1.3.6.1.4.1.2636.3.1.6.1.7.1|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.2|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.4|2|6 +1.3.6.1.4.1.2636.3.1.6.1.7.7|2|5 +1.3.6.1.4.1.2636.3.1.6.1.7.8|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.9|2|1 +1.3.6.1.4.1.2636.3.1.8.1.1.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.2.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.3.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.6.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.8.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.8.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.8.1.1.9.1.1.0|2|9 +1.3.6.1.4.1.2636.3.1.8.1.2.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.2.4.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.8.1.2.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.2.4.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.8.1.2.4.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.8.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.4.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.5.1.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.1.39.0 +1.3.6.1.4.1.2636.3.1.8.1.5.2.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.4 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.2.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.3.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.4.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.5.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.6.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.7.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.8.1.5.8.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1 +1.3.6.1.4.1.2636.3.1.8.1.5.9.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.39.2.0 +1.3.6.1.4.1.2636.3.1.8.1.5.9.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.3.2.0 +1.3.6.1.4.1.2636.3.1.8.1.6.1.1.0.0|4|midplane +1.3.6.1.4.1.2636.3.1.8.1.6.2.1.0.0|4|PEM 0 +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.0.0|4|SRX240 PowerSupply fan 1 +1.3.6.1.4.1.2636.3.1.8.1.6.4.2.0.0|4|SRX240 PowerSupply fan 2 +1.3.6.1.4.1.2636.3.1.8.1.6.4.3.0.0|4|SRX240 CPU fan 1 +1.3.6.1.4.1.2636.3.1.8.1.6.4.4.0.0|4|SRX240 CPU fan 2 +1.3.6.1.4.1.2636.3.1.8.1.6.4.5.0.0|4|SRX240 IO fan 1 +1.3.6.1.4.1.2636.3.1.8.1.6.4.6.0.0|4|SRX240 IO fan 2 +1.3.6.1.4.1.2636.3.1.8.1.6.7.1.0.0|4|FPC: FPC @ 0/*/* +1.3.6.1.4.1.2636.3.1.8.1.6.8.1.1.0|4|PIC: 16x GE Base PIC @ 0/0/* +1.3.6.1.4.1.2636.3.1.8.1.6.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.8.1.6.9.1.1.0|4|USB Hub +1.3.6.1.4.1.2636.3.1.8.1.7.1.1.0.0|4|ACKD1306 +1.3.6.1.4.1.2636.3.1.8.1.7.2.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.3.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.4.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.5.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.6.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.9.1.0.0|4|ACKD1306 +1.3.6.1.4.1.2636.3.1.8.1.7.9.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.1.1.0.0|4|REV 56 +1.3.6.1.4.1.2636.3.1.8.1.8.2.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.3.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.4.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.5.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.6.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.9.1.0.0|4|REV 56 +1.3.6.1.4.1.2636.3.1.8.1.8.9.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.9.1.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.3.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.4.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.5.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.6.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.7.1.0.0|67|5276 +1.3.6.1.4.1.2636.3.1.8.1.9.8.1.1.0|67|5405 +1.3.6.1.4.1.2636.3.1.8.1.9.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.9.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.10.1.1.0.0|4|750-021793 +1.3.6.1.4.1.2636.3.1.8.1.10.2.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.3.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.4.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.5.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.6.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.9.1.0.0|4|750-021793 +1.3.6.1.4.1.2636.3.1.8.1.10.9.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.11.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.12.1.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.6.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.9.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.13.1.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.2.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.3.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.4.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.5.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.6.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.9.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.9.1.1.0|4| +1.3.6.1.4.1.2636.3.1.9.0|67|2473 +1.3.6.1.4.1.2636.3.1.10.1.1.3.1.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.2.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.5.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.9.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.2.3.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.2.3.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.3.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.4.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.5.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.10.1.3.3.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.3.3.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.4.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.1.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.1.39.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.2.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.2.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.3.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.4.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.5.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.10.1.6.3.9.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.39.2.0 +1.3.6.1.4.1.2636.3.1.10.1.7.3.1.1.0.0|4|chassis alarm LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.2.1.0.0|4|PEM 0 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.1.0.0|4|FPC slot 0 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.2.0.0|4|FPC slot 1 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.3.0.0|4|FPC slot 2 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.4.0.0|4|FPC slot 3 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.5.0.0|4|FPC slot 4 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.9.1.0.0|4|Routing Engine LED +1.3.6.1.4.1.2636.3.1.10.1.8.3.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.3.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.4.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.5.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.1.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.2.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.3.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.4.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.5.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.1.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.2.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.3.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.6.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.3.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.4.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.5.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.3.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.4.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.5.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.1.9.1.1.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.4.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.4.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.4.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.7.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.7.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.3.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.8.4.1.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.8.5.1.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.4.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.5.1.1.0.0|4|chassis frame +1.3.6.1.4.1.2636.3.1.12.1.5.2.1.0.0|4|PEM slot 0 +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.0.0|4|SRX240 PowerSupply fan 1 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.2.0.0|4|SRX240 PowerSupply fan 2 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.3.0.0|4|SRX240 CPU fan 1 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.4.0.0|4|SRX240 CPU fan 2 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.5.0.0|4|SRX240 IO fan 1 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.6.0.0|4|SRX240 IO fan 2 slot +1.3.6.1.4.1.2636.3.1.12.1.5.7.1.0.0|4|FPC slot 0 +1.3.6.1.4.1.2636.3.1.12.1.5.7.2.0.0|4|FPC slot 1 +1.3.6.1.4.1.2636.3.1.12.1.5.7.3.0.0|4|FPC slot 2 +1.3.6.1.4.1.2636.3.1.12.1.5.7.4.0.0|4|FPC slot 3 +1.3.6.1.4.1.2636.3.1.12.1.5.7.5.0.0|4|FPC slot 4 +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.1.0|4|PIC slot @ 0/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.1.0|4|PIC slot @ 1/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.3.1.0|4|PIC slot @ 2/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.4.1.0|4|PIC slot @ 3/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.5.1.0|4|PIC slot @ 4/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.9.1.0.0|4|Routing Engine slot +1.3.6.1.4.1.2636.3.1.12.1.5.9.1.1.0|4|USB Hub slot +1.3.6.1.4.1.2636.3.1.12.1.6.1.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.2.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.5.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.6.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.9.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.8.1.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.6.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.3.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.4.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.5.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.9.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.1.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.2.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.3.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.6.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.13.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.13.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.13.1.1.9.1.1.0|2|9 +1.3.6.1.4.1.2636.3.1.13.1.2.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.2.4.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.13.1.2.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.2.4.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.13.1.2.4.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.13.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.4.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.5.1.1.0.0|4|midplane +1.3.6.1.4.1.2636.3.1.13.1.5.2.1.0.0|4|PEM 0 +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.0.0|4|SRX240 PowerSupply fan 1 +1.3.6.1.4.1.2636.3.1.13.1.5.4.2.0.0|4|SRX240 PowerSupply fan 2 +1.3.6.1.4.1.2636.3.1.13.1.5.4.3.0.0|4|SRX240 CPU fan 1 +1.3.6.1.4.1.2636.3.1.13.1.5.4.4.0.0|4|SRX240 CPU fan 2 +1.3.6.1.4.1.2636.3.1.13.1.5.4.5.0.0|4|SRX240 IO fan 1 +1.3.6.1.4.1.2636.3.1.13.1.5.4.6.0.0|4|SRX240 IO fan 2 +1.3.6.1.4.1.2636.3.1.13.1.5.7.1.0.0|4|FPC: FPC @ 0/*/* +1.3.6.1.4.1.2636.3.1.13.1.5.8.1.1.0|4|PIC: 16x GE Base PIC @ 0/0/* +1.3.6.1.4.1.2636.3.1.13.1.5.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.13.1.5.9.1.1.0|4|USB Hub +1.3.6.1.4.1.2636.3.1.13.1.6.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.7.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.9.1.0.0|66|45 +1.3.6.1.4.1.2636.3.1.13.1.7.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.9.1.0.0|66|38 +1.3.6.1.4.1.2636.3.1.13.1.8.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.9.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.10.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.9.1.0.0|2|1073741824 +1.3.6.1.4.1.2636.3.1.13.1.10.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.11.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.9.1.0.0|66|70 +1.3.6.1.4.1.2636.3.1.13.1.11.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.9.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.13.1.1.0.0|2|1193208100 +1.3.6.1.4.1.2636.3.1.13.1.13.2.1.0.0|2|1193208411 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.0.0|2|1193181172 +1.3.6.1.4.1.2636.3.1.13.1.13.4.2.0.0|2|1193181173 +1.3.6.1.4.1.2636.3.1.13.1.13.4.3.0.0|2|1193181173 +1.3.6.1.4.1.2636.3.1.13.1.13.4.4.0.0|2|1193181173 +1.3.6.1.4.1.2636.3.1.13.1.13.4.5.0.0|2|1193181174 +1.3.6.1.4.1.2636.3.1.13.1.13.4.6.0.0|2|1193181174 +1.3.6.1.4.1.2636.3.1.13.1.13.7.1.0.0|2|1193178839 +1.3.6.1.4.1.2636.3.1.13.1.13.8.1.1.0|2|1193178711 +1.3.6.1.4.1.2636.3.1.13.1.13.9.1.0.0|2|1193208100 +1.3.6.1.4.1.2636.3.1.13.1.13.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.14.1.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.3.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.4.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.5.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.6.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.7.1.0.0|67|5276 +1.3.6.1.4.1.2636.3.1.13.1.14.8.1.1.0|67|5405 +1.3.6.1.4.1.2636.3.1.13.1.14.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.9.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.15.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.9.1.0.0|2|1024 +1.3.6.1.4.1.2636.3.1.13.1.15.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.16.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.3.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.4.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.5.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.6.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.17.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.18.1.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.6.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.9.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.19.1.1.0.0|4x|07E30A0F072C0C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.2.1.0.0|4x|07E30A0F072C0C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.0.0|4x|07E30A0F07302C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.4.2.0.0|4x|07E30A0F07302C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.4.3.0.0|4x|07E30A0F07302C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.4.4.0.0|4x|07E30A0F07302C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.4.5.0.0|4x|07E30A0F07302C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.4.6.0.0|4x|07E30A0F07302C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.7.1.0.0|4x|07E30A0F073107002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.8.1.1.0|4x|07E30A0F073109002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.9.1.0.0|4x|07E30A0F072C0C002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.9.1.1.0|4| +1.3.6.1.4.1.2636.3.1.13.1.20.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.9.1.0.0|66|33 +1.3.6.1.4.1.2636.3.1.13.1.20.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.9.1.0.0|66|24 +1.3.6.1.4.1.2636.3.1.13.1.21.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.9.1.0.0|66|20 +1.3.6.1.4.1.2636.3.1.13.1.22.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.9.1.0.0|66|73 +1.3.6.1.4.1.2636.3.1.13.1.23.9.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.24.9.1.0.0|2|544 +1.3.6.1.4.1.2636.3.1.13.1.24.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.2.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.3.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.6.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.3.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.4.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.5.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.3.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.4.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.5.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.1.9.1.1.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.4.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.4.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.4.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.4.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.7.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.7.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.3.1.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.8.4.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.8.5.1.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.9.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.5.2.1.0.0|4|PEM 0 +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.0.0|4|SRX240 PowerSupply fan 1 +1.3.6.1.4.1.2636.3.1.15.1.5.4.2.0.0|4|SRX240 PowerSupply fan 2 +1.3.6.1.4.1.2636.3.1.15.1.5.4.3.0.0|4|SRX240 CPU fan 1 +1.3.6.1.4.1.2636.3.1.15.1.5.4.4.0.0|4|SRX240 CPU fan 2 +1.3.6.1.4.1.2636.3.1.15.1.5.4.5.0.0|4|SRX240 IO fan 1 +1.3.6.1.4.1.2636.3.1.15.1.5.4.6.0.0|4|SRX240 IO fan 2 +1.3.6.1.4.1.2636.3.1.15.1.5.7.1.0.0|4|FPC: FPC @ 0/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.2.0.0|4|FPC @ 1/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.3.0.0|4|FPC @ 2/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.4.0.0|4|FPC @ 3/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.5.0.0|4|FPC @ 4/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.1.0|4|PIC: 16x GE Base PIC @ 0/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.1.0|4|PIC: @ 1/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.3.1.0|4|PIC: @ 2/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.4.1.0|4|PIC: @ 3/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.5.1.0|4|PIC: @ 4/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.15.1.5.9.1.1.0|4|USB Hub +1.3.6.1.4.1.2636.3.1.15.1.6.2.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.2.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.3.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.4.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.5.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.6.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.5.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.3.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.4.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.5.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.9.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.6.9.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.4.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.4.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.4.6.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.7.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.7.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.7.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.8.4.1.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.8.5.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.8.2.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.2.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.3.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.4.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.5.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.7.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.9.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.9.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.3.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.4.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.5.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.9.1.0.0|66|45 +1.3.6.1.4.1.2636.3.1.15.1.9.9.1.1.0|66|45 +1.3.6.1.4.1.2636.3.1.15.1.10.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.11.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.3.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.4.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.5.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.6.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.1.0.0|67|4442 +1.3.6.1.4.1.2636.3.1.15.1.11.7.2.0.0|67|4442 +1.3.6.1.4.1.2636.3.1.15.1.11.7.3.0.0|67|4442 +1.3.6.1.4.1.2636.3.1.15.1.11.7.4.0.0|67|4442 +1.3.6.1.4.1.2636.3.1.15.1.11.7.5.0.0|67|4443 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.3.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.4.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.5.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.9.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.0.0|67|2940 +1.3.6.1.4.1.2636.3.1.15.1.12.4.2.0.0|67|2940 +1.3.6.1.4.1.2636.3.1.15.1.12.4.3.0.0|67|2941 +1.3.6.1.4.1.2636.3.1.15.1.12.4.4.0.0|67|2941 +1.3.6.1.4.1.2636.3.1.15.1.12.4.5.0.0|67|2941 +1.3.6.1.4.1.2636.3.1.15.1.12.4.6.0.0|67|2941 +1.3.6.1.4.1.2636.3.1.15.1.12.7.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.3.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.4.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.5.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.1.0|67|5318 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.3.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.4.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.5.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.9.1.0.0|67|2938 +1.3.6.1.4.1.2636.3.1.15.1.12.9.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.13.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.0.0|2|1193181011 +1.3.6.1.4.1.2636.3.1.15.1.13.4.2.0.0|2|1193181011 +1.3.6.1.4.1.2636.3.1.15.1.13.4.3.0.0|2|1193181011 +1.3.6.1.4.1.2636.3.1.15.1.13.4.4.0.0|2|1193181012 +1.3.6.1.4.1.2636.3.1.15.1.13.4.5.0.0|2|1193181012 +1.3.6.1.4.1.2636.3.1.15.1.13.4.6.0.0|2|1193181012 +1.3.6.1.4.1.2636.3.1.15.1.13.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.1.0|2|1193178642 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.9.1.0.0|2|1193181025 +1.3.6.1.4.1.2636.3.1.15.1.13.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.14.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.9.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.15.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.6.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.3.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.4.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.5.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.9.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.16.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.9.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.16.0|2|4 +1.3.6.1.4.1.2636.3.1.17.0|2|1 +1.3.6.1.4.1.2636.3.4.2.2.1.0|2|2 +1.3.6.1.4.1.2636.3.4.2.3.1.0|2|2 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.2.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.3.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.4.0|66|4 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.5.0|66|67 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.6.0|66|13153 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.7.0|66|131072 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.8.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.9.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.10.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.11.0|4|single +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.12.0|66|13000 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.13.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.14.0|66|0 +1.3.6.1.4.1.2636.3.39.1.12.1.1.1.15.0|66|0 +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.2.2|4|colo +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.2.3|4|default +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.2.4|4|lan +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.2.5|4|servers +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.2.6|4|voip +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.5.2|66|112 +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.5.3|66|1 +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.5.4|66|10 +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.5.5|66|2 +1.3.6.1.4.1.2636.3.40.1.5.1.5.1.5.6|66|5 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.2.513|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.2.514|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.3.513|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.3.514|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.4.513|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.4.514|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.5.513|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.5.514|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.6.513|2|1 +1.3.6.1.4.1.2636.3.40.1.5.1.7.1.4.6.514|2|1 +1.3.6.1.4.1.2636.3.50.1.2.1.2.3.75.80.78.7.75.80.78.45.82.80.77.1|66|3 +1.3.6.1.4.1.2636.3.50.1.2.1.2.3.75.80.78.7.75.80.78.45.82.80.77.2|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.2.3.75.80.78.7.75.80.78.45.82.80.77.4|66|41653 +1.3.6.1.4.1.2636.3.50.1.2.1.2.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.1|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.2.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.2|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.2.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.4|66|446080 +1.3.6.1.4.1.2636.3.50.1.2.1.3.3.75.80.78.7.75.80.78.45.82.80.77.1|66|3 +1.3.6.1.4.1.2636.3.50.1.2.1.3.3.75.80.78.7.75.80.78.45.82.80.77.2|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.3.3.75.80.78.7.75.80.78.45.82.80.77.4|66|41650 +1.3.6.1.4.1.2636.3.50.1.2.1.3.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.1|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.3.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.2|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.3.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.4|66|446070 +1.3.6.1.4.1.2636.3.50.1.2.1.4.3.75.80.78.7.75.80.78.45.82.80.77.1|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.3.75.80.78.7.75.80.78.45.82.80.77.2|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.3.75.80.78.7.75.80.78.45.82.80.77.4|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.1|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.2|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.4|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.5.3.75.80.78.7.75.80.78.45.82.80.77.1|4x|07E403010A0C11002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.3.75.80.78.7.75.80.78.45.82.80.77.2|4x|07E403010A0C01002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.3.75.80.78.7.75.80.78.45.82.80.77.4|4x|07E403010A0C11002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.1|4x|07E403010A0C0A002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.2|4x|07E403010A0C0A002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.4|4x|07E403010A0C0A002B0000 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.0.1.10.0.251.14.1.10.0.251.13|4x|0A141E03 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.0.1.10.0.251.18.1.10.0.251.17|4x|0A141E03 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.0.1.10.0.251.26.1.10.0.251.25|4x|0A4D0201 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.0.1.10.0.251.30.1.10.0.251.29|4x|0A4D0201 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.10.0.251.14.1.10.0.251.13|2|6 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.10.0.251.18.1.10.0.251.17|2|6 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.10.0.251.26.1.10.0.251.25|2|6 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.10.0.251.30.1.10.0.251.29|2|6 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.0.1.10.0.251.14.1.10.0.251.13|2|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.0.1.10.0.251.18.1.10.0.251.17|2|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.0.1.10.0.251.26.1.10.0.251.25|2|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.0.1.10.0.251.30.1.10.0.251.29|2|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.0.1.10.0.251.14.1.10.0.251.13|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.0.1.10.0.251.18.1.10.0.251.17|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.0.1.10.0.251.26.1.10.0.251.25|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.0.1.10.0.251.30.1.10.0.251.29|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.0.1.10.0.251.14.1.10.0.251.13|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.0.1.10.0.251.18.1.10.0.251.17|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.0.1.10.0.251.26.1.10.0.251.25|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.0.1.10.0.251.30.1.10.0.251.29|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.0.1.10.0.251.14.1.10.0.251.13|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.0.1.10.0.251.18.1.10.0.251.17|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.0.1.10.0.251.26.1.10.0.251.25|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.0.1.10.0.251.30.1.10.0.251.29|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.0.1.10.0.251.14.1.10.0.251.13|4x|0A00FB0E +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.0.1.10.0.251.18.1.10.0.251.17|4x|0A00FB12 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.0.1.10.0.251.26.1.10.0.251.25|4x|0A00FB1A +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.0.1.10.0.251.30.1.10.0.251.29|4x|0A00FB1E +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.0.1.10.0.251.14.1.10.0.251.13|66|179 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.0.1.10.0.251.18.1.10.0.251.17|66|179 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.0.1.10.0.251.26.1.10.0.251.25|66|62244 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.0.1.10.0.251.30.1.10.0.251.29|66|179 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.0.1.10.0.251.14.1.10.0.251.13|66|65504 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.0.1.10.0.251.18.1.10.0.251.17|66|65504 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.0.1.10.0.251.26.1.10.0.251.25|66|65504 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.0.1.10.0.251.30.1.10.0.251.29|66|65504 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.0.1.10.0.251.14.1.10.0.251.13|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.0.1.10.0.251.18.1.10.0.251.17|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.0.1.10.0.251.26.1.10.0.251.25|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.0.1.10.0.251.30.1.10.0.251.29|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.0.1.10.0.251.14.1.10.0.251.13|4x|0A00FB0D +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.0.1.10.0.251.18.1.10.0.251.17|4x|0A00FB11 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.0.1.10.0.251.26.1.10.0.251.25|4x|0A00FB19 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.0.1.10.0.251.30.1.10.0.251.29|4x|0A00FB1D +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.0.1.10.0.251.14.1.10.0.251.13|66|52769 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.0.1.10.0.251.18.1.10.0.251.17|66|62511 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.0.1.10.0.251.26.1.10.0.251.25|66|179 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.0.1.10.0.251.30.1.10.0.251.29|66|50180 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.0.1.10.0.251.14.1.10.0.251.13|66|65501 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.0.1.10.0.251.18.1.10.0.251.17|66|65501 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.0.1.10.0.251.26.1.10.0.251.25|66|65503 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.0.1.10.0.251.30.1.10.0.251.29|66|65503 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.0.1.10.0.251.14.1.10.0.251.13|66|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.0.1.10.0.251.18.1.10.0.251.17|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.0.1.10.0.251.26.1.10.0.251.25|66|3 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.0.1.10.0.251.30.1.10.0.251.29|66|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.0.1.10.0.251.14.1.10.0.251.13|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.0.1.10.0.251.18.1.10.0.251.17|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.0.1.10.0.251.26.1.10.0.251.25|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.0.1.10.0.251.30.1.10.0.251.29|66|0 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.0.1.10.0.251.14.1.10.0.251.13|66|183619 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.0.1.10.0.251.18.1.10.0.251.17|66|942172 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.0.1.10.0.251.26.1.10.0.251.25|66|207345 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.0.1.10.0.251.30.1.10.0.251.29|66|28940 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.0.1.10.0.251.14.1.10.0.251.13|66|83 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.0.1.10.0.251.18.1.10.0.251.17|66|83 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.0.1.10.0.251.26.1.10.0.251.25|66|83 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.0.1.10.0.251.30.1.10.0.251.29|66|83 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.0.1.10.0.251.14.1.10.0.251.13|65|2951 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.0.1.10.0.251.18.1.10.0.251.17|65|15434 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.0.1.10.0.251.26.1.10.0.251.25|65|7539 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.0.1.10.0.251.30.1.10.0.251.29|65|272 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.0.1.10.0.251.14.1.10.0.251.13|65|1348 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.0.1.10.0.251.18.1.10.0.251.17|65|7161 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.0.1.10.0.251.26.1.10.0.251.25|65|7716 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.0.1.10.0.251.30.1.10.0.251.29|65|278 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.0.1.10.0.251.14.1.10.0.251.13|65|23084 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.0.1.10.0.251.18.1.10.0.251.17|65|118767 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.0.1.10.0.251.26.1.10.0.251.25|65|117562 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.0.1.10.0.251.30.1.10.0.251.29|65|3461 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.0.1.10.0.251.14.1.10.0.251.13|65|21544 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.0.1.10.0.251.18.1.10.0.251.17|65|110804 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.0.1.10.0.251.26.1.10.0.251.25|65|117431 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.0.1.10.0.251.30.1.10.0.251.29|65|3465 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.0.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.2.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.3.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.0.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.2.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.3.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.0.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.2.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.3.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.0.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.2.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.3.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.0.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.1.1|66|9 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.2.1.1|66|21 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.3.1.1|66|12 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.0.1.1|66|24 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.1.1|66|24 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.2.1.1|66|27 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.3.1.1|66|27 +1.3.6.1.6.3.10.2.1.3.0|2|11931849