Skip to content Skip to sidebar Skip to footer

Ping Continuously and Look Up Process Debian

If you are a regular terminal user on any platform, you must be familiar with the "ping" command. Ping is one of the most used tools for network diagnosis to check whether the network is available or reachable. Moreover, this command is also used to check the server status.

Ping uses ICMP (Internet Control Message Protocol) packets to gather network statistics. The most common tasks that ping command perform are:

  • Testing network connectivity, including LAN and internet.
  • Checking server status.
  • Testing DNS issues.

When you use the "ping" command, your device sends a request to the host device and waits for the connection to establish. The ping command output contains information about packets and the amount of time each package took to reach the host. Terminal keeps on printing the responses until the communication gets interrupted. Let's check how to use the ping command in Linux:

How to use the ping command:

Firstly, check the basic syntax of the "ping" command:

Let's ping the linuxhint server, launch Terminal, and type:

ping/1%20copy.png

The above output is showing various information:

icmp_seq: The sequence number of the packet. If it is the first packet, the icmp_seq number would be 1.

ttl: ttl stands for "Time to Live", the ttl number represents the number of hops (routers) a packet takes to reach the destination before it is discarded.

time: The amount of time a packet takes to reach the destination and then return to the host device.

To stop the ping process, press "Ctrl C", the command will tell the number of packets it transmitted/received, the number of packets lost, and time.

ping/2%20copy.png

If you don't get a ping reply, then there is no network connectivity between your device and the host server.

How to change the time interval between packets (ping command):

Ping command sends packet after one second by default, but this time duration can be altered. To change the time, use "-i" after "ping":

$ ping –i 2 linuxhint.com

ping/3%20copy.png

To decrease the time:

$ ping –i 0.2 linuxhint.com

ping/5%20copy.png

How to check the status of a local network (ping command):

If you have issues accessing a website, then via ping command, you can also diagnose your local network. There are various approaches use any of them:

The quickest way is:

Or:

and some users prefer:

ping/multip.png

How to limit the number of packets (ping command):

Ping command keeps on sending packets until it manually stopped, but the number of packets can be limited using "-c" and then the number of packets because hostname:

$ ping –c 4 linuxhint.com

ping/9%20copy.png

The above output was indicating that the command only sent 4 packets. The other option of limiting the number of packets is setting the time:

ping/10%20copy.png

The above command will stop pinging after 6 seconds.

How to flood the network (ping command):

To check the performance of the network under heavy load, ping command can also be used to flood the network:

ping/11%20copy.png

In the output, every dot represents the sent packet and backspace for every response.

How to get a summary of statistics (ping command):

If you are only interested in getting a summary of packets transmission, then use "-q", q is this operator stands for quiet:

$ ping –c 5 –q linuxhint.com

ping/12%20copy.png

How to make ping audible (ping command):

To enable the sound of each ping, use the "-a" operator:

ping/13%20copy.png

Commonly used ping options:

Some other commonly used ping options and their usage are mentioned below:

Option Description
-b Allows to ping broadcast IP
-l Sending packets without waiting for a reply (Requires sudo permission to send more than 3 packets)
-V It shows the current version of the ping
-v Displays additional ICMP packets along with echo responses
-T Allows to set time to live (ttl)
-d For socket debugging
-r Allows to the bypass routing table and sends directly to the host.
-s Sets the packet size

Conclusion:

Ping command is a well-known utility to diagnose/troubleshoot and to get network information. This post is focusing on some essential commands of ping and their usage. If you still need more information about Ping, then execute "man ping" in the terminal.

About the author

I am a professional graphics designer with over 6 years of experience. Currently doing research in virtual reality, augmented reality and mixed reality.
I hardly watch movies but love to read tech related books and articles.

allenseliffe1975.blogspot.com

Source: https://linuxhint.com/linux_ping_command/

Post a Comment for "Ping Continuously and Look Up Process Debian"