当我们从 Github 克隆某个仓库时,往往使用 HTTPS 协议,除此之外,也可以使用 SSH 协议;当我们的客户机与远端服务器连接时,更加离不开 SSH 协议。如果我们需要连接多个远程终端,那么合理配置多个 SSH 密钥就显得很有必要。
SSH 全称为:Secure Shell,是一种加密的网络传输协议,通过在网络中创建安全隧道来实现客户端与服务器之间的连接。SSH 在 数据传输 时基本上都采用对称加密方式,但是在进行 身份验证 时却需要采用非对称加密的形式,也就是 公钥—私钥对 的形式。
生成 SSH 密钥对需要使用 ssh-keygen,如今的主流操作系统 windows、linux 和 macOS 等往往事先已经安装好了。
SSH 生成密钥对时可以使用多种加密算法,这些加密算法生成的最常用的密钥类型是 rsa 和 ed25519。
ed25519 需要 OpenSSH 版本大于 6.5(2014 年的古老版本),应该不会有人的客户端和服务器不满足吧(不会吧不会吧!)
ssh-keygen 生成的密钥对默认存储于家目录(Windows 的 C:Usersxxx,Linux/macOS 的 ~)的 .ssh 文件夹中
使用 ssh-keygen 命令选择一种密钥类型来创建
# 生成 RSA 2048 密钥ssh-keygen -t rsa -b 2048 -C "your@emAIl.com" # 生成 RSA 4096 密钥ssh-keygen -t rsa -b 4096 -C "your@email.com" # 生成 ed25519 密钥ssh-keygen -t ed25519 -C "your@email.com"
执行以上命令后,会提示你设置密钥存储路径,按 Enter 默认即可。
然后会提示你设置密码,根据需要自行选择设不设置(不设置按 Enter 即可,已经非对称加密过,不设置也问题不大;设置的话安全性会提高,但是每次连接时需要输入密码,会麻烦一点)。
以生成密钥 ed25519 为例,操作完后会在家目录的 .ssh 文件夹中生成私钥 id_ed25519 和公钥 id_ed25519.pub 两个文件。
权限设置
在 Linux 中,还需要设置私钥文件的权限才可使用:
chmod 600 ~/.ssh/id_ed25519
如果你同时使用 GitHub、Gitee 和 阿里云,都需要设置 SSH 密钥,可以将常用 SSH 登陆信息写进全局配置文件
打开终端,输入
# 创建 .ssh 文件夹mkdir -p ~/.ssh # 进入 .ssh 文件夹cd ~/.ssh
以下介绍以生成 ed25519 密钥为例:
# 生成 GitHub 密钥ssh-keygen -t ed25519 -f github_ed25519 -C "your@email.com" # 生成 Gitee 密钥ssh-keygen -t ed25519 -f gitee_ed25519 -C "your@email.com" # 生成 阿里云 密钥ssh-keygen -t ed25519 -f aliyun_ed25519 -C "your@email.com"
在 .ssh 文件夹下创建 config 文件(~/.ssh/config)
# ------------ 配置说明(始) ------------ # Host:别名,HostName:服务器域名或 IP 地址# User:用户名# 例:在 git clone git@github.com:torvalds/linux.git 中# User 是 git,Host 是 github.com# IdentityFile:私钥路径 # ------------ 配置说明(末) ------------ # ------------ 具体配置(始) ------------ # GitHub 密钥Host github.comHostName github.comUser gitPreferredAuthentications publickeyIdentityFile ~/.ssh/github_ed25519 # GiteeHost gitee.comHostName gitee.comUser gitPreferredAuthentications publickeyIdentityFile ~/.ssh/gitee_ed25519 # AliyunHost my_aliyunHostName xxx.xxx.xxx.xxxUser xxxPort 22PreferredAuthentications publickeyIdentityFile ~/.ssh/aliyun_ed25519 # ------------ 具体配置(末) ------------折叠
权限设置
在 Linux 中,配置文件 config 和私钥文件的权限都需要设置才可使用:
chmod 600 config github_ed25519 gitee_ed25519 aliyun_ed25519
登陆 GitHub,依次打开 Settings => SSH and GPG keys => New SSH key
然后将公钥(切记是公钥)内容粘贴过去
最后,使用 ssh 命令测试与 GitHub 的连接
ssh -T git@github.com
提示时输入 yes 即可,如果出错,可以在 -T 后面加上 -v 参数查看具体错误信息
Gitee 和 GitHub 添加方法类似,不做赘述
在服务器系统中找到 ~/.ssh/authorized_keys 文件(没有则创建),另起一行,将本地公钥(切记是公钥)内容粘贴过去,并设置权限:
chmod 600 ~/.ssh/authorized_keys
测试连接,以 多密钥配置 中 阿里云 为例:
# 使用 Host 别名ssh my_aliyun # 不使用 Host 别名ssh xxx@xxx.xxx.xxx.xxx
来源:
https://www.cnblogs.com/oranhext/p/ssh-keys-config.html