"Request timed out" appears when you ping an IP address or hostname and no response comes back within the time limit. It means the packets you sent were not answered — either because the destination is offline, is blocking pings, or your packets are being lost along the way.
First, check if your internet is working and what your current IP address is:
🔍 Check My IP Address →"Request timed out" is most commonly seen in Command Prompt (Windows) or Terminal (Mac/Linux) when running a ping command. Unlike a browser error, this is a lower-level network diagnostic message. It means your device sent ICMP echo request packets to an IP address and received no reply within the timeout window (usually 4 seconds). This can happen because: the destination host is offline or unreachable, the destination has a firewall that blocks ping requests (very common — Google, Cloudflare, and most websites block ICMP), your own firewall is blocking outgoing pings, there is packet loss somewhere along the network path, or the IP address does not exist.
This is the most important thing to know: "Request timed out" does not always mean something is broken.
Most servers, firewalls, and routers are configured to silently ignore ping requests for security reasons. If you ping google.com and get "Request timed out", Google's website is still perfectly accessible — they just block ICMP pings.
To verify a server is actually reachable, try visiting it in your browser instead of pinging it.
Some hosts are known to respond to pings. Use these to test your connection:
ping 8.8.8.8 — Google DNS (responds to pings)ping 1.1.1.1 — Cloudflare DNS (responds to pings)ping 9.9.9.9 — Quad9 DNS (responds to pings)If these respond with replies, your internet connection is working fine. If they also time out, you have a genuine network problem.
Windows Firewall blocks outgoing pings by default in some configurations. To allow them:
Or temporarily disable the firewall to test if it is the cause.
If you suspect genuine network issues rather than firewall blocks, run a traceroute to see where packets are being dropped.
Windows: tracert 8.8.8.8
Mac/Linux: traceroute 8.8.8.8
Look for * * * entries — these indicate hops where packets are being dropped. If the drops happen at the first hop, your router is the problem. If they happen further along, it is a network or ISP issue.
If traceroute shows packet loss in your ISP's network, a VPN can route your traffic through a different path.
✅ Fixed it? Visit tools.examineip.com to confirm your IP address and connection are working correctly.
← Back to the complete guide: Internet Errors Hub
Last updated: March 29, 2026 • Report an error