Check if an IP address or hostname is reachable online. Simulates a ping using HTTP probing and DNS resolution to report reachability and response time.
๐ก What Is a Ping Test?
Ping sends ICMP Echo Request packets to a target host and measures the round-trip time (RTT) for each response. It is the most basic network diagnostic tool, used to verify that a host is reachable and to estimate latency between your location and the target server.
โก Latency
Round-trip time measured in milliseconds. Under 20 ms is excellent; 20โ100 ms is typical for intercontinental routes; over 200 ms indicates high latency.
๐ฆ Packet Loss
If some pings time out it indicates packet loss โ usually caused by congestion, firewalls, or network instability along the route.
๐ ICMP Blocked
Some servers and firewalls block ICMP Echo Requests. A non-response does not always mean the host is offline โ it may simply block ping.
๐ Online Ping
A server-side ping test reaches targets that may be blocked from your local network, and removes your own ISP's latency from the measurement.
๐ ๏ธ Common Uses
- Check whether a server or website is online and responding
- Measure baseline latency to a game server or CDN edge node
- Diagnose intermittent connectivity issues with a remote host
- Verify that a newly deployed server is reachable before further configuration
โ Frequently Asked Questions
Why does ping show "Request timed out"?
The target host either doesn't exist, has gone offline, or has a firewall rule dropping ICMP. Try pinging a well-known public IP like 8.8.8.8 (Google DNS) to rule out local connectivity issues.
What is a good ping time?
For gaming and real-time applications, under 50 ms is excellent. For general web browsing any latency under 200 ms is acceptable. Over 500 ms will cause noticeable lag.