centos7下指定IP通过SSH登陆
1、设置禁止所有ip连接服务器的SSH
vim /etc/hosts.deny
sshd:all:deny
2、 设置允许指定ip连接服务器的SSH(这边建议设置一个备用允许连接的ip)
vim /etc/hosts.allow
sshd:192.168.1.106:allow
3、重启SSH服务,并通过登录进行验证
systemctl restart sshd.service
systemctl status sshd.service