Fix "Connection Timed Out" When Joining a Game Server
Connection timed outTook too long to log inio.netty timeout"Connection timed out" means your game sent a request and never got a reply in time. The fix depends on whether the problem is your connection, the address, or the server itself.
Step 1: is the server actually up?
Before touching your own setup, confirm the server is online. Use our server status checker (or the Minecraft checker) — if it reports offline for everyone, it's the server's problem, not yours.
Step 2: double-check the address & port
A timeout is often just the wrong IP or port, or a missing port. Confirm you're using the exact address, including the port if it's non-default (e.g. play.server.net:25566).
Step 3: test your own connection
A timeout can be packet loss on your side. Run a continuous ping to the server IP and watch for drops:
# Windows
ping -t server-ip
# Linux/macOS
ping server-ip
Steady replies = your path is fine. Timeouts or big spikes = a network problem between you and the server.
Step 4: rule out the usual local culprits
- A VPN or proxy adding latency or being blocked — try disabling it.
- A firewall/antivirus blocking the game — allow the game through.
- Wi‑Fi instability — test on a cable to rule out packet loss.
- Restart your router if other sites are also flaky.
A server you host can time out because the port isn't forwarded/open, the firewall is blocking it, or you're behind CGNAT. Check the port is open and reachable from outside your network.
Capture evidence if it persists
If it keeps happening on a hosted server, a WinMTR to the server IP over a few minutes shows exactly where packets are being lost along the route — send it to your host so they can pinpoint it.
Check the server is up first, then your address, then your own connection. A timeout is a "no reply" — find which hop stops replying.
When "Connection timed out" means the server, not you
If the status checker shows the server offline for everyone, or many players report the same timeout at the same time, the fault is server-side — a crash, an update in progress, or a problem on the host's network. Contacting support with the exact time it started (and a WinMTR if you have one) speeds up the fix considerably.
How to prevent "Connection timed out" errors
- Bookmark a status checker so you can rule the server in or out in seconds next time this happens.
- Keep your game client updated — an outdated client can silently fail to complete the connection handshake.
- Avoid connecting over a VPN unless you specifically need it — it adds a hop that can time out on its own.
- On a server you run yourself, keep the port-forward and firewall rule documented so a router reset doesn't silently break it.
Related connection errors
If you're setting up the server yourself, start with how to port forward a game server. If the connection is choppy rather than outright timing out, see what causes packet loss. For Minecraft specifically, see Minecraft internal exception: timed out and Minecraft io.netty connection refused.
A server that stays reachable
Our game servers sit on a well-peered, protected Frankfurt network — low ping and stable routes across Europe.
Frequently asked questions
Does "connection timed out" mean the server is down?
Not necessarily. It means no reply arrived in time — which could be the server being down, a wrong address/port, or packet loss on your own connection. Check the server status first to narrow it down.
How do I know if it's my internet or the server?
Use a status checker from outside the network: if the server is online for others, the problem is local. A continuous ping (ping -t) showing drops confirms a connection issue on your side or along the route.
What is a WinMTR and why would my host ask for it?
WinMTR is a free tool that combines ping and traceroute, showing packet loss at each hop between you and the server. It lets your host see exactly where the connection breaks down.
What does "io.netty timeout" mean specifically?
It's the underlying Java networking library (used by Minecraft) reporting the same thing as a generic connection timeout — no reply arrived within its wait window. The causes and fixes are the same as any other connection timeout.
Can antivirus software cause a connection timeout?
Yes — some antivirus and firewall software blocks a game's outbound connection silently, which looks exactly like a network timeout. Temporarily disabling it (or adding an exception) is a quick way to test.
Why does it only time out for me and not my friends?
That points to something local to you — your ISP's route to the server, a VPN, a firewall rule, or Wi-Fi instability — rather than the server itself, since others are connecting fine.
Is a timeout the same as being banned or blacklisted from a server?
No. A ban or blacklist normally gives a specific "you are banned" message. A timeout means no response was received at all, which is a connectivity issue, not a moderation action.
Related articles
How to Port Forward for a Game Server (and Why You Might Not Need To)
How to port forward a home game server — the steps, the ports, and why CGNAT can block it.
Read fix NetworkingWhat Causes Packet Loss in Games (and How to Fix It)
Rubber-banding and warping is packet loss, not lag. What causes it, how to test, and how to fix it.
Read fix NetworkingHow to Find Your Game Server's IP and Port
Where to find your server's IP and port to share with friends — hosted or at home.
Read fix