1.编辑/etc/hosts.allow文件
# vim /etc/hosts.allow
添加指定IP货值IP段
# 允许192.168.1.10 IPssh连接
sshd : 192.168.1.10 : allow
# 允许192.168.2. IP段ssh连接
sshd : 192.168.2.* : allow
all:192.168.1.12//他表示接受12这个ip的所有请求!(不推荐)
2.编辑/etc/hosts.deny文件
# vim /etc/hosts.deny
最后添加 sshd:all:deny
# sshd:all:deny(拒绝所有请求,当hosts.allow和 host.deny相冲突时,以hosts.allow设置为准)
3.重启sshd服务
# /bin/systemctl restart sshd.service
来源:CSDN
作者:qq_31256487
链接:https://blog.csdn.net/qq_31256487/article/details/104671661