Monthly Archives: October 2015
See who is connected to the same network / WIFI
There are tools out there, such as Angry IP Scanner, iNet or IP Scanner, Â but this can easily be done using a bash script, not as nice looking perhaps but it does the job. The script :
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash for i in {0..255} do cmd="nslookup 192.168.1." cmd=$cmd$i result=$($cmd|egrep "Address|name") echo "****************" echo $cmd echo $result done |
Which should … Continue reading
Posted in Uncategorized
1 Comment