How to find IPs on a wireless network?
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? -- Chris Green
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. -- Chris Green
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). -- Mark Rogers // More Solutions Ltd (Peterborough Office) // 0844 251 1450 Registered in England (0456 0902) @ 13 Clarke Rd, Milton Keynes, MK1 1LG
participants (3)
-
Chris Green -
Mark Rogers -
William Hill