服务器22端口连接超时 ssh: connect to host *** port 22: Operation timed out

Posted oldboyooxx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了服务器22端口连接超时 ssh: connect to host *** port 22: Operation timed out相关的知识,希望对你有一定的参考价值。

最近酸酸乳出问题,连接v社服务器发现碰到

ssh: connect to host master port 22: Connection timed out

的问题。现在对该问题做一下可能出现的问题
的总结和解决办法:
一.IP配置错误。
当出现上述错误时,首先检查网络连通情况,Ping一下远程登录的目标主机,如果ping不通,很有可能
是/etc/hosts文件中的IP地址映射出现问题,需要仔细检查名称和IP地址的映射关系。
二.防火墙问题。
当发现IP配置没有错误时,我们需要检查端口是否被防火墙禁用了,使用

sudo service iptables status

命令查看防火墙状态,如果出现:

Table: filter 
Chain INPUT (policy ACCEPT) 
num target prot opt source destination 
1 DROP tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:8080 
2 DROP tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 
3 DROP tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 

我们可以看到,ssh登陆的默认端口22被禁止了。
我们使用

sudo chkconfig iptables off

来永久关闭防火墙,如果使用

sudo service iptables stop

将临时关闭防火墙,会在下一次关机重启后重置,建议使用第一种。

 

实在不行试试这个:

 vi /etc/ssh/sshd_config: 两项注释号掉 Port 22 Protocol 2

如果真的不行那恭喜你,你的服务器被qiang了

 

以上是关于服务器22端口连接超时 ssh: connect to host *** port 22: Operation timed out的主要内容,如果未能解决你的问题,请参考以下文章

github 连接超时 ssh: connect to host github.com port 22: Connection timed out

ssh 服务器连接到主机 xxx 端口 22:linux-ubuntu 上的连接超时

无法使用 SSH 连接到服务器,在 Windows 10 中显示“ssh:连接到主机 178.128.60.26 端口 22:连接超时”[关闭]

AWS EC2:ssh:连接到主机 10.0.0.206 端口 22:连接超时

Git配置非22端口,解决:ssh: connect to host xxx port 22: Connection timed out fatal: The remote end hung up u

github默认端口22被占用,ssh: connect to host github.com port 22: Connection timed out