两个命令完成ssh免密登录

生成公钥和私钥

ssh-keygen -b 4096 -t rsa
生成的私钥保存在 .ssh/id_rsa , 公钥在.ssh/id_rsa.pub

上传公钥到远程服务器

本地客户端输入 ssh-copy-id user@host
就可以将公钥上传到远程服务器的.ssh/authorized_keys

修改server端/etc/ssh/sshd_config文件, 确保以下参数

RSAAuthentication yes
PubkeyAuthentication yes
这个时候使用ssh user@host就可以不用输入密ma直接登录远程服务器了。

更多:
Setup SSH Keys to Login Linux Without Password

generate SSH key pair with ssh keygen command

understanding ssh key authentication

以上是 两个命令完成ssh免密登录 的全部内容, 来源链接: utcz.com/z/267454.html

回到顶部