mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
captive: Get MAC address of a device without calling arp
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -374,6 +374,26 @@ sub wifi_get_signal_level($) {
|
||||
|
||||
return $signal_level;
|
||||
}
|
||||
|
||||
sub get_hardware_address($) {
|
||||
my $ip_address = shift;
|
||||
my $ret;
|
||||
|
||||
open(FILE, "/proc/net/arp") or die("Could not read ARP table");
|
||||
|
||||
while (<FILE>) {
|
||||
my ($ip_addr, $hwtype, $flags, $hwaddr, $mask, $device) = split(/\s+/, $_);
|
||||
if ($ip_addr eq $ip_address) {
|
||||
$ret = $hwaddr;
|
||||
last;
|
||||
}
|
||||
}
|
||||
|
||||
close(FILE);
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
# Remove the next line to enable the testsuite
|
||||
|
||||
Reference in New Issue
Block a user