Linux配置ssh证书登录

使用xshell生成秘钥

上传公钥

.pub 文件上传至服务器,并覆盖原有公钥文件

1
mv cloud.pub .ssh/authorized_keys

修改ssh配置文件

1
vim /etc/ssh/sshd_config

添加代码

1
2
3
4
5
# 添加如下代码
RSAAuthentication yes
StrictModes no
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

修改代码

1
2
# 修改如下代码
PasswordAuthentication no

Linux配置ssh证书登录
https://www.gasmaze.com/posts/aec774a9.html
作者
GasMaze
发布于
2022年7月12日
许可协议