Last Updated: April 18, 2016
·
1.172K
· r-dent

List all connected IP adresses in lokal network

First ping the Broadcast Address:

ping 192.168.0.255

Then use the arp tool to display all current ARP entries

arp -a

2 Responses
Add your response

I needed to use -b to ping a broadcast on Debian with iputils-ping version 3:20101006-3

over 1 year ago ·

To find the broadcast address of an interface: ifconfig | grep Bcast | cut -d: -f3 | cut -d' ' -f1

over 1 year ago ·