排查sshd服务
物理链路是否有问题(客户端执行)
-
使用ping检测:
利用ping检查物理链路是否有问题
ping xxx.xxx.xxx.xxx -
使用tracert检测:
使用tracert路由跟踪命令,检查路是否通畅,-d是不进行反向解析的。
tracert -d xxx.xxx.xxx.xxx
ssh服务是否有问题
- 查看ssh服务是否启动、端口是否监听:
ps -aux | grep sshd
netstat -nalpu | grep 22
- Telnet 或curl 命令访问22端口:
查看是否有返回值,没有,说明服务未运行;
确认是否是防火墙拦截
-
centos6:
service iptable status --查看防火墙状态
servcie iptables stop --临时关闭防火墙
chkconfig iptables off --永久关闭防火墙 -
centos7:
firewall-cmd --state #查看防火墙状态
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
other questions
能够ping通服务器的同时端口不通的排查方法: https://help.aliyun.com/document_detail/40572.htm?spm=a2c4g.11186623.0.0.79151dc2aFZ45B
无法远程连接Windows实例的处理方法:
https://help.aliyun.com/document_detail/140763.htm?spm=a2c4g.11186623.0.0.22fb28fdWsE5XK
无法通过SSH远程登录Linux实例时的排查指引:
https://help.aliyun.com/document_detail/41470.html