多个服务器组之间如何配置不同的SSH key
跳板机只有一个 两个服务器群组 一个组用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个链接解决所有问题
https://linux.die.net/man/5/s...