up vote 3 down vote favorite
2
share [g+] share [fb]

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?

link|improve this question

69% accept rate
feedback

6 Answers

up vote 1 down vote accepted

en bash:

#!/bin/sh

COUNTER=1

while [ $COUNTER -lt 254 ]
do
   ping 192.168.1.$COUNTER -c 1
   COUNTER=$(( $COUNTER + 1 ))
done
link|improve this answer
you might want to add a "-c 1" option to the ping command there... – Henrik Paul Feb 2 '09 at 13:26
feedback

Not all machines have nmap available, but it's a wonderful tool for any network discovery, and certainly better than iterating through independent ping commands.

$ 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
link|improve this answer
Best answer to date because it is the first to be compatible with the reality that not all subnets are the same size, and using the /24 notation can be generalized to any size subnet. – Liudvikas Bukys Feb 2 '09 at 14:03
feedback

Broadcast ping:

$ ping 192.168.1.255
PING 192.168.1.255 (192.168.1.255): 56 data bytes
64 bytes from 192.168.1.154: icmp_seq=0 ttl=64 time=0.104 ms
64 bytes from 192.168.1.51: icmp_seq=0 ttl=64 time=2.058 ms (DUP!)
64 bytes from 192.168.1.151: icmp_seq=0 ttl=64 time=2.135 ms (DUP!)
...

(Add a -b option on Linux)

link|improve this answer
note: you may need to add a "-b" in there depending on version/platform – Mark Renouf Feb 2 '09 at 13:21
Also, not all operating systems will respond to a broadcast ping (by default). – Mark Renouf Feb 2 '09 at 13:22
In IPv6 use "ff02::1". – Keltia Feb 2 '09 at 13:34
feedback

Check if this blog post has what you need.

link|improve this answer
feedback

The command line utility nmap can do this too:

nmap -sP 192.168.1.*

(IIRC)

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.