将ssh登陆认证方法由密码认证转换为密钥对验证,需要重新设置ssh,方法如下:
修改sshd_config文件
关闭密码认证
PasswordAuthentication no
开启密钥对认证
RSAAuthentication yes
PubkeyAuthentication yes
注意事项:
1. 权限(StrictMode yes会检查权限设置)
~/.ssh目录的权限为rwx——.
~/.ssh/files文件的权限为rw——-.
2. 格式
Windows下生成的ssh公钥格式需要修改
ssh-keygen -i -f original_pub_key_file > new_format_of_pub_key_file
转载请注明:王杭州的个人网页 » sshd_config设置