Network
Ping
Test network connectivity
Input
Terminal
Console ready. Execute a command to see output...
About Ping
What connects you to the world?
Ping is the heartbeat of the internet. It uses the ICMP (Internet Control Message Protocol) to send "Echo Request" packets to a target host and waits for an "Echo Reply".
How it works under the hood
- The Handshake: Your device sends a tiny data packet (32 or 64 bytes) to the server.
- The Stopwatch: A timer starts the moment the packet leaves.
- The Return: The server catches the packet and immediately throws it back.
- The Result: The time taken (Round Trip Time) is your "Ping".
Interpreting the Data
- < 20ms: Pro-gaming quality. Fiber-optic speeds.
- 20ms - 100ms: Standard operations. Good for browsing and streaming.
- > 150ms: Noticeable lag. Voice calls may chop.
- Packet Loss: If packets go out but don't come back, your connection is unstable or the server is firewalled.
Pro Tip: High ping to a local server usually means local Wi-Fi congestion. High ping to a server across the ocean is just the speed of light law (physics!).
How to use Ping
- Enter the targetType the domain name or IPv4 address into the host field. No protocol prefix and no trailing slash.
- Pick a packet countAnywhere from 1 to 6. Four is enough for a quick reachability check, six gives a more reliable jitter estimate.
- Run the pingHit Ping. Packets stream into the terminal panel one by one with their RTT, then a summary line appears at the end.
- Read the summaryLook at packet loss (anything above 0% on a stable network is suspicious) and the min/avg/max RTT. If timing varies wildly across packets, the path is congested. Follow up with Traceroute to find the slow hop.
Frequently Asked Questions
- Browser returns an HTTP status that depends on the entire web stack (DNS, TLS, the app). Ping uses raw ICMP and tells you only whether packets can reach the host and how fast they round-trip. That isolates network reachability from application or DNS issues. If ping works but the browser does not, the network is fine and the problem sits higher up.