Linux下只允许ssh密钥登录

Linux系统下如何禁用密码登录

编辑配置文件/etc/ssh/sshd_config

1
2
3
4
5
6
7
# 禁止root用户登录
PermitRootLogin no
#禁用密码验证
PasswordAuthentication no
#启用密钥验证
RSAAuthentication yes
PubkeyAuthentication yes

重启ssh服务

1
systemctl restart ssh #重启服务

Linux下只允许ssh密钥登录
https://blog.jackeylea.com/linux/limit-ssh-keyring-login-linux/
作者
JackeyLea
发布于
2024年6月6日
许可协议