生成符合 GitHub 要求的新版本 SSH Key
Apr 19, 2024
传统的 RSA 算法的 SSH Key 已经被 GitHub 废弃了,现在需要使用新的算法: ssh-keygen -t ed25519 -C "[email protected]" 会生成使用 ed25519 算法的公钥和私钥,把公钥文件内容更新到 GitHub 上就可以了: cat ~/.ssh/id_ed25519.pub | pbcopy
ssh 客户端通过代理连接服务器
Mar 22, 2022
ssh 客户端的代理功能需要通过 nc 转发来实现。 方法一:编辑 ~/.ssh/config ,添加以下内容: Host * ProxyCommand nc -X 5 -x 127.0.0.1:7890 %h %p 方法二:在命令中使用参数指定代理: ssh -o "ProxyCommand nc -X 5 -x 127.0.0.1:7890…