1. 程式人生 > >CentOS限制SSH登入地址

CentOS限制SSH登入地址

編輯hosts.allow檔案,將允許連線的地址寫進去

[[email protected] ~]# vim /etc/hosts.allow
sshd:10.10.10.1:allow
sshd:172.16.203.1:allow
sshd:192.168.1.1:allow

在hosts.deny檔案中寫入禁止所有

[[email protected] ~]# vim /etc/hosts.deny
sshd:ALL

重啟sshd服務

CentOS 6 :service sshd restart
CentOS 7 :systemctl restart sshd.service