If I have a wired connection to my LAN I can use 'arp-scan -l' to find the IP addresses of other systems on the LAN. However arp-scan only works if *I* have a hard-wired connection.
How can one find IP addresses on a LAN when connected by WiFi?
On Sun, Sep 14, 2014 at 11:16:47AM +0100, William Hill wrote:
On 13 Sep 2014, at 19:09, Chris Green wrote:
How can one find IP addresses on a LAN when connected by WiFi?
Works for me :- nmap -sn 192.168.1.0/24
That looks pretty much what I want, it's a pity about all the 'noise' it produces but I guess I can filter it out with a grep.
Thanks all.
On 15 September 2014 07:54, Chris Green cl@isbd.net wrote:
On Sun, Sep 14, 2014 at 11:16:47AM +0100, William Hill wrote:
nmap -sn 192.168.1.0/24
That looks pretty much what I want, it's a pity about all the 'noise' it produces but I guess I can filter it out with a grep.
In that case nmap -oG- -sn 192.168.1.0/24 .. produces much friendlier output for grepping (which you probably already knew, but just in case you didn't).