Oct 25, 2023 3 min read

How to Check Availability via ping in Bash Scripts

Check availability via ping in bash script with our step-by-step tutorial. Ping is used to check connectivity between two network devices via IP.

Check Availability via ping in Bash Scripts
Table of Contents

Introduction

Before we start talking about how to check availability via ping in Bash scripts, let's briefly understand - What is Ping ?

A command-line utility called ping is used to check connectivity between two network devices, usually via an IP network. It measures the response time by sending ICMP (Internet Control Message Protocol) packets to the target host. The ping command can be used in Bash scripts to determine whether a host is accessible.

Using the ping command in Bash scripts allows you to check the availability or reachability of a network host or IP address. This can be useful for automated network monitoring, testing connectivity, or determining if a host is online.

This tutorial will demonstrate how to incorporate ping into your Bash scripts. We will also address a few FAQs on how to check availability via ping in Bash scripts.

Checking Host Availability via ping in Bash

The syntax for using the ping command in Bash to determine whether a host is available is as follows:

ping [-c count] [-i interval] [-t ttl] [-w deadline] destination

The 'ping' command has the following options:

‘-c count’: estimates the number of packets to send.

‘-i interval’: specifies the time interval between sending packets in seconds.

t ttl’: specifies the packets' Time To Live (TTL) value.

w deadline’: specifies the time in seconds that you must wait for an answer.

‘destination’: The target host to ping is identified by its hostname or IP address using this option.

Here is an example of how to use ping to check if a site is available:

#!/bin/bash

HOST="google.com"

# Ping the host

ping -c 1 $HOST > /dev/null

if [ $? -eq 0 ]; then

echo "Host $HOST is available"

else

echo "Host $HOST is not available"

fi

The host we want to ping in this case is "google.com," so I first defined it before using the "ping" command to send a single packet to the host. To prevent any output from being sent to the terminal, the 'ping' command's output is diverted to /dev/null.

Next, using the $? variable, I was able to determine the 'ping' command's exit status. If the exit status is zero, the host is up, and the message "$HOST is available" is printed. The message "$HOST is not available" is printed if the exit status is non-zero, which indicates that the host is down.

FAQs to Check Availability via ping in Bash Scripts

How does ping work? 

ping sends Internet Control Message Protocol (ICMP) Echo Request packets to a host and waits for ICMP Echo Reply packets. If a reply is received, the host is considered reachable.

How do I use ping in a Bash script? 

To use ping in a Bash script, use the ping command followed by the IP address or hostname you want to check. You can capture the output and use it in conditionals or process it further.

How can I check if a host is reachable using ping in a Bash script? 

Use the ping -c 1 <host> command, where <host> is the IP address or hostname, along with the -c option to specify the number of ICMP Echo Requests to send (in this case, 1). Check the exit status or output to determine reachability.

How can I suppress the output of ping in a Bash script?

Use the ping -c 1 <host> >/dev/null command to redirect output to /dev/null, effectively suppressing it while still checking the exit status.

How can I set a timeout for ping in a Bash script? 

Use the -w option followed by the desired timeout value in seconds to set a timeout. For example, ping -c 1 -w 5 <host> will try to reach the host for a maximum of 5 seconds.

How do I handle the output or exit status of ping in a Bash script? 

Capture the output using command substitution ($(ping ...)) or store the exit status in a variable ($?). Conditionally execute further actions based on the output or exit status.

Can ping be used with both IP addresses and domain names? 

Yes, ping can be used with both IP addresses and domain names. It resolves the domain name to an IP address before initiating the ICMP Echo Request.

Conclusion

The 'ping' command is a quick and efficient method to see if two devices connected to a network. You can start using 'ping' in your own Bash scripts to check the availability of hosts by following the examples given in this tutorial.

If you have any queries or doubts, please leave them in the comment below. We'll be happy to address them.

Great! You’ve successfully signed up.
Welcome back! You've successfully signed in.
You've successfully subscribed to DevOps Tutorials - VegaStack.
Your link has expired.
Success! Check your email for magic link to sign-in.
Success! Your billing info has been updated.
Your billing was not updated.