Home » Scripting and Automation » Wait for command execution till Internet is available using fping

Wait for command execution till Internet is available using fping

Do you want to wait for an internet availability before proceeding further such as send an email from command line only when internet is available.. In those cases, we have to go into infinite loop of checking whether we are really connected to network. Ubuntu has a utility called “fping” we comes handy for such use cases. [ fping – send ICMP ECHO_REQUEST packets to network hosts ]

$ sudo apt-get install fping
$ vim test_network.sh
#!/bin/bash
while [ "$(fping google.com | grep alive)" == "" ]
do
    echo "waiting for internet ..."
    sleep 3
done
echo "Internet is now online"

You can either use above code OR use below code,

#!/bin/bash
echo "checking if network is available, if not we will wait..."
fping -l 8.8.8.8 | read
echo "Internet is now online"

Now just run this script as,

$ bash test_network.sh

What is fping ?

fping is a program like ping which uses the Internet Control Message Protocol (ICMP) echo request to determine if a target host is responding. fping differs from ping in that you can specify any number of targets on the command line, or specify a file containing the lists of targets to ping. Instead of sending to one target until it times out or replies, fping will send out a ping packet and move on to the next target in a round-robin fashion. In the default mode, if a target replies, it is noted and removed from the list of targets to check; if a target does not respond within a certain time limit and/or retry limit it is designated as unreachable. fping also supports sending a specified number of pings to atarget, or looping indefinitely (as in ping ). Unlike ping, fping is meant to be used in scripts, so its output is designed to be easy to parse.The binary named fping6 is the same as fping, except that it uses IPv6 addresses instead of IPv4.


Subscribe our Rurban Life YouTube Channel.. "Rural Life, Urban LifeStyle"

Leave a Comment