Linux 配置证书登陆ssh

1、首先要生成公钥和私钥
可以在linux下,输入ssh-keygen -t rsa
以 test 为例


image.png

把私钥拷贝到电脑


image.png

image.png

在服务器上
mkdir ~/.ssh
chmod 0700 ~/.ssh
touch ~/.ssh/authorized_keys
chmod 0644 ~/.ssh/authorized_keys
把公钥加入到authorized_keys文件
cat test.pub >> ~/.ssh/authorized_keys

image.png

你可能感兴趣的:(Linux 配置证书登陆ssh)