Is there a command line based way to send pings to each computer in a subnet? Like
for (int i = 1;i < 254; i++)
ping(192.168.1.i)
to enforce arp resolution?
|
Is there a command line based way to send pings to each computer in a subnet? Like
to enforce arp resolution?
| ||||
|
feedback
|
|
en bash:
| ||||
|
feedback
|
|
Not all machines have $ nmap -n -sP 10.0.0.0/24 Starting Nmap 4.20 ( http://insecure.org ) at 2009-02-02 07:41 CST Host 10.0.0.1 appears to be up. Host 10.0.0.10 appears to be up. Host 10.0.0.104 appears to be up. Host 10.0.0.124 appears to be up. Host 10.0.0.125 appears to be up. Host 10.0.0.129 appears to be up. Nmap finished: 256 IP addresses (6 hosts up) scanned in 2.365 seconds | |||
feedback
|
|
Broadcast ping:
(Add a | |||||||
feedback
|
|
Check if this blog post has what you need. | |||
|
feedback
|
|
The command line utility nmap can do this too:
(IIRC) | |||
|
feedback
|
|
Under linux, I think ping -b 192.168.1.255 will work (192.168.1.255 is the broadcast address for 192.168.1.*) however IIRC that doesn't work under windows. | |||
|
feedback
|