http://blog.swine123.com/archives/905.html
SecureCRT无法连接上服务器了,重启了ssh服务,service sshd restart,依然不行。
[root@localhost ~]# ssh root@127.0.0.1
ssh_exchange_identification: Connection closed by remote host
于是google多部分说是因为/etc/hosts.allow和/etc/hosts.deny两个文件造成的。
于是检查了下,确实是/etc/hosts.allow这个文件有问题。
[root@localhost ~]# cat /etc/hosts.allow
#
# hosts.allow This file describes the names of the hosts which are
# allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#
vsftpd : 192.168.1.103 210.31.8. : allow
ALL : ALL : DENY
不知道什么时候鬼使神差的加了这两行。害死人了。全部注释掉,然后重启ssh服务。
service sshd restart or /etc/init.d/sshd restart
搞定了。
解决问题的思路:
1、先看看ssh服务是否启动。(service sshd status)
2、检查iptables防火墙是否拦截。(iptables -L)
3、检查/etc/hosts.allow,/etc/hosts.deny配置文件。