diff --git a/includes/discovery/discovery-protocols.inc.php b/includes/discovery/discovery-protocols.inc.php index 2114c77d9d..0c352cde42 100644 --- a/includes/discovery/discovery-protocols.inc.php +++ b/includes/discovery/discovery-protocols.inc.php @@ -195,6 +195,44 @@ if (($device['os'] == 'routeros')) { } }//end foreach echo PHP_EOL; +} elseif (($device['os'] == 'jetstream')) { + echo ' JETSTREAM-LLDP MIB: '; + + $lldp_array = snmpwalk_group($device, 'lldpNeighborInfoEntry', 'TPLINK-LLDPINFO-MIB'); + + foreach ($lldp_array as $key => $lldp) { + $IndexId = key($lldp['lldpNeighborPortIndexId']); + + $local_ifName = $lldp['lldpNeighborPortId'][$IndexId]; + $local_port_id = find_port_id('gigabitEthernet ' . $local_ifName, null, $device['device_id']); + + $remote_device_id = find_device_id($lldp['lldpNeighborDeviceName'][$IndexId]); + $remote_device_name = $lldp['lldpNeighborDeviceName'][$IndexId]; + $remote_device_sysDescr = $lldp['lldpNeighborDeviceDescr'][$IndexId]; + $remote_device_ip = $lldp['lldpNeighborManageIpAddr'][$IndexId]; + $remote_port_descr = $lldp['lldpNeighborPortIdDescr'][$IndexId]; + $remote_port_id = find_port_id($remote_port_descr, null, $remote_device_id); + + if (! $remote_device_id && + \LibreNMS\Util\Validate::hostname($remote_device_name) && + ! can_skip_discovery($remote_device_name, $remote_device_ip) && + Config::get('autodiscovery.xdp') === true) { + $remote_device_id = discover_new_device($remote_device_name, $device, 'LLDP', $local_ifName); + } + + discover_link( + $local_port_id, //our port id from database + 'lldp', + $remote_port_id, //remote port id from database if applicable + $remote_device_name, //remote device name from SNMP walk + $remote_port_descr, //remote port description from SNMP walk + null, + $remote_device_sysDescr, //remote device description from SNMP walk + $device['device_id'], //our device id + $remote_device_id //remote device id if applicable + ); + } + echo PHP_EOL; } else { echo ' LLDP-MIB: '; $lldp_array = snmpwalk_group($device, 'lldpRemTable', 'LLDP-MIB', 3); diff --git a/mibs/tplink/TPLINK-LLDP-MIB b/mibs/tplink/TPLINK-LLDP-MIB new file mode 100644 index 0000000000..8257fded47 --- /dev/null +++ b/mibs/tplink/TPLINK-LLDP-MIB @@ -0,0 +1,20 @@ +TPLINK-LLDP-MIB DEFINITIONS ::= BEGIN + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE + FROM SNMPv2-SMI + tplinkMgmt + FROM TPLINK-MIB; + + + tplinkLldpMIB MODULE-IDENTITY + LAST-UPDATED "201212131730Z" + ORGANIZATION "TPLINK" + CONTACT-INFO "www.tplink.com" + DESCRIPTION "LLDP Private MIB." + REVISION "201212131730Z" + DESCRIPTION "Initial version of this MIB module." + ::= { tplinkMgmt 35 } + + tplinkLldpMIBObjects OBJECT IDENTIFIER ::= {tplinkLldpMIB 1} + tplinkLldpMIBNotifications OBJECT IDENTIFIER ::= {tplinkLldpMIB 2} +END \ No newline at end of file diff --git a/mibs/tplink/TPLINK-LLDPINFO-MIB b/mibs/tplink/TPLINK-LLDPINFO-MIB new file mode 100644 index 0000000000..72c98fbcb8 --- /dev/null +++ b/mibs/tplink/TPLINK-LLDPINFO-MIB @@ -0,0 +1,797 @@ + + TPLINK-LLDPINFO-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE,IpAddress + FROM SNMPv2-SMI + tplinkLldpMIBObjects + FROM TPLINK-LLDP-MIB + ifIndex + FROM RFC1213-MIB; + + lldpInfo OBJECT IDENTIFIER ::= {tplinkLldpMIBObjects 2} + + lldpLocalInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF LLDPLOCALINFOENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Local port information entries." + ::= { lldpInfo 1 } + + lldpLocalInfoEntry OBJECT-TYPE + SYNTAX LLDPLOCALINFOENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains of the information of local port of the switch." + INDEX { ifIndex } + ::= { lldpLocalInfoTable 1 } + + LLDPLOCALINFOENTRY ::= + SEQUENCE { + lldpLocalPortId + OCTET STRING, + lldpLocalChassisIdType + OCTET STRING, + lldpLocalChassisId + OCTET STRING, + lldpLocalPortIdType + OCTET STRING, + lldpLocalPortIdDescr + OCTET STRING, + lldpLocalTtl + INTEGER, + lldpLocalPortDescr + OCTET STRING, + lldpLocalDeviceName + OCTET STRING, + lldpLocalDeviceDescr + OCTET STRING, + lldpLocalCapAvailable + OCTET STRING, + lldpLocalCapEnabled + OCTET STRING, + lldpLocalManageIpAddr + IpAddress, + lldpLocalManageAddrType + OCTET STRING, + lldpLocalManageAddrInterfaceType + OCTET STRING, + lldpLocalManageAddrInterfaceId + INTEGER, + lldpLocalManageAddrOID + OCTET STRING, + lldpLocalPortAndProtocolVlanID + OCTET STRING, + lldpLocalVlanName + OCTET STRING, + lldpLocalAutoNegotiationSupported + INTEGER, + lldpLocalAutoNegotiationEnabled + INTEGER, + lldpLocalOperMau + OCTET STRING, + lldpLocalLinkAggregationSupported + INTEGER, + lldpLocalLinkAggregationEnabled + INTEGER, + lldpLocalAggregationPortId + INTEGER, + lldpLocalPowerPortClass + OCTET STRING, + lldpLocalPsePowerSupported + INTEGER, + lldpLocalPsePowerEnabled + INTEGER, + lldpLocalPsePairsControlAbility + INTEGER, + lldpLocalMaximumFrameSize + INTEGER + } + + + lldpLocalPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port index." + ::= { lldpLocalInfoEntry 1 } + + lldpLocalChassisIdType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the type of the chassis ID." + ::= { lldpLocalInfoEntry 2 } + + lldpLocalChassisId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the chassis ID." + ::= { lldpLocalInfoEntry 3 } + + lldpLocalPortIdType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the type of the port ID." + ::= { lldpLocalInfoEntry 4 } + + lldpLocalPortIdDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the description of the port ID." + ::= { lldpLocalInfoEntry 5 } + + lldpLocalTtl OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the TTL." + ::= { lldpLocalInfoEntry 6 } + + lldpLocalPortDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port description." + ::= { lldpLocalInfoEntry 7 } + + lldpLocalDeviceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system name." + ::= { lldpLocalInfoEntry 8 } + + lldpLocalDeviceDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system description." + ::= { lldpLocalInfoEntry 9 } + + lldpLocalCapAvailable OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system capabilities supported." + ::= { lldpLocalInfoEntry 10 } + + lldpLocalCapEnabled OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system capabilities enabled." + ::= { lldpLocalInfoEntry 11 } + + lldpLocalManageIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address." + ::= { lldpLocalInfoEntry 12 } + + lldpLocalManageAddrType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address type." + ::= { lldpLocalInfoEntry 13 } + + lldpLocalManageAddrInterfaceType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface type." + ::= { lldpLocalInfoEntry 14 } + + lldpLocalManageAddrInterfaceId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface ID." + ::= { lldpLocalInfoEntry 15 } + + lldpLocalManageAddrOID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address OID." + ::= { lldpLocalInfoEntry 16 } + + lldpLocalPortAndProtocolVlanID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port and protocol VLAN ID." + ::= { lldpLocalInfoEntry 17 } + + lldpLocalVlanName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port and protocol VLAN ID." + ::= { lldpLocalInfoEntry 18 } + + lldpLocalAutoNegotiationSupported OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the supported state of the auto-negotiation ." + ::= { lldpLocalInfoEntry 19 } + + lldpLocalAutoNegotiationEnabled OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the auto-negotiation ." + ::= { lldpLocalInfoEntry 20 } + + lldpLocalOperMau OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the OperMau." + ::= { lldpLocalInfoEntry 21 } + + lldpLocalLinkAggregationSupported OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the supported state of the link aggregation ." + ::= { lldpLocalInfoEntry 22 } + + lldpLocalLinkAggregationEnabled OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the link aggregation ." + ::= { lldpLocalInfoEntry 23 } + + lldpLocalAggregationPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the aggregation port id ." + ::= { lldpLocalInfoEntry 24 } + + lldpLocalPowerPortClass OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the power port class." + ::= { lldpLocalInfoEntry 25 } + + lldpLocalPsePowerSupported OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the supported state of the PSE power ." + ::= { lldpLocalInfoEntry 26 } + + lldpLocalPsePowerEnabled OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the PSE power." + ::= { lldpLocalInfoEntry 27 } + + lldpLocalPsePairsControlAbility OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the PSE pairs control." + ::= { lldpLocalInfoEntry 28 } + + lldpLocalMaximumFrameSize OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the size of the maximum frame." + ::= { lldpLocalInfoEntry 29 } + + + lldpNeighborInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF LLDPNEIGHBORINFOENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Neighbor port information entries." + ::= { lldpInfo 2 } + + lldpNeighborInfoEntry OBJECT-TYPE + SYNTAX LLDPNEIGHBORINFOENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains of the information of neighbor port of the switch." + INDEX { ifIndex , lldpNeighborPortIndexId} + ::= { lldpNeighborInfoTable 1 } + + LLDPNEIGHBORINFOENTRY ::= + SEQUENCE { + lldpNeighborPortId + OCTET STRING, + lldpNeighborPortIndexId + INTEGER, + lldpNeighborChassisIdType + OCTET STRING, + lldpNeighborChassisId + OCTET STRING, + lldpNeighborPortIdType + OCTET STRING, + lldpNeighborPortIdDescr + OCTET STRING, + lldpNeighborTtl + INTEGER, + lldpNeighborPortDescr + OCTET STRING, + lldpNeighborDeviceName + OCTET STRING, + lldpNeighborDeviceDescr + OCTET STRING, + lldpNeighborCapAvailable + OCTET STRING, + lldpNeighborCapEnabled + OCTET STRING, + lldpNeighborManageIpAddr + IpAddress, + lldpNeighborManageAddrType + OCTET STRING, + lldpNeighborManageAddrInterfaceType + OCTET STRING, + lldpNeighborManageAddrInterfaceId + INTEGER, + lldpNeighborManageAddrOID + OCTET STRING, + lldpNeighborPortAndProtocolVlanID + OCTET STRING, + lldpNeighborVlanName + OCTET STRING, + lldpNeighborProtocolIdentity + OCTET STRING, + lldpNeighborAutoNegotiationSupported + INTEGER, + lldpNeighborAutoNegotiationEnabled + INTEGER, + lldpNeighborOperMau + OCTET STRING, + lldpNeighborLinkAggregationSupported + INTEGER, + lldpNeighborLinkAggregationEnabled + INTEGER, + lldpNeighborAggregationPortId + INTEGER, + lldpNeighborPowerPortClass + OCTET STRING, + lldpNeighborPsePowerSupported + INTEGER, + lldpNeighborPsePowerEnabled + INTEGER, + lldpNeighborPsePairsControlAbility + INTEGER, + lldpNeighborMaximumFrameSize + INTEGER + } + + lldpNeighborPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port index." + ::= { lldpNeighborInfoEntry 1 } + + lldpNeighborPortIndexId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the neighbor index." + ::= { lldpNeighborInfoEntry 2 } + + lldpNeighborChassisIdType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the type of the chassis ID." + ::= { lldpNeighborInfoEntry 3 } + + lldpNeighborChassisId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the chassis ID." + ::= { lldpNeighborInfoEntry 4 } + + lldpNeighborPortIdType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the type of the port ID." + ::= { lldpNeighborInfoEntry 5 } + + lldpNeighborPortIdDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the description of the port ID." + ::= { lldpNeighborInfoEntry 6 } + + lldpNeighborTtl OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the TTL." + ::= { lldpNeighborInfoEntry 7 } + + lldpNeighborPortDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port description." + ::= { lldpNeighborInfoEntry 8 } + + lldpNeighborDeviceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system name." + ::= { lldpNeighborInfoEntry 9 } + + lldpNeighborDeviceDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system description." + ::= { lldpNeighborInfoEntry 10 } + + lldpNeighborCapAvailable OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system capabilities supported." + ::= { lldpNeighborInfoEntry 11 } + + lldpNeighborCapEnabled OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the system capabilities enabled." + ::= { lldpNeighborInfoEntry 12 } + + lldpNeighborManageIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address." + ::= { lldpNeighborInfoEntry 13 } + + lldpNeighborManageAddrType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address type." + ::= { lldpNeighborInfoEntry 14 } + + lldpNeighborManageAddrInterfaceType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface type." + ::= { lldpNeighborInfoEntry 15 } + + lldpNeighborManageAddrInterfaceId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface ID." + ::= { lldpNeighborInfoEntry 16 } + + lldpNeighborManageAddrOID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address OID." + ::= { lldpNeighborInfoEntry 17 } + + lldpNeighborPortAndProtocolVlanID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port and protocol VLAN ID tlv." + ::= { lldpNeighborInfoEntry 18 } + + lldpNeighborVlanName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the VLAN name tlv." + ::= { lldpNeighborInfoEntry 19 } + + lldpNeighborProtocolIdentity OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the protocol identity tlv." + ::= { lldpNeighborInfoEntry 20 } + + lldpNeighborAutoNegotiationSupported OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the supported state of the auto-negotiation ." + ::= { lldpNeighborInfoEntry 21 } + + lldpNeighborAutoNegotiationEnabled OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the auto-negotiation ." + ::= { lldpNeighborInfoEntry 22 } + + lldpNeighborOperMau OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the OperMau." + ::= { lldpNeighborInfoEntry 23 } + + lldpNeighborLinkAggregationSupported OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the supported state of the link aggregation ." + ::= { lldpNeighborInfoEntry 24 } + + lldpNeighborLinkAggregationEnabled OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the link aggregation ." + ::= { lldpNeighborInfoEntry 25 } + + lldpNeighborAggregationPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the aggregation port id ." + ::= { lldpNeighborInfoEntry 26 } + + lldpNeighborPowerPortClass OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the power port class." + ::= { lldpNeighborInfoEntry 27 } + + lldpNeighborPsePowerSupported OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the supported state of the PSE power ." + ::= { lldpNeighborInfoEntry 28 } + + lldpNeighborPsePowerEnabled OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the PSE power." + ::= { lldpNeighborInfoEntry 29 } + + lldpNeighborPsePairsControlAbility OBJECT-TYPE + SYNTAX INTEGER { + disable(0), --disable + enable(1) --enable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the enabled state of the PSE pairs control." + ::= { lldpNeighborInfoEntry 30 } + + lldpNeighborMaximumFrameSize OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the size of the maximum frame." + ::= { lldpNeighborInfoEntry 31 } + + lldpNeighborManAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF LLDPNEIGHBORMANADDRENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Neighbor management IP address information entries." + ::= { lldpInfo 3 } + + lldpNeighborManAddrEntry OBJECT-TYPE + SYNTAX LLDPNEIGHBORMANADDRENTRY + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains of the information of neighbor management address." + INDEX { ifIndex , lldpNeighborManAddrPortIndexId, lldpNeighborManAddrSubtype, lldpNeighborManAddr} + ::= { lldpNeighborManAddrTable 1 } + + LLDPNEIGHBORMANADDRENTRY ::= + SEQUENCE { + lldpNeighborManAddrPortId + OCTET STRING, + lldpNeighborManAddrPortIndexId + INTEGER, + lldpNeighborManAddrSubtype + INTEGER, + lldpNeighborManAddr + OCTET STRING, + lldpNeighborManAddrIfSubtype + INTEGER, + lldpNeighborManAddrIfId + INTEGER, + lldpNeighborManAddrIfOID + OCTET STRING + } + + lldpNeighborManAddrPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the port index." + ::= { lldpNeighborManAddrEntry 1 } + + lldpNeighborManAddrPortIndexId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the neighbor index." + ::= { lldpNeighborManAddrEntry 2 } + + lldpNeighborManAddrSubtype OBJECT-TYPE + SYNTAX INTEGER { + ipv4(1), + ipv6(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the neighbor index." + ::= { lldpNeighborManAddrEntry 3 } + + lldpNeighborManAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address." + ::= { lldpNeighborManAddrEntry 4 } + + lldpNeighborManAddrIfSubtype OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ifIndex(2), + sysPortNumber(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface ID subtype." + ::= { lldpNeighborManAddrEntry 5 } + + lldpNeighborManAddrIfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface ID." + ::= { lldpNeighborManAddrEntry 6 } + + lldpNeighborManAddrIfOID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the management address interface OID." + ::= { lldpNeighborManAddrEntry 7 } + END \ No newline at end of file diff --git a/tests/data/jetstream_jetstream-lldp.json b/tests/data/jetstream_jetstream-lldp.json new file mode 100644 index 0000000000..012b9a91d5 --- /dev/null +++ b/tests/data/jetstream_jetstream-lldp.json @@ -0,0 +1,7076 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.11863.5.28", + "sysDescr": "JetStream 24-Port Gigabit Smart Switch with 4 SFP Slots", + "sysContact": "", + "version": "3.0.6 Build 20200805 Rel.55968", + "hardware": "T1600G-28TS 3.0", + "features": null, + "os": "jetstream", + "type": "network", + "serial": "2199797000740", + "icon": "tplink.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "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-interface1", + "ifName": "Vlan-interface1", + "portName": null, + "ifIndex": 1, + "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": "SysVlan", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan-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": "MGMN", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/1", + "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": "PRN-K35", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/2", + "portName": null, + "ifIndex": 49154, + "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": "PRN-K34", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/3", + "portName": null, + "ifIndex": 49155, + "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-DIS", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/4", + "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": "PRN-DIS", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/5", + "portName": null, + "ifIndex": 49157, + "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": "LAN-Miroslav", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/6", + "portName": null, + "ifIndex": 49158, + "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": "LAN-Arpi", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/7", + "portName": null, + "ifIndex": 49159, + "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": "LAN-Dusan", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/8", + "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": "LAN-Dusica", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/9", + "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": "LAN-Eva", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/10", + "portName": null, + "ifIndex": 49162, + "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": "LAN-Bane", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/11", + "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": "Lan-Blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/12", + "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": "Lan-Blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/13", + "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": "Lan-Blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/14", + "portName": null, + "ifIndex": 49166, + "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": "Lan-Blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/15", + "portName": null, + "ifIndex": 49167, + "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": "blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/16", + "portName": null, + "ifIndex": 49168, + "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": "blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/17", + "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": "blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/18", + "portName": null, + "ifIndex": 49170, + "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": "blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/19", + "ifName": "gigabitEthernet 1/0/19", + "portName": null, + "ifIndex": 49171, + "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": "blank", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/20", + "ifName": "gigabitEthernet 1/0/20", + "portName": null, + "ifIndex": 49172, + "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-AP10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/21", + "ifName": "gigabitEthernet 1/0/21", + "portName": null, + "ifIndex": 49173, + "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-AP11", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/22", + "ifName": "gigabitEthernet 1/0/22", + "portName": null, + "ifIndex": 49174, + "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-AP33", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/23", + "ifName": "gigabitEthernet 1/0/23", + "portName": null, + "ifIndex": 49175, + "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-AP49", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/24", + "ifName": "gigabitEthernet 1/0/24", + "portName": null, + "ifIndex": 49176, + "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-AP35", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "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/25", + "ifName": "gigabitEthernet 1/0/25", + "portName": null, + "ifIndex": 49177, + "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/26", + "ifName": "gigabitEthernet 1/0/26", + "portName": null, + "ifIndex": 49178, + "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/27", + "ifName": "gigabitEthernet 1/0/27", + "portName": null, + "ifIndex": 49179, + "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/28", + "ifName": "gigabitEthernet 1/0/28", + "portName": null, + "ifIndex": 49180, + "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-UP", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_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-interface1", + "ifName": "Vlan-interface1", + "portName": null, + "ifIndex": 1, + "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": "SysVlan", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 6195, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": 5151330, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 66224203, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": 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": 2846, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan-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": "MGMN", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 6214, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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": 138141946, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 252537070, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": 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": 456784, + "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", + "ifName": "gigabitEthernet 1/0/1", + "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": "PRN-K35", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 152566981, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 433691, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 570087, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 167748998, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 597091350, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 7612, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1435027, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2127, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 434802, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/2", + "portName": null, + "ifIndex": 49154, + "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": "PRN-K34", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 6163, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 706215, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 792273, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 69649843, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 514715540, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 29, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2041248, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 33, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 604577, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/3", + "portName": null, + "ifIndex": 49155, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "PRN-DIS", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/4", + "ifName": "gigabitEthernet 1/0/4", + "portName": null, + "ifIndex": 49156, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "PRN-DIS", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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", + "ifName": "gigabitEthernet 1/0/5", + "portName": null, + "ifIndex": 49157, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LAN-Miroslav", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 133058271, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 6107430, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 9997995, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1317192191, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 9121064958, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 60932, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1743788, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 28696, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1311989, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/6", + "portName": null, + "ifIndex": 49158, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LAN-Arpi", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 150000657, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3246168, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4092893, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1605035594, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4455839911, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 69702, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1734895, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 15593, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1325273, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/7", + "portName": null, + "ifIndex": 49159, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "LAN-Dusan", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 72535709, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 648647, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 840645, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 348792195, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1433187980, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 1488, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1803296, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4815, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1335945, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/8", + "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": "LAN-Dusica", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/9", + "ifName": "gigabitEthernet 1/0/9", + "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": "LAN-Eva", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/10", + "ifName": "gigabitEthernet 1/0/10", + "portName": null, + "ifIndex": 49162, + "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": "LAN-Bane", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 147822422, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 5772324, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 22040473, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1103437774, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 29920268442, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 7356, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1798587, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2237, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1398955, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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", + "ifName": "gigabitEthernet 1/0/11", + "portName": null, + "ifIndex": 49163, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "Lan-Blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/12", + "ifName": "gigabitEthernet 1/0/12", + "portName": null, + "ifIndex": 49164, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "Lan-Blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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", + "ifName": "gigabitEthernet 1/0/13", + "portName": null, + "ifIndex": 49165, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "Lan-Blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/14", + "ifName": "gigabitEthernet 1/0/14", + "portName": null, + "ifIndex": 49166, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "Lan-Blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/15", + "ifName": "gigabitEthernet 1/0/15", + "portName": null, + "ifIndex": 49167, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/16", + "ifName": "gigabitEthernet 1/0/16", + "portName": null, + "ifIndex": 49168, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/17", + "ifName": "gigabitEthernet 1/0/17", + "portName": null, + "ifIndex": 49169, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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", + "ifName": "gigabitEthernet 1/0/18", + "portName": null, + "ifIndex": 49170, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/19", + "ifName": "gigabitEthernet 1/0/19", + "portName": null, + "ifIndex": 49171, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "blank", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/20", + "ifName": "gigabitEthernet 1/0/20", + "portName": null, + "ifIndex": 49172, + "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-AP10", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 155844354, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 57170398, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 63086536, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 5016104210, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 23788191560, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 549387, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 14740299, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 49169, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 4038998, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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/21", + "ifName": "gigabitEthernet 1/0/21", + "portName": null, + "ifIndex": 49173, + "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-AP11", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 155844822, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3555066, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4720440, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1003816087, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6546959366, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 557971, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 14647887, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 50997, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 3959530, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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/22", + "ifName": "gigabitEthernet 1/0/22", + "portName": null, + "ifIndex": 49174, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "Trunk-AP33", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/23", + "ifName": "gigabitEthernet 1/0/23", + "portName": null, + "ifIndex": 49175, + "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-AP49", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 155859334, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3353991, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5230055, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1470955024, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 8177987937, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 588700, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 14657819, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 177849, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 3851024, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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/24", + "ifName": "gigabitEthernet 1/0/24", + "portName": null, + "ifIndex": 49176, + "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-AP35", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 155976139, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3362216, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 10142388, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 918925707, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 15252686847, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 553718, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 14693204, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 63440, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 3966398, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "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/25", + "ifName": "gigabitEthernet 1/0/25", + "portName": null, + "ifIndex": 49177, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/26", + "ifName": "gigabitEthernet 1/0/26", + "portName": null, + "ifIndex": 49178, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/27", + "ifName": "gigabitEthernet 1/0/27", + "portName": null, + "ifIndex": 49179, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1518, + "ifType": "ethernetCsmacd", + "ifAlias": "TRUNK", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 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/28", + "ifName": "gigabitEthernet 1/0/28", + "portName": null, + "ifIndex": 49180, + "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-UP", + "ifPhysAddress": "74da88682ad7", + "ifHardType": null, + "ifLastChange": 6408, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 122346077, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 85282123, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 87476909642, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13419452624, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 14775968, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2568232, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4828435, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 362924, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.11863.6.4.1.1.1.1.2.1", + "processor_index": "1", + "processor_type": "jetstream", + "processor_usage": 78, + "processor_descr": "Proc #1", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "mempool_type": "jetstream", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Memory #1", + "mempool_perc": 39, + "mempool_perc_oid": ".1.3.6.1.4.1.11863.6.4.1.2.1.1.2.1", + "mempool_used": 39, + "mempool_used_oid": null, + "mempool_free": 61, + "mempool_free_oid": null, + "mempool_total": 100, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "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": 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": "MGMN", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 1, + "baseport": 49167, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49168, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49169, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49170, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49171, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49172, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49173, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49174, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49175, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49176, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49177, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49178, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49179, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 49180, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 2, + "baseport": 49172, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49173, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49174, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49175, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49176, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49177, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49178, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49179, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 2, + "baseport": 49180, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 19, + "baseport": 49172, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 19, + "baseport": 49180, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49153, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 49154, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 49155, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 49156, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 49172, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49173, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49174, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49175, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49176, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49177, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49178, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49179, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 49180, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49157, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49158, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49159, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49160, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49161, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49162, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49163, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49164, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49165, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49166, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 200, + "baseport": 49172, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49173, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49174, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49175, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49176, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49177, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49178, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49179, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, + "baseport": 49180, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49172, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49173, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49174, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49175, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49176, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49177, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49178, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49179, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, + "baseport": 49180, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/jetstream_jetstream-lldp.snmprec b/tests/snmpsim/jetstream_jetstream-lldp.snmprec new file mode 100644 index 0000000000..295afbf086 --- /dev/null +++ b/tests/snmpsim/jetstream_jetstream-lldp.snmprec @@ -0,0 +1,1661 @@ +1.3.6.1.2.1.1.1.0|4|JetStream 24-Port Gigabit Smart Switch with 4 SFP Slots +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11863.5.28 +1.3.6.1.2.1.1.3.0|67|158804173 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.1|4|Vlan-interface1 +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 +1.3.6.1.2.1.2.2.1.2.49154|4|gigabitEthernet 1/0/2 +1.3.6.1.2.1.2.2.1.2.49155|4|gigabitEthernet 1/0/3 +1.3.6.1.2.1.2.2.1.2.49156|4|gigabitEthernet 1/0/4 +1.3.6.1.2.1.2.2.1.2.49157|4|gigabitEthernet 1/0/5 +1.3.6.1.2.1.2.2.1.2.49158|4|gigabitEthernet 1/0/6 +1.3.6.1.2.1.2.2.1.2.49159|4|gigabitEthernet 1/0/7 +1.3.6.1.2.1.2.2.1.2.49160|4|gigabitEthernet 1/0/8 +1.3.6.1.2.1.2.2.1.2.49161|4|gigabitEthernet 1/0/9 +1.3.6.1.2.1.2.2.1.2.49162|4|gigabitEthernet 1/0/10 +1.3.6.1.2.1.2.2.1.2.49163|4|gigabitEthernet 1/0/11 +1.3.6.1.2.1.2.2.1.2.49164|4|gigabitEthernet 1/0/12 +1.3.6.1.2.1.2.2.1.2.49165|4|gigabitEthernet 1/0/13 +1.3.6.1.2.1.2.2.1.2.49166|4|gigabitEthernet 1/0/14 +1.3.6.1.2.1.2.2.1.2.49167|4|gigabitEthernet 1/0/15 +1.3.6.1.2.1.2.2.1.2.49168|4|gigabitEthernet 1/0/16 +1.3.6.1.2.1.2.2.1.2.49169|4|gigabitEthernet 1/0/17 +1.3.6.1.2.1.2.2.1.2.49170|4|gigabitEthernet 1/0/18 +1.3.6.1.2.1.2.2.1.2.49171|4|gigabitEthernet 1/0/19 +1.3.6.1.2.1.2.2.1.2.49172|4|gigabitEthernet 1/0/20 +1.3.6.1.2.1.2.2.1.2.49173|4|gigabitEthernet 1/0/21 +1.3.6.1.2.1.2.2.1.2.49174|4|gigabitEthernet 1/0/22 +1.3.6.1.2.1.2.2.1.2.49175|4|gigabitEthernet 1/0/23 +1.3.6.1.2.1.2.2.1.2.49176|4|gigabitEthernet 1/0/24 +1.3.6.1.2.1.2.2.1.2.49177|4|gigabitEthernet 1/0/25 +1.3.6.1.2.1.2.2.1.2.49178|4|gigabitEthernet 1/0/26 +1.3.6.1.2.1.2.2.1.2.49179|4|gigabitEthernet 1/0/27 +1.3.6.1.2.1.2.2.1.2.49180|4|gigabitEthernet 1/0/28 +1.3.6.1.2.1.2.2.1.3.1|2|6 +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.3.49171|2|6 +1.3.6.1.2.1.2.2.1.3.49172|2|6 +1.3.6.1.2.1.2.2.1.3.49173|2|6 +1.3.6.1.2.1.2.2.1.3.49174|2|6 +1.3.6.1.2.1.2.2.1.3.49175|2|6 +1.3.6.1.2.1.2.2.1.3.49176|2|6 +1.3.6.1.2.1.2.2.1.3.49177|2|6 +1.3.6.1.2.1.2.2.1.3.49178|2|6 +1.3.6.1.2.1.2.2.1.3.49179|2|6 +1.3.6.1.2.1.2.2.1.3.49180|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +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.4.49171|2|1518 +1.3.6.1.2.1.2.2.1.4.49172|2|1518 +1.3.6.1.2.1.2.2.1.4.49173|2|1518 +1.3.6.1.2.1.2.2.1.4.49174|2|1518 +1.3.6.1.2.1.2.2.1.4.49175|2|1518 +1.3.6.1.2.1.2.2.1.4.49176|2|1518 +1.3.6.1.2.1.2.2.1.4.49177|2|1518 +1.3.6.1.2.1.2.2.1.4.49178|2|1518 +1.3.6.1.2.1.2.2.1.4.49179|2|1518 +1.3.6.1.2.1.2.2.1.4.49180|2|1518 +1.3.6.1.2.1.2.2.1.6.1|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.254|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49153|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49154|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49155|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49156|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49157|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49158|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49159|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49160|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49161|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49162|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49163|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49164|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49165|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49166|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49167|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49168|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49169|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49170|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49171|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49172|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49173|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49174|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49175|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49176|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49177|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49178|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49179|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.6.49180|4x|74DA88682AD7 +1.3.6.1.2.1.2.2.1.7.1|2|1 +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|2 +1.3.6.1.2.1.2.2.1.7.49156|2|2 +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|2 +1.3.6.1.2.1.2.2.1.7.49164|2|2 +1.3.6.1.2.1.2.2.1.7.49165|2|2 +1.3.6.1.2.1.2.2.1.7.49166|2|2 +1.3.6.1.2.1.2.2.1.7.49167|2|2 +1.3.6.1.2.1.2.2.1.7.49168|2|2 +1.3.6.1.2.1.2.2.1.7.49169|2|2 +1.3.6.1.2.1.2.2.1.7.49170|2|2 +1.3.6.1.2.1.2.2.1.7.49171|2|2 +1.3.6.1.2.1.2.2.1.7.49172|2|1 +1.3.6.1.2.1.2.2.1.7.49173|2|1 +1.3.6.1.2.1.2.2.1.7.49174|2|2 +1.3.6.1.2.1.2.2.1.7.49175|2|1 +1.3.6.1.2.1.2.2.1.7.49176|2|1 +1.3.6.1.2.1.2.2.1.7.49177|2|2 +1.3.6.1.2.1.2.2.1.7.49178|2|2 +1.3.6.1.2.1.2.2.1.7.49179|2|2 +1.3.6.1.2.1.2.2.1.7.49180|2|1 +1.3.6.1.2.1.2.2.1.8.1|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|1 +1.3.6.1.2.1.2.2.1.8.49155|2|2 +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|1 +1.3.6.1.2.1.2.2.1.8.49158|2|1 +1.3.6.1.2.1.2.2.1.8.49159|2|1 +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|1 +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|2 +1.3.6.1.2.1.2.2.1.8.49167|2|2 +1.3.6.1.2.1.2.2.1.8.49168|2|2 +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|2 +1.3.6.1.2.1.2.2.1.8.49171|2|2 +1.3.6.1.2.1.2.2.1.8.49172|2|1 +1.3.6.1.2.1.2.2.1.8.49173|2|1 +1.3.6.1.2.1.2.2.1.8.49174|2|2 +1.3.6.1.2.1.2.2.1.8.49175|2|1 +1.3.6.1.2.1.2.2.1.8.49176|2|1 +1.3.6.1.2.1.2.2.1.8.49177|2|2 +1.3.6.1.2.1.2.2.1.8.49178|2|2 +1.3.6.1.2.1.2.2.1.8.49179|2|2 +1.3.6.1.2.1.2.2.1.8.49180|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|6195 +1.3.6.1.2.1.2.2.1.9.254|67|6214 +1.3.6.1.2.1.2.2.1.9.49153|67|152566981 +1.3.6.1.2.1.2.2.1.9.49154|67|6163 +1.3.6.1.2.1.2.2.1.9.49155|67|0 +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|133058271 +1.3.6.1.2.1.2.2.1.9.49158|67|150000657 +1.3.6.1.2.1.2.2.1.9.49159|67|72535709 +1.3.6.1.2.1.2.2.1.9.49160|67|0 +1.3.6.1.2.1.2.2.1.9.49161|67|0 +1.3.6.1.2.1.2.2.1.9.49162|67|147822422 +1.3.6.1.2.1.2.2.1.9.49163|67|0 +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|0 +1.3.6.1.2.1.2.2.1.9.49166|67|0 +1.3.6.1.2.1.2.2.1.9.49167|67|0 +1.3.6.1.2.1.2.2.1.9.49168|67|0 +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|0 +1.3.6.1.2.1.2.2.1.9.49171|67|0 +1.3.6.1.2.1.2.2.1.9.49172|67|155844354 +1.3.6.1.2.1.2.2.1.9.49173|67|155844822 +1.3.6.1.2.1.2.2.1.9.49174|67|0 +1.3.6.1.2.1.2.2.1.9.49175|67|155859334 +1.3.6.1.2.1.2.2.1.9.49176|67|155976139 +1.3.6.1.2.1.2.2.1.9.49177|67|0 +1.3.6.1.2.1.2.2.1.9.49178|67|0 +1.3.6.1.2.1.2.2.1.9.49179|67|0 +1.3.6.1.2.1.2.2.1.9.49180|67|6408 +1.3.6.1.2.1.2.2.1.13.1|65|0 +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.13.49171|65|0 +1.3.6.1.2.1.2.2.1.13.49172|65|0 +1.3.6.1.2.1.2.2.1.13.49173|65|0 +1.3.6.1.2.1.2.2.1.13.49174|65|0 +1.3.6.1.2.1.2.2.1.13.49175|65|0 +1.3.6.1.2.1.2.2.1.13.49176|65|0 +1.3.6.1.2.1.2.2.1.13.49177|65|0 +1.3.6.1.2.1.2.2.1.13.49178|65|0 +1.3.6.1.2.1.2.2.1.13.49179|65|0 +1.3.6.1.2.1.2.2.1.13.49180|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.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.14.49171|65|0 +1.3.6.1.2.1.2.2.1.14.49172|65|0 +1.3.6.1.2.1.2.2.1.14.49173|65|0 +1.3.6.1.2.1.2.2.1.14.49174|65|0 +1.3.6.1.2.1.2.2.1.14.49175|65|0 +1.3.6.1.2.1.2.2.1.14.49176|65|0 +1.3.6.1.2.1.2.2.1.14.49177|65|0 +1.3.6.1.2.1.2.2.1.14.49178|65|0 +1.3.6.1.2.1.2.2.1.14.49179|65|0 +1.3.6.1.2.1.2.2.1.14.49180|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.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.19.49171|65|0 +1.3.6.1.2.1.2.2.1.19.49172|65|0 +1.3.6.1.2.1.2.2.1.19.49173|65|0 +1.3.6.1.2.1.2.2.1.19.49174|65|0 +1.3.6.1.2.1.2.2.1.19.49175|65|0 +1.3.6.1.2.1.2.2.1.19.49176|65|0 +1.3.6.1.2.1.2.2.1.19.49177|65|0 +1.3.6.1.2.1.2.2.1.19.49178|65|0 +1.3.6.1.2.1.2.2.1.19.49179|65|0 +1.3.6.1.2.1.2.2.1.19.49180|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.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.2.2.1.20.49171|65|0 +1.3.6.1.2.1.2.2.1.20.49172|65|0 +1.3.6.1.2.1.2.2.1.20.49173|65|0 +1.3.6.1.2.1.2.2.1.20.49174|65|0 +1.3.6.1.2.1.2.2.1.20.49175|65|0 +1.3.6.1.2.1.2.2.1.20.49176|65|0 +1.3.6.1.2.1.2.2.1.20.49177|65|0 +1.3.6.1.2.1.2.2.1.20.49178|65|0 +1.3.6.1.2.1.2.2.1.20.49179|65|0 +1.3.6.1.2.1.2.2.1.20.49180|65|0 +1.3.6.1.2.1.4.3.0|65|3255708 +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|3255706 +1.3.6.1.2.1.4.10.0|65|3250542 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|8 +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.35|2|254 +1.3.6.1.2.1.4.20.1.2.169.254.254.35|2|1 +1.3.6.1.2.1.4.20.1.3.169.254.102.35|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.169.254.254.35|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.1.169.254.254.26|4x|98DAC4733A5E +1.3.6.1.2.1.4.22.1.2.1.169.254.254.27|4x|AC84C600CBC1 +1.3.6.1.2.1.4.22.1.2.1.169.254.254.39|4x|B04E267C45CF +1.3.6.1.2.1.5.1.0|65|1186676 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|1170531 +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|16145 +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|1186678 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|1170533 +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|16145 +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|1 +1.3.6.1.2.1.6.6.0|65|459 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|1 +1.3.6.1.2.1.6.9.0|66|2 +1.3.6.1.2.1.6.10.0|65|6685 +1.3.6.1.2.1.6.11.0|65|7884 +1.3.6.1.2.1.6.12.0|65|9 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|2 +1.3.6.1.2.1.7.1.0|65|885469 +1.3.6.1.2.1.7.2.0|65|1170533 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|2056000 +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.10.7.2.1.19.49171|2|3 +1.3.6.1.2.1.10.7.2.1.19.49172|2|3 +1.3.6.1.2.1.10.7.2.1.19.49173|2|3 +1.3.6.1.2.1.10.7.2.1.19.49174|2|3 +1.3.6.1.2.1.10.7.2.1.19.49175|2|3 +1.3.6.1.2.1.10.7.2.1.19.49176|2|3 +1.3.6.1.2.1.10.7.2.1.19.49177|2|3 +1.3.6.1.2.1.10.7.2.1.19.49178|2|3 +1.3.6.1.2.1.10.7.2.1.19.49179|2|3 +1.3.6.1.2.1.10.7.2.1.19.49180|2|3 +1.3.6.1.2.1.17.1.1.0|4x|74DA88682AD7 +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.1.4.1.2.49171|2|49171 +1.3.6.1.2.1.17.1.4.1.2.49172|2|49172 +1.3.6.1.2.1.17.1.4.1.2.49173|2|49173 +1.3.6.1.2.1.17.1.4.1.2.49174|2|49174 +1.3.6.1.2.1.17.1.4.1.2.49175|2|49175 +1.3.6.1.2.1.17.1.4.1.2.49176|2|49176 +1.3.6.1.2.1.17.1.4.1.2.49177|2|49177 +1.3.6.1.2.1.17.1.4.1.2.49178|2|49178 +1.3.6.1.2.1.17.1.4.1.2.49179|2|49179 +1.3.6.1.2.1.17.1.4.1.2.49180|2|49180 +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|2132800 +1.3.6.1.2.1.17.2.4.0|65|282 +1.3.6.1.2.1.17.2.5.0|4x|40000264329FBC02 +1.3.6.1.2.1.17.2.6.0|2|30000 +1.3.6.1.2.1.17.2.7.0|2|28 +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.1.49171|2|19 +1.3.6.1.2.1.17.2.15.1.1.49172|2|20 +1.3.6.1.2.1.17.2.15.1.1.49173|2|21 +1.3.6.1.2.1.17.2.15.1.1.49174|2|22 +1.3.6.1.2.1.17.2.15.1.1.49175|2|23 +1.3.6.1.2.1.17.2.15.1.1.49176|2|24 +1.3.6.1.2.1.17.2.15.1.1.49177|2|25 +1.3.6.1.2.1.17.2.15.1.1.49178|2|26 +1.3.6.1.2.1.17.2.15.1.1.49179|2|27 +1.3.6.1.2.1.17.2.15.1.1.49180|2|28 +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.2.49171|2|128 +1.3.6.1.2.1.17.2.15.1.2.49172|2|128 +1.3.6.1.2.1.17.2.15.1.2.49173|2|128 +1.3.6.1.2.1.17.2.15.1.2.49174|2|128 +1.3.6.1.2.1.17.2.15.1.2.49175|2|128 +1.3.6.1.2.1.17.2.15.1.2.49176|2|128 +1.3.6.1.2.1.17.2.15.1.2.49177|2|128 +1.3.6.1.2.1.17.2.15.1.2.49178|2|128 +1.3.6.1.2.1.17.2.15.1.2.49179|2|128 +1.3.6.1.2.1.17.2.15.1.2.49180|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|1 +1.3.6.1.2.1.17.2.15.1.3.49171|2|1 +1.3.6.1.2.1.17.2.15.1.3.49172|2|1 +1.3.6.1.2.1.17.2.15.1.3.49173|2|1 +1.3.6.1.2.1.17.2.15.1.3.49174|2|1 +1.3.6.1.2.1.17.2.15.1.3.49175|2|1 +1.3.6.1.2.1.17.2.15.1.3.49176|2|1 +1.3.6.1.2.1.17.2.15.1.3.49177|2|1 +1.3.6.1.2.1.17.2.15.1.3.49178|2|1 +1.3.6.1.2.1.17.2.15.1.3.49179|2|1 +1.3.6.1.2.1.17.2.15.1.3.49180|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|2 +1.3.6.1.2.1.17.2.15.1.4.49170|2|2 +1.3.6.1.2.1.17.2.15.1.4.49171|2|2 +1.3.6.1.2.1.17.2.15.1.4.49172|2|2 +1.3.6.1.2.1.17.2.15.1.4.49173|2|2 +1.3.6.1.2.1.17.2.15.1.4.49174|2|2 +1.3.6.1.2.1.17.2.15.1.4.49175|2|2 +1.3.6.1.2.1.17.2.15.1.4.49176|2|2 +1.3.6.1.2.1.17.2.15.1.4.49177|2|2 +1.3.6.1.2.1.17.2.15.1.4.49178|2|2 +1.3.6.1.2.1.17.2.15.1.4.49179|2|2 +1.3.6.1.2.1.17.2.15.1.4.49180|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|65535 +1.3.6.1.2.1.17.2.15.1.5.49171|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49172|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49173|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49174|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49175|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49176|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49177|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49178|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49179|2|65535 +1.3.6.1.2.1.17.2.15.1.5.49180|2|20000 +1.3.6.1.2.1.17.2.15.1.6.49153|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49154|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49155|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49156|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49157|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49158|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49159|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49160|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49161|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49162|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49163|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49164|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49165|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49166|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49167|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49168|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49169|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49170|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49171|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49172|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49173|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49174|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49175|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49176|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49177|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49178|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49179|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.6.49180|4x|40000264329FBC02 +1.3.6.1.2.1.17.2.15.1.7.49153|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49154|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49155|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49156|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49157|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49158|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49159|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49160|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49161|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49162|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49163|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49164|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49165|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49166|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49167|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49168|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49169|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49170|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49171|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49172|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49173|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49174|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49175|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49176|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49177|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49178|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49179|2|30000 +1.3.6.1.2.1.17.2.15.1.7.49180|2|10000 +1.3.6.1.2.1.17.2.15.1.8.49153|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49154|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49155|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49156|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49157|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49158|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49159|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49160|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49161|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49162|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49163|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49164|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49165|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49166|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49167|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49168|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49169|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49170|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49171|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49172|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49173|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49174|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49175|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49176|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49177|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49178|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49179|4x|800074DA88682AD7 +1.3.6.1.2.1.17.2.15.1.8.49180|4x|8000E828C126B9C0 +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|8012 +1.3.6.1.2.1.17.2.15.1.9.49171|4x|8013 +1.3.6.1.2.1.17.2.15.1.9.49172|4x|8014 +1.3.6.1.2.1.17.2.15.1.9.49173|4x|8015 +1.3.6.1.2.1.17.2.15.1.9.49174|4x|8016 +1.3.6.1.2.1.17.2.15.1.9.49175|4x|8017 +1.3.6.1.2.1.17.2.15.1.9.49176|4x|8018 +1.3.6.1.2.1.17.2.15.1.9.49177|4x|8019 +1.3.6.1.2.1.17.2.15.1.9.49178|4x|801A +1.3.6.1.2.1.17.2.15.1.9.49179|4x|801B +1.3.6.1.2.1.17.2.15.1.9.49180|4x|8031 +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|0 +1.3.6.1.2.1.17.2.15.1.10.49171|65|0 +1.3.6.1.2.1.17.2.15.1.10.49172|65|0 +1.3.6.1.2.1.17.2.15.1.10.49173|65|0 +1.3.6.1.2.1.17.2.15.1.10.49174|65|0 +1.3.6.1.2.1.17.2.15.1.10.49175|65|0 +1.3.6.1.2.1.17.2.15.1.10.49176|65|0 +1.3.6.1.2.1.17.2.15.1.10.49177|65|0 +1.3.6.1.2.1.17.2.15.1.10.49178|65|0 +1.3.6.1.2.1.17.2.15.1.10.49179|65|0 +1.3.6.1.2.1.17.2.15.1.10.49180|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.100.0.0.72.79.36.247|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.228.231.73.93.208.137|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.244.48.185.41.13.226|2|28 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.128.48.224.46.26.13|2|28 +1.3.6.1.2.1.31.1.1.1.1.1|4|Vlan-interface1 +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 +1.3.6.1.2.1.31.1.1.1.1.49154|4|gigabitEthernet 1/0/2 +1.3.6.1.2.1.31.1.1.1.1.49155|4|gigabitEthernet 1/0/3 +1.3.6.1.2.1.31.1.1.1.1.49156|4|gigabitEthernet 1/0/4 +1.3.6.1.2.1.31.1.1.1.1.49157|4|gigabitEthernet 1/0/5 +1.3.6.1.2.1.31.1.1.1.1.49158|4|gigabitEthernet 1/0/6 +1.3.6.1.2.1.31.1.1.1.1.49159|4|gigabitEthernet 1/0/7 +1.3.6.1.2.1.31.1.1.1.1.49160|4|gigabitEthernet 1/0/8 +1.3.6.1.2.1.31.1.1.1.1.49161|4|gigabitEthernet 1/0/9 +1.3.6.1.2.1.31.1.1.1.1.49162|4|gigabitEthernet 1/0/10 +1.3.6.1.2.1.31.1.1.1.1.49163|4|gigabitEthernet 1/0/11 +1.3.6.1.2.1.31.1.1.1.1.49164|4|gigabitEthernet 1/0/12 +1.3.6.1.2.1.31.1.1.1.1.49165|4|gigabitEthernet 1/0/13 +1.3.6.1.2.1.31.1.1.1.1.49166|4|gigabitEthernet 1/0/14 +1.3.6.1.2.1.31.1.1.1.1.49167|4|gigabitEthernet 1/0/15 +1.3.6.1.2.1.31.1.1.1.1.49168|4|gigabitEthernet 1/0/16 +1.3.6.1.2.1.31.1.1.1.1.49169|4|gigabitEthernet 1/0/17 +1.3.6.1.2.1.31.1.1.1.1.49170|4|gigabitEthernet 1/0/18 +1.3.6.1.2.1.31.1.1.1.1.49171|4|gigabitEthernet 1/0/19 +1.3.6.1.2.1.31.1.1.1.1.49172|4|gigabitEthernet 1/0/20 +1.3.6.1.2.1.31.1.1.1.1.49173|4|gigabitEthernet 1/0/21 +1.3.6.1.2.1.31.1.1.1.1.49174|4|gigabitEthernet 1/0/22 +1.3.6.1.2.1.31.1.1.1.1.49175|4|gigabitEthernet 1/0/23 +1.3.6.1.2.1.31.1.1.1.1.49176|4|gigabitEthernet 1/0/24 +1.3.6.1.2.1.31.1.1.1.1.49177|4|gigabitEthernet 1/0/25 +1.3.6.1.2.1.31.1.1.1.1.49178|4|gigabitEthernet 1/0/26 +1.3.6.1.2.1.31.1.1.1.1.49179|4|gigabitEthernet 1/0/27 +1.3.6.1.2.1.31.1.1.1.1.49180|4|gigabitEthernet 1/0/28 +1.3.6.1.2.1.31.1.1.1.2.1|65|2846 +1.3.6.1.2.1.31.1.1.1.2.254|65|456783 +1.3.6.1.2.1.31.1.1.1.2.49153|65|2127 +1.3.6.1.2.1.31.1.1.1.2.49154|65|33 +1.3.6.1.2.1.31.1.1.1.2.49155|65|0 +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|28696 +1.3.6.1.2.1.31.1.1.1.2.49158|65|15593 +1.3.6.1.2.1.31.1.1.1.2.49159|65|4815 +1.3.6.1.2.1.31.1.1.1.2.49160|65|0 +1.3.6.1.2.1.31.1.1.1.2.49161|65|0 +1.3.6.1.2.1.31.1.1.1.2.49162|65|2237 +1.3.6.1.2.1.31.1.1.1.2.49163|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.2.49166|65|0 +1.3.6.1.2.1.31.1.1.1.2.49167|65|0 +1.3.6.1.2.1.31.1.1.1.2.49168|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.2.49171|65|0 +1.3.6.1.2.1.31.1.1.1.2.49172|65|49169 +1.3.6.1.2.1.31.1.1.1.2.49173|65|50997 +1.3.6.1.2.1.31.1.1.1.2.49174|65|0 +1.3.6.1.2.1.31.1.1.1.2.49175|65|177848 +1.3.6.1.2.1.31.1.1.1.2.49176|65|63440 +1.3.6.1.2.1.31.1.1.1.2.49177|65|0 +1.3.6.1.2.1.31.1.1.1.2.49178|65|0 +1.3.6.1.2.1.31.1.1.1.2.49179|65|0 +1.3.6.1.2.1.31.1.1.1.2.49180|65|4828429 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.254|65|0 +1.3.6.1.2.1.31.1.1.1.3.49153|65|7612 +1.3.6.1.2.1.31.1.1.1.3.49154|65|29 +1.3.6.1.2.1.31.1.1.1.3.49155|65|0 +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|60932 +1.3.6.1.2.1.31.1.1.1.3.49158|65|69702 +1.3.6.1.2.1.31.1.1.1.3.49159|65|1488 +1.3.6.1.2.1.31.1.1.1.3.49160|65|0 +1.3.6.1.2.1.31.1.1.1.3.49161|65|0 +1.3.6.1.2.1.31.1.1.1.3.49162|65|7356 +1.3.6.1.2.1.31.1.1.1.3.49163|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.3.49166|65|0 +1.3.6.1.2.1.31.1.1.1.3.49167|65|0 +1.3.6.1.2.1.31.1.1.1.3.49168|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.3.49171|65|0 +1.3.6.1.2.1.31.1.1.1.3.49172|65|549385 +1.3.6.1.2.1.31.1.1.1.3.49173|65|557969 +1.3.6.1.2.1.31.1.1.1.3.49174|65|0 +1.3.6.1.2.1.31.1.1.1.3.49175|65|588698 +1.3.6.1.2.1.31.1.1.1.3.49176|65|553716 +1.3.6.1.2.1.31.1.1.1.3.49177|65|0 +1.3.6.1.2.1.31.1.1.1.3.49178|65|0 +1.3.6.1.2.1.31.1.1.1.3.49179|65|0 +1.3.6.1.2.1.31.1.1.1.3.49180|65|14775929 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.254|65|0 +1.3.6.1.2.1.31.1.1.1.4.49153|65|434800 +1.3.6.1.2.1.31.1.1.1.4.49154|65|604576 +1.3.6.1.2.1.31.1.1.1.4.49155|65|0 +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|1311988 +1.3.6.1.2.1.31.1.1.1.4.49158|65|1325273 +1.3.6.1.2.1.31.1.1.1.4.49159|65|1335945 +1.3.6.1.2.1.31.1.1.1.4.49160|65|0 +1.3.6.1.2.1.31.1.1.1.4.49161|65|0 +1.3.6.1.2.1.31.1.1.1.4.49162|65|1398955 +1.3.6.1.2.1.31.1.1.1.4.49163|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.4.49166|65|0 +1.3.6.1.2.1.31.1.1.1.4.49167|65|0 +1.3.6.1.2.1.31.1.1.1.4.49168|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.4.49171|65|0 +1.3.6.1.2.1.31.1.1.1.4.49172|65|4038994 +1.3.6.1.2.1.31.1.1.1.4.49173|65|3959526 +1.3.6.1.2.1.31.1.1.1.4.49174|65|0 +1.3.6.1.2.1.31.1.1.1.4.49175|65|3851020 +1.3.6.1.2.1.31.1.1.1.4.49176|65|3966393 +1.3.6.1.2.1.31.1.1.1.4.49177|65|0 +1.3.6.1.2.1.31.1.1.1.4.49178|65|0 +1.3.6.1.2.1.31.1.1.1.4.49179|65|0 +1.3.6.1.2.1.31.1.1.1.4.49180|65|362924 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.254|65|0 +1.3.6.1.2.1.31.1.1.1.5.49153|65|1435026 +1.3.6.1.2.1.31.1.1.1.5.49154|65|2041247 +1.3.6.1.2.1.31.1.1.1.5.49155|65|0 +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|1743787 +1.3.6.1.2.1.31.1.1.1.5.49158|65|1734894 +1.3.6.1.2.1.31.1.1.1.5.49159|65|1803294 +1.3.6.1.2.1.31.1.1.1.5.49160|65|0 +1.3.6.1.2.1.31.1.1.1.5.49161|65|0 +1.3.6.1.2.1.31.1.1.1.5.49162|65|1798585 +1.3.6.1.2.1.31.1.1.1.5.49163|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.5.49166|65|0 +1.3.6.1.2.1.31.1.1.1.5.49167|65|0 +1.3.6.1.2.1.31.1.1.1.5.49168|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.5.49171|65|0 +1.3.6.1.2.1.31.1.1.1.5.49172|65|14740234 +1.3.6.1.2.1.31.1.1.1.5.49173|65|14647822 +1.3.6.1.2.1.31.1.1.1.5.49174|65|0 +1.3.6.1.2.1.31.1.1.1.5.49175|65|14657754 +1.3.6.1.2.1.31.1.1.1.5.49176|65|14693139 +1.3.6.1.2.1.31.1.1.1.5.49177|65|0 +1.3.6.1.2.1.31.1.1.1.5.49178|65|0 +1.3.6.1.2.1.31.1.1.1.5.49179|65|0 +1.3.6.1.2.1.31.1.1.1.5.49180|65|2568219 +1.3.6.1.2.1.31.1.1.1.6.1|70|5151330 +1.3.6.1.2.1.31.1.1.1.6.254|70|138141946 +1.3.6.1.2.1.31.1.1.1.6.49153|70|167748998 +1.3.6.1.2.1.31.1.1.1.6.49154|70|69649843 +1.3.6.1.2.1.31.1.1.1.6.49155|70|0 +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|1317192191 +1.3.6.1.2.1.31.1.1.1.6.49158|70|1605035594 +1.3.6.1.2.1.31.1.1.1.6.49159|70|348792195 +1.3.6.1.2.1.31.1.1.1.6.49160|70|0 +1.3.6.1.2.1.31.1.1.1.6.49161|70|0 +1.3.6.1.2.1.31.1.1.1.6.49162|70|1103437774 +1.3.6.1.2.1.31.1.1.1.6.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.6.49166|70|0 +1.3.6.1.2.1.31.1.1.1.6.49167|70|0 +1.3.6.1.2.1.31.1.1.1.6.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.6.49171|70|0 +1.3.6.1.2.1.31.1.1.1.6.49172|70|5016104210 +1.3.6.1.2.1.31.1.1.1.6.49173|70|1003816087 +1.3.6.1.2.1.31.1.1.1.6.49174|70|0 +1.3.6.1.2.1.31.1.1.1.6.49175|70|1470955024 +1.3.6.1.2.1.31.1.1.1.6.49176|70|918925707 +1.3.6.1.2.1.31.1.1.1.6.49177|70|0 +1.3.6.1.2.1.31.1.1.1.6.49178|70|0 +1.3.6.1.2.1.31.1.1.1.6.49179|70|0 +1.3.6.1.2.1.31.1.1.1.6.49180|70|87476909642 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +1.3.6.1.2.1.31.1.1.1.7.254|70|0 +1.3.6.1.2.1.31.1.1.1.7.49153|70|433691 +1.3.6.1.2.1.31.1.1.1.7.49154|70|706215 +1.3.6.1.2.1.31.1.1.1.7.49155|70|0 +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|6107430 +1.3.6.1.2.1.31.1.1.1.7.49158|70|3246168 +1.3.6.1.2.1.31.1.1.1.7.49159|70|648647 +1.3.6.1.2.1.31.1.1.1.7.49160|70|0 +1.3.6.1.2.1.31.1.1.1.7.49161|70|0 +1.3.6.1.2.1.31.1.1.1.7.49162|70|5772324 +1.3.6.1.2.1.31.1.1.1.7.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.7.49166|70|0 +1.3.6.1.2.1.31.1.1.1.7.49167|70|0 +1.3.6.1.2.1.31.1.1.1.7.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.7.49171|70|0 +1.3.6.1.2.1.31.1.1.1.7.49172|70|57170398 +1.3.6.1.2.1.31.1.1.1.7.49173|70|3555066 +1.3.6.1.2.1.31.1.1.1.7.49174|70|0 +1.3.6.1.2.1.31.1.1.1.7.49175|70|3353991 +1.3.6.1.2.1.31.1.1.1.7.49176|70|3362216 +1.3.6.1.2.1.31.1.1.1.7.49177|70|0 +1.3.6.1.2.1.31.1.1.1.7.49178|70|0 +1.3.6.1.2.1.31.1.1.1.7.49179|70|0 +1.3.6.1.2.1.31.1.1.1.7.49180|70|122346077 +1.3.6.1.2.1.31.1.1.1.8.1|70|2846 +1.3.6.1.2.1.31.1.1.1.8.254|70|456784 +1.3.6.1.2.1.31.1.1.1.8.49153|70|2127 +1.3.6.1.2.1.31.1.1.1.8.49154|70|33 +1.3.6.1.2.1.31.1.1.1.8.49155|70|0 +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|28696 +1.3.6.1.2.1.31.1.1.1.8.49158|70|15593 +1.3.6.1.2.1.31.1.1.1.8.49159|70|4815 +1.3.6.1.2.1.31.1.1.1.8.49160|70|0 +1.3.6.1.2.1.31.1.1.1.8.49161|70|0 +1.3.6.1.2.1.31.1.1.1.8.49162|70|2237 +1.3.6.1.2.1.31.1.1.1.8.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.8.49166|70|0 +1.3.6.1.2.1.31.1.1.1.8.49167|70|0 +1.3.6.1.2.1.31.1.1.1.8.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.8.49171|70|0 +1.3.6.1.2.1.31.1.1.1.8.49172|70|49169 +1.3.6.1.2.1.31.1.1.1.8.49173|70|50997 +1.3.6.1.2.1.31.1.1.1.8.49174|70|0 +1.3.6.1.2.1.31.1.1.1.8.49175|70|177849 +1.3.6.1.2.1.31.1.1.1.8.49176|70|63440 +1.3.6.1.2.1.31.1.1.1.8.49177|70|0 +1.3.6.1.2.1.31.1.1.1.8.49178|70|0 +1.3.6.1.2.1.31.1.1.1.8.49179|70|0 +1.3.6.1.2.1.31.1.1.1.8.49180|70|4828435 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.254|70|0 +1.3.6.1.2.1.31.1.1.1.9.49153|70|7612 +1.3.6.1.2.1.31.1.1.1.9.49154|70|29 +1.3.6.1.2.1.31.1.1.1.9.49155|70|0 +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|60932 +1.3.6.1.2.1.31.1.1.1.9.49158|70|69702 +1.3.6.1.2.1.31.1.1.1.9.49159|70|1488 +1.3.6.1.2.1.31.1.1.1.9.49160|70|0 +1.3.6.1.2.1.31.1.1.1.9.49161|70|0 +1.3.6.1.2.1.31.1.1.1.9.49162|70|7356 +1.3.6.1.2.1.31.1.1.1.9.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.9.49166|70|0 +1.3.6.1.2.1.31.1.1.1.9.49167|70|0 +1.3.6.1.2.1.31.1.1.1.9.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.9.49171|70|0 +1.3.6.1.2.1.31.1.1.1.9.49172|70|549387 +1.3.6.1.2.1.31.1.1.1.9.49173|70|557971 +1.3.6.1.2.1.31.1.1.1.9.49174|70|0 +1.3.6.1.2.1.31.1.1.1.9.49175|70|588700 +1.3.6.1.2.1.31.1.1.1.9.49176|70|553718 +1.3.6.1.2.1.31.1.1.1.9.49177|70|0 +1.3.6.1.2.1.31.1.1.1.9.49178|70|0 +1.3.6.1.2.1.31.1.1.1.9.49179|70|0 +1.3.6.1.2.1.31.1.1.1.9.49180|70|14775968 +1.3.6.1.2.1.31.1.1.1.10.1|70|66224203 +1.3.6.1.2.1.31.1.1.1.10.254|70|252537070 +1.3.6.1.2.1.31.1.1.1.10.49153|70|597091350 +1.3.6.1.2.1.31.1.1.1.10.49154|70|514715540 +1.3.6.1.2.1.31.1.1.1.10.49155|70|0 +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|9121064958 +1.3.6.1.2.1.31.1.1.1.10.49158|70|4455839911 +1.3.6.1.2.1.31.1.1.1.10.49159|70|1433187980 +1.3.6.1.2.1.31.1.1.1.10.49160|70|0 +1.3.6.1.2.1.31.1.1.1.10.49161|70|0 +1.3.6.1.2.1.31.1.1.1.10.49162|70|29920268442 +1.3.6.1.2.1.31.1.1.1.10.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.10.49166|70|0 +1.3.6.1.2.1.31.1.1.1.10.49167|70|0 +1.3.6.1.2.1.31.1.1.1.10.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.10.49171|70|0 +1.3.6.1.2.1.31.1.1.1.10.49172|70|23788191560 +1.3.6.1.2.1.31.1.1.1.10.49173|70|6546959366 +1.3.6.1.2.1.31.1.1.1.10.49174|70|0 +1.3.6.1.2.1.31.1.1.1.10.49175|70|8177987937 +1.3.6.1.2.1.31.1.1.1.10.49176|70|15252686847 +1.3.6.1.2.1.31.1.1.1.10.49177|70|0 +1.3.6.1.2.1.31.1.1.1.10.49178|70|0 +1.3.6.1.2.1.31.1.1.1.10.49179|70|0 +1.3.6.1.2.1.31.1.1.1.10.49180|70|13419452624 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.254|70|0 +1.3.6.1.2.1.31.1.1.1.11.49153|70|570087 +1.3.6.1.2.1.31.1.1.1.11.49154|70|792273 +1.3.6.1.2.1.31.1.1.1.11.49155|70|0 +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|9997995 +1.3.6.1.2.1.31.1.1.1.11.49158|70|4092893 +1.3.6.1.2.1.31.1.1.1.11.49159|70|840645 +1.3.6.1.2.1.31.1.1.1.11.49160|70|0 +1.3.6.1.2.1.31.1.1.1.11.49161|70|0 +1.3.6.1.2.1.31.1.1.1.11.49162|70|22040473 +1.3.6.1.2.1.31.1.1.1.11.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.11.49166|70|0 +1.3.6.1.2.1.31.1.1.1.11.49167|70|0 +1.3.6.1.2.1.31.1.1.1.11.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.11.49171|70|0 +1.3.6.1.2.1.31.1.1.1.11.49172|70|63086536 +1.3.6.1.2.1.31.1.1.1.11.49173|70|4720440 +1.3.6.1.2.1.31.1.1.1.11.49174|70|0 +1.3.6.1.2.1.31.1.1.1.11.49175|70|5230055 +1.3.6.1.2.1.31.1.1.1.11.49176|70|10142388 +1.3.6.1.2.1.31.1.1.1.11.49177|70|0 +1.3.6.1.2.1.31.1.1.1.11.49178|70|0 +1.3.6.1.2.1.31.1.1.1.11.49179|70|0 +1.3.6.1.2.1.31.1.1.1.11.49180|70|85282123 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.254|70|0 +1.3.6.1.2.1.31.1.1.1.12.49153|70|434802 +1.3.6.1.2.1.31.1.1.1.12.49154|70|604577 +1.3.6.1.2.1.31.1.1.1.12.49155|70|0 +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|1311989 +1.3.6.1.2.1.31.1.1.1.12.49158|70|1325273 +1.3.6.1.2.1.31.1.1.1.12.49159|70|1335945 +1.3.6.1.2.1.31.1.1.1.12.49160|70|0 +1.3.6.1.2.1.31.1.1.1.12.49161|70|0 +1.3.6.1.2.1.31.1.1.1.12.49162|70|1398955 +1.3.6.1.2.1.31.1.1.1.12.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.12.49166|70|0 +1.3.6.1.2.1.31.1.1.1.12.49167|70|0 +1.3.6.1.2.1.31.1.1.1.12.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.12.49171|70|0 +1.3.6.1.2.1.31.1.1.1.12.49172|70|4038998 +1.3.6.1.2.1.31.1.1.1.12.49173|70|3959530 +1.3.6.1.2.1.31.1.1.1.12.49174|70|0 +1.3.6.1.2.1.31.1.1.1.12.49175|70|3851024 +1.3.6.1.2.1.31.1.1.1.12.49176|70|3966398 +1.3.6.1.2.1.31.1.1.1.12.49177|70|0 +1.3.6.1.2.1.31.1.1.1.12.49178|70|0 +1.3.6.1.2.1.31.1.1.1.12.49179|70|0 +1.3.6.1.2.1.31.1.1.1.12.49180|70|362924 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.254|70|0 +1.3.6.1.2.1.31.1.1.1.13.49153|70|1435027 +1.3.6.1.2.1.31.1.1.1.13.49154|70|2041248 +1.3.6.1.2.1.31.1.1.1.13.49155|70|0 +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|1743788 +1.3.6.1.2.1.31.1.1.1.13.49158|70|1734895 +1.3.6.1.2.1.31.1.1.1.13.49159|70|1803296 +1.3.6.1.2.1.31.1.1.1.13.49160|70|0 +1.3.6.1.2.1.31.1.1.1.13.49161|70|0 +1.3.6.1.2.1.31.1.1.1.13.49162|70|1798587 +1.3.6.1.2.1.31.1.1.1.13.49163|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.13.49166|70|0 +1.3.6.1.2.1.31.1.1.1.13.49167|70|0 +1.3.6.1.2.1.31.1.1.1.13.49168|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.13.49171|70|0 +1.3.6.1.2.1.31.1.1.1.13.49172|70|14740299 +1.3.6.1.2.1.31.1.1.1.13.49173|70|14647887 +1.3.6.1.2.1.31.1.1.1.13.49174|70|0 +1.3.6.1.2.1.31.1.1.1.13.49175|70|14657819 +1.3.6.1.2.1.31.1.1.1.13.49176|70|14693204 +1.3.6.1.2.1.31.1.1.1.13.49177|70|0 +1.3.6.1.2.1.31.1.1.1.13.49178|70|0 +1.3.6.1.2.1.31.1.1.1.13.49179|70|0 +1.3.6.1.2.1.31.1.1.1.13.49180|70|2568232 +1.3.6.1.2.1.31.1.1.1.14.1|2|2 +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.14.49171|2|1 +1.3.6.1.2.1.31.1.1.1.14.49172|2|1 +1.3.6.1.2.1.31.1.1.1.14.49173|2|1 +1.3.6.1.2.1.31.1.1.1.14.49174|2|1 +1.3.6.1.2.1.31.1.1.1.14.49175|2|1 +1.3.6.1.2.1.31.1.1.1.14.49176|2|1 +1.3.6.1.2.1.31.1.1.1.14.49177|2|1 +1.3.6.1.2.1.31.1.1.1.14.49178|2|1 +1.3.6.1.2.1.31.1.1.1.14.49179|2|1 +1.3.6.1.2.1.31.1.1.1.14.49180|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +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|100 +1.3.6.1.2.1.31.1.1.1.15.49155|66|0 +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|10 +1.3.6.1.2.1.31.1.1.1.15.49158|66|10 +1.3.6.1.2.1.31.1.1.1.15.49159|66|10 +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|1000 +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|0 +1.3.6.1.2.1.31.1.1.1.15.49167|66|0 +1.3.6.1.2.1.31.1.1.1.15.49168|66|0 +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|0 +1.3.6.1.2.1.31.1.1.1.15.49171|66|0 +1.3.6.1.2.1.31.1.1.1.15.49172|66|100 +1.3.6.1.2.1.31.1.1.1.15.49173|66|100 +1.3.6.1.2.1.31.1.1.1.15.49174|66|0 +1.3.6.1.2.1.31.1.1.1.15.49175|66|100 +1.3.6.1.2.1.31.1.1.1.15.49176|66|100 +1.3.6.1.2.1.31.1.1.1.15.49177|66|0 +1.3.6.1.2.1.31.1.1.1.15.49178|66|0 +1.3.6.1.2.1.31.1.1.1.15.49179|66|0 +1.3.6.1.2.1.31.1.1.1.15.49180|66|1000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.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.16.49171|2|2 +1.3.6.1.2.1.31.1.1.1.16.49172|2|2 +1.3.6.1.2.1.31.1.1.1.16.49173|2|2 +1.3.6.1.2.1.31.1.1.1.16.49174|2|2 +1.3.6.1.2.1.31.1.1.1.16.49175|2|2 +1.3.6.1.2.1.31.1.1.1.16.49176|2|2 +1.3.6.1.2.1.31.1.1.1.16.49177|2|2 +1.3.6.1.2.1.31.1.1.1.16.49178|2|2 +1.3.6.1.2.1.31.1.1.1.16.49179|2|2 +1.3.6.1.2.1.31.1.1.1.16.49180|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|1 +1.3.6.1.2.1.31.1.1.1.17.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.17.49171|2|1 +1.3.6.1.2.1.31.1.1.1.17.49172|2|1 +1.3.6.1.2.1.31.1.1.1.17.49173|2|1 +1.3.6.1.2.1.31.1.1.1.17.49174|2|1 +1.3.6.1.2.1.31.1.1.1.17.49175|2|1 +1.3.6.1.2.1.31.1.1.1.17.49176|2|1 +1.3.6.1.2.1.31.1.1.1.17.49177|2|1 +1.3.6.1.2.1.31.1.1.1.17.49178|2|1 +1.3.6.1.2.1.31.1.1.1.17.49179|2|1 +1.3.6.1.2.1.31.1.1.1.17.49180|2|1 +1.3.6.1.2.1.31.1.1.1.18.1|4|SysVlan +1.3.6.1.2.1.31.1.1.1.18.254|4|MGMN +1.3.6.1.2.1.31.1.1.1.18.49153|4|PRN-K35 +1.3.6.1.2.1.31.1.1.1.18.49154|4|PRN-K34 +1.3.6.1.2.1.31.1.1.1.18.49155|4|PRN-DIS +1.3.6.1.2.1.31.1.1.1.18.49156|4|PRN-DIS +1.3.6.1.2.1.31.1.1.1.18.49157|4|LAN-Miroslav +1.3.6.1.2.1.31.1.1.1.18.49158|4|LAN-Arpi +1.3.6.1.2.1.31.1.1.1.18.49159|4|LAN-Dusan +1.3.6.1.2.1.31.1.1.1.18.49160|4|LAN-Dusica +1.3.6.1.2.1.31.1.1.1.18.49161|4|LAN-Eva +1.3.6.1.2.1.31.1.1.1.18.49162|4|LAN-Bane +1.3.6.1.2.1.31.1.1.1.18.49163|4|Lan-Blank +1.3.6.1.2.1.31.1.1.1.18.49164|4|Lan-Blank +1.3.6.1.2.1.31.1.1.1.18.49165|4|Lan-Blank +1.3.6.1.2.1.31.1.1.1.18.49166|4|Lan-Blank +1.3.6.1.2.1.31.1.1.1.18.49167|4|blank +1.3.6.1.2.1.31.1.1.1.18.49168|4|blank +1.3.6.1.2.1.31.1.1.1.18.49169|4|blank +1.3.6.1.2.1.31.1.1.1.18.49170|4|blank +1.3.6.1.2.1.31.1.1.1.18.49171|4|blank +1.3.6.1.2.1.31.1.1.1.18.49172|4|Trunk-AP10 +1.3.6.1.2.1.31.1.1.1.18.49173|4|Trunk-AP11 +1.3.6.1.2.1.31.1.1.1.18.49174|4|Trunk-AP33 +1.3.6.1.2.1.31.1.1.1.18.49175|4|Trunk-AP49 +1.3.6.1.2.1.31.1.1.1.18.49176|4|Trunk-AP35 +1.3.6.1.2.1.31.1.1.1.18.49177|4|TRUNK +1.3.6.1.2.1.31.1.1.1.18.49178|4|TRUNK +1.3.6.1.2.1.31.1.1.1.18.49179|4|TRUNK +1.3.6.1.2.1.31.1.1.1.18.49180|4|Trunk-UP +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.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.2.1.31.1.1.1.19.49171|67|0 +1.3.6.1.2.1.31.1.1.1.19.49172|67|0 +1.3.6.1.2.1.31.1.1.1.19.49173|67|0 +1.3.6.1.2.1.31.1.1.1.19.49174|67|0 +1.3.6.1.2.1.31.1.1.1.19.49175|67|0 +1.3.6.1.2.1.31.1.1.1.19.49176|67|0 +1.3.6.1.2.1.31.1.1.1.19.49177|67|0 +1.3.6.1.2.1.31.1.1.1.19.49178|67|0 +1.3.6.1.2.1.31.1.1.1.19.49179|67|0 +1.3.6.1.2.1.31.1.1.1.19.49180|67|0 +1.3.6.1.4.1.11863.6.1.1.5.0|4|T1600G-28TS 3.0 +1.3.6.1.4.1.11863.6.1.1.6.0|4|3.0.6 Build 20200805 Rel.55968 +1.3.6.1.4.1.11863.6.1.1.8.0|4|2199797000740 +1.3.6.1.4.1.11863.6.4.1.1.1.1.2.1|2|78 +1.3.6.1.4.1.11863.6.4.1.2.1.1.2.1|2|39 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49153|4|1/0/1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49154|4|1/0/2 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49155|4|1/0/3 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49156|4|1/0/4 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49157|4|1/0/5 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49158|4|1/0/6 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49159|4|1/0/7 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49160|4|1/0/8 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49161|4|1/0/9 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49162|4|1/0/10 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49163|4|1/0/11 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49164|4|1/0/12 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49165|4|1/0/13 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49166|4|1/0/14 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49167|4|1/0/15 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49168|4|1/0/16 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49169|4|1/0/17 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49170|4|1/0/18 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49171|4|1/0/19 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49172|4|1/0/20 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49173|4|1/0/21 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49174|4|1/0/22 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49175|4|1/0/23 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49176|4|1/0/24 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49177|4|1/0/25 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49178|4|1/0/26 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49179|4|1/0/27 +1.3.6.1.4.1.11863.6.14.1.1.1.1.1.49180|4|1/0/28 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49153|2|100 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49154|2|100 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49155|2|100 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49156|2|100 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49157|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49158|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49159|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49160|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49161|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49162|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49163|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49164|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49165|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49166|2|200 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49167|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49168|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49169|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49170|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49171|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49172|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49173|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49174|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49175|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49176|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49177|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49178|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49179|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.2.49180|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49153|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49154|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49155|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49156|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49157|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49158|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49159|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49160|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49161|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49162|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49163|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49164|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49165|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49166|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49167|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49168|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49169|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49170|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49171|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49172|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49173|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49174|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49175|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49176|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49177|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49178|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49179|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.3.49180|2|1 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49153|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49154|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49155|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49156|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49157|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49158|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49159|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49160|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49161|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49162|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49163|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49164|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49165|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49166|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49167|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49168|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49169|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49170|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49171|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49172|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49173|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49174|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49175|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49176|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49177|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49178|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49179|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.4.49180|2|0 +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49153|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49154|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49155|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49156|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49157|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49158|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49159|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49160|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49161|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49162|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49163|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49164|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49165|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49166|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49167|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49168|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49169|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49170|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49171|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49172|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49173|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49174|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49175|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49176|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49177|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49178|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49179|4|N/A +1.3.6.1.4.1.11863.6.14.1.1.1.1.5.49180|4|N/A +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.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.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.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|MGMN +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/20-28 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.19|4|1/0/20,1/0/28 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.100|4|1/0/20-28 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.200|4|1/0/20-28 +1.3.6.1.4.1.11863.6.14.1.2.1.1.3.254|4|1/0/20-28 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.1|4|1/0/15-28 +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.100|4|1/0/1-4 +1.3.6.1.4.1.11863.6.14.1.2.1.1.4.200|4|1/0/5-14 +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.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.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.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.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.35.1.2.2.1.1.49172.1|4|1/0/20 +1.3.6.1.4.1.11863.6.35.1.2.2.1.1.49173.1|4|1/0/21 +1.3.6.1.4.1.11863.6.35.1.2.2.1.1.49175.1|4|1/0/23 +1.3.6.1.4.1.11863.6.35.1.2.2.1.1.49176.1|4|1/0/24 +1.3.6.1.4.1.11863.6.35.1.2.2.1.1.49180.1|4|1/0/28 +1.3.6.1.4.1.11863.6.35.1.2.2.1.2.49172.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.2.49173.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.2.49175.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.2.49176.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.2.49180.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.3.49172.1|4|MAC address +1.3.6.1.4.1.11863.6.35.1.2.2.1.3.49173.1|4|MAC address +1.3.6.1.4.1.11863.6.35.1.2.2.1.3.49175.1|4|MAC address +1.3.6.1.4.1.11863.6.35.1.2.2.1.3.49176.1|4|MAC address +1.3.6.1.4.1.11863.6.35.1.2.2.1.3.49180.1|4|MAC address +1.3.6.1.4.1.11863.6.35.1.2.2.1.4.49172.1|4|B0:4E:26:5E:0E:98 +1.3.6.1.4.1.11863.6.35.1.2.2.1.4.49173.1|4|1C:3B:F3:A9:A4:90 +1.3.6.1.4.1.11863.6.35.1.2.2.1.4.49175.1|4|C4:E9:84:7E:9D:4B +1.3.6.1.4.1.11863.6.35.1.2.2.1.4.49176.1|4|60:E3:27:23:EB:D9 +1.3.6.1.4.1.11863.6.35.1.2.2.1.4.49180.1|4|E8:28:C1:26:B9:C0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.5.49172.1|4|Interface name +1.3.6.1.4.1.11863.6.35.1.2.2.1.5.49173.1|4|Interface name +1.3.6.1.4.1.11863.6.35.1.2.2.1.5.49175.1|4|Interface name +1.3.6.1.4.1.11863.6.35.1.2.2.1.5.49176.1|4|Interface name +1.3.6.1.4.1.11863.6.35.1.2.2.1.5.49180.1|4|Interface name +1.3.6.1.4.1.11863.6.35.1.2.2.1.6.49172.1|4|eth0.1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.6.49173.1|4|eth0.1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.6.49175.1|4|eth1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.6.49176.1|4|eth1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.6.49180.1|4|gi1/0/1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.7.49172.1|2|120 +1.3.6.1.4.1.11863.6.35.1.2.2.1.7.49173.1|2|120 +1.3.6.1.4.1.11863.6.35.1.2.2.1.7.49175.1|2|120 +1.3.6.1.4.1.11863.6.35.1.2.2.1.7.49176.1|2|120 +1.3.6.1.4.1.11863.6.35.1.2.2.1.7.49180.1|2|120 +1.3.6.1.4.1.11863.6.35.1.2.2.1.8.49172.1|4|eth0.1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.8.49173.1|4|eth0.1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.8.49175.1|4|eth1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.8.49176.1|4|eth1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.8.49180.1|4|Trunk-K35-SW +1.3.6.1.4.1.11863.6.35.1.2.2.1.9.49172.1|4|SoAda-WR10 +1.3.6.1.4.1.11863.6.35.1.2.2.1.9.49173.1|4|SoAda-WR11 +1.3.6.1.4.1.11863.6.35.1.2.2.1.9.49175.1|4|SoAda-WR49 +1.3.6.1.4.1.11863.6.35.1.2.2.1.9.49176.1|4|SoAda-WR35 +1.3.6.1.4.1.11863.6.35.1.2.2.1.9.49180.1|4|soada-sw22 +1.3.6.1.4.1.11863.6.35.1.2.2.1.10.49172.1|4|OpenWrt 19.07.7 +1.3.6.1.4.1.11863.6.35.1.2.2.1.10.49173.1|4|OpenWrt 19.07.7 +1.3.6.1.4.1.11863.6.35.1.2.2.1.10.49175.1|4|OpenWrt 19.07.7 +1.3.6.1.4.1.11863.6.35.1.2.2.1.10.49176.1|4|OpenWrt 19.07.7 +1.3.6.1.4.1.11863.6.35.1.2.2.1.10.49180.1|4|28-port 1G/10G Managed Switch +1.3.6.1.4.1.11863.6.35.1.2.2.1.11.49172.1|4|Bridge WLAN Access Point Router Station Only +1.3.6.1.4.1.11863.6.35.1.2.2.1.11.49173.1|4|Bridge WLAN Access Point Router Station Only +1.3.6.1.4.1.11863.6.35.1.2.2.1.11.49175.1|4|Bridge WLAN Access Point Router Station Only +1.3.6.1.4.1.11863.6.35.1.2.2.1.11.49176.1|4|Bridge WLAN Access Point Router Station Only +1.3.6.1.4.1.11863.6.35.1.2.2.1.11.49180.1|4|Bridge Router +1.3.6.1.4.1.11863.6.35.1.2.2.1.12.49172.1|4|Bridge WLAN Access Point Router +1.3.6.1.4.1.11863.6.35.1.2.2.1.12.49173.1|4|Bridge WLAN Access Point Router +1.3.6.1.4.1.11863.6.35.1.2.2.1.12.49175.1|4|Bridge WLAN Access Point Router +1.3.6.1.4.1.11863.6.35.1.2.2.1.12.49176.1|4|Bridge WLAN Access Point Router +1.3.6.1.4.1.11863.6.35.1.2.2.1.12.49180.1|4|Bridge Router +1.3.6.1.4.1.11863.6.35.1.2.2.1.13.49172.1|4|169.254.254.110 +1.3.6.1.4.1.11863.6.35.1.2.2.1.13.49173.1|4|169.254.254.111 +1.3.6.1.4.1.11863.6.35.1.2.2.1.13.49175.1|4|169.254.254.149 +1.3.6.1.4.1.11863.6.35.1.2.2.1.13.49176.1|4|169.254.254.135 +1.3.6.1.4.1.11863.6.35.1.2.2.1.13.49180.1|4|169.254.254.22 +1.3.6.1.4.1.11863.6.35.1.2.2.1.14.49172.1|4|ipv4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.14.49173.1|4|ipv4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.14.49175.1|4|ipv4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.14.49176.1|4|ipv4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.14.49180.1|4|ipv4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.15.49172.1|4|IfIndex +1.3.6.1.4.1.11863.6.35.1.2.2.1.15.49173.1|4|IfIndex +1.3.6.1.4.1.11863.6.35.1.2.2.1.15.49175.1|4|IfIndex +1.3.6.1.4.1.11863.6.35.1.2.2.1.15.49176.1|4|IfIndex +1.3.6.1.4.1.11863.6.35.1.2.2.1.15.49180.1|4|IfIndex +1.3.6.1.4.1.11863.6.35.1.2.2.1.16.49172.1|2|4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.16.49173.1|2|4 +1.3.6.1.4.1.11863.6.35.1.2.2.1.16.49175.1|2|5 +1.3.6.1.4.1.11863.6.35.1.2.2.1.16.49176.1|2|5 +1.3.6.1.4.1.11863.6.35.1.2.2.1.16.49180.1|2|34464 +1.3.6.1.4.1.11863.6.35.1.2.2.1.17.49172.1|4|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.17.49173.1|4|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.17.49175.1|4|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.17.49176.1|4|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.17.49180.1|4|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.18.49172.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.18.49173.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.18.49175.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.18.49176.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.18.49180.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.19.49172.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.19.49173.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.19.49175.1|4|vid: 100, VLAN name: eth1.100; vid: 2, VLAN name: eth1.2; vid: 200, VLAN name: eth1.200; vid: 254, VLAN name: eth1.254; +1.3.6.1.4.1.11863.6.35.1.2.2.1.19.49176.1|4|vid: 100, VLAN name: eth1.100; vid: 2, VLAN name: eth1.2; vid: 200, VLAN name: eth1.200; vid: 254, VLAN name: eth1.254; +1.3.6.1.4.1.11863.6.35.1.2.2.1.19.49180.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.20.49172.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.20.49173.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.20.49175.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.20.49176.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.20.49180.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.21.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.21.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.21.49175.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.21.49176.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.21.49180.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.22.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.22.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.22.49175.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.22.49176.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.22.49180.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.23.49172.1|4|Unknown +1.3.6.1.4.1.11863.6.35.1.2.2.1.23.49173.1|4|Unknown +1.3.6.1.4.1.11863.6.35.1.2.2.1.23.49175.1|4|speed(100)/duplex(Full) +1.3.6.1.4.1.11863.6.35.1.2.2.1.23.49176.1|4|speed(100)/duplex(Full) +1.3.6.1.4.1.11863.6.35.1.2.2.1.23.49180.1|4|speed(1000)/duplex(Full) +1.3.6.1.4.1.11863.6.35.1.2.2.1.24.49172.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.24.49173.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.24.49175.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.24.49176.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.24.49180.1|2|1 +1.3.6.1.4.1.11863.6.35.1.2.2.1.25.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.25.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.25.49175.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.25.49176.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.25.49180.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.26.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.26.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.26.49175.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.26.49176.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.26.49180.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.27.49172.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.27.49173.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.27.49175.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.27.49176.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.27.49180.1|4| +1.3.6.1.4.1.11863.6.35.1.2.2.1.28.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.28.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.28.49175.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.28.49176.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.28.49180.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.29.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.29.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.29.49175.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.29.49176.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.29.49180.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.30.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.30.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.30.49175.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.30.49176.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.30.49180.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.31.49172.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.31.49173.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.31.49175.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.31.49176.1|2|0 +1.3.6.1.4.1.11863.6.35.1.2.2.1.31.49180.1|2|1522