加固Linux系统,使用ssh密匙登录服务器
加固Linux系统,禁用密码,使用ssh密匙登录服务器
一路回车即可
1
2
cd ~
ssh-keygen -t rsa -b 4096
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
复制id_rsa到本地电脑,保存,切记,否则无法登录服务器
编辑以下文件改YES为NO
1
2
rm -rf id_rsa id_rsa.pub
vi /etc/ssh/sshd_config
/etc/ssh/sshd_config
PasswordAuthentication no
更高级的用法,比如使用Google Authenticator验证登录参考以下地址
https://wiki.archlinux.org/index.php/SSH_keys_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)