Measure a ping
Quest: measure-ping
Mission
Run ping -c 3 1.1.1.1 and report the average round-trip time in ms, or 100% packet loss if no replies provide an average. Ping tests ICMP, not whether a website works.
Commands You Will Use
ping
Steps
- Run
ping -c 3 1.1.1.1. - Read the summary line at the end.
- Find the average round-trip time if replies arrived. With no replies, read the packet-loss summary instead; do not invent an average.
- Use
guide answer 'your observed result'with the average andms, or the observed100% packet loss.
Hints
-c 3stops after three packets.- The average appears in the final timing summary.
- Include
msfor a timing value, or% packet losswhen no average is available. ICMP may be blocked even when HTTP works.
If Check Fails
Include the observed average and unit, or 100% packet loss if there were no replies. The quest checks your reported result, not captured ping output. If ping could not run at all, ask for help rather than inventing a result.

Linux Foundations