Linux 阻止了远程主机的ssh请求,无法ssh 到linux服务器问题
本文章撰写的目的
在华为云上为服务器购买了安全产品,某某员工在不知道密码的情况下疯狂尝试ssh linux服务器导致安全产品生效,linux自动封禁了此IP 。很奇怪的是无论是内网 外网服务器的端口都是能测试通的,但是就是ssh不上。仔细排查后我们发现了问题所在!!!
一、问题无法ssh直接连接到服务器
[C:\~]$ ssh 192.168.7.77
Connecting to 192.168.7.77:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.
Connection closing...Socket close.
Connection closed by foreign host.
Disconnected from remote host(192.168.7.77:22) at 16:51:19.
二、问题原因及解决方法
sshd的配置,自己的IP地址没有加入到hosts.allow配置文件中,而hosts.deny则拒绝了除allow外的所有主机登录。
解决方法:把自己的IP地址加入到hosts.allow文件中,并重启sshd服务。
# ll /etc/hosts.*
-rw-r--r-- 1 root root 767 Jan 2 2017 /etc/hosts.allow
-rw-r--r-- 1 root root 888 Aug 15 2016 /etc/hosts.deny
# grep -Ev '#' /etc/hosts.deny
sshd:all
# grep -Ev '#' /etc/hosts.allow
cat 查询出来的配置路径文件
在deny配置文件中删除我们的ip
sshd:192.168.7.100/255.255.255.255
评论区