多个服务器组之间如何配置不同的SSH key

发布于 2022-09-11 19:02:10 字数 766 浏览 13 评论 0

跳板机只有一个 两个服务器群组 一个组用key1 跳板机无密码登录一直没问题 加入组2服务器后使用另外一个key2 现在必须使用ssh -i keyfile user@ip登录

update 2019年4月11日
一个“取巧”的方法 来自stackoverflow
~/.ssh/config开头添加N行IdentityFile ~/.ssh/{key_filename}比如

IdentityFile ~/.ssh/id_rsa
IdentityFile ~/.ssh/id_rsa_old
IdentityFile ~/.ssh/id_ed25519

ssh 将如下

debug1: Trying private key: /home/example/.ssh/id_rsa
debug1: read PEM private key done: type RSA
debug1: Authentications that can continue: publickey
debug1: Trying private key: /home/example/.ssh/id_rsa_old

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走走停停 2022-09-18 19:02:10

一个链接解决所有问题
https://linux.die.net/man/5/s...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文