Troubleshooting of SSH errors: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
(Created page with "Troubleshooting of SSH errors == How to resolve the Network error: Connection timed out == Error message: Network error: Connection timed out Verify the connection by key in...")
 
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
== How to resolve the Network error: Connection timed out ==
== How to resolve the Network error: Connection timed out ==
Error message: Network error: Connection timed out
Error message: Network error: Connection timed out
Solutions:
* Check the IP setting of destination server
* Check the firewall issue of destination server
* Switch to different ISP (Internet Service Provider). The connection maybe was blocked by the MIS.


Verify the connection by key in the command {{kbd | key=telnet <IP> <SSH PORT>}}
Verify the connection by key in the command {{kbd | key=telnet <IP> <SSH PORT>}}


<pre>
<pre>
-- Condition 1: Operation timed out
$ telnet x.x.x.x 22
$ telnet x.x.x.x 22
Trying x.x.x.x...
Trying x.x.x.x...
telnet: connect to address x.x.x.x: Operation timed out
telnet: connect to address x.x.x.x: Operation timed out
telnet: Unable to connect to remote host
telnet: Unable to connect to remote host
-- Condition 2: Connected successfully
telnet x.x.x.x 22
Trying x.x.x.x...
Connected to x.x.x.x.
Escape character is '^]'.
SSH-2.0-OpenSSH_7.4
(press ctrl+c to leave the console)
^C
</pre>
</pre>


Solutions:
Further reading
* Check the IP setting of destination server
* Check the firewall issue of destination server


* [https://help.skysilk.com/support/solutions/articles/9000150151-how-to-troubleshoot-ssh-connection-issues-using-vnc-console How to Troubleshoot SSH Connection Issues : SkySilk Cloud Support]


Related pages
Related pages
* [[SSH client]]
* [[SSH client]]



Latest revision as of 17:51, 4 January 2021

Troubleshooting of SSH errors

How to resolve the Network error: Connection timed out[edit]

Error message: Network error: Connection timed out


Solutions:

  • Check the IP setting of destination server
  • Check the firewall issue of destination server
  • Switch to different ISP (Internet Service Provider). The connection maybe was blocked by the MIS.

Verify the connection by key in the command telnet <IP> <SSH PORT>

-- Condition 1: Operation timed out

$ telnet x.x.x.x 22
Trying x.x.x.x...
telnet: connect to address x.x.x.x: Operation timed out
telnet: Unable to connect to remote host

-- Condition 2: Connected successfully

telnet x.x.x.x 22
Trying x.x.x.x...
Connected to x.x.x.x.
Escape character is '^]'.
SSH-2.0-OpenSSH_7.4

(press ctrl+c to leave the console)
^C

Further reading

Related pages


Troubleshooting of ...

Template