[linux]Ubuntu18.04生成RSA密钥

2021/4/18 7:29:10

本文主要是介绍[linux]Ubuntu18.04生成RSA密钥,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

生成RSA密钥


1. 制作密钥对

[root@host ~]$ ssh-keygen  <== 建立密钥对
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): <== 按 Enter
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase): <== 输入密钥锁码,或直接按 Enter 留空
Enter same passphrase again: <== 再输入一遍密钥锁码
Your identification has been saved in /root/.ssh/id_rsa. <== 私钥
Your public key has been saved in /root/.ssh/id_rsa.pub. <== 公钥
The key fingerprint is:
0f:d3:e7:1a:1c:bd:5c:03:f1:19:f1:22:df:9b:cc:08 root@host

密钥锁码在使用私钥时必须输入,这样就可以保护私钥不被盗用。当然,也可以留空,实现无密码登录。
现在,在 root 用户的家目录中生成了一个 .ssh 的隐藏目录,内含两个密钥文件。id_rsa 为私钥,id_rsa.pub 为公钥。这时需要把id_rsa私钥文件取回本地备用。

2. 在服务器上安装公钥

键入以下命令,在服务器上安装公钥:

[root@host ~]$ cd .ssh
[root@host .ssh]$ cat id_rsa.pub >> authorized_keys

如此便完成了公钥的安装。为了确保连接成功,请保证以下文件权限正确:

[root@host .ssh]$ chmod 600 authorized_keys
[root@host .ssh]$ chmod 700 ~/.ssh

3. 设置SSH,打开密钥登陆功能

编辑 /etc/ssh/sshd_config 文件,搜索以下指令并进行如下设置:

PasswordAuthentication no
ChallengeResponseAuthentication no
UsePAM no

4. 保存文件并重启SSH服务

sudo systemctl restart ssh


这篇关于[linux]Ubuntu18.04生成RSA密钥的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程