Created
June 17, 2015 17:40
-
-
Save alpsayin/607eb3590bde5af41d4c to your computer and use it in GitHub Desktop.
OpenWrt WhoIsHome Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# OpenWrt whoIsHome script | |
# Alp Sayin | |
# 17/06/2015 | |
deviceName="wlan0" | |
dhcpReservationFile="/etc/config/dhcp" | |
dhcpLeasesFile="/tmp/dhcp.leases" | |
echo `date` | |
clients=`iw dev $deviceName station dump | awk '{ if($1 == "Station" ) print $2 }'` | |
for client in $clients | |
do | |
# staticHostname=`awk -v client=$client '{ if($1=="option" && $2=="mac") { if($3=="\x27"client"\x27" ) { print lastName } }; if($1=="option" && $2=="name") lastName=$3 }' $dhcpReservationFile` | |
leaseIp=`awk -v client=$client '{ if($2==client) { print $3 } }' $dhcpLeasesFile` | |
leaseHostname=`awk -v client=$client '{ if($2==client) { print "\x27"$4"\x27" } }' $dhcpLeasesFile` | |
echo -e "Mac Address\t->\t$client" | |
echo -e "Ip Address\t->\t$leaseIp" | |
if [[ "$staticHostname" != "$leaseHostname" && -z "staticHostname" ]] | |
then | |
echo -e "Static Hostname\t->\t$staticHostname \nLease Hostname\t->\t$leaseHostname \n"; | |
else | |
echo -e "Hostname\t->\t$leaseHostname \n" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment