给用户添加公钥
useradd test
mkdir /home/test/.ssh
vim /home/test/.ssh/authorized_keys
把公钥复制粘贴进去
chown -R test:test /home/test/.ssh/
禁止使用密码认证
vim /etc/ssh/sshd_config
修改为
PasswordAuthentication no(默认为yes)
参考:
60 PasswordAuthentication no
109 UseDNS no
阅读(744) | 评论(0) | 转发(0) |