diff --git a/includes/discovery/route.inc.php b/includes/discovery/route.inc.php index 1eb9cdc78c..7c0776577b 100644 --- a/includes/discovery/route.inc.php +++ b/includes/discovery/route.inc.php @@ -54,6 +54,10 @@ foreach ($dbRoute as $dbRow) { } } +if (file_exists(Config::get('install_dir') . "/includes/discovery/route/{$device['os']}.inc.php")) { + include Config::get('install_dir') . "/includes/discovery/route/{$device['os']}.inc.php"; +} + //Not a single route will be discovered if the amount is over maximum // To prevent any bad behaviour on routers holding the full internet table diff --git a/includes/discovery/route/routeros.inc.php b/includes/discovery/route/routeros.inc.php new file mode 100644 index 0000000000..407560b264 --- /dev/null +++ b/includes/discovery/route/routeros.inc.php @@ -0,0 +1,72 @@ +. + * + * @package LibreNMS + * @link https://www.librenms.org + * + * @copyright 2022 Peca Nesovanovic + * + * @author Peca Nesovanovic + */ +use LibreNMS\Util\IPv6; + +$oids = SnmpQuery::walk('IPV6-MIB::ipv6RouteTable')->table(1); + +foreach ($oids as $dst => $data) { + $PfxLen = array_key_first($data['IPV6-MIB::ipv6RoutePfxLength']); + $RouteIndex = array_key_first($data['IPV6-MIB::ipv6RouteIndex'][$PfxLen]); + + //route destination + $ipv6dst = new IPv6($dst); + $dst_uncompressed = $ipv6dst->uncompressed(); + + //next hop + $ipv6hop = new IPv6($entryClean['inetCidrRouteNextHop'] = $data['IPV6-MIB::ipv6RouteNextHop'][$PfxLen][$RouteIndex]); + $hop_uncompressed = $ipv6hop->uncompressed(); + + //portId from ifIndex + $ifIndex = $data['IPV6-MIB::ipv6RouteIfIndex'][$PfxLen][$RouteIndex]; + $portId = get_port_by_index_cache($device['device_id'], $ifIndex)['port_id']; + + //populate array with data + unset($entryClean); + $entryClean['updated_at'] = $update_timestamp; + $entryClean['device_id'] = $device['device_id']; + $entryClean['port_id'] = $portId; + $entryClean['context_name'] = ''; + $entryClean['inetCidrRouteIfIndex'] = $ifIndex; + $entryClean['inetCidrRouteType'] = $data['IPV6-MIB::ipv6RouteType'][$PfxLen][$RouteIndex]; + $entryClean['inetCidrRouteProto'] = $data['IPV6-MIB::ipv6RouteProtocol'][$PfxLen][$RouteIndex]; + $entryClean['inetCidrRouteNextHopAS'] = '0'; + $entryClean['inetCidrRouteMetric1'] = $data['IPV6-MIB::ipv6RouteMetric'][$PfxLen][$RouteIndex]; + $entryClean['inetCidrRouteDestType'] = 'ipv6'; + $entryClean['inetCidrRouteDest'] = $dst_uncompressed; + $entryClean['inetCidrRouteNextHopType'] = 'ipv6'; + $entryClean['inetCidrRouteNextHop'] = $hop_uncompressed; + $entryClean['inetCidrRouteNextHopType'] = 'ipv6'; + $entryClean['inetCidrRoutePolicy'] = $data['IPV6-MIB::ipv6RoutePolicy'][$PfxLen][$RouteIndex]; + $entryClean['inetCidrRoutePfxLen'] = $PfxLen; + + $current = $mixed['']['ipv6'][$inetCidrRouteDest][$inetCidrRoutePfxLen][$entryClean['inetCidrRoutePolicy']]['ipv6'][$inetCidrRouteNextHop]; + if (isset($current) && isset($current['db']) && count($current['db']) > 0 && $delete_row[$current['db']['route_id']] != 1) { + //we already have a row in DB + $update_row[] = $entryClean; + } else { + $entry['created_at'] = ['NOW()']; + $create_row[] = $entryClean; + } +} diff --git a/tests/data/routeros_vlans.json b/tests/data/routeros_rb760igs.json similarity index 65% rename from tests/data/routeros_vlans.json rename to tests/data/routeros_rb760igs.json index dabebf94f2..0458948932 100644 --- a/tests/data/routeros_vlans.json +++ b/tests/data/routeros_rb760igs.json @@ -5,16 +5,16 @@ { "sysName": "", "sysObjectID": ".1.3.6.1.4.1.14988.1", - "sysDescr": "RouterOS RB951G-2HnD", + "sysDescr": "RouterOS RB760iGS", "sysContact": "", - "version": "7.1rc4", - "hardware": "RB951G-2HnD", + "version": "7.1.1", + "hardware": "RB760iGS", "features": "Level 4", "os": "routeros", "type": "network", - "serial": "8A7008F7F185", + "serial": "E1F10E90A6E9", "icon": "mikrotik.svg", - "location": "" + "location": null } ] }, @@ -29,119 +29,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether1-trunk", - "ifName": "ether1-trunk", + "ifDescr": "ether1", + "ifName": "ether1", "portName": null, "ifIndex": 1, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "ethernetCsmacd", - "ifAlias": "ether1-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": "ether2-test", - "ifName": "ether2-test", - "portName": null, - "ifIndex": 2, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": null, @@ -149,7 +44,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "ether2-test", + "ifAlias": "ether1", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -239,8 +134,113 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether3-test", - "ifName": "ether3-test", + "ifDescr": "ether2", + "ifName": "ether2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ether2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ether3", + "ifName": "ether3", "portName": null, "ifIndex": 3, "ifSpeed": null, @@ -254,7 +254,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "ether3-test", + "ifAlias": "ether3", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -344,8 +344,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether4-test", - "ifName": "ether4-test", + "ifDescr": "ether4", + "ifName": "ether4", "portName": null, "ifIndex": 4, "ifSpeed": null, @@ -359,7 +359,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "ether4-test", + "ifAlias": "ether4", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -449,8 +449,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether5-ac200", - "ifName": "ether5-ac200", + "ifDescr": "ether5", + "ifName": "ether5", "portName": null, "ifIndex": 5, "ifSpeed": null, @@ -464,7 +464,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "ether5-ac200", + "ifAlias": "ether5", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -554,22 +554,22 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "wlan2", - "ifName": "wlan2", + "ifDescr": "sfp1", + "ifName": "sfp1", "portName": null, "ifIndex": 6, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "down", + "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": null, "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, - "ifType": "ieee80211", - "ifAlias": "wlan2", + "ifType": "ethernetCsmacd", + "ifAlias": "sfp1", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -659,10 +659,10 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "BR-Switch", - "ifName": "BR-Switch", + "ifDescr": "bridge1", + "ifName": "bridge1", "portName": null, - "ifIndex": 10, + "ifIndex": 7, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, @@ -674,7 +674,217 @@ "ifDuplex": null, "ifMtu": null, "ifType": "bridge", - "ifAlias": "BR-Switch", + "ifAlias": "bridge1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan2", + "ifName": "vlan2", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "vlan2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "vlan200", + "ifName": "vlan200", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "vlan200", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -767,7 +977,7 @@ "ifDescr": "vlan254", "ifName": "vlan254", "portName": null, - "ifIndex": 11, + "ifIndex": 10, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, @@ -862,636 +1072,6 @@ "ifOutMulticastPkts_prev": null, "ifOutMulticastPkts_delta": null, "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "wlan100", - "ifName": "wlan100", - "portName": null, - "ifIndex": 13, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "ieee80211", - "ifAlias": "wlan100", - "ifPhysAddress": null, - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": null, - "ifInUcastPkts_prev": null, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": null, - "ifOutUcastPkts_prev": null, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": null, - "ifInErrors_prev": null, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": null, - "ifOutErrors_prev": null, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": null, - "ifInOctets_prev": null, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": null, - "ifOutOctets_prev": null, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": null, - "ifInNUcastPkts_prev": null, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": null, - "ifOutNUcastPkts_prev": null, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": null, - "ifInDiscards_prev": null, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": null, - "ifOutDiscards_prev": null, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": null, - "ifInUnknownProtos_prev": null, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": null, - "ifInBroadcastPkts_prev": null, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": null, - "ifOutBroadcastPkts_prev": null, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": null, - "ifInMulticastPkts_prev": null, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": null, - "ifOutMulticastPkts_prev": null, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "wlan200", - "ifName": "wlan200", - "portName": null, - "ifIndex": 15, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "ieee80211", - "ifAlias": "wlan200", - "ifPhysAddress": null, - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": null, - "ifInUcastPkts_prev": null, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": null, - "ifOutUcastPkts_prev": null, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": null, - "ifInErrors_prev": null, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": null, - "ifOutErrors_prev": null, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": null, - "ifInOctets_prev": null, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": null, - "ifOutOctets_prev": null, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": null, - "ifInNUcastPkts_prev": null, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": null, - "ifOutNUcastPkts_prev": null, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": null, - "ifInDiscards_prev": null, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": null, - "ifOutDiscards_prev": null, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": null, - "ifInUnknownProtos_prev": null, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": null, - "ifInBroadcastPkts_prev": null, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": null, - "ifOutBroadcastPkts_prev": null, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": null, - "ifInMulticastPkts_prev": null, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": null, - "ifOutMulticastPkts_prev": null, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "vlan22", - "ifName": "vlan22", - "portName": null, - "ifIndex": 16, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "vlan22", - "ifPhysAddress": null, - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": null, - "ifInUcastPkts_prev": null, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": null, - "ifOutUcastPkts_prev": null, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": null, - "ifInErrors_prev": null, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": null, - "ifOutErrors_prev": null, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": null, - "ifInOctets_prev": null, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": null, - "ifOutOctets_prev": null, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": null, - "ifInNUcastPkts_prev": null, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": null, - "ifOutNUcastPkts_prev": null, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": null, - "ifInDiscards_prev": null, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": null, - "ifOutDiscards_prev": null, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": null, - "ifInUnknownProtos_prev": null, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": null, - "ifInBroadcastPkts_prev": null, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": null, - "ifOutBroadcastPkts_prev": null, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": null, - "ifInMulticastPkts_prev": null, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": null, - "ifOutMulticastPkts_prev": null, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "vlan33", - "ifName": "vlan33", - "portName": null, - "ifIndex": 17, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "vlan33", - "ifPhysAddress": null, - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": null, - "ifInUcastPkts_prev": null, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": null, - "ifOutUcastPkts_prev": null, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": null, - "ifInErrors_prev": null, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": null, - "ifOutErrors_prev": null, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": null, - "ifInOctets_prev": null, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": null, - "ifOutOctets_prev": null, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": null, - "ifInNUcastPkts_prev": null, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": null, - "ifOutNUcastPkts_prev": null, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": null, - "ifInDiscards_prev": null, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": null, - "ifOutDiscards_prev": null, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": null, - "ifInUnknownProtos_prev": null, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": null, - "ifInBroadcastPkts_prev": null, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": null, - "ifOutBroadcastPkts_prev": null, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": null, - "ifInMulticastPkts_prev": null, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": null, - "ifOutMulticastPkts_prev": null, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "vlan44", - "ifName": "vlan44", - "portName": null, - "ifIndex": 18, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "vlan44", - "ifPhysAddress": null, - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": null, - "ifInUcastPkts_prev": null, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": null, - "ifOutUcastPkts_prev": null, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": null, - "ifInErrors_prev": null, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": null, - "ifOutErrors_prev": null, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": null, - "ifInOctets_prev": null, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": null, - "ifOutOctets_prev": null, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": null, - "ifInNUcastPkts_prev": null, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": null, - "ifOutNUcastPkts_prev": null, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": null, - "ifInDiscards_prev": null, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": null, - "ifOutDiscards_prev": null, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": null, - "ifInUnknownProtos_prev": null, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": null, - "ifInBroadcastPkts_prev": null, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": null, - "ifOutBroadcastPkts_prev": null, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": null, - "ifInMulticastPkts_prev": null, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": null, - "ifOutMulticastPkts_prev": null, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "vlan444", - "ifName": "vlan444", - "portName": null, - "ifIndex": 19, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "vlan444", - "ifPhysAddress": null, - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": null, - "ifInUcastPkts_prev": null, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": null, - "ifOutUcastPkts_prev": null, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": null, - "ifInErrors_prev": null, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": null, - "ifOutErrors_prev": null, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": null, - "ifInOctets_prev": null, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": null, - "ifOutOctets_prev": null, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": null, - "ifInNUcastPkts_prev": null, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": null, - "ifOutNUcastPkts_prev": null, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": null, - "ifInDiscards_prev": null, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": null, - "ifOutDiscards_prev": null, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": null, - "ifInUnknownProtos_prev": null, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": null, - "ifInBroadcastPkts_prev": null, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": null, - "ifOutBroadcastPkts_prev": null, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": null, - "ifInMulticastPkts_prev": null, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": null, - "ifOutMulticastPkts_prev": null, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null } ] }, @@ -1503,25 +1083,25 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether1-trunk", - "ifName": "ether1-trunk", + "ifDescr": "ether1", + "ifName": "ether1", "portName": null, "ifIndex": 1, - "ifSpeed": 1000000000, + "ifSpeed": 0, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": "up", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "ether1-trunk", - "ifPhysAddress": "cc2de065e507", + "ifAlias": "ether1", + "ifPhysAddress": "2cc81b97041b", "ifHardType": null, - "ifLastChange": 22955593, + "ifLastChange": 0, "ifVlan": "1", "ifTrunk": null, "counter_in": null, @@ -1540,111 +1120,6 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 8130019, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 5164241, - "ifOutUcastPkts_prev": 0, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": 0, - "ifInErrors_prev": 0, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": 0, - "ifOutErrors_prev": 0, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": 6724263140, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 2680614744, - "ifOutOctets_prev": 0, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": 0, - "ifInNUcastPkts_prev": 0, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": 0, - "ifOutNUcastPkts_prev": 0, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": 0, - "ifInDiscards_prev": 0, - "ifInDiscards_delta": null, - "ifInDiscards_rate": null, - "ifOutDiscards": 0, - "ifOutDiscards_prev": 0, - "ifOutDiscards_delta": null, - "ifOutDiscards_rate": null, - "ifInUnknownProtos": 0, - "ifInUnknownProtos_prev": 0, - "ifInUnknownProtos_delta": null, - "ifInUnknownProtos_rate": null, - "ifInBroadcastPkts": 359500, - "ifInBroadcastPkts_prev": 0, - "ifInBroadcastPkts_delta": null, - "ifInBroadcastPkts_rate": null, - "ifOutBroadcastPkts": 43169, - "ifOutBroadcastPkts_prev": 0, - "ifOutBroadcastPkts_delta": null, - "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": 956207, - "ifInMulticastPkts_prev": 0, - "ifInMulticastPkts_delta": null, - "ifInMulticastPkts_rate": null, - "ifOutMulticastPkts": 75537, - "ifOutMulticastPkts_prev": 0, - "ifOutMulticastPkts_delta": null, - "ifOutMulticastPkts_rate": null - }, - { - "port_descr_type": null, - "port_descr_descr": null, - "port_descr_circuit": null, - "port_descr_speed": null, - "port_descr_notes": null, - "ifDescr": "ether2-test", - "ifName": "ether2-test", - "portName": null, - "ifIndex": 2, - "ifSpeed": 0, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "ethernetCsmacd", - "ifAlias": "ether2-test", - "ifPhysAddress": "cc2de065e508", - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "2", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 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, @@ -1713,8 +1188,113 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether3-test", - "ifName": "ether3-test", + "ifDescr": "ether2", + "ifName": "ether2", + "portName": null, + "ifIndex": 2, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "ether2", + "ifPhysAddress": "2cc81b97041c", + "ifHardType": null, + "ifLastChange": 5083, + "ifVlan": "1", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 8554, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2831, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1562500, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 281605, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 1855, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 45, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3586, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 145, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ether3", + "ifName": "ether3", "portName": null, "ifIndex": 3, "ifSpeed": 0, @@ -1728,11 +1308,11 @@ "ifDuplex": null, "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "ether3-test", - "ifPhysAddress": "cc2de065e509", + "ifAlias": "ether3", + "ifPhysAddress": "2cc81b97041d", "ifHardType": null, "ifLastChange": 0, - "ifVlan": "100", + "ifVlan": "200", "ifTrunk": null, "counter_in": null, "counter_out": null, @@ -1818,8 +1398,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether4-test", - "ifName": "ether4-test", + "ifDescr": "ether4", + "ifName": "ether4", "portName": null, "ifIndex": 4, "ifSpeed": 0, @@ -1833,11 +1413,11 @@ "ifDuplex": null, "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "ether4-test", - "ifPhysAddress": "cc2de065e50a", + "ifAlias": "ether4", + "ifPhysAddress": "2cc81b97041e", "ifHardType": null, "ifLastChange": 0, - "ifVlan": "200", + "ifVlan": "254", "ifTrunk": null, "counter_in": null, "counter_out": null, @@ -1923,8 +1503,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ether5-ac200", - "ifName": "ether5-ac200", + "ifDescr": "ether5", + "ifName": "ether5", "portName": null, "ifIndex": 5, "ifSpeed": 0, @@ -1938,11 +1518,11 @@ "ifDuplex": null, "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "ether5-ac200", - "ifPhysAddress": "cc2de065e50b", + "ifAlias": "ether5", + "ifPhysAddress": "2cc81b97041f", "ifHardType": null, "ifLastChange": 0, - "ifVlan": "200", + "ifVlan": "", "ifTrunk": null, "counter_in": null, "counter_out": null, @@ -2028,25 +1608,25 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "wlan2", - "ifName": "wlan2", + "ifDescr": "sfp1", + "ifName": "sfp1", "portName": null, "ifIndex": 6, - "ifSpeed": 50000000, + "ifSpeed": 1000000000, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": 1500, - "ifType": "ieee80211", - "ifAlias": "wlan2", - "ifPhysAddress": "cc2de065e50c", + "ifType": "ethernetCsmacd", + "ifAlias": "sfp1", + "ifPhysAddress": "2cc81b970420", "ifHardType": null, - "ifLastChange": 68557029, + "ifLastChange": 95441, "ifVlan": "", "ifTrunk": null, "counter_in": null, @@ -2065,11 +1645,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1407301, + "ifInUcastPkts": 13607, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2547322, + "ifOutUcastPkts": 9625, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -2081,11 +1661,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 257525820, + "ifInOctets": 1566910, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 2674750884, + "ifOutOctets": 5751316, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -2133,10 +1713,10 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "BR-Switch", - "ifName": "BR-Switch", + "ifDescr": "bridge1", + "ifName": "bridge1", "portName": null, - "ifIndex": 10, + "ifIndex": 7, "ifSpeed": 0, "ifSpeed_prev": null, "ifConnectorPresent": null, @@ -2148,10 +1728,10 @@ "ifDuplex": null, "ifMtu": 1500, "ifType": "bridge", - "ifAlias": "BR-Switch", - "ifPhysAddress": "cc2de065e507", + "ifAlias": "bridge1", + "ifPhysAddress": "2cc81b97041b", "ifHardType": null, - "ifLastChange": 1407, + "ifLastChange": 1764, "ifVlan": "", "ifTrunk": null, "counter_in": null, @@ -2170,11 +1750,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 2782480, + "ifInUcastPkts": 10046, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2236390, + "ifOutUcastPkts": 9908, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -2186,11 +1766,221 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 378290710, + "ifInOctets": 1090719, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 2175795360, + "ifOutOctets": 5768389, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": 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": "vlan2", + "ifName": "vlan2", + "portName": null, + "ifIndex": 8, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "vlan2", + "ifPhysAddress": "2cc81b97041b", + "ifHardType": null, + "ifLastChange": 1765, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4008, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4142, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 471390, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4812492, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": 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": "vlan200", + "ifName": "vlan200", + "portName": null, + "ifIndex": 9, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "vlan200", + "ifPhysAddress": "2cc81b97041b", + "ifHardType": null, + "ifLastChange": 117792, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 247, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 132, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 34383, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 19602, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -2241,7 +2031,7 @@ "ifDescr": "vlan254", "ifName": "vlan254", "portName": null, - "ifIndex": 11, + "ifIndex": 10, "ifSpeed": 0, "ifSpeed_prev": null, "ifConnectorPresent": null, @@ -2254,9 +2044,9 @@ "ifMtu": 1500, "ifType": "l2vlan", "ifAlias": "vlan254", - "ifPhysAddress": "cc2de065e507", + "ifPhysAddress": "2cc81b97041b", "ifHardType": null, - "ifLastChange": 1409, + "ifLastChange": 128157, "ifVlan": "", "ifTrunk": null, "counter_in": null, @@ -2275,11 +2065,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 2005999, + "ifInUcastPkts": 5427, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2213931, + "ifOutUcastPkts": 5619, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -2291,641 +2081,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 184024317, + "ifInOctets": 489627, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 2162674043, - "ifOutOctets_prev": 0, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": 0, - "ifInNUcastPkts_prev": 0, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": 0, - "ifOutNUcastPkts_prev": 0, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": 0, - "ifInDiscards_prev": 0, - "ifInDiscards_delta": null, - "ifInDiscards_rate": 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": "wlan100", - "ifName": "wlan100", - "portName": null, - "ifIndex": 13, - "ifSpeed": 50000000, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "ieee80211", - "ifAlias": "wlan100", - "ifPhysAddress": "ce2de065e50c", - "ifHardType": null, - "ifLastChange": 49476407, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": 33777, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 449477, - "ifOutUcastPkts_prev": 0, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": 0, - "ifInErrors_prev": 0, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": 0, - "ifOutErrors_prev": 0, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": 7464675, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 37045504, - "ifOutOctets_prev": 0, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": 0, - "ifInNUcastPkts_prev": 0, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": 0, - "ifOutNUcastPkts_prev": 0, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": 0, - "ifInDiscards_prev": 0, - "ifInDiscards_delta": null, - "ifInDiscards_rate": 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": "wlan200", - "ifName": "wlan200", - "portName": null, - "ifIndex": 15, - "ifSpeed": 50000000, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "ieee80211", - "ifAlias": "wlan200", - "ifPhysAddress": "ce2de065e50d", - "ifHardType": null, - "ifLastChange": 69927514, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 0, - "deleted": 0, - "pagpOperationMode": null, - "pagpPortState": null, - "pagpPartnerDeviceId": null, - "pagpPartnerLearnMethod": null, - "pagpPartnerIfIndex": null, - "pagpPartnerGroupIfIndex": null, - "pagpPartnerDeviceName": null, - "pagpEthcOperationMode": null, - "pagpDeviceId": null, - "pagpGroupIfIndex": null, - "ifInUcastPkts": 1455870, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2849249, - "ifOutUcastPkts_prev": 0, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": 0, - "ifInErrors_prev": 0, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": 0, - "ifOutErrors_prev": 0, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": 192861957, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 3577965789, - "ifOutOctets_prev": 0, - "ifOutOctets_delta": null, - "ifOutOctets_rate": null, - "poll_prev": null, - "ifInNUcastPkts": 0, - "ifInNUcastPkts_prev": 0, - "ifInNUcastPkts_delta": null, - "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": 0, - "ifOutNUcastPkts_prev": 0, - "ifOutNUcastPkts_delta": null, - "ifOutNUcastPkts_rate": null, - "ifInDiscards": 0, - "ifInDiscards_prev": 0, - "ifInDiscards_delta": null, - "ifInDiscards_rate": 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": "vlan22", - "ifName": "vlan22", - "portName": null, - "ifIndex": 16, - "ifSpeed": 0, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vlan22", - "ifPhysAddress": "cc2de065e508", - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 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": "vlan33", - "ifName": "vlan33", - "portName": null, - "ifIndex": 17, - "ifSpeed": 0, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vlan33", - "ifPhysAddress": "cc2de065e509", - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 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": "vlan44", - "ifName": "vlan44", - "portName": null, - "ifIndex": 18, - "ifSpeed": 0, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vlan44", - "ifPhysAddress": "cc2de065e50a", - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 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": "vlan444", - "ifName": "vlan444", - "portName": null, - "ifIndex": 19, - "ifSpeed": 0, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vlan444", - "ifPhysAddress": "cc2de065e50a", - "ifHardType": null, - "ifLastChange": 0, - "ifVlan": "", - "ifTrunk": null, - "counter_in": null, - "counter_out": null, - "ignore": 0, - "disabled": 0, - "detailed": 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": 934557, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -2979,7 +2139,40 @@ "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.1", "processor_index": "1", "processor_type": "hr", - "processor_usage": 9, + "processor_usage": 1, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 2, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.2", + "processor_index": "2", + "processor_type": "hr", + "processor_usage": 1, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 3, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.3", + "processor_index": "3", + "processor_type": "hr", + "processor_usage": 1, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 4, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.4", + "processor_index": "4", + "processor_type": "hr", + "processor_usage": 0, "processor_descr": "Processor", "processor_precision": 1, "processor_perc_warn": 75 @@ -2998,13 +2191,13 @@ "mempool_class": "system", "mempool_precision": 1024, "mempool_descr": "main memory", - "mempool_perc": 39, + "mempool_perc": 19, "mempool_perc_oid": null, - "mempool_used": 52609024, + "mempool_used": 52297728, "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.65536", - "mempool_free": 81608704, + "mempool_free": 216137728, "mempool_free_oid": null, - "mempool_total": 134217728, + "mempool_total": 268435456, "mempool_total_oid": null, "mempool_largestfree": null, "mempool_lowestfree": null, @@ -3015,6 +2208,529 @@ }, "poller": "matches discovery" }, + "route": { + "discovery": { + "route": [ + { + "context_name": "", + "inetCidrRouteIfIndex": 0, + "inetCidrRouteType": 4, + "inetCidrRouteProto": 2, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 1, + "inetCidrRouteDestType": "ipv4", + "inetCidrRouteDest": "0.0.0.0", + "inetCidrRouteNextHopType": "ipv4", + "inetCidrRouteNextHop": "169.254.101.1", + "inetCidrRoutePolicy": "ccitt.0", + "inetCidrRoutePfxLen": 0 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 0, + "inetCidrRouteType": 4, + "inetCidrRouteProto": 3, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 1, + "inetCidrRouteDestType": "ipv4", + "inetCidrRouteDest": "0.0.0.0", + "inetCidrRouteNextHopType": "ipv4", + "inetCidrRouteNextHop": "169.254.101.1", + "inetCidrRoutePolicy": "zeroDotZero", + "inetCidrRoutePfxLen": 0 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 0, + "inetCidrRouteType": 1, + "inetCidrRouteProto": 3, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 1, + "inetCidrRouteDestType": "ipv6", + "inetCidrRouteDest": "0000:0000:0000:0000:0000:0000:0000:0000", + "inetCidrRouteNextHopType": "ipv6", + "inetCidrRouteNextHop": "fd00:0001:0254:0000:0000:0000:0000:0001", + "inetCidrRoutePolicy": "0", + "inetCidrRoutePfxLen": 0 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 10, + "inetCidrRouteType": 3, + "inetCidrRouteProto": 1, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 0, + "inetCidrRouteDestType": "ipv4", + "inetCidrRouteDest": "169.254.101.0", + "inetCidrRouteNextHopType": "ipv4", + "inetCidrRouteNextHop": "0.0.0.0", + "inetCidrRoutePolicy": "ccitt.0", + "inetCidrRoutePfxLen": 24 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 10, + "inetCidrRouteType": 3, + "inetCidrRouteProto": 2, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 0, + "inetCidrRouteDestType": "ipv4", + "inetCidrRouteDest": "169.254.101.0", + "inetCidrRouteNextHopType": "ipv4", + "inetCidrRouteNextHop": "0.0.0.0", + "inetCidrRoutePolicy": "zeroDotZero", + "inetCidrRoutePfxLen": 24 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 0, + "inetCidrRouteType": 1, + "inetCidrRouteProto": 3, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 1, + "inetCidrRouteDestType": "ipv6", + "inetCidrRouteDest": "fc00:0003:0011:0000:0000:0000:0000:0000", + "inetCidrRouteNextHopType": "ipv6", + "inetCidrRouteNextHop": "fd00:0001:0254:0000:0000:0000:0000:0034", + "inetCidrRoutePolicy": "0", + "inetCidrRoutePfxLen": 64 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 0, + "inetCidrRouteType": 1, + "inetCidrRouteProto": 3, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 1, + "inetCidrRouteDestType": "ipv6", + "inetCidrRouteDest": "fc11:e540:0000:0000:0000:0000:0000:0000", + "inetCidrRouteNextHopType": "ipv6", + "inetCidrRouteNextHop": "fc44:0005:0024:0000:0000:0000:0000:0011", + "inetCidrRoutePolicy": "0", + "inetCidrRoutePfxLen": 48 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 9, + "inetCidrRouteType": 3, + "inetCidrRouteProto": 2, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 0, + "inetCidrRouteDestType": "ipv6", + "inetCidrRouteDest": "fc44:0005:0024:0000:0000:0000:0000:0000", + "inetCidrRouteNextHopType": "ipv6", + "inetCidrRouteNextHop": "0000:0000:0000:0000:0000:0000:0000:0000", + "inetCidrRoutePolicy": "0", + "inetCidrRoutePfxLen": 120 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 10, + "inetCidrRouteType": 3, + "inetCidrRouteProto": 2, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 0, + "inetCidrRouteDestType": "ipv6", + "inetCidrRouteDest": "fd00:0001:0254:0000:0000:0000:0000:0000", + "inetCidrRouteNextHopType": "ipv6", + "inetCidrRouteNextHop": "0000:0000:0000:0000:0000:0000:0000:0000", + "inetCidrRoutePolicy": "0", + "inetCidrRoutePfxLen": 64 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.8.6", + "sensor_index": "mtxrOpticalTxBiasCurrent.6", + "sensor_type": "routeros", + "sensor_descr": "sfp1 Tx", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.15.1.1.5.5", + "sensor_index": "mtxrPOECurrent.5", + "sensor_type": "routeros", + "sensor_descr": "ether5 POE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.10.6", + "sensor_index": "mtxrOpticalRxPower.6", + "sensor_type": "routeros", + "sensor_descr": "sfp1 Rx", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.9.6", + "sensor_index": "mtxrOpticalTxPower.6", + "sensor_type": "routeros", + "sensor_descr": "sfp1 Tx", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.15.1.1.6.5", + "sensor_index": "mtxrPOEPower.5", + "sensor_type": "routeros", + "sensor_descr": "ether5 POE", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.3.6", + "sensor_index": "mtxrOpticalRxLoss.6", + "sensor_type": "mtxrOpticalRxLoss", + "sensor_descr": "sfp1 Rx", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrOpticalRxLoss" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.4.6", + "sensor_index": "mtxrOpticalTxFault.6", + "sensor_type": "mtxrOpticalTxFault", + "sensor_descr": "sfp1 Tx", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrOpticalTxFault" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.15.1.1.3.5", + "sensor_index": "mtxrPOEStatus.5", + "sensor_type": "mtxrPOEStatus", + "sensor_descr": "ether5 POE", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "mtxrPOEStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.10.0", + "sensor_index": "0", + "sensor_type": "routeros", + "sensor_descr": "Temperature 0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 70, + "sensor_limit_warn": 65, + "sensor_limit_low": -40, + "sensor_limit_low_warn": -35, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.6.6", + "sensor_index": "mtxrOpticalTemperature.6", + "sensor_type": "routeros", + "sensor_descr": "sfp1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 20, + "sensor_limit_warn": null, + "sensor_limit_low": -10, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.3.8.0", + "sensor_index": "0", + "sensor_type": "routeros", + "sensor_descr": "Voltage 0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 10.9, + "sensor_limit": 12.535, + "sensor_limit_warn": null, + "sensor_limit_low": 9.265, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.19.1.1.7.6", + "sensor_index": "mtxrOpticalSupplyVoltage.6", + "sensor_type": "routeros", + "sensor_descr": "sfp1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.14988.1.1.15.1.1.4.5", + "sensor_index": "mtxrPOEVoltage.5", + "sensor_type": "routeros", + "sensor_descr": "ether5 POE", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "mtxrOpticalRxLoss", + "state_descr": "no", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "mtxrOpticalRxLoss", + "state_descr": "yes", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "mtxrOpticalRxLoss", + "state_descr": "null", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "mtxrOpticalTxFault", + "state_descr": "no", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "mtxrOpticalTxFault", + "state_descr": "yes", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "mtxrOpticalTxFault", + "state_descr": "null", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "mtxrPOEStatus", + "state_descr": "disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "mtxrPOEStatus", + "state_descr": "waitingForLoad", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "mtxrPOEStatus", + "state_descr": "poweredOn", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "mtxrPOEStatus", + "state_descr": "overload", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 2 + } + ] + }, + "poller": "matches discovery" + }, "storage": { "discovery": { "storage": [ @@ -3023,9 +2739,9 @@ "storage_index": "131072", "storage_type": "hrStorageFixedDisk", "storage_descr": "system disk", - "storage_size": 67108864, + "storage_size": 16777216, "storage_units": 1024, - "storage_used": 18022400, + "storage_used": 11952128, "storage_free": 0, "storage_perc": 0, "storage_perc_warn": 60, @@ -3040,11 +2756,11 @@ "storage_index": "131072", "storage_type": "hrStorageFixedDisk", "storage_descr": "system disk", - "storage_size": 67108864, + "storage_size": 16777216, "storage_units": 1024, - "storage_used": 18022400, - "storage_free": 49086464, - "storage_perc": 27, + "storage_used": 11952128, + "storage_free": 4825088, + "storage_perc": 71, "storage_perc_warn": 60, "storage_deleted": 0 } @@ -3068,34 +2784,6 @@ "vlan_type": null, "vlan_mtu": null }, - { - "vlan_vlan": 22, - "vlan_domain": 1, - "vlan_name": "Vlan_22", - "vlan_type": null, - "vlan_mtu": null - }, - { - "vlan_vlan": 33, - "vlan_domain": 1, - "vlan_name": "Vlan_33", - "vlan_type": null, - "vlan_mtu": null - }, - { - "vlan_vlan": 44, - "vlan_domain": 1, - "vlan_name": "Vlan_44", - "vlan_type": null, - "vlan_mtu": null - }, - { - "vlan_vlan": 100, - "vlan_domain": 1, - "vlan_name": "Vlan_100", - "vlan_type": null, - "vlan_mtu": null - }, { "vlan_vlan": 200, "vlan_domain": 1, @@ -3109,13 +2797,6 @@ "vlan_name": "Vlan_254", "vlan_type": null, "vlan_mtu": null - }, - { - "vlan_vlan": 444, - "vlan_domain": 1, - "vlan_name": "Vlan_444", - "vlan_type": null, - "vlan_mtu": null } ], "ports_vlans": [ @@ -3135,6 +2816,14 @@ "cost": 0, "untagged": 1 }, + { + "vlan": 1, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, { "vlan": 2, "baseport": 0, @@ -3157,10 +2846,10 @@ "priority": 0, "state": "unknown", "cost": 0, - "untagged": 1 + "untagged": 0 }, { - "vlan": 22, + "vlan": 200, "baseport": 0, "priority": 0, "state": "unknown", @@ -3168,31 +2857,7 @@ "untagged": 0 }, { - "vlan": 33, - "baseport": 0, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 0 - }, - { - "vlan": 44, - "baseport": 0, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 0 - }, - { - "vlan": 100, - "baseport": 0, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 0 - }, - { - "vlan": 100, + "vlan": 200, "baseport": 1, "priority": 0, "state": "unknown", @@ -3200,7 +2865,15 @@ "untagged": 0 }, { - "vlan": 100, + "vlan": 200, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 200, "baseport": 3, "priority": 0, "state": "unknown", @@ -3208,7 +2881,7 @@ "untagged": 1 }, { - "vlan": 200, + "vlan": 254, "baseport": 0, "priority": 0, "state": "unknown", @@ -3216,7 +2889,7 @@ "untagged": 0 }, { - "vlan": 200, + "vlan": 254, "baseport": 1, "priority": 0, "state": "unknown", @@ -3224,434 +2897,106 @@ "untagged": 0 }, { - "vlan": 200, + "vlan": 254, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 254, "baseport": 4, "priority": 0, "state": "unknown", "cost": 0, "untagged": 1 - }, - { - "vlan": 200, - "baseport": 5, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 1 - }, - { - "vlan": 254, - "baseport": 0, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 0 - }, - { - "vlan": 254, - "baseport": 1, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 0 - }, - { - "vlan": 444, - "baseport": 0, - "priority": 0, - "state": "unknown", - "cost": 0, - "untagged": 0 } ] } }, - "wireless": { + "stp": { "discovery": { - "wireless_sensors": [ + "stp": [ { - "sensor_deleted": 0, - "sensor_class": "clients", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.6\"]" + "vlan": null, + "rootBridge": 0, + "bridgeAddress": "2cc81b97041b", + "protocolSpecification": "ieee8021d", + "priority": 32768, + "timeSinceTopologyChange": "0", + "topChanges": 0, + "designatedRoot": "000000000000", + "rootCost": 0, + "rootPort": 0, + "maxAge": 0, + "helloTime": 0, + "holdTime": 0, + "forwardDelay": 0, + "bridgeMaxAge": 0, + "bridgeHelloTime": 0, + "bridgeForwardDelay": 0 + } + ], + "ports_stp": [ + { + "vlan": null, + "port_index": 1, + "priority": 128, + "state": "blocking", + "enable": "enabled", + "pathCost": 10, + "designatedRoot": "000000000000", + "designatedCost": 0, + "designatedBridge": "000000000000", + "designatedPort": 0, + "forwardTransitions": 0, + "ifIndex": 1 }, { - "sensor_deleted": 0, - "sensor_class": "clients", - "sensor_index": "13", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-prn", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 1, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.13\"]" + "vlan": null, + "port_index": 2, + "priority": 128, + "state": "forwarding", + "enable": "enabled", + "pathCost": 10, + "designatedRoot": "c006c3a13f46", + "designatedCost": 20000, + "designatedBridge": "000000000000", + "designatedPort": 9, + "forwardTransitions": 0, + "ifIndex": 6 }, { - "sensor_deleted": 0, - "sensor_class": "clients", - "sensor_index": "15", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-lan", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.15\"]" + "vlan": null, + "port_index": 3, + "priority": 128, + "state": "blocking", + "enable": "enabled", + "pathCost": 10, + "designatedRoot": "000000000000", + "designatedCost": 0, + "designatedBridge": "000000000000", + "designatedPort": 0, + "forwardTransitions": 0, + "ifIndex": 5 }, { - "sensor_deleted": 0, - "sensor_class": "ccq", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 92, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.10.6\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "ccq", - "sensor_index": "15", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-lan", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.10.15\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "noise-floor", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": -109, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.9.6\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "noise-floor", - "sensor_index": "13", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-prn", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.9.13\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "noise-floor", - "sensor_index": "15", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-lan", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.9.15\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 2472, - "sensor_prev": null, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.7.6\"]" + "vlan": null, + "port_index": 4, + "priority": 128, + "state": "blocking", + "enable": "enabled", + "pathCost": 10, + "designatedRoot": "000000000000", + "designatedCost": 0, + "designatedBridge": "000000000000", + "designatedPort": 0, + "forwardTransitions": 0, + "ifIndex": 4 } ] }, - "poller": { - "wireless_sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "clients", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.6\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "clients", - "sensor_index": "13", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-prn", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 1, - "sensor_prev": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.13\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "clients", - "sensor_index": "15", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-lan", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.15\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "ccq", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 92, - "sensor_prev": 92, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.10.6\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "ccq", - "sensor_index": "15", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-lan", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.10.15\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "noise-floor", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": -109, - "sensor_prev": -109, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.9.6\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "noise-floor", - "sensor_index": "13", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-prn", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.9.13\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "noise-floor", - "sensor_index": "15", - "sensor_type": "mikrotik", - "sensor_descr": "SSID: ele-lan", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 0, - "sensor_prev": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.9.15\"]" - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "sensor_index": "6", - "sensor_type": "mikrotik", - "sensor_descr": "2G: ele-guest", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_aggregator": "sum", - "sensor_current": 2472, - "sensor_prev": 2472, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.7.6\"]" - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/snmpsim/routeros_rb760igs.snmprec b/tests/snmpsim/routeros_rb760igs.snmprec new file mode 100644 index 0000000000..db63c01cd2 --- /dev/null +++ b/tests/snmpsim/routeros_rb760igs.snmprec @@ -0,0 +1,693 @@ +1.0.8802.1.1.2.1.4.1.1.4.0.0.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.2|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.3|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.5|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.6|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.7|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.8|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.9|2|4 +1.0.8802.1.1.2.1.4.1.1.4.0.0.10|2|4 +1.0.8802.1.1.2.1.4.1.1.5.0.0.1|4|C0:06:C3:A1:3F:46 +1.0.8802.1.1.2.1.4.1.1.5.0.0.2|4|00:0C:29:93:07:F1 +1.0.8802.1.1.2.1.4.1.1.5.0.0.3|4|C0:06:C3:A1:3F:46 +1.0.8802.1.1.2.1.4.1.1.5.0.0.5|4|2C:C8:1B:97:04:1C +1.0.8802.1.1.2.1.4.1.1.5.0.0.6|4|00:0C:29:93:07:F1 +1.0.8802.1.1.2.1.4.1.1.5.0.0.7|4|0E:FE:01:00:01:01 +1.0.8802.1.1.2.1.4.1.1.5.0.0.8|4|0E:FE:01:00:01:02 +1.0.8802.1.1.2.1.4.1.1.5.0.0.9|4|0E:02:01:00:02:53 +1.0.8802.1.1.2.1.4.1.1.5.0.0.10|4|00:0C:29:93:07:19 +1.0.8802.1.1.2.1.4.1.1.6.0.0.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.2|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.3|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.5|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.6|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.7|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.8|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.9|2|5 +1.0.8802.1.1.2.1.4.1.1.6.0.0.10|2|5 +1.0.8802.1.1.2.1.4.1.1.7.0.0.1|4|gigabitEthernet 1/0/1 +1.0.8802.1.1.2.1.4.1.1.7.0.0.2|4|lan1 +1.0.8802.1.1.2.1.4.1.1.7.0.0.3|4|gigabitEthernet 1/0/9 +1.0.8802.1.1.2.1.4.1.1.7.0.0.5|4|ether2 +1.0.8802.1.1.2.1.4.1.1.7.0.0.6|4|lan1 +1.0.8802.1.1.2.1.4.1.1.7.0.0.7|4|br-lan254 +1.0.8802.1.1.2.1.4.1.1.7.0.0.8|4|br-lan254 +1.0.8802.1.1.2.1.4.1.1.7.0.0.9|4|br-lan254 +1.0.8802.1.1.2.1.4.1.1.7.0.0.10|4|lan254 +1.0.8802.1.1.2.1.4.1.1.9.0.0.1|4x|706563612D73773032000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020303020303020303020 +1.0.8802.1.1.2.1.4.1.1.9.0.0.2|4|peca-mkt +1.0.8802.1.1.2.1.4.1.1.9.0.0.3|4x|706563612D73773032000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020303020303020303020 +1.0.8802.1.1.2.1.4.1.1.9.0.0.5|4|MikroTik +1.0.8802.1.1.2.1.4.1.1.9.0.0.6|4|peca-mkt +1.0.8802.1.1.2.1.4.1.1.9.0.0.7|4|peca-wr01 +1.0.8802.1.1.2.1.4.1.1.9.0.0.8|4|peca-wr02 +1.0.8802.1.1.2.1.4.1.1.9.0.0.9|4|peca-wr253 +1.0.8802.1.1.2.1.4.1.1.9.0.0.10|4|peca-mkt +1.0.8802.1.1.2.1.4.1.1.10.0.0.1|4|JetStream 8-Port Gigabit L2+ Managed Switch with 2 SFP Slots +1.0.8802.1.1.2.1.4.1.1.10.0.0.2|4| +1.0.8802.1.1.2.1.4.1.1.10.0.0.3|4|JetStream 8-Port Gigabit L2+ Managed Switch with 2 SFP Slots +1.0.8802.1.1.2.1.4.1.1.10.0.0.5|4| +1.0.8802.1.1.2.1.4.1.1.10.0.0.6|4| +1.0.8802.1.1.2.1.4.1.1.10.0.0.7|4| +1.0.8802.1.1.2.1.4.1.1.10.0.0.8|4| +1.0.8802.1.1.2.1.4.1.1.10.0.0.9|4| +1.0.8802.1.1.2.1.4.1.1.10.0.0.10|4| +1.0.8802.1.1.2.1.4.1.1.11.0.0.1|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.11.0.0.2|4|00 +1.0.8802.1.1.2.1.4.1.1.11.0.0.3|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.11.0.0.5|4|00 +1.0.8802.1.1.2.1.4.1.1.11.0.0.6|4|00 +1.0.8802.1.1.2.1.4.1.1.11.0.0.7|4|00 +1.0.8802.1.1.2.1.4.1.1.11.0.0.8|4|00 +1.0.8802.1.1.2.1.4.1.1.11.0.0.9|4|00 +1.0.8802.1.1.2.1.4.1.1.11.0.0.10|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.1|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.12.0.0.2|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.3|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.12.0.0.5|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.6|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.7|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.8|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.9|4|00 +1.0.8802.1.1.2.1.4.1.1.12.0.0.10|4|00 +1.3.6.1.2.1.1.1.0|4|RouterOS RB760iGS +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14988.1 +1.3.6.1.2.1.1.3.0|67|268100 +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.2.2.1.2.1|4|ether1 +1.3.6.1.2.1.2.2.1.2.2|4|ether2 +1.3.6.1.2.1.2.2.1.2.3|4|ether3 +1.3.6.1.2.1.2.2.1.2.4|4|ether4 +1.3.6.1.2.1.2.2.1.2.5|4|ether5 +1.3.6.1.2.1.2.2.1.2.6|4|sfp1 +1.3.6.1.2.1.2.2.1.2.7|4|bridge1 +1.3.6.1.2.1.2.2.1.2.8|4|vlan2 +1.3.6.1.2.1.2.2.1.2.9|4|vlan200 +1.3.6.1.2.1.2.2.1.2.10|4|vlan254 +1.3.6.1.2.1.2.2.1.3.1|2|6 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|209 +1.3.6.1.2.1.2.2.1.3.8|2|135 +1.3.6.1.2.1.2.2.1.3.9|2|135 +1.3.6.1.2.1.2.2.1.3.10|2|135 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|2CC81B97041B +1.3.6.1.2.1.2.2.1.6.2|4x|2CC81B97041C +1.3.6.1.2.1.2.2.1.6.3|4x|2CC81B97041D +1.3.6.1.2.1.2.2.1.6.4|4x|2CC81B97041E +1.3.6.1.2.1.2.2.1.6.5|4x|2CC81B97041F +1.3.6.1.2.1.2.2.1.6.6|4x|2CC81B970420 +1.3.6.1.2.1.2.2.1.6.7|4x|2CC81B97041B +1.3.6.1.2.1.2.2.1.6.8|4x|2CC81B97041B +1.3.6.1.2.1.2.2.1.6.9|4x|2CC81B97041B +1.3.6.1.2.1.2.2.1.6.10|4x|2CC81B97041B +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|2 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|1 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|5083 +1.3.6.1.2.1.2.2.1.9.3|67|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|95441 +1.3.6.1.2.1.2.2.1.9.7|67|1764 +1.3.6.1.2.1.2.2.1.9.8|67|1765 +1.3.6.1.2.1.2.2.1.9.9|67|117792 +1.3.6.1.2.1.2.2.1.9.10|67|128157 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.4.20.1.2.169.254.101.98|2|10 +1.3.6.1.2.1.4.20.1.3.169.254.101.98|64|255.255.255.0 +1.3.6.1.2.1.4.21.1.1.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.1.169.254.101.0|64|169.254.101.0 +1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|0 +1.3.6.1.2.1.4.21.1.2.169.254.101.0|2|10 +1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|1 +1.3.6.1.2.1.4.21.1.3.169.254.101.0|2|0 +1.3.6.1.2.1.4.21.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.21.1.4.169.254.101.0|2|-1 +1.3.6.1.2.1.4.21.1.5.0.0.0.0|2|-1 +1.3.6.1.2.1.4.21.1.5.169.254.101.0|2|-1 +1.3.6.1.2.1.4.21.1.6.0.0.0.0|2|-1 +1.3.6.1.2.1.4.21.1.6.169.254.101.0|2|-1 +1.3.6.1.2.1.4.21.1.7.0.0.0.0|64|169.254.101.1 +1.3.6.1.2.1.4.21.1.7.169.254.101.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4 +1.3.6.1.2.1.4.21.1.8.169.254.101.0|2|3 +1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|2 +1.3.6.1.2.1.4.21.1.9.169.254.101.0|2|1 +1.3.6.1.2.1.4.21.1.10.0.0.0.0|2|0 +1.3.6.1.2.1.4.21.1.10.169.254.101.0|2|0 +1.3.6.1.2.1.4.21.1.11.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.11.169.254.101.0|64|255.255.255.0 +1.3.6.1.2.1.4.21.1.12.0.0.0.0|2|-1 +1.3.6.1.2.1.4.21.1.12.169.254.101.0|2|-1 +1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.21.1.13.169.254.101.0|6|0.0 +1.3.6.1.2.1.4.22.1.2.10.169.254.101.1|4x|000C29930719 +1.3.6.1.2.1.4.24.3.0|66|18 +1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.169.254.101.1|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.1.169.254.101.0.255.255.255.0.0.0.0.0.0|64|169.254.101.0 +1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.169.254.101.1|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.2.169.254.101.0.255.255.255.0.0.0.0.0.0|64|255.255.255.0 +1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.169.254.101.1|2|0 +1.3.6.1.2.1.4.24.4.1.3.169.254.101.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.169.254.101.1|64|169.254.101.1 +1.3.6.1.2.1.4.24.4.1.4.169.254.101.0.255.255.255.0.0.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.169.254.101.1|2|0 +1.3.6.1.2.1.4.24.4.1.5.169.254.101.0.255.255.255.0.0.0.0.0.0|2|10 +1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.169.254.101.1|2|4 +1.3.6.1.2.1.4.24.4.1.6.169.254.101.0.255.255.255.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.169.254.101.1|2|3 +1.3.6.1.2.1.4.24.4.1.7.169.254.101.0.255.255.255.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.8.0.0.0.0.0.0.0.0.0.169.254.101.1|2|0 +1.3.6.1.2.1.4.24.4.1.8.169.254.101.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.169.254.101.1|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.169.254.101.0.255.255.255.0.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.169.254.101.1|2|0 +1.3.6.1.2.1.4.24.4.1.10.169.254.101.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.169.254.101.1|2|1 +1.3.6.1.2.1.4.24.4.1.11.169.254.101.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.169.254.101.1|2|-1 +1.3.6.1.2.1.4.24.4.1.12.169.254.101.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.169.254.101.1|2|-1 +1.3.6.1.2.1.4.24.4.1.13.169.254.101.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.169.254.101.1|2|-1 +1.3.6.1.2.1.4.24.4.1.14.169.254.101.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.169.254.101.1|2|-1 +1.3.6.1.2.1.4.24.4.1.15.169.254.101.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.169.254.101.1|2|1 +1.3.6.1.2.1.4.24.4.1.16.169.254.101.0.255.255.255.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.17.1.1.0|4x|2CC81B97041B +1.3.6.1.2.1.17.1.4.1.2.1|2|1 +1.3.6.1.2.1.17.1.4.1.2.2|2|6 +1.3.6.1.2.1.17.1.4.1.2.3|2|5 +1.3.6.1.2.1.17.1.4.1.2.4|2|4 +1.3.6.1.2.1.17.2.1.0|2|3 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.15.1.1.1|2|1 +1.3.6.1.2.1.17.2.15.1.1.2|2|2 +1.3.6.1.2.1.17.2.15.1.1.3|2|3 +1.3.6.1.2.1.17.2.15.1.1.4|2|4 +1.3.6.1.2.1.17.2.15.1.2.1|2|128 +1.3.6.1.2.1.17.2.15.1.2.2|2|128 +1.3.6.1.2.1.17.2.15.1.2.3|2|128 +1.3.6.1.2.1.17.2.15.1.2.4|2|128 +1.3.6.1.2.1.17.2.15.1.3.1|2|2 +1.3.6.1.2.1.17.2.15.1.3.2|2|5 +1.3.6.1.2.1.17.2.15.1.3.3|2|2 +1.3.6.1.2.1.17.2.15.1.3.4|2|2 +1.3.6.1.2.1.17.2.15.1.4.1|2|1 +1.3.6.1.2.1.17.2.15.1.4.2|2|1 +1.3.6.1.2.1.17.2.15.1.4.3|2|1 +1.3.6.1.2.1.17.2.15.1.4.4|2|1 +1.3.6.1.2.1.17.2.15.1.5.1|2|10 +1.3.6.1.2.1.17.2.15.1.5.2|2|10 +1.3.6.1.2.1.17.2.15.1.5.3|2|10 +1.3.6.1.2.1.17.2.15.1.5.4|2|10 +1.3.6.1.2.1.17.2.15.1.6.1|4x|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.2|4x|6000C006C3A13F46 +1.3.6.1.2.1.17.2.15.1.6.3|4x|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.4|4x|0000000000000000 +1.3.6.1.2.1.17.2.15.1.7.1|2|0 +1.3.6.1.2.1.17.2.15.1.7.2|2|20000 +1.3.6.1.2.1.17.2.15.1.7.3|2|0 +1.3.6.1.2.1.17.2.15.1.7.4|2|0 +1.3.6.1.2.1.17.2.15.1.9.1|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.2|4x|0009 +1.3.6.1.2.1.17.2.15.1.9.3|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.4|4x|0000 +1.3.6.1.2.1.17.7.1.2.2.1.2.0.44.200.27.151.4.27|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.0.44.200.27.151.4.32|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.12.41.147.7.241|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.200.27.151.4.27|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.200.27.151.4.28|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.44.200.27.151.4.32|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.6.195.161.63.70|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.232.40.193.184.211.144|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.12.41.147.7.251|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.44.200.27.151.4.27|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.44.200.27.151.4.32|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.2.72.109.187.95.51.42|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.147.7.15|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.193.1.113|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.44.200.27.151.4.27|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.44.200.27.151.4.32|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.148.184.109.122.144.214|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.160.206.200.228.65.138|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.200.188.95.244.153.69.214|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.0.12.41.147.7.25|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.0.80.86.96.106.240|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.2.1.0.2.83|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.254.1.0.1.1|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.254.1.0.1.2|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.44.200.27.151.4.27|2|0 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.44.200.27.151.4.32|2|2 +1.3.6.1.2.1.17.7.1.2.2.1.2.254.232.40.193.184.211.144|2|2 +1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|200 +1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|254 +1.3.6.1.2.1.25.1.1.0|67|268100 +1.3.6.1.2.1.25.2.2.0|2|262144 +1.3.6.1.2.1.25.2.3.1.1.65536|2|65536 +1.3.6.1.2.1.25.2.3.1.1.131072|2|131072 +1.3.6.1.2.1.25.2.3.1.2.65536|6|1.3.6.1.2.1.25.2.1.2 +1.3.6.1.2.1.25.2.3.1.2.131072|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.3.65536|4|main memory +1.3.6.1.2.1.25.2.3.1.3.131072|4|system disk +1.3.6.1.2.1.25.2.3.1.4.65536|2|1024 +1.3.6.1.2.1.25.2.3.1.4.131072|2|1024 +1.3.6.1.2.1.25.2.3.1.5.65536|2|262144 +1.3.6.1.2.1.25.2.3.1.5.131072|2|16384 +1.3.6.1.2.1.25.2.3.1.6.65536|2|51072 +1.3.6.1.2.1.25.2.3.1.6.131072|2|11672 +1.3.6.1.2.1.25.2.3.1.7.65536|65|0 +1.3.6.1.2.1.25.2.3.1.7.131072|65|0 +1.3.6.1.2.1.25.3.2.1.1.1|2|1 +1.3.6.1.2.1.25.3.2.1.1.2|2|2 +1.3.6.1.2.1.25.3.2.1.1.3|2|3 +1.3.6.1.2.1.25.3.2.1.1.4|2|4 +1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.3|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.4|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.3.1|4| +1.3.6.1.2.1.25.3.2.1.3.2|4| +1.3.6.1.2.1.25.3.2.1.3.3|4| +1.3.6.1.2.1.25.3.2.1.3.4|4| +1.3.6.1.2.1.25.3.2.1.4.1|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.2|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.3|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.4|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.1|2|2 +1.3.6.1.2.1.25.3.2.1.5.2|2|2 +1.3.6.1.2.1.25.3.2.1.5.3|2|2 +1.3.6.1.2.1.25.3.2.1.5.4|2|2 +1.3.6.1.2.1.25.3.2.1.6.1|65|0 +1.3.6.1.2.1.25.3.2.1.6.2|65|0 +1.3.6.1.2.1.25.3.2.1.6.3|65|0 +1.3.6.1.2.1.25.3.2.1.6.4|65|0 +1.3.6.1.2.1.25.3.3.1.1.1|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.2|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.3|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.4|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.1|2|1 +1.3.6.1.2.1.25.3.3.1.2.2|2|1 +1.3.6.1.2.1.25.3.3.1.2.3|2|1 +1.3.6.1.2.1.25.3.3.1.2.4|2|0 +1.3.6.1.2.1.31.1.1.1.1.1|4|ether1 +1.3.6.1.2.1.31.1.1.1.1.2|4|ether2 +1.3.6.1.2.1.31.1.1.1.1.3|4|ether3 +1.3.6.1.2.1.31.1.1.1.1.4|4|ether4 +1.3.6.1.2.1.31.1.1.1.1.5|4|ether5 +1.3.6.1.2.1.31.1.1.1.1.6|4|sfp1 +1.3.6.1.2.1.31.1.1.1.1.7|4|bridge1 +1.3.6.1.2.1.31.1.1.1.1.8|4|vlan2 +1.3.6.1.2.1.31.1.1.1.1.9|4|vlan200 +1.3.6.1.2.1.31.1.1.1.1.10|4|vlan254 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|1562500 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|1566910 +1.3.6.1.2.1.31.1.1.1.6.7|70|1090719 +1.3.6.1.2.1.31.1.1.1.6.8|70|471390 +1.3.6.1.2.1.31.1.1.1.6.9|70|34383 +1.3.6.1.2.1.31.1.1.1.6.10|70|489627 +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.2|70|8554 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|13607 +1.3.6.1.2.1.31.1.1.1.7.7|70|10046 +1.3.6.1.2.1.31.1.1.1.7.8|70|4008 +1.3.6.1.2.1.31.1.1.1.7.9|70|247 +1.3.6.1.2.1.31.1.1.1.7.10|70|5427 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|3586 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|1855 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|281605 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|5751316 +1.3.6.1.2.1.31.1.1.1.10.7|70|5768389 +1.3.6.1.2.1.31.1.1.1.10.8|70|4812492 +1.3.6.1.2.1.31.1.1.1.10.9|70|19602 +1.3.6.1.2.1.31.1.1.1.10.10|70|934557 +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.2|70|2831 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|9625 +1.3.6.1.2.1.31.1.1.1.11.7|70|9908 +1.3.6.1.2.1.31.1.1.1.11.8|70|4142 +1.3.6.1.2.1.31.1.1.1.11.9|70|132 +1.3.6.1.2.1.31.1.1.1.11.10|70|5619 +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.2|70|145 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|45 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +1.3.6.1.2.1.31.1.1.1.15.2|66|100 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|1000 +1.3.6.1.2.1.31.1.1.1.15.7|66|0 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.47.1.1.1.1.1.65536|2|65536 +1.3.6.1.2.1.47.1.1.1.1.1.262145|2|262145 +1.3.6.1.2.1.47.1.1.1.1.1.262146|2|262146 +1.3.6.1.2.1.47.1.1.1.1.2.65536|4|RouterOS 7.1.1 (stable) on RB760iGS +1.3.6.1.2.1.47.1.1.1.1.2.262145|4|Linux 5.6.3 xhci-hcd xHCI Host Controller +1.3.6.1.2.1.47.1.1.1.1.2.262146|4|Linux 5.6.3 xhci-hcd xHCI Host Controller +1.3.6.1.2.1.47.1.1.1.1.3.65536|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.262145|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.262146|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.4.65536|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.262145|2|65536 +1.3.6.1.2.1.47.1.1.1.1.4.262146|2|65536 +1.3.6.1.2.1.47.1.1.1.1.5.65536|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.262145|2|2 +1.3.6.1.2.1.47.1.1.1.1.5.262146|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.65536|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.262145|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.262146|2|-1 +1.3.6.1.2.1.47.1.1.1.1.7.65536|4|MIPS 1004Kc V2.15 +1.3.6.1.2.1.47.1.1.1.1.7.262145|4|1-0 +1.3.6.1.2.1.47.1.1.1.1.7.262146|4|2-0 +1.3.6.1.2.1.47.1.1.1.1.8.65536|4| +1.3.6.1.2.1.47.1.1.1.1.8.262145|4| +1.3.6.1.2.1.47.1.1.1.1.8.262146|4| +1.3.6.1.2.1.47.1.1.1.1.9.65536|4| +1.3.6.1.2.1.47.1.1.1.1.9.262145|4| +1.3.6.1.2.1.47.1.1.1.1.9.262146|4| +1.3.6.1.2.1.47.1.1.1.1.10.65536|4| +1.3.6.1.2.1.47.1.1.1.1.10.262145|4| +1.3.6.1.2.1.47.1.1.1.1.10.262146|4| +1.3.6.1.2.1.47.1.1.1.1.11.65536|4| +1.3.6.1.2.1.47.1.1.1.1.11.262145|4|1e1c0000.xhci +1.3.6.1.2.1.47.1.1.1.1.11.262146|4|1e1c0000.xhci +1.3.6.1.2.1.47.1.1.1.1.12.65536|4| +1.3.6.1.2.1.47.1.1.1.1.12.262145|4|0x1d6b +1.3.6.1.2.1.47.1.1.1.1.12.262146|4|0x1d6b +1.3.6.1.2.1.47.1.1.1.1.13.65536|4| +1.3.6.1.2.1.47.1.1.1.1.13.262145|4|0x0002 +1.3.6.1.2.1.47.1.1.1.1.13.262146|4|0x0003 +1.3.6.1.2.1.47.1.1.1.1.14.65536|4| +1.3.6.1.2.1.47.1.1.1.1.14.262145|4| +1.3.6.1.2.1.47.1.1.1.1.14.262146|4| +1.3.6.1.2.1.47.1.1.1.1.15.65536|4| +1.3.6.1.2.1.47.1.1.1.1.15.262145|4| +1.3.6.1.2.1.47.1.1.1.1.15.262146|4| +1.3.6.1.2.1.47.1.1.1.1.16.65536|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.262145|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.262146|2|2 +1.3.6.1.2.1.55.1.8.1.2.2.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.28|2|64 +1.3.6.1.2.1.55.1.8.1.2.7.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|64 +1.3.6.1.2.1.55.1.8.1.2.8.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|64 +1.3.6.1.2.1.55.1.8.1.2.9.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.152|2|120 +1.3.6.1.2.1.55.1.8.1.2.9.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|64 +1.3.6.1.2.1.55.1.8.1.2.10.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.152|2|64 +1.3.6.1.2.1.55.1.8.1.2.10.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|64 +1.3.6.1.2.1.55.1.8.1.3.2.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.28|2|1 +1.3.6.1.2.1.55.1.8.1.3.7.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|1 +1.3.6.1.2.1.55.1.8.1.3.8.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|1 +1.3.6.1.2.1.55.1.8.1.3.9.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.152|2|2 +1.3.6.1.2.1.55.1.8.1.3.9.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|1 +1.3.6.1.2.1.55.1.8.1.3.10.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.152|2|2 +1.3.6.1.2.1.55.1.8.1.3.10.254.128.0.0.0.0.0.0.46.200.27.255.254.151.4.27|2|1 +1.3.6.1.2.1.55.1.11.1.1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|4x|00000000000000000000000000000000 +1.3.6.1.2.1.55.1.11.1.1.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|4x|FC000003001100000000000000000000 +1.3.6.1.2.1.55.1.11.1.1.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|4x|FC11E540000000000000000000000000 +1.3.6.1.2.1.55.1.11.1.1.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|4x|FC440005002400000000000000000000 +1.3.6.1.2.1.55.1.11.1.1.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|4x|FD000001025400000000000000000000 +1.3.6.1.2.1.55.1.11.1.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|2|0 +1.3.6.1.2.1.55.1.11.1.2.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|2|64 +1.3.6.1.2.1.55.1.11.1.2.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|2|48 +1.3.6.1.2.1.55.1.11.1.2.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|2|120 +1.3.6.1.2.1.55.1.11.1.2.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|2|64 +1.3.6.1.2.1.55.1.11.1.3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|66|2147483651 +1.3.6.1.2.1.55.1.11.1.3.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|66|2147483652 +1.3.6.1.2.1.55.1.11.1.3.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|66|2147483653 +1.3.6.1.2.1.55.1.11.1.3.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|66|538456148 +1.3.6.1.2.1.55.1.11.1.3.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|66|538456136 +1.3.6.1.2.1.55.1.11.1.4.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|2|0 +1.3.6.1.2.1.55.1.11.1.4.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|2|0 +1.3.6.1.2.1.55.1.11.1.4.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|2|0 +1.3.6.1.2.1.55.1.11.1.4.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|2|9 +1.3.6.1.2.1.55.1.11.1.4.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|2|10 +1.3.6.1.2.1.55.1.11.1.5.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|4x|FD000001025400000000000000000001 +1.3.6.1.2.1.55.1.11.1.5.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|4x|FD000001025400000000000000000034 +1.3.6.1.2.1.55.1.11.1.5.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|4x|FC440005002400000000000000000011 +1.3.6.1.2.1.55.1.11.1.5.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|4x|00000000000000000000000000000000 +1.3.6.1.2.1.55.1.11.1.5.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|4x|00000000000000000000000000000000 +1.3.6.1.2.1.55.1.11.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|2|1 +1.3.6.1.2.1.55.1.11.1.6.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|2|1 +1.3.6.1.2.1.55.1.11.1.6.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|2|1 +1.3.6.1.2.1.55.1.11.1.6.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|2|3 +1.3.6.1.2.1.55.1.11.1.6.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|2|3 +1.3.6.1.2.1.55.1.11.1.7.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|2|3 +1.3.6.1.2.1.55.1.11.1.7.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|2|3 +1.3.6.1.2.1.55.1.11.1.7.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|2|3 +1.3.6.1.2.1.55.1.11.1.7.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|2|2 +1.3.6.1.2.1.55.1.11.1.7.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|2|2 +1.3.6.1.2.1.55.1.11.1.8.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|2|0 +1.3.6.1.2.1.55.1.11.1.8.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|2|0 +1.3.6.1.2.1.55.1.11.1.8.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|2|0 +1.3.6.1.2.1.55.1.11.1.8.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|2|0 +1.3.6.1.2.1.55.1.11.1.8.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|2|0 +1.3.6.1.2.1.55.1.11.1.9.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|66|0 +1.3.6.1.2.1.55.1.11.1.9.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|66|0 +1.3.6.1.2.1.55.1.11.1.9.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|66|0 +1.3.6.1.2.1.55.1.11.1.9.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|66|0 +1.3.6.1.2.1.55.1.11.1.9.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|66|0 +1.3.6.1.2.1.55.1.11.1.10.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|66|0 +1.3.6.1.2.1.55.1.11.1.10.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|66|0 +1.3.6.1.2.1.55.1.11.1.10.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|66|0 +1.3.6.1.2.1.55.1.11.1.10.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|66|0 +1.3.6.1.2.1.55.1.11.1.10.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|66|0 +1.3.6.1.2.1.55.1.11.1.11.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|66|1 +1.3.6.1.2.1.55.1.11.1.11.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|66|1 +1.3.6.1.2.1.55.1.11.1.11.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|66|1 +1.3.6.1.2.1.55.1.11.1.11.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|66|0 +1.3.6.1.2.1.55.1.11.1.11.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|66|0 +1.3.6.1.2.1.55.1.11.1.12.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|66|1 +1.3.6.1.2.1.55.1.11.1.12.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|66|1 +1.3.6.1.2.1.55.1.11.1.12.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|66|1 +1.3.6.1.2.1.55.1.11.1.12.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|66|0 +1.3.6.1.2.1.55.1.11.1.12.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|66|0 +1.3.6.1.2.1.55.1.11.1.13.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|6|0.0 +1.3.6.1.2.1.55.1.11.1.13.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|6|0.0 +1.3.6.1.2.1.55.1.11.1.13.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|6|0.0 +1.3.6.1.2.1.55.1.11.1.13.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|6|0.0 +1.3.6.1.2.1.55.1.11.1.13.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|6|0.0 +1.3.6.1.2.1.55.1.11.1.14.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2147483651|2|1 +1.3.6.1.2.1.55.1.11.1.14.252.0.0.3.0.17.0.0.0.0.0.0.0.0.0.0.64.2147483652|2|1 +1.3.6.1.2.1.55.1.11.1.14.252.17.229.64.0.0.0.0.0.0.0.0.0.0.0.0.48.2147483653|2|1 +1.3.6.1.2.1.55.1.11.1.14.252.68.0.5.0.36.0.0.0.0.0.0.0.0.0.0.120.538456148|2|1 +1.3.6.1.2.1.55.1.11.1.14.253.0.0.1.2.84.0.0.0.0.0.0.0.0.0.0.64.538456136|2|1 +1.3.6.1.4.1.9.9.150.1.1.1.0|66|0 +1.3.6.1.4.1.2021.11.10.0|2|0 +1.3.6.1.4.1.14988.1.1.3.8.0|2|109 +1.3.6.1.4.1.14988.1.1.3.10.0|2|350 +1.3.6.1.4.1.14988.1.1.4.3.0|2|4 +1.3.6.1.4.1.14988.1.1.4.4.0|4|7.1.1 +1.3.6.1.4.1.14988.1.1.6.1.0|66|0 +1.3.6.1.4.1.14988.1.1.7.3.0|4|E1F10E90A6E9 +1.3.6.1.4.1.14988.1.1.8.1.1.2.1|4|LNMS_vlans +1.3.6.1.4.1.14988.1.1.11.1.1.8.1|2|2 +1.3.6.1.4.1.14988.1.1.11.1.1.8.2|2|2 +1.3.6.1.4.1.14988.1.1.11.1.1.8.3|2|6 +1.3.6.1.4.1.14988.1.1.11.1.1.8.5|2|6 +1.3.6.1.4.1.14988.1.1.11.1.1.8.6|2|6 +1.3.6.1.4.1.14988.1.1.11.1.1.8.7|2|10 +1.3.6.1.4.1.14988.1.1.11.1.1.8.8|2|10 +1.3.6.1.4.1.14988.1.1.11.1.1.8.9|2|10 +1.3.6.1.4.1.14988.1.1.11.1.1.8.10|2|10 +1.3.6.1.4.1.14988.1.1.14.1.1.2.1|4|ether1 +1.3.6.1.4.1.14988.1.1.14.1.1.2.2|4|ether2 +1.3.6.1.4.1.14988.1.1.14.1.1.2.3|4|ether3 +1.3.6.1.4.1.14988.1.1.14.1.1.2.4|4|ether4 +1.3.6.1.4.1.14988.1.1.14.1.1.2.5|4|ether5 +1.3.6.1.4.1.14988.1.1.14.1.1.2.6|4|sfp1 +1.3.6.1.4.1.14988.1.1.14.1.1.2.7|4|bridge1 +1.3.6.1.4.1.14988.1.1.14.1.1.2.8|4|vlan2 +1.3.6.1.4.1.14988.1.1.14.1.1.2.9|4|vlan200 +1.3.6.1.4.1.14988.1.1.14.1.1.2.10|4|vlan254 +1.3.6.1.4.1.14988.1.1.15.1.1.1.5|2|5 +1.3.6.1.4.1.14988.1.1.15.1.1.2.5|4|ether5 +1.3.6.1.4.1.14988.1.1.15.1.1.3.5|2|2 +1.3.6.1.4.1.14988.1.1.15.1.1.4.5|2|0 +1.3.6.1.4.1.14988.1.1.15.1.1.5.5|2|0 +1.3.6.1.4.1.14988.1.1.15.1.1.6.5|2|0 +1.3.6.1.4.1.14988.1.1.18.1.1.2.1|4x|22542c322c736670310a542c322c6574686572310d0a542c322c627269646765310d0a542c3230302c6574686572310d0a542c3230302c736670310d0a542c3230302c627269646765310d0a542c3235342c6574686572310d0a542c3235342c736670310d0a542c3235342c627269646765310d0a552c312c627269646765310d0a552c312c736670310d0a552c312c6574686572310d0a552c3230302c6574686572350d0a552c3235342c65746865723422 +1.3.6.1.4.1.14988.1.1.19.1.1.2.6|4|sfp1 +1.3.6.1.4.1.14988.1.1.19.1.1.3.6|2|0 +1.3.6.1.4.1.14988.1.1.19.1.1.4.6|2|0 +1.3.6.1.4.1.14988.1.1.19.1.1.5.6|66|0 +1.3.6.1.4.1.14988.1.1.19.1.1.6.6|66|0 +1.3.6.1.4.1.14988.1.1.19.1.1.7.6|66|0 +1.3.6.1.4.1.14988.1.1.19.1.1.8.6|66|0 +1.3.6.1.4.1.14988.1.1.19.1.1.9.6|2|0 +1.3.6.1.4.1.14988.1.1.19.1.1.10.6|2|0 diff --git a/tests/snmpsim/routeros_vlans.snmprec b/tests/snmpsim/routeros_vlans.snmprec deleted file mode 100644 index 07c43f124f..0000000000 --- a/tests/snmpsim/routeros_vlans.snmprec +++ /dev/null @@ -1,596 +0,0 @@ -1.0.8802.1.1.2.1.4.1.1.4.0.0.6|2|4 -1.0.8802.1.1.2.1.4.1.1.4.0.0.15|2|4 -1.0.8802.1.1.2.1.4.1.1.4.0.0.21|2|4 -1.0.8802.1.1.2.1.4.1.1.4.0.0.23|2|4 -1.0.8802.1.1.2.1.4.1.1.4.0.0.28|2|4 -1.0.8802.1.1.2.1.4.1.1.5.0.0.6|4|C0:06:C3:A1:3F:46 -1.0.8802.1.1.2.1.4.1.1.5.0.0.15|4|00:0C:29:93:07:F1 -1.0.8802.1.1.2.1.4.1.1.5.0.0.21|4|00:0C:29:93:07:19 -1.0.8802.1.1.2.1.4.1.1.5.0.0.23|4|0E:01:01:00:02:53 -1.0.8802.1.1.2.1.4.1.1.5.0.0.28|4|0E:FE:01:00:01:01 -1.0.8802.1.1.2.1.4.1.1.6.0.0.6|2|5 -1.0.8802.1.1.2.1.4.1.1.6.0.0.15|2|5 -1.0.8802.1.1.2.1.4.1.1.6.0.0.21|2|5 -1.0.8802.1.1.2.1.4.1.1.6.0.0.23|2|5 -1.0.8802.1.1.2.1.4.1.1.6.0.0.28|2|5 -1.0.8802.1.1.2.1.4.1.1.7.0.0.6|4|gigabitEthernet 1/0/7 -1.0.8802.1.1.2.1.4.1.1.7.0.0.15|4|lan1 -1.0.8802.1.1.2.1.4.1.1.7.0.0.21|4|lan254 -1.0.8802.1.1.2.1.4.1.1.7.0.0.23|4|br-lan254 -1.0.8802.1.1.2.1.4.1.1.7.0.0.28|4|br-lan254 -1.3.6.1.2.1.1.1.0|4|RouterOS RB951G-2HnD -1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14988.1 -1.3.6.1.2.1.1.3.0|67|70170100 -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|ether1-trunk -1.3.6.1.2.1.2.2.1.2.2|4|ether2-test -1.3.6.1.2.1.2.2.1.2.3|4|ether3-test -1.3.6.1.2.1.2.2.1.2.4|4|ether4-test -1.3.6.1.2.1.2.2.1.2.5|4|ether5-ac200 -1.3.6.1.2.1.2.2.1.2.6|4|wlan2 -1.3.6.1.2.1.2.2.1.2.10|4|BR-Switch -1.3.6.1.2.1.2.2.1.2.11|4|vlan254 -1.3.6.1.2.1.2.2.1.2.13|4|wlan100 -1.3.6.1.2.1.2.2.1.2.15|4|wlan200 -1.3.6.1.2.1.2.2.1.2.16|4|vlan22 -1.3.6.1.2.1.2.2.1.2.17|4|vlan33 -1.3.6.1.2.1.2.2.1.2.18|4|vlan44 -1.3.6.1.2.1.2.2.1.2.19|4|vlan444 -1.3.6.1.2.1.2.2.1.3.1|2|6 -1.3.6.1.2.1.2.2.1.3.2|2|6 -1.3.6.1.2.1.2.2.1.3.3|2|6 -1.3.6.1.2.1.2.2.1.3.4|2|6 -1.3.6.1.2.1.2.2.1.3.5|2|6 -1.3.6.1.2.1.2.2.1.3.6|2|71 -1.3.6.1.2.1.2.2.1.3.10|2|209 -1.3.6.1.2.1.2.2.1.3.11|2|135 -1.3.6.1.2.1.2.2.1.3.13|2|71 -1.3.6.1.2.1.2.2.1.3.15|2|71 -1.3.6.1.2.1.2.2.1.3.16|2|135 -1.3.6.1.2.1.2.2.1.3.17|2|135 -1.3.6.1.2.1.2.2.1.3.18|2|135 -1.3.6.1.2.1.2.2.1.3.19|2|135 -1.3.6.1.2.1.2.2.1.4.1|2|1500 -1.3.6.1.2.1.2.2.1.4.2|2|1500 -1.3.6.1.2.1.2.2.1.4.3|2|1500 -1.3.6.1.2.1.2.2.1.4.4|2|1500 -1.3.6.1.2.1.2.2.1.4.5|2|1500 -1.3.6.1.2.1.2.2.1.4.6|2|1500 -1.3.6.1.2.1.2.2.1.4.10|2|1500 -1.3.6.1.2.1.2.2.1.4.11|2|1500 -1.3.6.1.2.1.2.2.1.4.13|2|1500 -1.3.6.1.2.1.2.2.1.4.15|2|1500 -1.3.6.1.2.1.2.2.1.4.16|2|1500 -1.3.6.1.2.1.2.2.1.4.17|2|1500 -1.3.6.1.2.1.2.2.1.4.18|2|1500 -1.3.6.1.2.1.2.2.1.4.19|2|1500 -1.3.6.1.2.1.2.2.1.6.1|4x|CC2DE065E507 -1.3.6.1.2.1.2.2.1.6.2|4x|CC2DE065E508 -1.3.6.1.2.1.2.2.1.6.3|4x|CC2DE065E509 -1.3.6.1.2.1.2.2.1.6.4|4x|CC2DE065E50A -1.3.6.1.2.1.2.2.1.6.5|4x|CC2DE065E50B -1.3.6.1.2.1.2.2.1.6.6|4x|CC2DE065E50C -1.3.6.1.2.1.2.2.1.6.10|4x|CC2DE065E507 -1.3.6.1.2.1.2.2.1.6.11|4x|CC2DE065E507 -1.3.6.1.2.1.2.2.1.6.13|4x|CE2DE065E50C -1.3.6.1.2.1.2.2.1.6.15|4x|CE2DE065E50D -1.3.6.1.2.1.2.2.1.6.16|4x|CC2DE065E508 -1.3.6.1.2.1.2.2.1.6.17|4x|CC2DE065E509 -1.3.6.1.2.1.2.2.1.6.18|4x|CC2DE065E50A -1.3.6.1.2.1.2.2.1.6.19|4x|CC2DE065E50A -1.3.6.1.2.1.2.2.1.7.1|2|1 -1.3.6.1.2.1.2.2.1.7.2|2|1 -1.3.6.1.2.1.2.2.1.7.3|2|1 -1.3.6.1.2.1.2.2.1.7.4|2|1 -1.3.6.1.2.1.2.2.1.7.5|2|1 -1.3.6.1.2.1.2.2.1.7.6|2|1 -1.3.6.1.2.1.2.2.1.7.10|2|1 -1.3.6.1.2.1.2.2.1.7.11|2|1 -1.3.6.1.2.1.2.2.1.7.13|2|1 -1.3.6.1.2.1.2.2.1.7.15|2|1 -1.3.6.1.2.1.2.2.1.7.16|2|1 -1.3.6.1.2.1.2.2.1.7.17|2|1 -1.3.6.1.2.1.2.2.1.7.18|2|1 -1.3.6.1.2.1.2.2.1.7.19|2|1 -1.3.6.1.2.1.2.2.1.8.1|2|1 -1.3.6.1.2.1.2.2.1.8.2|2|2 -1.3.6.1.2.1.2.2.1.8.3|2|2 -1.3.6.1.2.1.2.2.1.8.4|2|2 -1.3.6.1.2.1.2.2.1.8.5|2|2 -1.3.6.1.2.1.2.2.1.8.6|2|2 -1.3.6.1.2.1.2.2.1.8.10|2|1 -1.3.6.1.2.1.2.2.1.8.11|2|1 -1.3.6.1.2.1.2.2.1.8.13|2|1 -1.3.6.1.2.1.2.2.1.8.15|2|2 -1.3.6.1.2.1.2.2.1.8.16|2|2 -1.3.6.1.2.1.2.2.1.8.17|2|2 -1.3.6.1.2.1.2.2.1.8.18|2|2 -1.3.6.1.2.1.2.2.1.8.19|2|2 -1.3.6.1.2.1.2.2.1.9.1|67|22955593 -1.3.6.1.2.1.2.2.1.9.2|67|0 -1.3.6.1.2.1.2.2.1.9.3|67|0 -1.3.6.1.2.1.2.2.1.9.4|67|0 -1.3.6.1.2.1.2.2.1.9.5|67|0 -1.3.6.1.2.1.2.2.1.9.6|67|68557029 -1.3.6.1.2.1.2.2.1.9.10|67|1407 -1.3.6.1.2.1.2.2.1.9.11|67|1409 -1.3.6.1.2.1.2.2.1.9.13|67|49476407 -1.3.6.1.2.1.2.2.1.9.15|67|69927514 -1.3.6.1.2.1.2.2.1.9.16|67|0 -1.3.6.1.2.1.2.2.1.9.17|67|0 -1.3.6.1.2.1.2.2.1.9.18|67|0 -1.3.6.1.2.1.2.2.1.9.19|67|0 -1.3.6.1.2.1.2.2.1.13.1|65|0 -1.3.6.1.2.1.2.2.1.13.2|65|0 -1.3.6.1.2.1.2.2.1.13.3|65|0 -1.3.6.1.2.1.2.2.1.13.4|65|0 -1.3.6.1.2.1.2.2.1.13.5|65|0 -1.3.6.1.2.1.2.2.1.13.6|65|0 -1.3.6.1.2.1.2.2.1.13.10|65|0 -1.3.6.1.2.1.2.2.1.13.11|65|0 -1.3.6.1.2.1.2.2.1.13.13|65|0 -1.3.6.1.2.1.2.2.1.13.15|65|0 -1.3.6.1.2.1.2.2.1.13.16|65|0 -1.3.6.1.2.1.2.2.1.13.17|65|0 -1.3.6.1.2.1.2.2.1.13.18|65|0 -1.3.6.1.2.1.2.2.1.13.19|65|0 -1.3.6.1.2.1.2.2.1.14.1|65|0 -1.3.6.1.2.1.2.2.1.14.2|65|0 -1.3.6.1.2.1.2.2.1.14.3|65|0 -1.3.6.1.2.1.2.2.1.14.4|65|0 -1.3.6.1.2.1.2.2.1.14.5|65|0 -1.3.6.1.2.1.2.2.1.14.6|65|0 -1.3.6.1.2.1.2.2.1.14.10|65|0 -1.3.6.1.2.1.2.2.1.14.11|65|0 -1.3.6.1.2.1.2.2.1.14.13|65|0 -1.3.6.1.2.1.2.2.1.14.15|65|0 -1.3.6.1.2.1.2.2.1.14.16|65|0 -1.3.6.1.2.1.2.2.1.14.17|65|0 -1.3.6.1.2.1.2.2.1.14.18|65|0 -1.3.6.1.2.1.2.2.1.14.19|65|0 -1.3.6.1.2.1.2.2.1.19.1|65|0 -1.3.6.1.2.1.2.2.1.19.2|65|0 -1.3.6.1.2.1.2.2.1.19.3|65|0 -1.3.6.1.2.1.2.2.1.19.4|65|0 -1.3.6.1.2.1.2.2.1.19.5|65|0 -1.3.6.1.2.1.2.2.1.19.6|65|0 -1.3.6.1.2.1.2.2.1.19.10|65|0 -1.3.6.1.2.1.2.2.1.19.11|65|0 -1.3.6.1.2.1.2.2.1.19.13|65|0 -1.3.6.1.2.1.2.2.1.19.15|65|0 -1.3.6.1.2.1.2.2.1.19.16|65|0 -1.3.6.1.2.1.2.2.1.19.17|65|0 -1.3.6.1.2.1.2.2.1.19.18|65|0 -1.3.6.1.2.1.2.2.1.19.19|65|0 -1.3.6.1.2.1.2.2.1.20.1|65|0 -1.3.6.1.2.1.2.2.1.20.2|65|0 -1.3.6.1.2.1.2.2.1.20.3|65|0 -1.3.6.1.2.1.2.2.1.20.4|65|0 -1.3.6.1.2.1.2.2.1.20.5|65|0 -1.3.6.1.2.1.2.2.1.20.6|65|0 -1.3.6.1.2.1.2.2.1.20.10|65|0 -1.3.6.1.2.1.2.2.1.20.11|65|0 -1.3.6.1.2.1.2.2.1.20.13|65|0 -1.3.6.1.2.1.2.2.1.20.15|65|0 -1.3.6.1.2.1.2.2.1.20.16|65|0 -1.3.6.1.2.1.2.2.1.20.17|65|0 -1.3.6.1.2.1.2.2.1.20.18|65|0 -1.3.6.1.2.1.2.2.1.20.19|65|0 -1.3.6.1.2.1.4.20.1.2.169.254.101.102|2|11 -1.3.6.1.2.1.4.20.1.2.169.254.254.102|2|10 -1.3.6.1.2.1.4.20.1.3.169.254.101.102|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.169.254.254.102|64|255.255.255.0 -1.3.6.1.2.1.4.22.1.2.10.169.254.254.1|4x|000C299307F1 -1.3.6.1.2.1.4.22.1.2.11.169.254.101.1|4x|000C29930719 -1.3.6.1.2.1.4.24.3.0|66|12 -1.3.6.1.2.1.17.1.1.0|4x|CC2DE065E507 -1.3.6.1.2.1.17.1.4.1.2.1|2|1 -1.3.6.1.2.1.17.1.4.1.2.2|2|6 -1.3.6.1.2.1.17.1.4.1.2.3|2|13 -1.3.6.1.2.1.17.1.4.1.2.4|2|15 -1.3.6.1.2.1.17.1.4.1.2.5|2|5 -1.3.6.1.2.1.17.2.1.0|2|3 -1.3.6.1.2.1.17.2.2.0|2|32768 -1.3.6.1.2.1.17.2.15.1.1.1|2|1 -1.3.6.1.2.1.17.2.15.1.1.2|2|2 -1.3.6.1.2.1.17.2.15.1.1.3|2|3 -1.3.6.1.2.1.17.2.15.1.1.4|2|4 -1.3.6.1.2.1.17.2.15.1.1.5|2|5 -1.3.6.1.2.1.17.2.15.1.2.1|2|128 -1.3.6.1.2.1.17.2.15.1.2.2|2|128 -1.3.6.1.2.1.17.2.15.1.2.3|2|128 -1.3.6.1.2.1.17.2.15.1.2.4|2|128 -1.3.6.1.2.1.17.2.15.1.2.5|2|128 -1.3.6.1.2.1.17.2.15.1.3.1|2|5 -1.3.6.1.2.1.17.2.15.1.3.2|2|5 -1.3.6.1.2.1.17.2.15.1.3.3|2|5 -1.3.6.1.2.1.17.2.15.1.3.4|2|5 -1.3.6.1.2.1.17.2.15.1.3.5|2|2 -1.3.6.1.2.1.17.2.15.1.4.1|2|1 -1.3.6.1.2.1.17.2.15.1.4.2|2|1 -1.3.6.1.2.1.17.2.15.1.4.3|2|1 -1.3.6.1.2.1.17.2.15.1.4.4|2|1 -1.3.6.1.2.1.17.2.15.1.4.5|2|1 -1.3.6.1.2.1.17.2.15.1.5.1|2|10 -1.3.6.1.2.1.17.2.15.1.5.2|2|10 -1.3.6.1.2.1.17.2.15.1.5.3|2|10 -1.3.6.1.2.1.17.2.15.1.5.4|2|10 -1.3.6.1.2.1.17.2.15.1.5.5|2|10 -1.3.6.1.2.1.17.2.15.1.6.1|4x|6000C006C3A13F46 -1.3.6.1.2.1.17.2.15.1.6.2|4x|0000000000000000 -1.3.6.1.2.1.17.2.15.1.6.3|4x|0000000000000000 -1.3.6.1.2.1.17.2.15.1.6.4|4x|0000000000000000 -1.3.6.1.2.1.17.2.15.1.6.5|4x|0000000000000000 -1.3.6.1.2.1.17.2.15.1.7.1|2|0 -1.3.6.1.2.1.17.2.15.1.7.2|2|0 -1.3.6.1.2.1.17.2.15.1.7.3|2|0 -1.3.6.1.2.1.17.2.15.1.7.4|2|0 -1.3.6.1.2.1.17.2.15.1.7.5|2|0 -1.3.6.1.2.1.17.2.15.1.9.1|4x|0007 -1.3.6.1.2.1.17.2.15.1.9.2|4x|0000 -1.3.6.1.2.1.17.2.15.1.9.3|4x|0000 -1.3.6.1.2.1.17.2.15.1.9.4|4x|0000 -1.3.6.1.2.1.17.2.15.1.9.5|4x|0000 -1.3.6.1.2.1.17.7.1.2.2.1.2.0.204.45.224.101.229.7|2|0 -1.3.6.1.2.1.17.7.1.2.2.1.2.0.206.45.224.101.229.12|2|3 -1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.12.41.147.7.241|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.80.86.85.112.193|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.6.195.161.63.70|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.1.204.45.224.101.229.7|2|0 -1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.12.41.147.7.251|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.12.41.193.1.103|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.2.18.16.49.56.38.81|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.2.204.45.224.101.229.7|2|0 -1.3.6.1.2.1.17.7.1.2.2.1.2.100.0.12.41.147.7.5|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.100.92.186.239.135.210.123|2|3 -1.3.6.1.2.1.17.7.1.2.2.1.2.100.204.45.224.101.229.7|2|0 -1.3.6.1.2.1.17.7.1.2.2.1.2.100.206.45.224.101.229.12|2|3 -1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.147.7.15|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.193.1.113|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.200.160.206.200.228.65.138|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.200.204.45.224.101.229.7|2|0 -1.3.6.1.2.1.17.7.1.2.2.1.2.254.0.12.41.147.7.25|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.254.0.80.86.96.106.240|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.1.1.0.2.83|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.254.1.0.1.1|2|1 -1.3.6.1.2.1.17.7.1.2.2.1.2.254.204.45.224.101.229.7|2|0 -1.3.6.1.2.1.17.7.1.2.2.1.2.254.232.40.193.184.211.144|2|1 -1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1 -1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|2 -1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|100 -1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|200 -1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|200 -1.3.6.1.2.1.25.1.1.0|67|70170100 -1.3.6.1.2.1.25.2.2.0|2|131072 -1.3.6.1.2.1.25.2.3.1.1.65536|2|65536 -1.3.6.1.2.1.25.2.3.1.1.131072|2|131072 -1.3.6.1.2.1.25.2.3.1.2.65536|6|1.3.6.1.2.1.25.2.1.2 -1.3.6.1.2.1.25.2.3.1.2.131072|6|1.3.6.1.2.1.25.2.1.4 -1.3.6.1.2.1.25.2.3.1.3.65536|4|main memory -1.3.6.1.2.1.25.2.3.1.3.131072|4|system disk -1.3.6.1.2.1.25.2.3.1.4.65536|2|1024 -1.3.6.1.2.1.25.2.3.1.4.131072|2|1024 -1.3.6.1.2.1.25.2.3.1.5.65536|2|131072 -1.3.6.1.2.1.25.2.3.1.5.131072|2|65536 -1.3.6.1.2.1.25.2.3.1.6.65536|2|51376 -1.3.6.1.2.1.25.2.3.1.6.131072|2|17600 -1.3.6.1.2.1.25.2.3.1.7.65536|65|0 -1.3.6.1.2.1.25.2.3.1.7.131072|65|0 -1.3.6.1.2.1.25.3.2.1.1.1|2|1 -1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3 -1.3.6.1.2.1.25.3.2.1.3.1|4| -1.3.6.1.2.1.25.3.2.1.4.1|6|0.0 -1.3.6.1.2.1.25.3.2.1.5.1|2|2 -1.3.6.1.2.1.25.3.2.1.6.1|65|0 -1.3.6.1.2.1.25.3.3.1.1.1|6|0.0 -1.3.6.1.2.1.25.3.3.1.2.1|2|9 -1.3.6.1.2.1.31.1.1.1.1.1|4|ether1-trunk -1.3.6.1.2.1.31.1.1.1.1.2|4|ether2-test -1.3.6.1.2.1.31.1.1.1.1.3|4|ether3-test -1.3.6.1.2.1.31.1.1.1.1.4|4|ether4-test -1.3.6.1.2.1.31.1.1.1.1.5|4|ether5-ac200 -1.3.6.1.2.1.31.1.1.1.1.6|4|wlan2 -1.3.6.1.2.1.31.1.1.1.1.10|4|BR-Switch -1.3.6.1.2.1.31.1.1.1.1.11|4|vlan254 -1.3.6.1.2.1.31.1.1.1.1.13|4|wlan100 -1.3.6.1.2.1.31.1.1.1.1.15|4|wlan200 -1.3.6.1.2.1.31.1.1.1.1.16|4|vlan22 -1.3.6.1.2.1.31.1.1.1.1.17|4|vlan33 -1.3.6.1.2.1.31.1.1.1.1.18|4|vlan44 -1.3.6.1.2.1.31.1.1.1.1.19|4|vlan444 -1.3.6.1.2.1.31.1.1.1.2.1|65|0 -1.3.6.1.2.1.31.1.1.1.2.2|65|0 -1.3.6.1.2.1.31.1.1.1.2.3|65|0 -1.3.6.1.2.1.31.1.1.1.2.4|65|0 -1.3.6.1.2.1.31.1.1.1.2.5|65|0 -1.3.6.1.2.1.31.1.1.1.2.6|65|0 -1.3.6.1.2.1.31.1.1.1.2.10|65|0 -1.3.6.1.2.1.31.1.1.1.2.11|65|0 -1.3.6.1.2.1.31.1.1.1.2.13|65|0 -1.3.6.1.2.1.31.1.1.1.2.15|65|0 -1.3.6.1.2.1.31.1.1.1.2.16|65|0 -1.3.6.1.2.1.31.1.1.1.2.17|65|0 -1.3.6.1.2.1.31.1.1.1.2.18|65|0 -1.3.6.1.2.1.31.1.1.1.2.19|65|0 -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.2|65|0 -1.3.6.1.2.1.31.1.1.1.3.3|65|0 -1.3.6.1.2.1.31.1.1.1.3.4|65|0 -1.3.6.1.2.1.31.1.1.1.3.5|65|0 -1.3.6.1.2.1.31.1.1.1.3.6|65|0 -1.3.6.1.2.1.31.1.1.1.3.10|65|0 -1.3.6.1.2.1.31.1.1.1.3.11|65|0 -1.3.6.1.2.1.31.1.1.1.3.13|65|0 -1.3.6.1.2.1.31.1.1.1.3.15|65|0 -1.3.6.1.2.1.31.1.1.1.3.16|65|0 -1.3.6.1.2.1.31.1.1.1.3.17|65|0 -1.3.6.1.2.1.31.1.1.1.3.18|65|0 -1.3.6.1.2.1.31.1.1.1.3.19|65|0 -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.2|65|0 -1.3.6.1.2.1.31.1.1.1.4.3|65|0 -1.3.6.1.2.1.31.1.1.1.4.4|65|0 -1.3.6.1.2.1.31.1.1.1.4.5|65|0 -1.3.6.1.2.1.31.1.1.1.4.6|65|0 -1.3.6.1.2.1.31.1.1.1.4.10|65|0 -1.3.6.1.2.1.31.1.1.1.4.11|65|0 -1.3.6.1.2.1.31.1.1.1.4.13|65|0 -1.3.6.1.2.1.31.1.1.1.4.15|65|0 -1.3.6.1.2.1.31.1.1.1.4.16|65|0 -1.3.6.1.2.1.31.1.1.1.4.17|65|0 -1.3.6.1.2.1.31.1.1.1.4.18|65|0 -1.3.6.1.2.1.31.1.1.1.4.19|65|0 -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.2|65|0 -1.3.6.1.2.1.31.1.1.1.5.3|65|0 -1.3.6.1.2.1.31.1.1.1.5.4|65|0 -1.3.6.1.2.1.31.1.1.1.5.5|65|0 -1.3.6.1.2.1.31.1.1.1.5.6|65|0 -1.3.6.1.2.1.31.1.1.1.5.10|65|0 -1.3.6.1.2.1.31.1.1.1.5.11|65|0 -1.3.6.1.2.1.31.1.1.1.5.13|65|0 -1.3.6.1.2.1.31.1.1.1.5.15|65|0 -1.3.6.1.2.1.31.1.1.1.5.16|65|0 -1.3.6.1.2.1.31.1.1.1.5.17|65|0 -1.3.6.1.2.1.31.1.1.1.5.18|65|0 -1.3.6.1.2.1.31.1.1.1.5.19|65|0 -1.3.6.1.2.1.31.1.1.1.6.1|70|6724263140 -1.3.6.1.2.1.31.1.1.1.6.2|70|0 -1.3.6.1.2.1.31.1.1.1.6.3|70|0 -1.3.6.1.2.1.31.1.1.1.6.4|70|0 -1.3.6.1.2.1.31.1.1.1.6.5|70|0 -1.3.6.1.2.1.31.1.1.1.6.6|70|257525820 -1.3.6.1.2.1.31.1.1.1.6.10|70|378290710 -1.3.6.1.2.1.31.1.1.1.6.11|70|184024317 -1.3.6.1.2.1.31.1.1.1.6.13|70|7464675 -1.3.6.1.2.1.31.1.1.1.6.15|70|192861957 -1.3.6.1.2.1.31.1.1.1.6.16|70|0 -1.3.6.1.2.1.31.1.1.1.6.17|70|0 -1.3.6.1.2.1.31.1.1.1.6.18|70|0 -1.3.6.1.2.1.31.1.1.1.6.19|70|0 -1.3.6.1.2.1.31.1.1.1.7.1|70|8130019 -1.3.6.1.2.1.31.1.1.1.7.2|70|0 -1.3.6.1.2.1.31.1.1.1.7.3|70|0 -1.3.6.1.2.1.31.1.1.1.7.4|70|0 -1.3.6.1.2.1.31.1.1.1.7.5|70|0 -1.3.6.1.2.1.31.1.1.1.7.6|70|1407301 -1.3.6.1.2.1.31.1.1.1.7.10|70|2782480 -1.3.6.1.2.1.31.1.1.1.7.11|70|2005999 -1.3.6.1.2.1.31.1.1.1.7.13|70|33777 -1.3.6.1.2.1.31.1.1.1.7.15|70|1455870 -1.3.6.1.2.1.31.1.1.1.7.16|70|0 -1.3.6.1.2.1.31.1.1.1.7.17|70|0 -1.3.6.1.2.1.31.1.1.1.7.18|70|0 -1.3.6.1.2.1.31.1.1.1.7.19|70|0 -1.3.6.1.2.1.31.1.1.1.8.1|70|956207 -1.3.6.1.2.1.31.1.1.1.8.2|70|0 -1.3.6.1.2.1.31.1.1.1.8.3|70|0 -1.3.6.1.2.1.31.1.1.1.8.4|70|0 -1.3.6.1.2.1.31.1.1.1.8.5|70|0 -1.3.6.1.2.1.31.1.1.1.8.6|70|0 -1.3.6.1.2.1.31.1.1.1.8.10|70|0 -1.3.6.1.2.1.31.1.1.1.8.11|70|0 -1.3.6.1.2.1.31.1.1.1.8.13|70|0 -1.3.6.1.2.1.31.1.1.1.8.15|70|0 -1.3.6.1.2.1.31.1.1.1.8.16|70|0 -1.3.6.1.2.1.31.1.1.1.8.17|70|0 -1.3.6.1.2.1.31.1.1.1.8.18|70|0 -1.3.6.1.2.1.31.1.1.1.8.19|70|0 -1.3.6.1.2.1.31.1.1.1.9.1|70|359500 -1.3.6.1.2.1.31.1.1.1.9.2|70|0 -1.3.6.1.2.1.31.1.1.1.9.3|70|0 -1.3.6.1.2.1.31.1.1.1.9.4|70|0 -1.3.6.1.2.1.31.1.1.1.9.5|70|0 -1.3.6.1.2.1.31.1.1.1.9.6|70|0 -1.3.6.1.2.1.31.1.1.1.9.10|70|0 -1.3.6.1.2.1.31.1.1.1.9.11|70|0 -1.3.6.1.2.1.31.1.1.1.9.13|70|0 -1.3.6.1.2.1.31.1.1.1.9.15|70|0 -1.3.6.1.2.1.31.1.1.1.9.16|70|0 -1.3.6.1.2.1.31.1.1.1.9.17|70|0 -1.3.6.1.2.1.31.1.1.1.9.18|70|0 -1.3.6.1.2.1.31.1.1.1.9.19|70|0 -1.3.6.1.2.1.31.1.1.1.10.1|70|2680614744 -1.3.6.1.2.1.31.1.1.1.10.2|70|0 -1.3.6.1.2.1.31.1.1.1.10.3|70|0 -1.3.6.1.2.1.31.1.1.1.10.4|70|0 -1.3.6.1.2.1.31.1.1.1.10.5|70|0 -1.3.6.1.2.1.31.1.1.1.10.6|70|2674750884 -1.3.6.1.2.1.31.1.1.1.10.10|70|2175795360 -1.3.6.1.2.1.31.1.1.1.10.11|70|2162674043 -1.3.6.1.2.1.31.1.1.1.10.13|70|37045504 -1.3.6.1.2.1.31.1.1.1.10.15|70|3577965789 -1.3.6.1.2.1.31.1.1.1.10.16|70|0 -1.3.6.1.2.1.31.1.1.1.10.17|70|0 -1.3.6.1.2.1.31.1.1.1.10.18|70|0 -1.3.6.1.2.1.31.1.1.1.10.19|70|0 -1.3.6.1.2.1.31.1.1.1.11.1|70|5164241 -1.3.6.1.2.1.31.1.1.1.11.2|70|0 -1.3.6.1.2.1.31.1.1.1.11.3|70|0 -1.3.6.1.2.1.31.1.1.1.11.4|70|0 -1.3.6.1.2.1.31.1.1.1.11.5|70|0 -1.3.6.1.2.1.31.1.1.1.11.6|70|2547322 -1.3.6.1.2.1.31.1.1.1.11.10|70|2236390 -1.3.6.1.2.1.31.1.1.1.11.11|70|2213931 -1.3.6.1.2.1.31.1.1.1.11.13|70|449477 -1.3.6.1.2.1.31.1.1.1.11.15|70|2849249 -1.3.6.1.2.1.31.1.1.1.11.16|70|0 -1.3.6.1.2.1.31.1.1.1.11.17|70|0 -1.3.6.1.2.1.31.1.1.1.11.18|70|0 -1.3.6.1.2.1.31.1.1.1.11.19|70|0 -1.3.6.1.2.1.31.1.1.1.12.1|70|75537 -1.3.6.1.2.1.31.1.1.1.12.2|70|0 -1.3.6.1.2.1.31.1.1.1.12.3|70|0 -1.3.6.1.2.1.31.1.1.1.12.4|70|0 -1.3.6.1.2.1.31.1.1.1.12.5|70|0 -1.3.6.1.2.1.31.1.1.1.12.6|70|0 -1.3.6.1.2.1.31.1.1.1.12.10|70|0 -1.3.6.1.2.1.31.1.1.1.12.11|70|0 -1.3.6.1.2.1.31.1.1.1.12.13|70|0 -1.3.6.1.2.1.31.1.1.1.12.15|70|0 -1.3.6.1.2.1.31.1.1.1.12.16|70|0 -1.3.6.1.2.1.31.1.1.1.12.17|70|0 -1.3.6.1.2.1.31.1.1.1.12.18|70|0 -1.3.6.1.2.1.31.1.1.1.12.19|70|0 -1.3.6.1.2.1.31.1.1.1.13.1|70|43169 -1.3.6.1.2.1.31.1.1.1.13.2|70|0 -1.3.6.1.2.1.31.1.1.1.13.3|70|0 -1.3.6.1.2.1.31.1.1.1.13.4|70|0 -1.3.6.1.2.1.31.1.1.1.13.5|70|0 -1.3.6.1.2.1.31.1.1.1.13.6|70|0 -1.3.6.1.2.1.31.1.1.1.13.10|70|0 -1.3.6.1.2.1.31.1.1.1.13.11|70|0 -1.3.6.1.2.1.31.1.1.1.13.13|70|0 -1.3.6.1.2.1.31.1.1.1.13.15|70|0 -1.3.6.1.2.1.31.1.1.1.13.16|70|0 -1.3.6.1.2.1.31.1.1.1.13.17|70|0 -1.3.6.1.2.1.31.1.1.1.13.18|70|0 -1.3.6.1.2.1.31.1.1.1.13.19|70|0 -1.3.6.1.2.1.31.1.1.1.15.1|66|1000 -1.3.6.1.2.1.31.1.1.1.15.2|66|0 -1.3.6.1.2.1.31.1.1.1.15.3|66|0 -1.3.6.1.2.1.31.1.1.1.15.4|66|0 -1.3.6.1.2.1.31.1.1.1.15.5|66|0 -1.3.6.1.2.1.31.1.1.1.15.6|66|50 -1.3.6.1.2.1.31.1.1.1.15.10|66|0 -1.3.6.1.2.1.31.1.1.1.15.11|66|0 -1.3.6.1.2.1.31.1.1.1.15.13|66|50 -1.3.6.1.2.1.31.1.1.1.15.15|66|50 -1.3.6.1.2.1.31.1.1.1.15.16|66|0 -1.3.6.1.2.1.31.1.1.1.15.17|66|0 -1.3.6.1.2.1.31.1.1.1.15.18|66|0 -1.3.6.1.2.1.31.1.1.1.15.19|66|0 -1.3.6.1.2.1.31.1.1.1.18.1|4| -1.3.6.1.2.1.31.1.1.1.18.2|4| -1.3.6.1.2.1.31.1.1.1.18.3|4| -1.3.6.1.2.1.31.1.1.1.18.4|4| -1.3.6.1.2.1.31.1.1.1.18.5|4| -1.3.6.1.2.1.31.1.1.1.18.6|4| -1.3.6.1.2.1.31.1.1.1.18.10|4| -1.3.6.1.2.1.31.1.1.1.18.11|4| -1.3.6.1.2.1.31.1.1.1.18.13|4| -1.3.6.1.2.1.31.1.1.1.18.15|4| -1.3.6.1.2.1.31.1.1.1.18.16|4| -1.3.6.1.2.1.31.1.1.1.18.17|4| -1.3.6.1.2.1.31.1.1.1.18.18|4| -1.3.6.1.2.1.31.1.1.1.18.19|4| -1.3.6.1.2.1.47.1.1.1.1.1.65536|2|65536 -1.3.6.1.2.1.47.1.1.1.1.1.262145|2|262145 -1.3.6.1.2.1.47.1.1.1.1.2.65536|4|RouterOS 7.1rc4 (testing) on RB951G-2HnD -1.3.6.1.2.1.47.1.1.1.1.2.262145|4|Linux 5.6.3 ehci_hcd RB400 EHCI -1.3.6.1.2.1.47.1.1.1.1.3.65536|6|0.0 -1.3.6.1.2.1.47.1.1.1.1.3.262145|6|0.0 -1.3.6.1.2.1.47.1.1.1.1.4.65536|2|0 -1.3.6.1.2.1.47.1.1.1.1.4.262145|2|65536 -1.3.6.1.2.1.47.1.1.1.1.5.65536|2|3 -1.3.6.1.2.1.47.1.1.1.1.5.262145|2|2 -1.3.6.1.2.1.47.1.1.1.1.6.65536|2|-1 -1.3.6.1.2.1.47.1.1.1.1.6.262145|2|-1 -1.3.6.1.2.1.47.1.1.1.1.7.65536|4|MIPS 74Kc V4.12 -1.3.6.1.2.1.47.1.1.1.1.7.262145|4|1-0 -1.3.6.1.2.1.47.1.1.1.1.8.65536|4| -1.3.6.1.2.1.47.1.1.1.1.8.262145|4| -1.3.6.1.2.1.47.1.1.1.1.9.65536|4| -1.3.6.1.2.1.47.1.1.1.1.9.262145|4| -1.3.6.1.2.1.47.1.1.1.1.10.65536|4| -1.3.6.1.2.1.47.1.1.1.1.10.262145|4| -1.3.6.1.2.1.47.1.1.1.1.11.65536|4| -1.3.6.1.2.1.47.1.1.1.1.11.262145|4|rb400_usb -1.3.6.1.2.1.47.1.1.1.1.12.65536|4| -1.3.6.1.2.1.47.1.1.1.1.12.262145|4|0x1d6b -1.3.6.1.2.1.47.1.1.1.1.13.65536|4| -1.3.6.1.2.1.47.1.1.1.1.13.262145|4|0x0002 -1.3.6.1.2.1.47.1.1.1.1.14.65536|4| -1.3.6.1.2.1.47.1.1.1.1.14.262145|4| -1.3.6.1.2.1.47.1.1.1.1.15.65536|4| -1.3.6.1.2.1.47.1.1.1.1.15.262145|4| -1.3.6.1.2.1.47.1.1.1.1.16.65536|2|2 -1.3.6.1.2.1.47.1.1.1.1.16.262145|2|2 -1.3.6.1.2.1.55.1.8.1.2.10.253.0.0.1.0.1.0.0.0.0.0.0.0.0.1.2|2|64 -1.3.6.1.2.1.55.1.8.1.2.10.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|64 -1.3.6.1.2.1.55.1.8.1.2.11.253.0.0.1.2.84.0.0.0.0.0.0.0.0.1.2|2|64 -1.3.6.1.2.1.55.1.8.1.2.11.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|64 -1.3.6.1.2.1.55.1.8.1.3.10.253.0.0.1.0.1.0.0.0.0.0.0.0.0.1.2|2|2 -1.3.6.1.2.1.55.1.8.1.3.10.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|1 -1.3.6.1.2.1.55.1.8.1.3.11.253.0.0.1.2.84.0.0.0.0.0.0.0.0.1.2|2|2 -1.3.6.1.2.1.55.1.8.1.3.11.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|1 -1.3.6.1.4.1.9.9.150.1.1.1.0|66|0 -1.3.6.1.4.1.2021.11.10.0|2|9 -1.3.6.1.4.1.14988.1.1.1.3.1.2.6|66|0 -1.3.6.1.4.1.14988.1.1.1.3.1.2.13|66|0 -1.3.6.1.4.1.14988.1.1.1.3.1.2.15|66|0 -1.3.6.1.4.1.14988.1.1.1.3.1.3.6|66|0 -1.3.6.1.4.1.14988.1.1.1.3.1.3.13|66|0 -1.3.6.1.4.1.14988.1.1.1.3.1.3.15|66|0 -1.3.6.1.4.1.14988.1.1.1.3.1.4.6|4|ele-guest -1.3.6.1.4.1.14988.1.1.1.3.1.4.13|4|ele-prn -1.3.6.1.4.1.14988.1.1.1.3.1.4.15|4|ele-lan -1.3.6.1.4.1.14988.1.1.1.3.1.5.6|4| -1.3.6.1.4.1.14988.1.1.1.3.1.5.13|4| -1.3.6.1.4.1.14988.1.1.1.3.1.5.15|4| -1.3.6.1.4.1.14988.1.1.1.3.1.6.6|65|0 -1.3.6.1.4.1.14988.1.1.1.3.1.6.13|65|1 -1.3.6.1.4.1.14988.1.1.1.3.1.6.15|65|0 -1.3.6.1.4.1.14988.1.1.1.3.1.7.6|2|2472 -1.3.6.1.4.1.14988.1.1.1.3.1.7.13|2|0 -1.3.6.1.4.1.14988.1.1.1.3.1.7.15|2|0 -1.3.6.1.4.1.14988.1.1.1.3.1.8.6|4|2472/20-eC/gn -1.3.6.1.4.1.14988.1.1.1.3.1.8.13|4| -1.3.6.1.4.1.14988.1.1.1.3.1.8.15|4| -1.3.6.1.4.1.14988.1.1.1.3.1.9.6|2|-109 -1.3.6.1.4.1.14988.1.1.1.3.1.9.13|2|0 -1.3.6.1.4.1.14988.1.1.1.3.1.9.15|2|0 -1.3.6.1.4.1.14988.1.1.1.3.1.10.6|65|92 -1.3.6.1.4.1.14988.1.1.1.3.1.10.13|65|0 -1.3.6.1.4.1.14988.1.1.1.3.1.10.15|65|0 -1.3.6.1.4.1.14988.1.1.1.3.1.11.6|65|0 -1.3.6.1.4.1.14988.1.1.1.3.1.11.13|65|1 -1.3.6.1.4.1.14988.1.1.1.3.1.11.15|65|0 -1.3.6.1.4.1.14988.1.1.4.3.0|2|4 -1.3.6.1.4.1.14988.1.1.4.4.0|4|7.1rc4 -1.3.6.1.4.1.14988.1.1.6.1.0|66|0 -1.3.6.1.4.1.14988.1.1.7.3.0|4|8A7008F7F185 -1.3.6.1.4.1.14988.1.1.8.1.1.2.1|4|LNMS_vlans -1.3.6.1.4.1.14988.1.1.8.1.1.2.4|4|macaut -1.3.6.1.4.1.14988.1.1.11.1.1.8.6|2|1 -1.3.6.1.4.1.14988.1.1.11.1.1.8.15|2|1 -1.3.6.1.4.1.14988.1.1.11.1.1.8.21|2|11 -1.3.6.1.4.1.14988.1.1.11.1.1.8.23|2|11 -1.3.6.1.4.1.14988.1.1.11.1.1.8.28|2|11 -1.3.6.1.4.1.14988.1.1.14.1.1.2.1|4|ether1-trunk -1.3.6.1.4.1.14988.1.1.14.1.1.2.2|4|ether2-test -1.3.6.1.4.1.14988.1.1.14.1.1.2.3|4|ether3-test -1.3.6.1.4.1.14988.1.1.14.1.1.2.4|4|ether4-test -1.3.6.1.4.1.14988.1.1.14.1.1.2.5|4|ether5-ac200 -1.3.6.1.4.1.14988.1.1.14.1.1.2.6|4|wlan2 -1.3.6.1.4.1.14988.1.1.14.1.1.2.10|4|BR-Switch -1.3.6.1.4.1.14988.1.1.14.1.1.2.11|4|vlan254 -1.3.6.1.4.1.14988.1.1.14.1.1.2.13|4|wlan100 -1.3.6.1.4.1.14988.1.1.14.1.1.2.15|4|wlan200 -1.3.6.1.4.1.14988.1.1.14.1.1.2.16|4|vlan22 -1.3.6.1.4.1.14988.1.1.14.1.1.2.17|4|vlan33 -1.3.6.1.4.1.14988.1.1.14.1.1.2.18|4|vlan44 -1.3.6.1.4.1.14988.1.1.14.1.1.2.19|4|vlan444 -1.3.6.1.4.1.14988.1.1.18.1.1.2.1|4x|542c3235342c42522d5377697463680a542c3235342c6574686572312d7472756e6b0d0a542c322c42522d5377697463680d0a542c322c6574686572312d7472756e6b0d0a542c3130302c42522d5377697463680d0a542c3130302c6574686572312d7472756e6b0d0a542c3230302c42522d5377697463680d0a542c3230302c6574686572312d7472756e6b0d0a542c32322c6574686572322d746573740d0a542c33332c6574686572332d746573740d0a542c34342c6574686572342d746573740d0a542c3434342c6574686572342d746573740d0a552c322c776c616e320d0a552c3130302c776c616e3130300d0a552c3230302c6574686572352d61633230300d0a552c3230302c776c616e3230300d0a552c312c42522d5377697463680d0a552c312c6574686572312d7472756e6b