SSH免登
原理
操作
1.本机公钥获取:cat ~/.ssh/id_rsa.pub 2.把公钥添加到服务器:~/.ssh/authorized_keys
vim /etc/ssh/sshd_config AuthorizedKeysFile .ssh/authorized_keys PermitRootLogin without-password PubkeyAuthentication yes //可以使用公钥登录 PasswordAuthentication no //不允许使用密码登录
说明: PermitRootLogin介绍 参数类别 是否允许ssh登陆 登录方式 交互shell yes 允许 没有限制 没有限制 without-password 允许 除密码以外 没有限制 forced-commands-only 允许 仅允许使用密钥 仅允许已授权的命令 no 不允许 N/A N/A
SSH免登最先出现在Python成神之路。
共有 0 条评论