1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

arp can take for ever

added -n to the arp command to speed it up!
This commit is contained in:
sunnybank101 2019-07-12 11:35:25 +01:00 committed by glaszig
parent b5f875cce7
commit 62c7e99465

View File

@ -239,7 +239,7 @@ if ($arrHostapdConf['WifiAPEnable'] == 1) {
} else { } else {
$client_iface = RASPI_WIFI_CLIENT_INTERFACE; $client_iface = RASPI_WIFI_CLIENT_INTERFACE;
} }
exec('cat '.RASPI_DNSMASQ_LEASES.'| grep -E $(arp -i '.$client_iface.' | grep -oE "(([0-9]|[a-f]|[A-F]){2}:){5}([0-9]|[a-f]|[A-F]){2}" | tr "\n" "\|" | sed "s/.$//")', $clients); exec('cat '.RASPI_DNSMASQ_LEASES.'| grep -E $(arp -i '.$client_iface.' -n | grep -oE "(([0-9]|[a-f]|[A-F]){2}:){5}([0-9]|[a-f]|[A-F]){2}" | tr "\n" "\|" | sed "s/.$//")', $clients);
foreach ($clients as $client) { foreach ($clients as $client) {
$client_items = explode(' ', $client); $client_items = explode(' ', $client);
echo '<tr>'.PHP_EOL; echo '<tr>'.PHP_EOL;