ping Ping Ping Ping Ping

The Ping tool

"Ping" (short for Packet INternet Groper) is without a doubt the best-known network administration tool. It is one of the simplest tools, because all it does is send packets to check if a remote machine is responding and, by extension, if it is accessible over the network.

The ping tool, then, is used to diagnose network connectivity using commands of the type:

ping name.of.the.machine

name.of.the.machine represents the machine's IP address, or its name. It is generally preferable to test it first using the machine's IP address.

How ping works

Ping relies on the ICMP protocol, which is used to diagnose transmission conditions. For this reason, it uses two types of protocol messages (out of the 18 offered by ICMP):

  • Type 0, which corresponds to an "echo request" command, sent by the source machine;
  • Type 8, which corresponds to an "echo reply" command, sent by the target machine.

At regular intervals (by default, every second), the source machine (the one running the ping command) sends an "echo request" to the target machine. When the "echo reply" packet is received, the source machine displays a line containing certain information. If the reply is not received, a line saying "request timed out" will be shown.

Ping results

Depending on the operating system, the results of the ping may be displayed somewhat differently.

Here are the results of the command in GNU/Linux:

ping www.commentcamarche.net
PING www.commentcamarche.net (163.5.255.85): 56 data bytes
64 bytes from 163.5.255.85: icmp_seq=0 ttl=56 time=7.7 ms
64 bytes from 163.5.255.85: icmp_seq=1 ttl=56 time=6.0 ms
64 bytes from 163.5.255.85: icmp_seq=2 ttl=56 time=5.5 ms
64 bytes from 163.5.255.85: icmp_seq=3 ttl=56 time=6.0 ms
64 bytes from 163.5.255.85: icmp_seq=4 ttl=56 time=5.3 ms
64 bytes from 163.5.255.85: icmp_seq=5 ttl=56 time=5.6 ms
64 bytes from 163.5.255.85: icmp_seq=6 ttl=56 time=7.0 ms
64 bytes from 163.5.255.85: icmp_seq=7 ttl=56 time=6.0 ms
--- www.commentcamarche.net ping statistics ---
8 packets transmitted, 8 packets received, 0% packet loss
round-trip min/avg/max = 5.3/6.1/7.7 ms

Here are the results of the command in Windows:

ping www.commentcamarche.net
Pinging www.commentcamarche.net [163.5.255.85] with 32 bytes of data:
Reply from 163.5.255.85: bytes=32 time=34 ms TTL=54
Reply from 163.5.255.85: bytes=32 time=37 ms TTL=54
Reply from 163.5.255.85: bytes=32 time=32 ms TTL=54
Reply from 163.5.255.85: bytes=33 time=32 ms TTL=54
Ping statistics for 163.5.255.85:
Packets: sent = 4, received = 4, lost = 0 (loss 0%),
Approximate round trip times in milli-seconda:
Minimum = 32ms, Maximum = 37ms, Average = 34ms

Thus, the ping command's output gives:

  • The IP address which corresponds to the name of the remote machine;
  • The ICMP sequence number;
  • The packet's time to live (TTL). The time to live (TTL) field shows how many routers the packet went through as it travelled between the two machines. Each IP packet has a TTL field with a relatively high value. Each time it goes through a router, the value is reduced. If this number ever reaches zero, the router interprets this to mean that the packet is going around in circles, and terminates it;
  • The round-trip delay field corresponds to the length of time in milliseconds of a round trip between the source and target machines. As a general rule, a packet must have a delay no longer than 200 ms;
  • The number of lost packets.


Last update on Thursday October 16, 2008 02:43:15 PM.This document entitled « Ping » from Kioskea (en.kioskea.net) is made available under the Creative Commons license. You can copy, modify copies of this page, under the conditions stipulated by the licence, as this note appears clearly.
Best answers for « Ping » in :
Ping of death attack Show Ping of death attack The ping of death attack is one of the oldest network attacks. The principle of ping of death simply involves creating an IP datagram whose total size exceeds the maximum authorized size (65,536 bytes). When such a packet is...
Download Ping Tester 2008 Show In computer science, "Ping" is an order allowing to test the presence of a machine on a network. PingTester is a tool allowing to stock a mailing list IP. He also allows to test orders networks to augment her effectiveness.Ameliorate the tracing of...
Sudden closure of the window or ipconfig ping Show Sudden closure of the window or ipconfig ping Solutions Whenever you run a command from the menu start/Run, the command window opens and immediately close without giving the time to consult the screen. Solutions Below is a tips to...
Introduction to MTU ShowIntroduction to MTU What is MTU Calculate the MTU Find the value of the MTU on Windows Changing the MTU on Windows Find the value of the MTU on Linux What is MTU The Maximum Transmission Unit (MTU) (maximum size of transfer...
MacOS X – Associating a name to an IP Address ShowMacOS X – Associating a name to an IP Address What you should know Use this step Example What you should know Please note: this is only valid until MacOSX 10.4, NOT for MacOSX 10.5 (Leopard) MacOSX is a BSD system, the first...
Connection very low or no network ShowConnection very low or no network Network problem Solution Network assign but no connectivity Problem on the network layer Solution Problem with WiFi Below is a tips of how to solve your network trouble under windows XP...
Network tests and diagnostics ShowTesting the IP configuration Before doing anything else, you are advised to check the computer's IP configuration. Windows systems offer a command-line tool, called ipconfig, that lets you find out your computer's IP configuration. The output of...
Denial of service attack ShowIntroduction to denial-of-service attacks A "denial-of-service attack" (abbreviated DoS) is a type of attack that aims to make an organization's services or resources unavailable for an indefinite amount of time. Most of the time, these attacks are...
Teardrop attack ShowFragment attack A "fragment attack" is a network saturation (denial-of-service) attack that exploits the fragmentation principle of the IP protocol. The IP protocol is used to fragment large packets into several IP packets each having a sequence...