~/Ping In Detail

Oct 4, 2022


ping

This command sends 100 ping requests to "osadze.com" (-c 100), with a 0.01 second interval. The -q silences intermediate output.

1
2
3
4
5
ping -qi 0.01 -c 100 osadze.com
#PING osadze.com (45.63.17.120) 56(84) bytes of data.
#--- osadze.com ping statistics ---
#100 packets transmitted, 100 received, 0% packet loss, time 1211ms
#rtt min/avg/max/mdev = 35.221/36.227/37.953/0.546 ms, pipe 4

Here’s a breakdown of the output:

References

Tags: [cli] [linux]