Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

How can I ping a certain address and when found, stop pinging.

I want to use it in a bash script, so when the host is starting up, the script keeps on pinging and from the moment the host is available, the script continues...

thanks! ;-)

share|improve this question

6 Answers

up vote 9 down vote accepted

Ping the target host once. Check if the ping succeeded (return value of ping is zero). If host is not alive, ping again.

The following code can be saved as a file and called with the hostname as argument, or stripped of the first and last line and used as function within an existing script (waitForHost hostname).

The code does not evaluate the cause for failure if the ping does not result in a response, thus looping forever if the host does not exist. My BSD manpage lists the meaning of each return value, while the linux one does not, so I guess this might not be portable, that's why I left it out.

#!/bin/bash

PING=`which ping`

function waitForHost
{
    if [ -n "$1" ]; 
    then
        waitForHost1 $1;
    else
        echo "waitForHost: Hostname argument expected"
    fi
}

function waitForHost1
{
    reachable=0;
    while [ $reachable -eq 0 ];
    do
    $PING -q -c 1 $1
    if [ "$?" -eq 0 ];
    then
        reachable=1
    fi
    done
    sleep 5
}
waitForHost $1
share|improve this answer
1  
You forgot to set reachable to something after ping. – radius Jul 17 '09 at 8:11
Thanks, merged two variants and messed up ;) – Jan Jungnickel Jul 17 '09 at 8:23
good solution, thanks! you just forgot a space between 'c' and '1'... – Sander Versluys Jul 17 '09 at 9:10
1  
-c1 works fine for me on linux and bsd (and solaris, but on solaris -c has another effect) – Jan Jungnickel Jul 17 '09 at 9:26
cool, you've improved your answer, lovely! ;-) – Sander Versluys Jul 17 '09 at 11:07

you can do a loop, send one ping and depending on the status break the loop, for example (bash):

while true; do ping -c1 www.google.com > /dev/null && break; done

putting this somewhere in your script will block, until www.google.com is pingable.

m

share|improve this answer
This while true and break is the cleaner solution, IMO. – Dan Carley Jul 17 '09 at 8:26
UNREACHEABLE=1;
while [ $UNREACHEABLE -ne "0" ]; 
   do ping -q -c 1 HOST &> /dev/null; UNREACHEABLE=$?; sleep 1;
done

You may remove sleep 1, it's only here to prevent any flooding problem in case where the host would be reacheable but ping would not exit with code 0.

share|improve this answer

A further simplification of Martynas' answer:

while ! ping -c1 www.google.com &>/dev/null; do :; done

note that ping itself (negated by !) is used as the loop test; as soon as it succeeds, the loop ends. The loop body is empty, with the null command ":" used to prevent a syntax error.

share|improve this answer
perfect! should be accepted answer – Casey Feb 16 at 23:35

Please see good options at stackoverflow. Here is a sample in bash, you will have to loop over the following code until it returns a successfull ping result.


ping -c 1 -t 1 192.168.1.1;
if [ $? -eq 0 ]; then
    echo "192.168.1.1 is up";
else 
    echo "ip is down";
fi

share|improve this answer
wow, the answer on that SO link is great! txn – Sander Versluys Jul 17 '09 at 9:02

any of the above loops can also be used with fping rather than ping which, IMO, is better suited for use in scripts than ping itself. see fping(8) for details.

while ! fping -q $HOSTNAMES ; do :; done

also useful for testing if machines are up before doing something on them. a simple example:

for h in HOST1 HOST2 HOST3 ; do
  if fping -q $h ; then
     echo -n "$h : "
     ssh $h "uname -a"
  fi
done
share|improve this answer
wow cool, i'm such a noob, didn't know that command... txn ;-) – Sander Versluys Jul 20 '09 at 9:31
impossible. how can you not know all of the millions of commands available? :) – Craig Sanders Jul 20 '09 at 9:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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