~/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.
Here’s a breakdown of the output:
- 100 packets transmitted, 100 received: data loss (0% packet loss).
- rtt min/avg/max/mdev: This refers to the round-trip time (rtt) of the packets.
- min: The fastest response was 35.221 ms.
- avg: On average, the response time was 36.227 ms.
- max: The slowest response was 37.953 ms.
- mdev: Much variation there was in the response times.
- pipe 4 refers to how many packets were allowed to be in flight at the same time.
References