Javatpoint Logo
Javatpoint Logo

Ping command in Linux

Introduction to Ping Command

Ping is short for Packet Internet Groper. This command is mainly used for checking the network connectivity among host/server and host. The ping command takes the URL or IP address as input and transfers the data packet to a specified address along with a "PING" message. Then, it will get a reply from the host/server. This time is known as "latency".

Note: Low latency and fast ping means faster connection.

Most of the users of Linux are used to for the ping command. Almost every user know how to use this command in its common form. But, there are several addition variations and options in ping command.

In this article, we will explain by using some of the most helpful ping commands of Linux with examples.

These ping commands will work with any Linux or Unix distribution. The test system that we used for providing the output samples and examples is Ubuntu 20.04 LTS.

Prerequisites

  • Access to a command-line
  • Unix or Linux-like system
  • A user with the essential permissions to execute the commands

Working of Ping Command

In Linux, the ping command is a general utility which is used for checking whether any network is present and if a host is attainable. We can test if the server is up and executing using this command. Also, it helps several connectivity issues with troubleshooting.

The ping command permits us to:

  • Test our Internet connection.
  • Check if the remote machine is active.
  • Analyse when there are network problems such as high latency or dropped packages.

When we try to "ping" the remote host, our machine starts transferring ICMP echo requests and delays for a response. We will get an echo response for all requests when the connection is made.

The result of the ping command includes the times it takes for all packets for reaching its target and return. Besides, the terminal prints the reply until interrupted. There are some lines using ping statistics after all the sessions.

Ping Command Usage

The basic syntax of the ping command contains ping pursued by the hostname, a website name, or exact IP address.

Syntax:

So, we can type inside our terminal for checking whether the remote host is up:


Ping command in Linux

For stopping the process, we can use the Ctrl+C keys.

  • from: It tells the target and its IP address.
    Important: The IP address might be different for any website depending on our geographical location.
  • ttl=52: It tells the value, i.e., Time to Live from 1-255. Also, it indicates network number hops a packet could take before any router removes it.
  • icmp_seq=1: It tells the all ICMP packet's sequence number. It increases by a single number for all subsequent echo requests.
  • time=7.68 ms: It tells the Time that it took any packet for reaching the target and come back to the origin. It expressed in ms (milliseconds).

Examples of ping command

ping "localhost" for checking Local Network

If we find issues reaching a remote machine or a website, we can ping the localhost to ensure that we have a network connection. We can use anyone of the following ways for checking the interface of the local network:

  • ping 0: It is one of the quickest option to ping a localhost. The terminal will resolve determine the IP address and gives a response once we enter this command.
  • ping localhost: We can use the ping localhost name. This name will refer to our system and when we enter this command, we will say "ping this system".
  • ping 127.0.0.1: A few people prefer entering the IP address to ping the localhost.

Note: The ping result will look the similar whichever option we select.

Example is as follows:


Ping command in Linux

Internet Protocol Specification

IPv6 is an alphanumeric format of the IP address that supersedes IPv4. The causes for it is that there is a restricted IPv4 address number.

To request IPv4 or IPv6 address, we can add -4 or -6 before IP/hostname or after ping command.

Modify Time Interval among Ping Packets

The interval (default) among all ping requests is one second. We can decrease or increase the time with the help of a switch known as '-i'.

We use the values which are lower than 1 for decreased the ping time interval:


Ping command in Linux

We can use the values which are higher than 1 for increased the ping time interval.

Flood the Network with ping

We can apply ping flood for testing the performance of our network under heavy load. An option in ping flood, i.e., -f needs root to run. Otherwise, we can also use the sudo option to our ping command for flooding a host. It transfers several packets as soon as possible.

The command is as follows:

The result prints a dot for all transferred packets and backspace for all responses. The statistics line displays the ping command summary.

Change the size of the ping packet

We may wish to apply -s for increasing the size of the packet through the 56 (84) bytes default value in this scenario. In parenthesis, the number illustrates the ping bytes transferred including the header packet 28 bytes.

For example, for increasing the size of the packet to 1000 bytes, we can use the following command:


Ping command in Linux

This command is helpful if analyzing network performance. We can analyze when a network link throttles if we increase the size of the packet to some thousand bytes.

How to fix the ping number

The setting (default) for the ping command is for keeping the request until we interrupt it. We can fix the ping number with the help of the following two methods:

1. Limit Count of Ping Packet

We can use the -c option and a number for automatically making the ping command stop after it transfers a possible number of packets. It sets the desired ping requests amount is represented in the following example:


Ping command in Linux

The ping command will stop transferring packets after any two requests as we can see in the screenshot above.

2. Fix time limit in the ping command

We can include -w and a time interval in seconds to our command for stopping getting a ping result after a particular time amount.

For example, we can type the ping command for stopping printing ping outputs after 25 seconds:


Ping command in Linux

Other uses of the ping command

Suppress Ping Result for Printing Summary Statistics Only

If we don't wish to clog our screen with details for all the packets, use the -q option for displaying the only summary.

The -q switch prints a single line along with the regular ping details and after that gives the statistics in the end. In this command, the "q" letter is short for the "quiet" result.


Ping command in Linux

Usually, we add the quiet result with other options. We will fix the ping for sending 10 packets in this case and suppress the result.

Include Timestamp Before Every Line in ping result

If we wish to remember the daytime when we run the ping command, we can add the -D switch as follows:


Ping command in Linux

It will print the timestamp in the Unix format before every line.

Note: We require to use the D uppercase because these commands are case-sensitive.

Audible Ping if a Host is Attainable

When we use the -a option, the system will play a sound if there is a reply from the host. The audible ping is helpful if we are troubleshooting network problems and don't wish to look at our screen until there is a reply.


Ping command in Linux

The result looks similar to any regular ping command result.

Display Ping Version

We can check the ping tool version on our system. We can also append the -V option to the ping command for displaying this utility version.

The command is as follows:


Ping command in Linux

Mostly Used Ping Command

The following are some generally used ping commands:

a- It produces a sound if the peer could be reached.

b- It permits ping the IP address of a broadcast.

B- It prevents the ping from changing the probe source address.

c- It limits the number of transferred ping requests.

d- It sets an option, i.e., SO-DEBUG over the used socket.

f- It floods the network by transferring several packets per second.

i- It describes the interval among the successive transmission of the packet. One second is the default value.

I- It sets the IP address of the source to the described IP address of the interface. This option is needed if pinging the lack address of IPv6 link. We can use the name of the device or IP address.

l- It specifies several packets to transfer without delaying a response.

q- It shows IP addresses in the output of the ping instead of hostnames.

T- It fixes the Time To Live.

v- It gives verbose output.

V- It shows the version of the ping and exits to a newer command prompt line.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA