How do I get the IP address of all the devices on my local network? I am using Mac OS X Snow Leopard.
|
feedback
|
|
Using nmap, you can see machines that are alive and it will return both hostnames (if found) and IP addresses: For example, if your network is 192.168.1.X, use:
or if it's 192.168.0.X:
Example output:
| |||
feedback
|
|
Why bother downloading and installing nmap? If you are on a 192.168.1.xxx home network just ping 192.168.1.255 and look at the replies. All the devices on your subnet that can respond to the ping will. you can arp -a for additional info. | |||||
feedback
|
|
You could (and this is what I would do) run a nmap scan on the local ip address range (e.g. 192.168.XXX.0-255) and see what responds. | |||
|
feedback
|