Linux Connection Timed Out
Warningnetwork
Overview
Linux "Connection timed out" means the TCP connection attempt did not receive a response within the timeout period.
Key Details
- errno 110 (ETIMEDOUT) — no response from remote host
- Packets are being dropped (not rejected)
- Usually indicates firewall DROP rule or routing issue
- Default timeout is typically 20-120 seconds
Common Causes
- Firewall DROP rule silently discarding packets
- Remote host is down or unreachable
- Network routing issue between source and destination
- Incorrect IP address or port number
Steps
- 1Test connectivity: ping remote_host
- 2Test specific port: telnet host port or nc -zv host port
- 3Trace route: traceroute host to find where packets stop
- 4Check remote firewall and security group rules
Tags
linuxnetworkconnection timed outtroubleshootingfix
More in Network
windows-651-pppoe-connection-failedWindows Error 651 — PPPoE Connection Failed
Warningwindows-691-authentication-failedWindows Error 691 — Authentication Failed
Warningwindows-720-ppp-connection-failedWindows Error 720 — PPP Connection Failed
Errorwindows-800-vpn-tunnel-failedWindows Error 800 — VPN Tunnel Failed
Warningwindows-network-error-619Windows VPN Error 619 — Connection Could Not Be Established
Warningwindows-network-error-868Windows VPN Error 868 — Remote Server Not Resolved
WarningFrequently Asked Questions
Refused = host is up but port is closed. Timed out = packets are being dropped (host down or firewall).