From d308af07c17651099413cc2924da8dfb64993ab4 Mon Sep 17 00:00:00 2001 From: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Date: Sun, 31 May 2020 01:39:15 +0200 Subject: [PATCH] Added TPLINK vlans support (#11697) * tplink vlans * codeclimate --- includes/discovery/vlans/jetstream.inc.php | 114 + mibs/tplink/TPLINK-DOT1Q-VLAN-MIB | 239 ++ mibs/tplink/TPLINK-TC-MIB | 41 + tests/data/jetstream_vlans.json | 4193 ++++++++++++++++++++ tests/snmpsim/jetstream_vlans.snmprec | 1076 +++++ 5 files changed, 5663 insertions(+) create mode 100644 includes/discovery/vlans/jetstream.inc.php create mode 100644 mibs/tplink/TPLINK-DOT1Q-VLAN-MIB create mode 100644 mibs/tplink/TPLINK-TC-MIB create mode 100644 tests/data/jetstream_vlans.json create mode 100644 tests/snmpsim/jetstream_vlans.snmprec diff --git a/includes/discovery/vlans/jetstream.inc.php b/includes/discovery/vlans/jetstream.inc.php new file mode 100644 index 0000000000..6d48804491 --- /dev/null +++ b/includes/discovery/vlans/jetstream.inc.php @@ -0,0 +1,114 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @author peca.nesovanovic@sattrakt.com + * @author mtammasss@gmail.com + * @author PipoCanaja + */ + +# first release by (peca.nesovanovic@sattrakt.com) # 2020/05/25 +# jetstreamExpand function by Molnar Tamas (mtammasss@gmail.com) # 2020/05/25 +# +# tested on: T1600G-28TS 3.0; T2600G-18TS 2.0; +# +# todo: detect LAG ports ??? now parser assume that there is no LAG port +# + +if (!function_exists("jetstreamExpand")) { + function jetstreamExpand($var) + { + $arr = explode(',', trim($var)); //array of x/y/a-z + + unset($result); + foreach ($arr as $element) { + $element = trim($element); + if (strpos($element, '-') !== false) { + $tmp = explode('-', $element); // left part is a fully defined port, right is the end number of the serie + $port_start_array = explode('/', $tmp[0]); + $port_id = trim(array_pop($port_start_array)); // $port_start_array is "[x, y]", $port_id is "a"; + + for ($i = $port_id; $i <= $tmp[1]; $i++) { + $result[] = implode("/", array_merge($port_start_array, [$i])); + } + } else { + $result[] = $element; + } + } + return $result; + } +} + +echo 'Jetstream VLANs: '; + +$vlanversion = snmp_get($device, 'dot1qVlanVersionNumber.0', '-Oqv', 'IEEE8021-Q-BRIDGE-MIB'); + +if ($vlanversion == 'version1' || $vlanversion == '2') { + d_echo("\n $vlanversion \n"); + $vtpdomain_id = 1; + + $jet_vlanDb = snmpwalk_cache_oid($device, 'vlanConfigEntry', [], 'TPLINK-DOT1Q-VLAN-MIB'); + $jet_portMapping = snmpwalk_cache_oid($device, 'vlanPortConfigTable', [], 'TPLINK-DOT1Q-VLAN-MIB'); + foreach ($jet_portMapping as $jet_ifindex => $jet_port) { + $jet_stringPortMapping[$jet_port["vlanPortNumber"]] = $jet_port; + $jet_stringPortMapping[$jet_port["vlanPortNumber"]]["ifindex"] = $jet_ifindex; + } + foreach ($jet_vlanDb as $jet_vlan_id => $jet_vlan_data) { + d_echo(" $jet_vlan_id "); + + if (is_array($vlans_db[$vtpdomain_id][$jet_vlan_id])) { + $vlan_data = $vlans_db[$vtpdomain_id][$jet_vlan_id]; + + if ($vlan_data['vlan_name'] != $jet_vlan_data['dot1qVlanDescription']) { + $vlan_upd['vlan_name'] = $jet_vlan_data['dot1qVlanDescription']; + dbUpdate($vlan_upd, 'vlans', '`vlan_id` = ?', array($vlan_data['jet_vlan_id'])); + log_event("VLAN $vlan_id changed name {$vlan_data['vlan_name']} -> " . $jet_vlan_data['dot1qVlanDescription'], $device, 'vlan'); + echo "U"; + } else { + echo "."; + } + } else { + dbInsert([ + 'device_id' => $device['device_id'], + 'vlan_domain' => $vtpdomain_id, + 'vlan_vlan' => $jet_vlan_id, + 'vlan_name' => $jet_vlan_data['dot1qVlanDescription'], + 'vlan_type' => array('NULL') + ], 'vlans'); + + log_event("VLAN added: " . $jet_vlan_data['dot1qVlanDescription'] . ", $vlan_id", $device, 'vlan'); + echo "+"; + } + $device['vlans'][$vtpdomain_id][$jet_vlan_id] = $jet_vlan_id; + + foreach (jetstreamExpand($jet_vlan_data['vlanTagPortMemberAdd']) as $port_nr) { + if (isset($jet_stringPortMapping[$port_nr])) { + d_echo("ID: $jet_vlan_id -> PORT: ".$port_nr.", ifindex: ".$jet_stringPortMapping[$port_nr]['ifindex']." \n"); + $per_vlan_data[$jet_vlan_id][$jet_stringPortMapping[$port_nr]['ifindex']]['untagged']=0; + } + } + foreach (jetstreamExpand($jet_vlan_data['vlanUntagPortMemberAdd']) as $port_nr) { + if (isset($jet_stringPortMapping[$port_nr])) { + d_echo("ID: $jet_vlan_id -> PORT: ".$port_nr.", ifindex: ".$jet_stringPortMapping[$port_nr]['ifindex']." \n"); + $per_vlan_data[$jet_vlan_id][$jet_stringPortMapping[$port_nr]['ifindex']]['untagged']=1; + } + } + } +} diff --git a/mibs/tplink/TPLINK-DOT1Q-VLAN-MIB b/mibs/tplink/TPLINK-DOT1Q-VLAN-MIB new file mode 100644 index 0000000000..eb2b89a6bf --- /dev/null +++ b/mibs/tplink/TPLINK-DOT1Q-VLAN-MIB @@ -0,0 +1,239 @@ +-- ================================================================== +-- Copyright(c) 2008-2010 Shenzhen TP-LINK Technologies Co.Ltd. +-- +-- Description: Lan Switch VLAN MIB +-- Reference: +-- Version: V0.1 +-- History: Create by weishuifeng, 2102.11.28 +-- ================================================================== + +TPLINK-DOT1Q-VLAN-MIB DEFINITIONS ::= BEGIN + +IMPORTS + ifIndex + FROM RFC1213-MIB + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32, OBJECT-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + TPRowStatus + FROM TPLINK-TC-MIB + DisplayString + FROM SNMPv2-TC + tplinkMgmt + FROM TPLINK-MIB; + + +tplinkDot1qVlanMIB MODULE-IDENTITY + LAST-UPDATED "200812160000Z" + ORGANIZATION "Shenzhen TP-LINK Technologies Co.Ltd." + CONTACT-INFO "www.tplink.com.cn" + DESCRIPTION + "VLAN (Virtual Local Area Network) technology is developed for + the switch to divide the LAN into multiple logical LANs flexibly. + Hosts in the same VLAN can communicate with each other, regardless + of their physical locations. VLAN can enhance performance by conserving + bandwidth, and improve security by limiting traffic to specific domains." + REVISION "200908030000Z" + DESCRIPTION + "Initial version of this MIB module." +::= { tplinkMgmt 14 } + +tplinkDot1qVlanMIBObjects OBJECT IDENTIFIER ::= { tplinkDot1qVlanMIB 1 } +tplinkDot1qVlanNotifications OBJECT IDENTIFIER ::= { tplinkDot1qVlanMIB 2} + + vlanTableCreate NOTIFICATION-TYPE + OBJECTS { + dot1qVlanId + } + STATUS current + DESCRIPTION + "" + ::= { tplinkDot1qVlanNotifications 1} + + vlanPortConfig OBJECT IDENTIFIER ::= {tplinkDot1qVlanMIBObjects 1} + vlanConfig OBJECT IDENTIFIER ::= {tplinkDot1qVlanMIBObjects 2} + + +vlanPortConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF VLANPORTCONFIGENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch provides three Link Types for the ports. Usually, + the ACCESS port is to connect to the terminal hosts, such as + PC and Server; the TRUNK port is to connect to the switch; + the GENERAL port can connect to the terminal hosts or the + switch also." +::= { vlanPortConfig 1 } + +vlanPortConifgEntry OBJECT-TYPE + SYNTAX VLANPORTCONFIGENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains of the information of a port parameter." + INDEX { ifIndex } +::= { vlanPortConfigTable 1 } + +VLANPORTCONFIGENTRY ::= + SEQUENCE { + vlanPortNumber + OCTET STRING, + vlanPortType + INTEGER, + vlanPortPvid + INTEGER, + vlanPortLag + DisplayString ( SIZE (0..10) ) + } + + vlanPortNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port id." + ::= { vlanPortConifgEntry 1} + + + vlanPortType OBJECT-TYPE + SYNTAX INTEGER{ + access(0), --ACCESS + trunk(1), --TRUNK + general(2) --GENERAL + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "0.ACCESS:The ACCESS port can be added in a single VLAN,and the + egress rule of the port is UNTAG. The PVID is same as the current + VLAN ID. If the current VLAN is deleted,the PVID will be set to 1 + by default. + 1.TRUNK:The TRUNK port can be added in multiple VLANs, and the + egress rule of the port is TAG. The PVID can be set as the VID + number of any VLAN the port belongs to. + 2.GENERAL:The GENERAL port can be added in multiple VLANs and set + various egress rules according to the different VLANs. The default + egress rule is UNTAG. The PVID can be set as the VID number of any + VLAN the port belongs to." + ::= { vlanPortConifgEntry 2 } + + vlanPortPvid OBJECT-TYPE + SYNTAX INTEGER(1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enter the PVID number of the port, 1-4094" + ::= { vlanPortConifgEntry 3 } + + vlanPortLag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the LAG to which the port belongs." + ::= { vlanPortConifgEntry 4 } + + vlanPortUnknown OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { vlanPortConifgEntry 5 } + +vlanConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF DOT1QVLANCONFIGENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Here you can view and modify the VLAN Table." +::= { vlanConfig 1 } + +vlanConfigEntry OBJECT-TYPE + SYNTAX DOT1QVLANCONFIGENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains of the information of a vlan." + INDEX { dot1qVlanId } +::= { vlanConfigTable 1 } + +DOT1QVLANCONFIGENTRY ::= + SEQUENCE { + dot1qVlanId + INTEGER(1..4094), + dot1qVlanDescription + OCTET STRING (SIZE (0..64)), + vlanTagPortMemberAdd + OCTET STRING, + vlanUntagPortMemberAdd + OCTET STRING, + vlanPortMemberRemove + OCTET STRING, + dot1qVlanStatus + TPRowStatus + } + + dot1qVlanId OBJECT-TYPE + SYNTAX INTEGER(1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enter the ID number of VLAN,2-4094." + ::= { vlanConfigEntry 1 } + + dot1qVlanDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Give a description to the VLAN for identification,1-16 characters" + ::= { vlanConfigEntry 2 } + + vlanTagPortMemberAdd OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enter the desired port to be a tag member of VLAN,The format of input + port number shoud be like '1, 3, 4-7, 11'. + tag:All packets forwarded by the port are tagged. The packets contain + VLAN information." + ::= { vlanConfigEntry 3 } + + vlanUntagPortMemberAdd OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enter the desired port to be a untag member of VLAN,The format of input + port number shoud be like '1, 3, 4-7, 11'. + untag:Packets forwarded by the port are untagged." + ::= { vlanConfigEntry 4 } + vlanPortMemberRemove OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Remove port member of vlan,The format of input port number shoud be like + '1, 3, 4-7, 11'." + ::= { vlanConfigEntry 5 } + + dot1qVlanStatus OBJECT-TYPE + SYNTAX TPRowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "the following two values are states: + these values may be read or written + active(1), + + the following three values are + actions: these values may be written, + but are never read + createAndGo(4), + + destroy(6)" + ::= { vlanConfigEntry 6 } + +END diff --git a/mibs/tplink/TPLINK-TC-MIB b/mibs/tplink/TPLINK-TC-MIB new file mode 100644 index 0000000000..737f954a17 --- /dev/null +++ b/mibs/tplink/TPLINK-TC-MIB @@ -0,0 +1,41 @@ +TPLINK-TC-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TEXTUAL-CONVENTION FROM SNMPv2-TC; + + --TPLINK TYPE + TPRowStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The status column has three defined values: + - `active(1)', which indicates that the conceptual row is + available for using by the managed device; + + - `createAndGo(4)', which is supplied by a management + station wishing to create a new instance of a + conceptual row and to have its status automatically set + to active, making it available for using by the managed + device; + + - `destroy(6)', which is supplied by a management station + wishing to delete all of the instances associated with + an existing conceptual row." + SYNTAX INTEGER{ + active(1), + createAndGo(4), + destroy(6) + } + + + TPMacAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1x-1x-1x-1x-1x-1x" + STATUS current + DESCRIPTION + "Represents an 802 MAC address represented in the + `canonical' order defined by IEEE 802.1a, i.e., as if it + were transmitted least significant bit first, even though + 802.5 (in contrast to other 802.x protocols) requires MAC + addresses to be transmitted most significant bit first." + SYNTAX OCTET STRING (SIZE (6)) + +END \ No newline at end of file diff --git a/tests/data/jetstream_vlans.json b/tests/data/jetstream_vlans.json new file mode 100644 index 0000000000..91fa749061 --- /dev/null +++ b/tests/data/jetstream_vlans.json @@ -0,0 +1,4193 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.11863.5.72", + "sysDescr": "JetStream 16-Port Gigabit L2 Managed Switch with 2 SFP Slots", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "jetstream", + "type": "network", + "serial": null, + "icon": "tplink.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.11863.5.72", + "sysDescr": "JetStream 16-Port Gigabit L2 Managed Switch with 2 SFP Slots", + "sysContact": "", + "version": null, + "hardware": null, + "features": null, + "os": "jetstream", + "type": "network", + "serial": null, + "icon": "tplink.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan-interface254", + "ifName": "Vlan-interface254", + "portName": null, + "ifIndex": 254, + "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": "MGMNT", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/1 : copper", + "ifName": "gigabitEthernet 1/0/1 : copper", + "portName": null, + "ifIndex": 49153, + "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": "MKR", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/2 : copper", + "ifName": "gigabitEthernet 1/0/2 : copper", + "portName": null, + "ifIndex": 49154, + "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": "MKR", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/3 : copper", + "ifName": "gigabitEthernet 1/0/3 : copper", + "portName": null, + "ifIndex": 49155, + "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": "MKR", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/4 : copper", + "ifName": "gigabitEthernet 1/0/4 : copper", + "portName": null, + "ifIndex": 49156, + "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": "MKR", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/5 : copper", + "ifName": "gigabitEthernet 1/0/5 : copper", + "portName": null, + "ifIndex": 49157, + "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": "LPA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/6 : copper", + "ifName": "gigabitEthernet 1/0/6 : copper", + "portName": null, + "ifIndex": 49158, + "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": "LPA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/7 : copper", + "ifName": "gigabitEthernet 1/0/7 : copper", + "portName": null, + "ifIndex": 49159, + "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": "LPA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/8 : copper", + "ifName": "gigabitEthernet 1/0/8 : copper", + "portName": null, + "ifIndex": 49160, + "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": "LPA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/9 : copper", + "ifName": "gigabitEthernet 1/0/9 : copper", + "portName": null, + "ifIndex": 49161, + "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": "LPA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/10 : copper", + "ifName": "gigabitEthernet 1/0/10 : copper", + "portName": null, + "ifIndex": 49162, + "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": "LPA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/11 : copper", + "ifName": "gigabitEthernet 1/0/11 : copper", + "portName": null, + "ifIndex": 49163, + "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": "PRN", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/12 : copper", + "ifName": "gigabitEthernet 1/0/12 : copper", + "portName": null, + "ifIndex": 49164, + "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": "PRN", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/13 : copper", + "ifName": "gigabitEthernet 1/0/13 : copper", + "portName": null, + "ifIndex": 49165, + "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": "PRN", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/14 : copper", + "ifName": "gigabitEthernet 1/0/14 : copper", + "portName": null, + "ifIndex": 49166, + "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": "BANKA", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/15 : copper", + "ifName": "gigabitEthernet 1/0/15 : copper", + "portName": null, + "ifIndex": 49167, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/16 : copper", + "ifName": "gigabitEthernet 1/0/16 : copper", + "portName": null, + "ifIndex": 49168, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/17 : fiber", + "ifName": "gigabitEthernet 1/0/17 : fiber", + "portName": null, + "ifIndex": 49169, + "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": "TRUNK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/18 : fiber", + "ifName": "gigabitEthernet 1/0/18 : fiber", + "portName": null, + "ifIndex": 49170, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_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": "Vlan-interface254", + "ifName": "Vlan-interface254", + "portName": null, + "ifIndex": 254, + "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": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "MGMNT", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 5418, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": 1040582787, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1388853615, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": 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": 1291569, + "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": "gigabitEthernet 1/0/1 : copper", + "ifName": "gigabitEthernet 1/0/1 : copper", + "portName": null, + "ifIndex": 49153, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "MKR", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300511329, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 357025821, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 207177889, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 339562440942, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 114826827978, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 536779, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 353377, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 343752, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 12138689, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/2 : copper", + "ifName": "gigabitEthernet 1/0/2 : copper", + "portName": null, + "ifIndex": 49154, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "MKR", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300462963, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 23010213, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 22477785, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 11240793365, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 10584215004, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 49515, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 521908, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1070, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2994056, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/3 : copper", + "ifName": "gigabitEthernet 1/0/3 : copper", + "portName": null, + "ifIndex": 49155, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "MKR", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300466384, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 6074735, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6633574, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2790150880, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 8186266653, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 78287, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 816145, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 184219, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 43230807, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/4 : copper", + "ifName": "gigabitEthernet 1/0/4 : copper", + "portName": null, + "ifIndex": 49156, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "MKR", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "gigabitEthernet 1/0/5 : copper", + "ifName": "gigabitEthernet 1/0/5 : copper", + "portName": null, + "ifIndex": 49157, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LPA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300650496, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 9188758, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 14409112, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1319142626, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 17604643731, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 277, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 520939, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 581, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 32779343, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/6 : copper", + "ifName": "gigabitEthernet 1/0/6 : copper", + "portName": null, + "ifIndex": 49158, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LPA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2301092340, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 101935201, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 178013477, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 15572702458, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 182588577985, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 65024, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 457577, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2230896, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 23836260, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/7 : copper", + "ifName": "gigabitEthernet 1/0/7 : copper", + "portName": null, + "ifIndex": 49159, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LPA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300537264, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 48025544, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 149254973, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 5981965745, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 191214336283, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 559, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 520450, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 810, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 26722541, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/8 : copper", + "ifName": "gigabitEthernet 1/0/8 : copper", + "portName": null, + "ifIndex": 49160, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LPA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2301092660, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 87452020, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 137713241, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 11655581647, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 152166188896, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 542, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 521911, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 608, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 26322505, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/9 : copper", + "ifName": "gigabitEthernet 1/0/9 : copper", + "portName": null, + "ifIndex": 49161, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LPA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300650435, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 50446265, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 66591032, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 6612943528, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 68907234801, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 627, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 482536, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 898, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 24896468, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/10 : copper", + "ifName": "gigabitEthernet 1/0/10 : copper", + "portName": null, + "ifIndex": 49162, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LPA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 311446343, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 7, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 3537, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 332521, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 10, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 86, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 12, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 836, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/11 : copper", + "ifName": "gigabitEthernet 1/0/11 : copper", + "portName": null, + "ifIndex": 49163, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "PRN", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300536903, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2379204, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6837146, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 534286714, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 11177287052, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 40168, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 11799967, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 794614, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 34013054, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/12 : copper", + "ifName": "gigabitEthernet 1/0/12 : copper", + "portName": null, + "ifIndex": 49164, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "PRN", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "gigabitEthernet 1/0/13 : copper", + "ifName": "gigabitEthernet 1/0/13 : copper", + "portName": null, + "ifIndex": 49165, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "PRN", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2300534277, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2736999, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13609337, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 498612546, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 21815726399, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 40323, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 11795745, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 762137, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 40421749, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/14 : copper", + "ifName": "gigabitEthernet 1/0/14 : copper", + "portName": null, + "ifIndex": 49166, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "BANKA", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2297046036, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 44258, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 40931, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 10393373, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1758266656, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 22969, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 149865, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1482, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 25556125, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/15 : copper", + "ifName": "gigabitEthernet 1/0/15 : copper", + "portName": null, + "ifIndex": 49167, + "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": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 337573915, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 888400924, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1193198524, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 335856813042, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1144963888093, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 43351926, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 149719349, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 11151622, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 143372832, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/16 : copper", + "ifName": "gigabitEthernet 1/0/16 : copper", + "portName": null, + "ifIndex": 49168, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 2290992858, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 21895801, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 27246418, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 8606326549, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 64647790135, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 7106060, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 167863720, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 344793, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 134947782, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gigabitEthernet 1/0/17 : fiber", + "ifName": "gigabitEthernet 1/0/17 : fiber", + "portName": null, + "ifIndex": 49169, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": "gigabitEthernet 1/0/18 : fiber", + "ifName": "gigabitEthernet 1/0/18 : fiber", + "portName": null, + "ifIndex": 49170, + "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": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "b04e267c45cf", + "ifHardType": null, + "ifLastChange": 5395, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2022964145, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1600630695, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1915407119395, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 743508882242, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 144083785, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 51329075, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 114796203, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 16571613, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "System-VLAN", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 2, + "vlan_domain": 1, + "vlan_name": "GUEST", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 19, + "vlan_domain": 1, + "vlan_name": "FINANS", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 39, + "vlan_domain": 1, + "vlan_name": "MKR", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 40, + "vlan_domain": 1, + "vlan_name": "LPA", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 99, + "vlan_domain": 1, + "vlan_name": "BANKA", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 100, + "vlan_domain": 1, + "vlan_name": "PRN", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 200, + "vlan_domain": 1, + "vlan_name": "LAN", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 254, + "vlan_domain": 1, + "vlan_name": "MGMNT", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 1000, + "vlan_domain": 1, + "vlan_name": "OLD_LAN", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [] + } + } +} diff --git a/tests/snmpsim/jetstream_vlans.snmprec b/tests/snmpsim/jetstream_vlans.snmprec new file mode 100644 index 0000000000..df10b9eb0e --- /dev/null +++ b/tests/snmpsim/jetstream_vlans.snmprec @@ -0,0 +1,1076 @@ +1.0.8802.1.1.2.1.3.7.1.3.1|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.2|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333220453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.3|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333320453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.4|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333420453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.5|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333520453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.6|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333620453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.7|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333720453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.8|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333820453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.9|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333920453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.10|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333020453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.11|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333120453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.12|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333220453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.13|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333320453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.14|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333420453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.15|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333520453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.16|4x|E2809C4769676162697445746865726E0a363520373420333120324620333020324620333120333620453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.17|4x|E2809C466962657245746865726E65740a333120324620333020324620333120333720453220383020394420 +1.0.8802.1.1.2.1.3.7.1.3.18|4x|E2809C466962657245746865726E65740a3331203246203330203246203331203338204532203830203944 +1.0.8802.1.1.2.1.4.1.1.4.18.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.18.2|2|4 +1.0.8802.1.1.2.1.4.1.1.4.18.3|2|4 +1.0.8802.1.1.2.1.4.1.1.4.18.4|2|4 +1.0.8802.1.1.2.1.4.1.1.4.18.5|2|4 +1.0.8802.1.1.2.1.4.1.1.5.18.1|4x|E2809C45343A38443A38433A35333A460a333420334120333920333820453220383020394420 +1.0.8802.1.1.2.1.4.1.1.5.18.2|4x|E2809C41433A38343A43363A30303A430a343220334120343320333120453220383020394420 +1.0.8802.1.1.2.1.4.1.1.5.18.3|4x|E2809C36343A44313A35343A31393A430a333820334120343220343320453220383020394420 +1.0.8802.1.1.2.1.4.1.1.5.18.4|4x|E2809C39383A44413A43343A37333A330a343120334120333620333220453220383020394420 +1.0.8802.1.1.2.1.4.1.1.5.18.5|4x|E2809C30323A36343A33323A39463A420a343320334120333020333220453220383020394420 +1.0.8802.1.1.2.1.4.1.1.6.18.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.18.2|2|5 +1.0.8802.1.1.2.1.4.1.1.6.18.3|2|5 +1.0.8802.1.1.2.1.4.1.1.6.18.4|2|5 +1.0.8802.1.1.2.1.4.1.1.6.18.5|2|5 +1.0.8802.1.1.2.1.4.1.1.7.18.1|4x|E2809C42522D4C616E2F657468352D500a333120333720453220383020394420 +1.0.8802.1.1.2.1.4.1.1.7.18.2|4x|E2809C466962657245746865726E65740a333120324620333020324620333120333820453220383020394420 +1.0.8802.1.1.2.1.4.1.1.7.18.3|4x|E2809C535749544348E2809D +1.0.8802.1.1.2.1.4.1.1.7.18.4|4x|E2809C466962657245746865726E65740a333120324620333020324620333220333820453220383020394420 +1.0.8802.1.1.2.1.4.1.1.7.18.5|4x|E2809C766C616E323534E2809D +1.0.8802.1.1.2.1.4.1.1.8.18.1|4x|E2809CE2809D +1.0.8802.1.1.2.1.4.1.1.8.18.2|4x|E2809C466962657245746865726E65740a3331203246203330203246203331203338203230203439203645203734203635203732203636203631203633203635200a453220383020394420 +1.0.8802.1.1.2.1.4.1.1.8.18.3|4x|E2809CE2809D +1.0.8802.1.1.2.1.4.1.1.8.18.4|4x|E2809C466962657245746865726E65740a3331203246203330203246203332203338203230203439203645203734203635203732203636203631203633203635200a453220383020394420 +1.0.8802.1.1.2.1.4.1.1.8.18.5|4x|E2809CE2809D +1.0.8802.1.1.2.1.4.1.1.9.18.1|4x|E2809C736F616461E2809D +1.0.8802.1.1.2.1.4.1.1.9.18.2|4x|E2809C53572D3237E2809D +1.0.8802.1.1.2.1.4.1.1.9.18.3|4x|E2809C414441204B4F5A53454748415A0a343120453220383020394420 +1.0.8802.1.1.2.1.4.1.1.9.18.4|4x|E2809C53572D3037E2809D +1.0.8802.1.1.2.1.4.1.1.9.18.5|4x|E2809C736F616461E2809D +1.0.8802.1.1.2.1.4.1.1.10.18.1|4x|E2809C4D696B726F54696B20526F75740a3635203732203446203533203230203336203245203334203337203632203635203734203631203334203339203230200a3238203734203635203733203734203639203645203637203239203230203532203432203333203330203331203331200a353520363920343120353320453220383020394420 +1.0.8802.1.1.2.1.4.1.1.10.18.2|4x|E2809C4A657453747265616D2031362D0a3530203646203732203734203230203437203639203637203631203632203639203734203230203533203644203631200a3732203734203230203533203737203639203734203633203638203230203737203639203734203638203230203332200a323020353320343620353020323020353320364320364620373420373320453220383020394420 +1.0.8802.1.1.2.1.4.1.1.10.18.3|4x|E2809C4D696B726F54696B20526F75740a3635203732203446203533203230203336203245203334203335203245203331203230203238203733203734203631200a363220364320363520323920323020353220343220333720333520333020343720373220333320453220383020394420 +1.0.8802.1.1.2.1.4.1.1.10.18.4|4x|E2809C4A657453747265616D2032342D0a3530203646203732203734203230203437203639203637203631203632203639203734203230203533203644203631200a3732203734203230203533203737203639203734203633203638203230203737203639203734203638203230203334200a323020353320343620353020323020353320364320364620373420373320453220383020394420 +1.0.8802.1.1.2.1.4.1.1.10.18.5|4x|E2809C4D696B726F54696B20526F75740a3635203732203446203533203230203336203245203334203337203632203635203734203631203334203339203230200a3238203734203635203733203734203639203645203637203239203230203532203432203333203330203331203331200a353520363920343120353320453220383020394420 +1.0.8802.1.1.2.1.4.1.1.11.18.1|4|42 72 69 64 67 65 20 52 6F 75 74 65 72 1 6 9 10 11 14 17 18 20 23 25 26 29 33 34 37 38 39 41 42 45 47 50 57 59 62 65 66 68 69 70 71 73 74 75 77 79 81 82 83 85 89 90 93 95 97 98 99 102 +1.0.8802.1.1.2.1.4.1.1.11.18.2|4|42 72 69 64 67 65 20 52 6F 75 74 65 72 1 6 9 10 11 14 17 18 20 23 25 26 29 33 34 37 38 39 41 42 45 47 50 57 59 62 65 66 68 69 70 71 73 74 75 77 79 81 82 83 85 89 90 93 95 97 98 99 102 +1.3.6.1.2.1.1.1.0|4|JetStream 16-Port Gigabit L2 Managed Switch with 2 SFP Slots +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11863.5.72 +1.3.6.1.2.1.1.3.0|67|2301600353 +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.254|4|Vlan-interface254 +1.3.6.1.2.1.2.2.1.2.49153|4|gigabitEthernet 1/0/1 : copper +1.3.6.1.2.1.2.2.1.2.49154|4|gigabitEthernet 1/0/2 : copper +1.3.6.1.2.1.2.2.1.2.49155|4|gigabitEthernet 1/0/3 : copper +1.3.6.1.2.1.2.2.1.2.49156|4|gigabitEthernet 1/0/4 : copper +1.3.6.1.2.1.2.2.1.2.49157|4|gigabitEthernet 1/0/5 : copper +1.3.6.1.2.1.2.2.1.2.49158|4|gigabitEthernet 1/0/6 : copper +1.3.6.1.2.1.2.2.1.2.49159|4|gigabitEthernet 1/0/7 : copper +1.3.6.1.2.1.2.2.1.2.49160|4|gigabitEthernet 1/0/8 : copper +1.3.6.1.2.1.2.2.1.2.49161|4|gigabitEthernet 1/0/9 : copper +1.3.6.1.2.1.2.2.1.2.49162|4|gigabitEthernet 1/0/10 : copper +1.3.6.1.2.1.2.2.1.2.49163|4|gigabitEthernet 1/0/11 : copper +1.3.6.1.2.1.2.2.1.2.49164|4|gigabitEthernet 1/0/12 : copper +1.3.6.1.2.1.2.2.1.2.49165|4|gigabitEthernet 1/0/13 : copper +1.3.6.1.2.1.2.2.1.2.49166|4|gigabitEthernet 1/0/14 : copper +1.3.6.1.2.1.2.2.1.2.49167|4|gigabitEthernet 1/0/15 : copper +1.3.6.1.2.1.2.2.1.2.49168|4|gigabitEthernet 1/0/16 : copper +1.3.6.1.2.1.2.2.1.2.49169|4|gigabitEthernet 1/0/17 : fiber +1.3.6.1.2.1.2.2.1.2.49170|4|gigabitEthernet 1/0/18 : fiber +1.3.6.1.2.1.2.2.1.3.254|2|6 +1.3.6.1.2.1.2.2.1.3.49153|2|6 +1.3.6.1.2.1.2.2.1.3.49154|2|6 +1.3.6.1.2.1.2.2.1.3.49155|2|6 +1.3.6.1.2.1.2.2.1.3.49156|2|6 +1.3.6.1.2.1.2.2.1.3.49157|2|6 +1.3.6.1.2.1.2.2.1.3.49158|2|6 +1.3.6.1.2.1.2.2.1.3.49159|2|6 +1.3.6.1.2.1.2.2.1.3.49160|2|6 +1.3.6.1.2.1.2.2.1.3.49161|2|6 +1.3.6.1.2.1.2.2.1.3.49162|2|6 +1.3.6.1.2.1.2.2.1.3.49163|2|6 +1.3.6.1.2.1.2.2.1.3.49164|2|6 +1.3.6.1.2.1.2.2.1.3.49165|2|6 +1.3.6.1.2.1.2.2.1.3.49166|2|6 +1.3.6.1.2.1.2.2.1.3.49167|2|6 +1.3.6.1.2.1.2.2.1.3.49168|2|6 +1.3.6.1.2.1.2.2.1.3.49169|2|6 +1.3.6.1.2.1.2.2.1.3.49170|2|6 +1.3.6.1.2.1.2.2.1.4.254|2|1500 +1.3.6.1.2.1.2.2.1.4.49153|2|1518 +1.3.6.1.2.1.2.2.1.4.49154|2|1518 +1.3.6.1.2.1.2.2.1.4.49155|2|1518 +1.3.6.1.2.1.2.2.1.4.49156|2|1518 +1.3.6.1.2.1.2.2.1.4.49157|2|1518 +1.3.6.1.2.1.2.2.1.4.49158|2|1518 +1.3.6.1.2.1.2.2.1.4.49159|2|1518 +1.3.6.1.2.1.2.2.1.4.49160|2|1518 +1.3.6.1.2.1.2.2.1.4.49161|2|1518 +1.3.6.1.2.1.2.2.1.4.49162|2|1518 +1.3.6.1.2.1.2.2.1.4.49163|2|1518 +1.3.6.1.2.1.2.2.1.4.49164|2|1518 +1.3.6.1.2.1.2.2.1.4.49165|2|1518 +1.3.6.1.2.1.2.2.1.4.49166|2|1518 +1.3.6.1.2.1.2.2.1.4.49167|2|1518 +1.3.6.1.2.1.2.2.1.4.49168|2|1518 +1.3.6.1.2.1.2.2.1.4.49169|2|1518 +1.3.6.1.2.1.2.2.1.4.49170|2|1518 +1.3.6.1.2.1.2.2.1.6.254|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49153|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49154|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49155|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49156|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49157|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49158|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49159|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49160|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49161|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49162|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49163|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49164|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49165|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49166|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49167|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49168|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49169|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.6.49170|4x|B04E267C45CF +1.3.6.1.2.1.2.2.1.7.254|2|1 +1.3.6.1.2.1.2.2.1.7.49153|2|1 +1.3.6.1.2.1.2.2.1.7.49154|2|1 +1.3.6.1.2.1.2.2.1.7.49155|2|1 +1.3.6.1.2.1.2.2.1.7.49156|2|1 +1.3.6.1.2.1.2.2.1.7.49157|2|1 +1.3.6.1.2.1.2.2.1.7.49158|2|1 +1.3.6.1.2.1.2.2.1.7.49159|2|1 +1.3.6.1.2.1.2.2.1.7.49160|2|1 +1.3.6.1.2.1.2.2.1.7.49161|2|1 +1.3.6.1.2.1.2.2.1.7.49162|2|1 +1.3.6.1.2.1.2.2.1.7.49163|2|1 +1.3.6.1.2.1.2.2.1.7.49164|2|1 +1.3.6.1.2.1.2.2.1.7.49165|2|1 +1.3.6.1.2.1.2.2.1.7.49166|2|1 +1.3.6.1.2.1.2.2.1.7.49167|2|1 +1.3.6.1.2.1.2.2.1.7.49168|2|1 +1.3.6.1.2.1.2.2.1.7.49169|2|1 +1.3.6.1.2.1.2.2.1.7.49170|2|1 +1.3.6.1.2.1.2.2.1.8.254|2|1 +1.3.6.1.2.1.2.2.1.8.49153|2|1 +1.3.6.1.2.1.2.2.1.8.49154|2|2 +1.3.6.1.2.1.2.2.1.8.49155|2|1 +1.3.6.1.2.1.2.2.1.8.49156|2|2 +1.3.6.1.2.1.2.2.1.8.49157|2|2 +1.3.6.1.2.1.2.2.1.8.49158|2|2 +1.3.6.1.2.1.2.2.1.8.49159|2|2 +1.3.6.1.2.1.2.2.1.8.49160|2|2 +1.3.6.1.2.1.2.2.1.8.49161|2|2 +1.3.6.1.2.1.2.2.1.8.49162|2|2 +1.3.6.1.2.1.2.2.1.8.49163|2|2 +1.3.6.1.2.1.2.2.1.8.49164|2|2 +1.3.6.1.2.1.2.2.1.8.49165|2|2 +1.3.6.1.2.1.2.2.1.8.49166|2|1 +1.3.6.1.2.1.2.2.1.8.49167|2|1 +1.3.6.1.2.1.2.2.1.8.49168|2|1 +1.3.6.1.2.1.2.2.1.8.49169|2|2 +1.3.6.1.2.1.2.2.1.8.49170|2|1 +1.3.6.1.2.1.2.2.1.9.254|67|5418 +1.3.6.1.2.1.2.2.1.9.49153|67|2300511329 +1.3.6.1.2.1.2.2.1.9.49154|67|2300462963 +1.3.6.1.2.1.2.2.1.9.49155|67|2300466384 +1.3.6.1.2.1.2.2.1.9.49156|67|0 +1.3.6.1.2.1.2.2.1.9.49157|67|2300650496 +1.3.6.1.2.1.2.2.1.9.49158|67|2301092340 +1.3.6.1.2.1.2.2.1.9.49159|67|2300537264 +1.3.6.1.2.1.2.2.1.9.49160|67|2301092660 +1.3.6.1.2.1.2.2.1.9.49161|67|2300650435 +1.3.6.1.2.1.2.2.1.9.49162|67|311446343 +1.3.6.1.2.1.2.2.1.9.49163|67|2300536903 +1.3.6.1.2.1.2.2.1.9.49164|67|0 +1.3.6.1.2.1.2.2.1.9.49165|67|2300534277 +1.3.6.1.2.1.2.2.1.9.49166|67|2297046036 +1.3.6.1.2.1.2.2.1.9.49167|67|337573915 +1.3.6.1.2.1.2.2.1.9.49168|67|2290992858 +1.3.6.1.2.1.2.2.1.9.49169|67|0 +1.3.6.1.2.1.2.2.1.9.49170|67|5395 +1.3.6.1.2.1.2.2.1.13.254|65|0 +1.3.6.1.2.1.2.2.1.13.49153|65|0 +1.3.6.1.2.1.2.2.1.13.49154|65|0 +1.3.6.1.2.1.2.2.1.13.49155|65|0 +1.3.6.1.2.1.2.2.1.13.49156|65|0 +1.3.6.1.2.1.2.2.1.13.49157|65|0 +1.3.6.1.2.1.2.2.1.13.49158|65|0 +1.3.6.1.2.1.2.2.1.13.49159|65|0 +1.3.6.1.2.1.2.2.1.13.49160|65|0 +1.3.6.1.2.1.2.2.1.13.49161|65|0 +1.3.6.1.2.1.2.2.1.13.49162|65|0 +1.3.6.1.2.1.2.2.1.13.49163|65|0 +1.3.6.1.2.1.2.2.1.13.49164|65|0 +1.3.6.1.2.1.2.2.1.13.49165|65|0 +1.3.6.1.2.1.2.2.1.13.49166|65|0 +1.3.6.1.2.1.2.2.1.13.49167|65|0 +1.3.6.1.2.1.2.2.1.13.49168|65|0 +1.3.6.1.2.1.2.2.1.13.49169|65|0 +1.3.6.1.2.1.2.2.1.13.49170|65|0 +1.3.6.1.2.1.2.2.1.14.254|65|0 +1.3.6.1.2.1.2.2.1.14.49153|65|0 +1.3.6.1.2.1.2.2.1.14.49154|65|0 +1.3.6.1.2.1.2.2.1.14.49155|65|0 +1.3.6.1.2.1.2.2.1.14.49156|65|0 +1.3.6.1.2.1.2.2.1.14.49157|65|0 +1.3.6.1.2.1.2.2.1.14.49158|65|0 +1.3.6.1.2.1.2.2.1.14.49159|65|0 +1.3.6.1.2.1.2.2.1.14.49160|65|0 +1.3.6.1.2.1.2.2.1.14.49161|65|0 +1.3.6.1.2.1.2.2.1.14.49162|65|0 +1.3.6.1.2.1.2.2.1.14.49163|65|0 +1.3.6.1.2.1.2.2.1.14.49164|65|0 +1.3.6.1.2.1.2.2.1.14.49165|65|0 +1.3.6.1.2.1.2.2.1.14.49166|65|0 +1.3.6.1.2.1.2.2.1.14.49167|65|0 +1.3.6.1.2.1.2.2.1.14.49168|65|0 +1.3.6.1.2.1.2.2.1.14.49169|65|0 +1.3.6.1.2.1.2.2.1.14.49170|65|0 +1.3.6.1.2.1.2.2.1.19.254|65|0 +1.3.6.1.2.1.2.2.1.19.49153|65|0 +1.3.6.1.2.1.2.2.1.19.49154|65|0 +1.3.6.1.2.1.2.2.1.19.49155|65|0 +1.3.6.1.2.1.2.2.1.19.49156|65|0 +1.3.6.1.2.1.2.2.1.19.49157|65|0 +1.3.6.1.2.1.2.2.1.19.49158|65|0 +1.3.6.1.2.1.2.2.1.19.49159|65|0 +1.3.6.1.2.1.2.2.1.19.49160|65|0 +1.3.6.1.2.1.2.2.1.19.49161|65|0 +1.3.6.1.2.1.2.2.1.19.49162|65|0 +1.3.6.1.2.1.2.2.1.19.49163|65|0 +1.3.6.1.2.1.2.2.1.19.49164|65|0 +1.3.6.1.2.1.2.2.1.19.49165|65|0 +1.3.6.1.2.1.2.2.1.19.49166|65|0 +1.3.6.1.2.1.2.2.1.19.49167|65|0 +1.3.6.1.2.1.2.2.1.19.49168|65|0 +1.3.6.1.2.1.2.2.1.19.49169|65|0 +1.3.6.1.2.1.2.2.1.19.49170|65|0 +1.3.6.1.2.1.2.2.1.20.254|65|0 +1.3.6.1.2.1.2.2.1.20.49153|65|0 +1.3.6.1.2.1.2.2.1.20.49154|65|0 +1.3.6.1.2.1.2.2.1.20.49155|65|0 +1.3.6.1.2.1.2.2.1.20.49156|65|0 +1.3.6.1.2.1.2.2.1.20.49157|65|0 +1.3.6.1.2.1.2.2.1.20.49158|65|0 +1.3.6.1.2.1.2.2.1.20.49159|65|0 +1.3.6.1.2.1.2.2.1.20.49160|65|0 +1.3.6.1.2.1.2.2.1.20.49161|65|0 +1.3.6.1.2.1.2.2.1.20.49162|65|0 +1.3.6.1.2.1.2.2.1.20.49163|65|0 +1.3.6.1.2.1.2.2.1.20.49164|65|0 +1.3.6.1.2.1.2.2.1.20.49165|65|0 +1.3.6.1.2.1.2.2.1.20.49166|65|0 +1.3.6.1.2.1.2.2.1.20.49167|65|0 +1.3.6.1.2.1.2.2.1.20.49168|65|0 +1.3.6.1.2.1.2.2.1.20.49169|65|0 +1.3.6.1.2.1.2.2.1.20.49170|65|0 +1.3.6.1.2.1.4.3.0|65|212863 +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|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|212714 +1.3.6.1.2.1.4.10.0|65|122263 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|6 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.169.254.102.39|2|254 +1.3.6.1.2.1.4.20.1.3.169.254.102.39|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.254.169.254.102.1|4x|0264329FBC02 +1.3.6.1.2.1.4.22.1.2.254.169.254.102.252|4x|E0D55EB559EE +1.3.6.1.2.1.5.1.0|65|80 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|55 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|25 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|56 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|31 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|25 +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|10 +1.3.6.1.2.1.6.6.0|65|13822 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|2 +1.3.6.1.2.1.6.9.0|66|2 +1.3.6.1.2.1.6.10.0|65|141034 +1.3.6.1.2.1.6.11.0|65|151574 +1.3.6.1.2.1.6.12.0|65|95 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|14 +1.3.6.1.2.1.7.1.0|65|108176 +1.3.6.1.2.1.7.2.0|65|31 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|108148 +1.3.6.1.2.1.10.7.2.1.1.49153|2|1 +1.3.6.1.2.1.10.7.2.1.1.49154|2|2 +1.3.6.1.2.1.10.7.2.1.1.49155|2|3 +1.3.6.1.2.1.10.7.2.1.1.49156|2|4 +1.3.6.1.2.1.10.7.2.1.1.49157|2|5 +1.3.6.1.2.1.10.7.2.1.1.49158|2|6 +1.3.6.1.2.1.10.7.2.1.1.49159|2|7 +1.3.6.1.2.1.10.7.2.1.1.49160|2|8 +1.3.6.1.2.1.10.7.2.1.1.49161|2|9 +1.3.6.1.2.1.10.7.2.1.1.49162|2|10 +1.3.6.1.2.1.10.7.2.1.1.49163|2|11 +1.3.6.1.2.1.10.7.2.1.1.49164|2|12 +1.3.6.1.2.1.10.7.2.1.1.49165|2|13 +1.3.6.1.2.1.10.7.2.1.1.49166|2|14 +1.3.6.1.2.1.10.7.2.1.1.49167|2|15 +1.3.6.1.2.1.10.7.2.1.1.49168|2|16 +1.3.6.1.2.1.10.7.2.1.1.49169|2|17 +1.3.6.1.2.1.10.7.2.1.1.49170|2|18 +1.3.6.1.2.1.10.7.2.1.19.49153|2|3 +1.3.6.1.2.1.10.7.2.1.19.49154|2|3 +1.3.6.1.2.1.10.7.2.1.19.49155|2|3 +1.3.6.1.2.1.10.7.2.1.19.49156|2|3 +1.3.6.1.2.1.10.7.2.1.19.49157|2|3 +1.3.6.1.2.1.10.7.2.1.19.49158|2|3 +1.3.6.1.2.1.10.7.2.1.19.49159|2|3 +1.3.6.1.2.1.10.7.2.1.19.49160|2|3 +1.3.6.1.2.1.10.7.2.1.19.49161|2|3 +1.3.6.1.2.1.10.7.2.1.19.49162|2|3 +1.3.6.1.2.1.10.7.2.1.19.49163|2|3 +1.3.6.1.2.1.10.7.2.1.19.49164|2|3 +1.3.6.1.2.1.10.7.2.1.19.49165|2|3 +1.3.6.1.2.1.10.7.2.1.19.49166|2|3 +1.3.6.1.2.1.10.7.2.1.19.49167|2|3 +1.3.6.1.2.1.10.7.2.1.19.49168|2|3 +1.3.6.1.2.1.10.7.2.1.19.49169|2|3 +1.3.6.1.2.1.10.7.2.1.19.49170|2|3 +1.3.6.1.2.1.16.1.1.1.1.1|2|1 +1.3.6.1.2.1.17.1.1.0|4x|B04E267C45CF +1.3.6.1.2.1.17.1.4.1.2.49153|2|49153 +1.3.6.1.2.1.17.1.4.1.2.49154|2|49154 +1.3.6.1.2.1.17.1.4.1.2.49155|2|49155 +1.3.6.1.2.1.17.1.4.1.2.49156|2|49156 +1.3.6.1.2.1.17.1.4.1.2.49157|2|49157 +1.3.6.1.2.1.17.1.4.1.2.49158|2|49158 +1.3.6.1.2.1.17.1.4.1.2.49159|2|49159 +1.3.6.1.2.1.17.1.4.1.2.49160|2|49160 +1.3.6.1.2.1.17.1.4.1.2.49161|2|49161 +1.3.6.1.2.1.17.1.4.1.2.49162|2|49162 +1.3.6.1.2.1.17.1.4.1.2.49163|2|49163 +1.3.6.1.2.1.17.1.4.1.2.49164|2|49164 +1.3.6.1.2.1.17.1.4.1.2.49165|2|49165 +1.3.6.1.2.1.17.1.4.1.2.49166|2|49166 +1.3.6.1.2.1.17.1.4.1.2.49167|2|49167 +1.3.6.1.2.1.17.1.4.1.2.49168|2|49168 +1.3.6.1.2.1.17.1.4.1.2.49169|2|49169 +1.3.6.1.2.1.17.1.4.1.2.49170|2|49170 +1.3.6.1.2.1.17.2.1.0|2|1 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.3.0|67|3974900 +1.3.6.1.2.1.17.2.4.0|65|675 +1.3.6.1.2.1.17.2.5.0|4x|40000264329FBC02 +1.3.6.1.2.1.17.2.6.0|2|20000 +1.3.6.1.2.1.17.2.7.0|2|18 +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|0 +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.49153|2|1 +1.3.6.1.2.1.17.2.15.1.1.49154|2|2 +1.3.6.1.2.1.17.2.15.1.1.49155|2|3 +1.3.6.1.2.1.17.2.15.1.1.49156|2|4 +1.3.6.1.2.1.17.2.15.1.1.49157|2|5 +1.3.6.1.2.1.17.2.15.1.1.49158|2|6 +1.3.6.1.2.1.17.2.15.1.1.49159|2|7 +1.3.6.1.2.1.17.2.15.1.1.49160|2|8 +1.3.6.1.2.1.17.2.15.1.1.49161|2|9 +1.3.6.1.2.1.17.2.15.1.1.49162|2|10 +1.3.6.1.2.1.17.2.15.1.1.49163|2|11 +1.3.6.1.2.1.17.2.15.1.1.49164|2|12 +1.3.6.1.2.1.17.2.15.1.1.49165|2|13 +1.3.6.1.2.1.17.2.15.1.1.49166|2|14 +1.3.6.1.2.1.17.2.15.1.1.49167|2|15 +1.3.6.1.2.1.17.2.15.1.1.49168|2|16 +1.3.6.1.2.1.17.2.15.1.1.49169|2|17 +1.3.6.1.2.1.17.2.15.1.1.49170|2|18 +1.3.6.1.2.1.17.2.15.1.2.49153|2|128 +1.3.6.1.2.1.17.2.15.1.2.49154|2|128 +1.3.6.1.2.1.17.2.15.1.2.49155|2|128 +1.3.6.1.2.1.17.2.15.1.2.49156|2|128 +1.3.6.1.2.1.17.2.15.1.2.49157|2|128 +1.3.6.1.2.1.17.2.15.1.2.49158|2|128 +1.3.6.1.2.1.17.2.15.1.2.49159|2|128 +1.3.6.1.2.1.17.2.15.1.2.49160|2|128 +1.3.6.1.2.1.17.2.15.1.2.49161|2|128 +1.3.6.1.2.1.17.2.15.1.2.49162|2|128 +1.3.6.1.2.1.17.2.15.1.2.49163|2|128 +1.3.6.1.2.1.17.2.15.1.2.49164|2|128 +1.3.6.1.2.1.17.2.15.1.2.49165|2|128 +1.3.6.1.2.1.17.2.15.1.2.49166|2|128 +1.3.6.1.2.1.17.2.15.1.2.49167|2|128 +1.3.6.1.2.1.17.2.15.1.2.49168|2|128 +1.3.6.1.2.1.17.2.15.1.2.49169|2|128 +1.3.6.1.2.1.17.2.15.1.2.49170|2|128 +1.3.6.1.2.1.17.2.15.1.3.49153|2|1 +1.3.6.1.2.1.17.2.15.1.3.49154|2|1 +1.3.6.1.2.1.17.2.15.1.3.49155|2|1 +1.3.6.1.2.1.17.2.15.1.3.49156|2|1 +1.3.6.1.2.1.17.2.15.1.3.49157|2|1 +1.3.6.1.2.1.17.2.15.1.3.49158|2|1 +1.3.6.1.2.1.17.2.15.1.3.49159|2|1 +1.3.6.1.2.1.17.2.15.1.3.49160|2|1 +1.3.6.1.2.1.17.2.15.1.3.49161|2|1 +1.3.6.1.2.1.17.2.15.1.3.49162|2|1 +1.3.6.1.2.1.17.2.15.1.3.49163|2|1 +1.3.6.1.2.1.17.2.15.1.3.49164|2|1 +1.3.6.1.2.1.17.2.15.1.3.49165|2|1 +1.3.6.1.2.1.17.2.15.1.3.49166|2|1 +1.3.6.1.2.1.17.2.15.1.3.49167|2|1 +1.3.6.1.2.1.17.2.15.1.3.49168|2|1 +1.3.6.1.2.1.17.2.15.1.3.49169|2|1 +1.3.6.1.2.1.17.2.15.1.3.49170|2|5 +1.3.6.1.2.1.17.2.15.1.4.49153|2|2 +1.3.6.1.2.1.17.2.15.1.4.49154|2|2 +1.3.6.1.2.1.17.2.15.1.4.49155|2|2 +1.3.6.1.2.1.17.2.15.1.4.49156|2|2 +1.3.6.1.2.1.17.2.15.1.4.49157|2|2 +1.3.6.1.2.1.17.2.15.1.4.49158|2|2 +1.3.6.1.2.1.17.2.15.1.4.49159|2|2 +1.3.6.1.2.1.17.2.15.1.4.49160|2|2 +1.3.6.1.2.1.17.2.15.1.4.49161|2|2 +1.3.6.1.2.1.17.2.15.1.4.49162|2|2 +1.3.6.1.2.1.17.2.15.1.4.49163|2|2 +1.3.6.1.2.1.17.2.15.1.4.49164|2|2 +1.3.6.1.2.1.17.2.15.1.4.49165|2|2 +1.3.6.1.2.1.17.2.15.1.4.49166|2|2 +1.3.6.1.2.1.17.2.15.1.4.49167|2|2 +1.3.6.1.2.1.17.2.15.1.4.49168|2|2 +1.3.6.1.2.1.17.2.15.1.4.49169|2|1 +1.3.6.1.2.1.17.2.15.1.4.49170|2|1 +1.3.6.1.2.1.17.2.15.1.5.49153|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49154|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49155|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49156|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49157|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49158|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49159|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49160|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49161|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49162|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49163|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49164|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49165|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49166|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49167|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49168|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49169|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49170|2|20000 +1.3.6.1.2.1.17.2.15.1.6.49153|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49154|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49155|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49156|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49157|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49158|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49159|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49160|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49161|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49162|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49163|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49164|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49165|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49166|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49167|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49168|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.6.49169|4x|40000264329FBC02 +1.3.6.1.2.1.17.2.15.1.6.49170|4x|40000264329FBC02 +1.3.6.1.2.1.17.2.15.1.7.49153|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49154|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49155|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49156|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49157|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49158|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49159|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49160|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49161|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49162|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49163|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49164|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49165|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49166|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49167|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49168|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49169|2|20000 +1.3.6.1.2.1.17.2.15.1.7.49170|2|0 +1.3.6.1.2.1.17.2.15.1.8.49153|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49154|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49155|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49156|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49157|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49158|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49159|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49160|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49161|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49162|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49163|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49164|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49165|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49166|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49167|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49168|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49169|4x|8000B04E267C45CF +1.3.6.1.2.1.17.2.15.1.8.49170|4x|40000264329FBC02 +1.3.6.1.2.1.17.2.15.1.9.49153|4x|8001 +1.3.6.1.2.1.17.2.15.1.9.49154|4x|8002 +1.3.6.1.2.1.17.2.15.1.9.49155|4x|8003 +1.3.6.1.2.1.17.2.15.1.9.49156|4x|8004 +1.3.6.1.2.1.17.2.15.1.9.49157|4x|8005 +1.3.6.1.2.1.17.2.15.1.9.49158|4x|8006 +1.3.6.1.2.1.17.2.15.1.9.49159|4x|8007 +1.3.6.1.2.1.17.2.15.1.9.49160|4x|8008 +1.3.6.1.2.1.17.2.15.1.9.49161|4x|8009 +1.3.6.1.2.1.17.2.15.1.9.49162|4x|800A +1.3.6.1.2.1.17.2.15.1.9.49163|4x|800B +1.3.6.1.2.1.17.2.15.1.9.49164|4x|800C +1.3.6.1.2.1.17.2.15.1.9.49165|4x|800D +1.3.6.1.2.1.17.2.15.1.9.49166|4x|800E +1.3.6.1.2.1.17.2.15.1.9.49167|4x|800F +1.3.6.1.2.1.17.2.15.1.9.49168|4x|8010 +1.3.6.1.2.1.17.2.15.1.9.49169|4x|8011 +1.3.6.1.2.1.17.2.15.1.9.49170|4x|8008 +1.3.6.1.2.1.17.2.15.1.10.49153|65|0 +1.3.6.1.2.1.17.2.15.1.10.49154|65|0 +1.3.6.1.2.1.17.2.15.1.10.49155|65|0 +1.3.6.1.2.1.17.2.15.1.10.49156|65|0 +1.3.6.1.2.1.17.2.15.1.10.49157|65|0 +1.3.6.1.2.1.17.2.15.1.10.49158|65|0 +1.3.6.1.2.1.17.2.15.1.10.49159|65|0 +1.3.6.1.2.1.17.2.15.1.10.49160|65|0 +1.3.6.1.2.1.17.2.15.1.10.49161|65|0 +1.3.6.1.2.1.17.2.15.1.10.49162|65|0 +1.3.6.1.2.1.17.2.15.1.10.49163|65|0 +1.3.6.1.2.1.17.2.15.1.10.49164|65|0 +1.3.6.1.2.1.17.2.15.1.10.49165|65|0 +1.3.6.1.2.1.17.2.15.1.10.49166|65|0 +1.3.6.1.2.1.17.2.15.1.10.49167|65|0 +1.3.6.1.2.1.17.2.15.1.10.49168|65|0 +1.3.6.1.2.1.17.2.15.1.10.49169|65|0 +1.3.6.1.2.1.17.2.15.1.10.49170|65|1 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.32.26.42.235.160|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.128.48.224.46.26.12|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.204.45.224.61.182.31|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.224.213.94.181.89.238|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.48.103.153.136.131|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.48.75.7.76.233.176|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.112.113.188.99.150.214|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.132.22.249.88.10.28|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.140.191.166.0.120.221|2|15 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.232.148.246.28.194.44|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.19.8.0.39.241.31.169|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.19.116.212.53.44.238.152|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.19.176.110.191.131.142.224|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.39.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.40.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.40.8.0.39.8.111.200|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.99.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.0.32.107.132.53.230|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.48.141.153.174.71.44|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.52.104.149.130.122.94|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.56.99.187.215.11.113|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.80.101.243.93.170.77|2|15 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.128.206.98.233.137.33|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.208.191.156.53.3.8|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.208.191.156.54.29.41|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.228.231.73.93.1.78|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.228.231.73.93.208.137|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.33.133.59.10.52|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.56.213.71.27.207.40|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.112.77.123.108.30.223|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.232.148.246.38.22.72|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.8.0.39.30.132.227|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.8.0.39.245.126.221|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.28.111.101.78.87.7|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.104.255.123.62.104.41|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.128.48.224.46.26.15|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.128.48.224.63.45.64|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.152.218.196.115.58.98|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.164.23.49.188.54.227|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.172.132.198.0.203.193|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.3|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.5|2|15 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.7|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.16|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.17|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.19|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.22|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.34|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.39|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.40|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.49|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.51|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.53|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.54|2|15 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.57|2|15 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.64|2|16 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.73|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.176.254.0.0.2.80|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.224.213.94.181.89.238|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.0.20.120.135.69.44|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.2.100.50.159.188.2|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.28.111.101.78.87.7|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.60.151.14.117.16.188|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.100.209.84.25.200.188|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.128.48.224.46.26.12|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.144.2.169.131.50.150|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.144.43.52.204.96.42|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.208.80.153.46.130.64|2|18 +1.3.6.1.2.1.17.7.1.2.2.1.2.1000.224.213.94.181.89.238|2|18 +1.3.6.1.2.1.31.1.1.1.1.254|4|Vlan-interface254 +1.3.6.1.2.1.31.1.1.1.1.49153|4|gigabitEthernet 1/0/1 : copper +1.3.6.1.2.1.31.1.1.1.1.49154|4|gigabitEthernet 1/0/2 : copper +1.3.6.1.2.1.31.1.1.1.1.49155|4|gigabitEthernet 1/0/3 : copper +1.3.6.1.2.1.31.1.1.1.1.49156|4|gigabitEthernet 1/0/4 : copper +1.3.6.1.2.1.31.1.1.1.1.49157|4|gigabitEthernet 1/0/5 : copper +1.3.6.1.2.1.31.1.1.1.1.49158|4|gigabitEthernet 1/0/6 : copper +1.3.6.1.2.1.31.1.1.1.1.49159|4|gigabitEthernet 1/0/7 : copper +1.3.6.1.2.1.31.1.1.1.1.49160|4|gigabitEthernet 1/0/8 : copper +1.3.6.1.2.1.31.1.1.1.1.49161|4|gigabitEthernet 1/0/9 : copper +1.3.6.1.2.1.31.1.1.1.1.49162|4|gigabitEthernet 1/0/10 : copper +1.3.6.1.2.1.31.1.1.1.1.49163|4|gigabitEthernet 1/0/11 : copper +1.3.6.1.2.1.31.1.1.1.1.49164|4|gigabitEthernet 1/0/12 : copper +1.3.6.1.2.1.31.1.1.1.1.49165|4|gigabitEthernet 1/0/13 : copper +1.3.6.1.2.1.31.1.1.1.1.49166|4|gigabitEthernet 1/0/14 : copper +1.3.6.1.2.1.31.1.1.1.1.49167|4|gigabitEthernet 1/0/15 : copper +1.3.6.1.2.1.31.1.1.1.1.49168|4|gigabitEthernet 1/0/16 : copper +1.3.6.1.2.1.31.1.1.1.1.49169|4|gigabitEthernet 1/0/17 : fiber +1.3.6.1.2.1.31.1.1.1.1.49170|4|gigabitEthernet 1/0/18 : fiber +1.3.6.1.2.1.31.1.1.1.2.254|65|1291569 +1.3.6.1.2.1.31.1.1.1.2.49153|65|343752 +1.3.6.1.2.1.31.1.1.1.2.49154|65|1070 +1.3.6.1.2.1.31.1.1.1.2.49155|65|184219 +1.3.6.1.2.1.31.1.1.1.2.49156|65|0 +1.3.6.1.2.1.31.1.1.1.2.49157|65|581 +1.3.6.1.2.1.31.1.1.1.2.49158|65|2230896 +1.3.6.1.2.1.31.1.1.1.2.49159|65|810 +1.3.6.1.2.1.31.1.1.1.2.49160|65|608 +1.3.6.1.2.1.31.1.1.1.2.49161|65|898 +1.3.6.1.2.1.31.1.1.1.2.49162|65|12 +1.3.6.1.2.1.31.1.1.1.2.49163|65|794614 +1.3.6.1.2.1.31.1.1.1.2.49164|65|0 +1.3.6.1.2.1.31.1.1.1.2.49165|65|762137 +1.3.6.1.2.1.31.1.1.1.2.49166|65|1482 +1.3.6.1.2.1.31.1.1.1.2.49167|65|11151622 +1.3.6.1.2.1.31.1.1.1.2.49168|65|344793 +1.3.6.1.2.1.31.1.1.1.2.49169|65|0 +1.3.6.1.2.1.31.1.1.1.2.49170|65|114796202 +1.3.6.1.2.1.31.1.1.1.3.254|65|0 +1.3.6.1.2.1.31.1.1.1.3.49153|65|536779 +1.3.6.1.2.1.31.1.1.1.3.49154|65|49515 +1.3.6.1.2.1.31.1.1.1.3.49155|65|78287 +1.3.6.1.2.1.31.1.1.1.3.49156|65|0 +1.3.6.1.2.1.31.1.1.1.3.49157|65|277 +1.3.6.1.2.1.31.1.1.1.3.49158|65|65024 +1.3.6.1.2.1.31.1.1.1.3.49159|65|559 +1.3.6.1.2.1.31.1.1.1.3.49160|65|542 +1.3.6.1.2.1.31.1.1.1.3.49161|65|627 +1.3.6.1.2.1.31.1.1.1.3.49162|65|10 +1.3.6.1.2.1.31.1.1.1.3.49163|65|40168 +1.3.6.1.2.1.31.1.1.1.3.49164|65|0 +1.3.6.1.2.1.31.1.1.1.3.49165|65|40323 +1.3.6.1.2.1.31.1.1.1.3.49166|65|22969 +1.3.6.1.2.1.31.1.1.1.3.49167|65|43351923 +1.3.6.1.2.1.31.1.1.1.3.49168|65|7106059 +1.3.6.1.2.1.31.1.1.1.3.49169|65|0 +1.3.6.1.2.1.31.1.1.1.3.49170|65|144083768 +1.3.6.1.2.1.31.1.1.1.4.254|65|0 +1.3.6.1.2.1.31.1.1.1.4.49153|65|12138689 +1.3.6.1.2.1.31.1.1.1.4.49154|65|2994056 +1.3.6.1.2.1.31.1.1.1.4.49155|65|43230807 +1.3.6.1.2.1.31.1.1.1.4.49156|65|0 +1.3.6.1.2.1.31.1.1.1.4.49157|65|32779343 +1.3.6.1.2.1.31.1.1.1.4.49158|65|23836260 +1.3.6.1.2.1.31.1.1.1.4.49159|65|26722541 +1.3.6.1.2.1.31.1.1.1.4.49160|65|26322505 +1.3.6.1.2.1.31.1.1.1.4.49161|65|24896468 +1.3.6.1.2.1.31.1.1.1.4.49162|65|836 +1.3.6.1.2.1.31.1.1.1.4.49163|65|34013054 +1.3.6.1.2.1.31.1.1.1.4.49164|65|0 +1.3.6.1.2.1.31.1.1.1.4.49165|65|40421749 +1.3.6.1.2.1.31.1.1.1.4.49166|65|25556125 +1.3.6.1.2.1.31.1.1.1.4.49167|65|143372832 +1.3.6.1.2.1.31.1.1.1.4.49168|65|134947782 +1.3.6.1.2.1.31.1.1.1.4.49169|65|0 +1.3.6.1.2.1.31.1.1.1.4.49170|65|16571613 +1.3.6.1.2.1.31.1.1.1.5.254|65|0 +1.3.6.1.2.1.31.1.1.1.5.49153|65|353377 +1.3.6.1.2.1.31.1.1.1.5.49154|65|521908 +1.3.6.1.2.1.31.1.1.1.5.49155|65|816145 +1.3.6.1.2.1.31.1.1.1.5.49156|65|0 +1.3.6.1.2.1.31.1.1.1.5.49157|65|520939 +1.3.6.1.2.1.31.1.1.1.5.49158|65|457577 +1.3.6.1.2.1.31.1.1.1.5.49159|65|520450 +1.3.6.1.2.1.31.1.1.1.5.49160|65|521911 +1.3.6.1.2.1.31.1.1.1.5.49161|65|482536 +1.3.6.1.2.1.31.1.1.1.5.49162|65|86 +1.3.6.1.2.1.31.1.1.1.5.49163|65|11799967 +1.3.6.1.2.1.31.1.1.1.5.49164|65|0 +1.3.6.1.2.1.31.1.1.1.5.49165|65|11795745 +1.3.6.1.2.1.31.1.1.1.5.49166|65|149865 +1.3.6.1.2.1.31.1.1.1.5.49167|65|149719311 +1.3.6.1.2.1.31.1.1.1.5.49168|65|167863679 +1.3.6.1.2.1.31.1.1.1.5.49169|65|0 +1.3.6.1.2.1.31.1.1.1.5.49170|65|51329066 +1.3.6.1.2.1.31.1.1.1.6.254|70|1040582787 +1.3.6.1.2.1.31.1.1.1.6.49153|70|339562440942 +1.3.6.1.2.1.31.1.1.1.6.49154|70|11240793365 +1.3.6.1.2.1.31.1.1.1.6.49155|70|2790150880 +1.3.6.1.2.1.31.1.1.1.6.49156|70|0 +1.3.6.1.2.1.31.1.1.1.6.49157|70|1319142626 +1.3.6.1.2.1.31.1.1.1.6.49158|70|15572702458 +1.3.6.1.2.1.31.1.1.1.6.49159|70|5981965745 +1.3.6.1.2.1.31.1.1.1.6.49160|70|11655581647 +1.3.6.1.2.1.31.1.1.1.6.49161|70|6612943528 +1.3.6.1.2.1.31.1.1.1.6.49162|70|3537 +1.3.6.1.2.1.31.1.1.1.6.49163|70|534286714 +1.3.6.1.2.1.31.1.1.1.6.49164|70|0 +1.3.6.1.2.1.31.1.1.1.6.49165|70|498612546 +1.3.6.1.2.1.31.1.1.1.6.49166|70|10393373 +1.3.6.1.2.1.31.1.1.1.6.49167|70|335856813042 +1.3.6.1.2.1.31.1.1.1.6.49168|70|8606326549 +1.3.6.1.2.1.31.1.1.1.6.49169|70|0 +1.3.6.1.2.1.31.1.1.1.6.49170|70|1915407119395 +1.3.6.1.2.1.31.1.1.1.7.254|70|0 +1.3.6.1.2.1.31.1.1.1.7.49153|70|357025821 +1.3.6.1.2.1.31.1.1.1.7.49154|70|23010213 +1.3.6.1.2.1.31.1.1.1.7.49155|70|6074735 +1.3.6.1.2.1.31.1.1.1.7.49156|70|0 +1.3.6.1.2.1.31.1.1.1.7.49157|70|9188758 +1.3.6.1.2.1.31.1.1.1.7.49158|70|101935201 +1.3.6.1.2.1.31.1.1.1.7.49159|70|48025544 +1.3.6.1.2.1.31.1.1.1.7.49160|70|87452020 +1.3.6.1.2.1.31.1.1.1.7.49161|70|50446265 +1.3.6.1.2.1.31.1.1.1.7.49162|70|1 +1.3.6.1.2.1.31.1.1.1.7.49163|70|2379204 +1.3.6.1.2.1.31.1.1.1.7.49164|70|0 +1.3.6.1.2.1.31.1.1.1.7.49165|70|2736999 +1.3.6.1.2.1.31.1.1.1.7.49166|70|44258 +1.3.6.1.2.1.31.1.1.1.7.49167|70|888400924 +1.3.6.1.2.1.31.1.1.1.7.49168|70|21895801 +1.3.6.1.2.1.31.1.1.1.7.49169|70|0 +1.3.6.1.2.1.31.1.1.1.7.49170|70|2022964145 +1.3.6.1.2.1.31.1.1.1.8.254|70|1291569 +1.3.6.1.2.1.31.1.1.1.8.49153|70|343752 +1.3.6.1.2.1.31.1.1.1.8.49154|70|1070 +1.3.6.1.2.1.31.1.1.1.8.49155|70|184219 +1.3.6.1.2.1.31.1.1.1.8.49156|70|0 +1.3.6.1.2.1.31.1.1.1.8.49157|70|581 +1.3.6.1.2.1.31.1.1.1.8.49158|70|2230896 +1.3.6.1.2.1.31.1.1.1.8.49159|70|810 +1.3.6.1.2.1.31.1.1.1.8.49160|70|608 +1.3.6.1.2.1.31.1.1.1.8.49161|70|898 +1.3.6.1.2.1.31.1.1.1.8.49162|70|12 +1.3.6.1.2.1.31.1.1.1.8.49163|70|794614 +1.3.6.1.2.1.31.1.1.1.8.49164|70|0 +1.3.6.1.2.1.31.1.1.1.8.49165|70|762137 +1.3.6.1.2.1.31.1.1.1.8.49166|70|1482 +1.3.6.1.2.1.31.1.1.1.8.49167|70|11151622 +1.3.6.1.2.1.31.1.1.1.8.49168|70|344793 +1.3.6.1.2.1.31.1.1.1.8.49169|70|0 +1.3.6.1.2.1.31.1.1.1.8.49170|70|114796203 +1.3.6.1.2.1.31.1.1.1.9.254|70|0 +1.3.6.1.2.1.31.1.1.1.9.49153|70|536779 +1.3.6.1.2.1.31.1.1.1.9.49154|70|49515 +1.3.6.1.2.1.31.1.1.1.9.49155|70|78287 +1.3.6.1.2.1.31.1.1.1.9.49156|70|0 +1.3.6.1.2.1.31.1.1.1.9.49157|70|277 +1.3.6.1.2.1.31.1.1.1.9.49158|70|65024 +1.3.6.1.2.1.31.1.1.1.9.49159|70|559 +1.3.6.1.2.1.31.1.1.1.9.49160|70|542 +1.3.6.1.2.1.31.1.1.1.9.49161|70|627 +1.3.6.1.2.1.31.1.1.1.9.49162|70|10 +1.3.6.1.2.1.31.1.1.1.9.49163|70|40168 +1.3.6.1.2.1.31.1.1.1.9.49164|70|0 +1.3.6.1.2.1.31.1.1.1.9.49165|70|40323 +1.3.6.1.2.1.31.1.1.1.9.49166|70|22969 +1.3.6.1.2.1.31.1.1.1.9.49167|70|43351926 +1.3.6.1.2.1.31.1.1.1.9.49168|70|7106060 +1.3.6.1.2.1.31.1.1.1.9.49169|70|0 +1.3.6.1.2.1.31.1.1.1.9.49170|70|144083785 +1.3.6.1.2.1.31.1.1.1.10.254|70|1388853615 +1.3.6.1.2.1.31.1.1.1.10.49153|70|114826827978 +1.3.6.1.2.1.31.1.1.1.10.49154|70|10584215004 +1.3.6.1.2.1.31.1.1.1.10.49155|70|8186266653 +1.3.6.1.2.1.31.1.1.1.10.49156|70|0 +1.3.6.1.2.1.31.1.1.1.10.49157|70|17604643731 +1.3.6.1.2.1.31.1.1.1.10.49158|70|182588577985 +1.3.6.1.2.1.31.1.1.1.10.49159|70|191214336283 +1.3.6.1.2.1.31.1.1.1.10.49160|70|152166188896 +1.3.6.1.2.1.31.1.1.1.10.49161|70|68907234801 +1.3.6.1.2.1.31.1.1.1.10.49162|70|332521 +1.3.6.1.2.1.31.1.1.1.10.49163|70|11177287052 +1.3.6.1.2.1.31.1.1.1.10.49164|70|0 +1.3.6.1.2.1.31.1.1.1.10.49165|70|21815726399 +1.3.6.1.2.1.31.1.1.1.10.49166|70|1758266656 +1.3.6.1.2.1.31.1.1.1.10.49167|70|1144963888093 +1.3.6.1.2.1.31.1.1.1.10.49168|70|64647790135 +1.3.6.1.2.1.31.1.1.1.10.49169|70|0 +1.3.6.1.2.1.31.1.1.1.10.49170|70|743508882242 +1.3.6.1.2.1.31.1.1.1.11.254|70|0 +1.3.6.1.2.1.31.1.1.1.11.49153|70|207177889 +1.3.6.1.2.1.31.1.1.1.11.49154|70|22477785 +1.3.6.1.2.1.31.1.1.1.11.49155|70|6633574 +1.3.6.1.2.1.31.1.1.1.11.49156|70|0 +1.3.6.1.2.1.31.1.1.1.11.49157|70|14409112 +1.3.6.1.2.1.31.1.1.1.11.49158|70|178013477 +1.3.6.1.2.1.31.1.1.1.11.49159|70|149254973 +1.3.6.1.2.1.31.1.1.1.11.49160|70|137713241 +1.3.6.1.2.1.31.1.1.1.11.49161|70|66591032 +1.3.6.1.2.1.31.1.1.1.11.49162|70|7 +1.3.6.1.2.1.31.1.1.1.11.49163|70|6837146 +1.3.6.1.2.1.31.1.1.1.11.49164|70|0 +1.3.6.1.2.1.31.1.1.1.11.49165|70|13609337 +1.3.6.1.2.1.31.1.1.1.11.49166|70|40931 +1.3.6.1.2.1.31.1.1.1.11.49167|70|1193198524 +1.3.6.1.2.1.31.1.1.1.11.49168|70|27246418 +1.3.6.1.2.1.31.1.1.1.11.49169|70|0 +1.3.6.1.2.1.31.1.1.1.11.49170|70|1600630695 +1.3.6.1.2.1.31.1.1.1.12.254|70|0 +1.3.6.1.2.1.31.1.1.1.12.49153|70|12138689 +1.3.6.1.2.1.31.1.1.1.12.49154|70|2994056 +1.3.6.1.2.1.31.1.1.1.12.49155|70|43230807 +1.3.6.1.2.1.31.1.1.1.12.49156|70|0 +1.3.6.1.2.1.31.1.1.1.12.49157|70|32779343 +1.3.6.1.2.1.31.1.1.1.12.49158|70|23836260 +1.3.6.1.2.1.31.1.1.1.12.49159|70|26722541 +1.3.6.1.2.1.31.1.1.1.12.49160|70|26322505 +1.3.6.1.2.1.31.1.1.1.12.49161|70|24896468 +1.3.6.1.2.1.31.1.1.1.12.49162|70|836 +1.3.6.1.2.1.31.1.1.1.12.49163|70|34013054 +1.3.6.1.2.1.31.1.1.1.12.49164|70|0 +1.3.6.1.2.1.31.1.1.1.12.49165|70|40421749 +1.3.6.1.2.1.31.1.1.1.12.49166|70|25556125 +1.3.6.1.2.1.31.1.1.1.12.49167|70|143372832 +1.3.6.1.2.1.31.1.1.1.12.49168|70|134947782 +1.3.6.1.2.1.31.1.1.1.12.49169|70|0 +1.3.6.1.2.1.31.1.1.1.12.49170|70|16571613 +1.3.6.1.2.1.31.1.1.1.13.254|70|0 +1.3.6.1.2.1.31.1.1.1.13.49153|70|353377 +1.3.6.1.2.1.31.1.1.1.13.49154|70|521908 +1.3.6.1.2.1.31.1.1.1.13.49155|70|816145 +1.3.6.1.2.1.31.1.1.1.13.49156|70|0 +1.3.6.1.2.1.31.1.1.1.13.49157|70|520939 +1.3.6.1.2.1.31.1.1.1.13.49158|70|457577 +1.3.6.1.2.1.31.1.1.1.13.49159|70|520450 +1.3.6.1.2.1.31.1.1.1.13.49160|70|521911 +1.3.6.1.2.1.31.1.1.1.13.49161|70|482536 +1.3.6.1.2.1.31.1.1.1.13.49162|70|86 +1.3.6.1.2.1.31.1.1.1.13.49163|70|11799967 +1.3.6.1.2.1.31.1.1.1.13.49164|70|0 +1.3.6.1.2.1.31.1.1.1.13.49165|70|11795745 +1.3.6.1.2.1.31.1.1.1.13.49166|70|149865 +1.3.6.1.2.1.31.1.1.1.13.49167|70|149719349 +1.3.6.1.2.1.31.1.1.1.13.49168|70|167863720 +1.3.6.1.2.1.31.1.1.1.13.49169|70|0 +1.3.6.1.2.1.31.1.1.1.13.49170|70|51329075 +1.3.6.1.2.1.31.1.1.1.14.254|2|2 +1.3.6.1.2.1.31.1.1.1.14.49153|2|1 +1.3.6.1.2.1.31.1.1.1.14.49154|2|1 +1.3.6.1.2.1.31.1.1.1.14.49155|2|1 +1.3.6.1.2.1.31.1.1.1.14.49156|2|1 +1.3.6.1.2.1.31.1.1.1.14.49157|2|1 +1.3.6.1.2.1.31.1.1.1.14.49158|2|1 +1.3.6.1.2.1.31.1.1.1.14.49159|2|1 +1.3.6.1.2.1.31.1.1.1.14.49160|2|1 +1.3.6.1.2.1.31.1.1.1.14.49161|2|1 +1.3.6.1.2.1.31.1.1.1.14.49162|2|1 +1.3.6.1.2.1.31.1.1.1.14.49163|2|1 +1.3.6.1.2.1.31.1.1.1.14.49164|2|1 +1.3.6.1.2.1.31.1.1.1.14.49165|2|1 +1.3.6.1.2.1.31.1.1.1.14.49166|2|1 +1.3.6.1.2.1.31.1.1.1.14.49167|2|1 +1.3.6.1.2.1.31.1.1.1.14.49168|2|1 +1.3.6.1.2.1.31.1.1.1.14.49169|2|1 +1.3.6.1.2.1.31.1.1.1.14.49170|2|1 +1.3.6.1.2.1.31.1.1.1.15.254|66|0 +1.3.6.1.2.1.31.1.1.1.15.49153|66|100 +1.3.6.1.2.1.31.1.1.1.15.49154|66|0 +1.3.6.1.2.1.31.1.1.1.15.49155|66|100 +1.3.6.1.2.1.31.1.1.1.15.49156|66|0 +1.3.6.1.2.1.31.1.1.1.15.49157|66|0 +1.3.6.1.2.1.31.1.1.1.15.49158|66|0 +1.3.6.1.2.1.31.1.1.1.15.49159|66|0 +1.3.6.1.2.1.31.1.1.1.15.49160|66|0 +1.3.6.1.2.1.31.1.1.1.15.49161|66|0 +1.3.6.1.2.1.31.1.1.1.15.49162|66|0 +1.3.6.1.2.1.31.1.1.1.15.49163|66|0 +1.3.6.1.2.1.31.1.1.1.15.49164|66|0 +1.3.6.1.2.1.31.1.1.1.15.49165|66|0 +1.3.6.1.2.1.31.1.1.1.15.49166|66|100 +1.3.6.1.2.1.31.1.1.1.15.49167|66|1000 +1.3.6.1.2.1.31.1.1.1.15.49168|66|100 +1.3.6.1.2.1.31.1.1.1.15.49169|66|0 +1.3.6.1.2.1.31.1.1.1.15.49170|66|1000 +1.3.6.1.2.1.31.1.1.1.16.254|2|2 +1.3.6.1.2.1.31.1.1.1.16.49153|2|2 +1.3.6.1.2.1.31.1.1.1.16.49154|2|2 +1.3.6.1.2.1.31.1.1.1.16.49155|2|2 +1.3.6.1.2.1.31.1.1.1.16.49156|2|2 +1.3.6.1.2.1.31.1.1.1.16.49157|2|2 +1.3.6.1.2.1.31.1.1.1.16.49158|2|2 +1.3.6.1.2.1.31.1.1.1.16.49159|2|2 +1.3.6.1.2.1.31.1.1.1.16.49160|2|2 +1.3.6.1.2.1.31.1.1.1.16.49161|2|2 +1.3.6.1.2.1.31.1.1.1.16.49162|2|2 +1.3.6.1.2.1.31.1.1.1.16.49163|2|2 +1.3.6.1.2.1.31.1.1.1.16.49164|2|2 +1.3.6.1.2.1.31.1.1.1.16.49165|2|2 +1.3.6.1.2.1.31.1.1.1.16.49166|2|2 +1.3.6.1.2.1.31.1.1.1.16.49167|2|2 +1.3.6.1.2.1.31.1.1.1.16.49168|2|2 +1.3.6.1.2.1.31.1.1.1.16.49169|2|2 +1.3.6.1.2.1.31.1.1.1.16.49170|2|2 +1.3.6.1.2.1.31.1.1.1.17.254|2|1 +1.3.6.1.2.1.31.1.1.1.17.49153|2|1 +1.3.6.1.2.1.31.1.1.1.17.49154|2|1 +1.3.6.1.2.1.31.1.1.1.17.49155|2|1 +1.3.6.1.2.1.31.1.1.1.17.49156|2|1 +1.3.6.1.2.1.31.1.1.1.17.49157|2|1 +1.3.6.1.2.1.31.1.1.1.17.49158|2|1 +1.3.6.1.2.1.31.1.1.1.17.49159|2|1 +1.3.6.1.2.1.31.1.1.1.17.49160|2|1 +1.3.6.1.2.1.31.1.1.1.17.49161|2|1 +1.3.6.1.2.1.31.1.1.1.17.49162|2|1 +1.3.6.1.2.1.31.1.1.1.17.49163|2|1 +1.3.6.1.2.1.31.1.1.1.17.49164|2|1 +1.3.6.1.2.1.31.1.1.1.17.49165|2|1 +1.3.6.1.2.1.31.1.1.1.17.49166|2|1 +1.3.6.1.2.1.31.1.1.1.17.49167|2|1 +1.3.6.1.2.1.31.1.1.1.17.49168|2|1 +1.3.6.1.2.1.31.1.1.1.17.49169|2|1 +1.3.6.1.2.1.31.1.1.1.17.49170|2|1 +1.3.6.1.2.1.31.1.1.1.18.254|4|MGMNT +1.3.6.1.2.1.31.1.1.1.18.49153|4|MKR +1.3.6.1.2.1.31.1.1.1.18.49154|4|MKR +1.3.6.1.2.1.31.1.1.1.18.49155|4|MKR +1.3.6.1.2.1.31.1.1.1.18.49156|4|MKR +1.3.6.1.2.1.31.1.1.1.18.49157|4|LPA +1.3.6.1.2.1.31.1.1.1.18.49158|4|LPA +1.3.6.1.2.1.31.1.1.1.18.49159|4|LPA +1.3.6.1.2.1.31.1.1.1.18.49160|4|LPA +1.3.6.1.2.1.31.1.1.1.18.49161|4|LPA +1.3.6.1.2.1.31.1.1.1.18.49162|4|LPA +1.3.6.1.2.1.31.1.1.1.18.49163|4|PRN +1.3.6.1.2.1.31.1.1.1.18.49164|4|PRN +1.3.6.1.2.1.31.1.1.1.18.49165|4|PRN +1.3.6.1.2.1.31.1.1.1.18.49166|4|BANKA +1.3.6.1.2.1.31.1.1.1.18.49167|4|TRUNK +1.3.6.1.2.1.31.1.1.1.18.49168|4|TRUNK +1.3.6.1.2.1.31.1.1.1.18.49169|4|TRUNK +1.3.6.1.2.1.31.1.1.1.18.49170|4|TRUNK +1.3.6.1.2.1.31.1.1.1.19.254|67|0 +1.3.6.1.2.1.31.1.1.1.19.49153|67|0 +1.3.6.1.2.1.31.1.1.1.19.49154|67|0 +1.3.6.1.2.1.31.1.1.1.19.49155|67|0 +1.3.6.1.2.1.31.1.1.1.19.49156|67|0 +1.3.6.1.2.1.31.1.1.1.19.49157|67|0 +1.3.6.1.2.1.31.1.1.1.19.49158|67|0 +1.3.6.1.2.1.31.1.1.1.19.49159|67|0 +1.3.6.1.2.1.31.1.1.1.19.49160|67|0 +1.3.6.1.2.1.31.1.1.1.19.49161|67|0 +1.3.6.1.2.1.31.1.1.1.19.49162|67|0 +1.3.6.1.2.1.31.1.1.1.19.49163|67|0 +1.3.6.1.2.1.31.1.1.1.19.49164|67|0 +1.3.6.1.2.1.31.1.1.1.19.49165|67|0 +1.3.6.1.2.1.31.1.1.1.19.49166|67|0 +1.3.6.1.2.1.31.1.1.1.19.49167|67|0 +1.3.6.1.2.1.31.1.1.1.19.49168|67|0 +1.3.6.1.2.1.31.1.1.1.19.49169|67|0 +1.3.6.1.2.1.31.1.1.1.19.49170|67|0 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.1|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.2|2|2 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.19|2|19 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.39|2|39 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.40|2|40 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.99|2|99 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.100|2|100 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.200|2|200 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.254|2|254 +1.3.6.1.4.1.11863.6.14.1.2.1.1.1.1000|2|1000 +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.1|4|System-VLAN +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.2|4|GUEST +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.19|4|FINANS +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.39|4|MKR +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.40|4|LPA +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.99|4|BANKA +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.100|4|PRN +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.200|4|LAN +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.254|4|MGMNT +1.3.6.1.4.1.11863.6.14.1.2.1.1.2.1000|4|OLD_LAN +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.1|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.2|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.19|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.39|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.40|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.99|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.100|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.200|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.254|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.1000|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.1|4|1/0/15-18 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.2|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.19|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.39|4|1/0/1-4 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.40|4|1/0/5-10 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.99|4|1/0/14 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.100|4|1/0/11-13 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.200|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.254|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.1000|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.1|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.2|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.19|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.39|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.40|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.99|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.100|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.200|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.254|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.5.1000|4| +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.1|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.2|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.19|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.39|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.40|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.99|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.100|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.200|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.254|2|1 +1.3.6.1.4.1.11863.6.14.1.2.1.1.6.1000|2|1