How to Fix "No route to host" SSH Error in Linux

Channel: SSH Questions Linux
Abstract: Now try to re-connect to the remote server once more via SSH. $ ssh [email protected]and access a command prompt. Then use the firewall-cmd (RHEL/Cent

SSH is the most secure means of connecting to Linux servers remotely. And one of the common errors encountered while using SSH is the 「ssh: connect to host port 22: No route to host」. In this short article, we will show how to troubleshoot and fix this error.

Here is a screenshot of the error we are talking about. Note that the port may not necessarily be port 22, depending on your configurations on the remote host. As a security measure, system administrators can configure SSH to be accessed via a different port.

SSH No Route to Host Error

There are different reasons why this error appears. The first is normally that the remote server could be down, so you need to check whether it is up and running using the ping command.

# ping 192.168.56.100
Ping Linux Server

From the ping command results, the server is up and running, that’s why it is accepting the pings. In this case, the reason for the error is something else.

If you have a firewall service running on your remote server, it is possible that the firewall is blocking access via port 22.

Therefore you need to access the server console physically or if it is a VPS, you can use any other means such as VNC (that’s if it is already setup) or other custom remote server access applications provided by your VPS service provider. Login, and access a command prompt.

Then use the firewall-cmd (RHEL/CentOS/Fedora) or UFW (Debian/Ubuntu) to open port 22 (or the port you configured to be used for SSH) in the firewall as follows.

# firewall-cmd --permanent --add-port=22/tcp
# firewall-cmd --reload
OR
$ sudo ufw allow 22/tcp
$ sudo ufw reload 

Now try to re-connect to the remote server once more via SSH.

$ ssh [email protected]
SSH Login Successful

That’s it for now! You will also find the following SSH guides useful:

  1. How to Change SSH Port in Linux
  2. How to Create SSH Tunneling or Port Forwarding in Linux
  3. How to Disable SSH Root Login in Linux
  4. 4 Ways to Speed Up SSH Connections in Linux
  5. How to Find All Failed SSH login Attempts in Linux

Remember, you can share your thoughts with us or ask any questions concerning this topic via the comment form below.

Ref From: tecmint
Channels: SSH Tips

Related articles