如何通过 ssh 在 kinit 中使用本地 ssh 配置别名?

如何通过 ssh 在 kinit 中使用本地 ssh 配置别名?

我需要先登录跳转机(假设jump.example.com)使用ssh jump.example.com,然后键入kinit并输入我的密码,现在我可以键入我想要连接的主机,但我在.ssh/config中写了很多别名,例如:ssh [email protected]

Hostname foo
  User user
  Host 1.2.3.4

在这种情况下,我不能只写,ssh jump.exmaple.com ssh foo因为 ssh 配置位于本地而不是跳转机器中。如何解决这个问题?

PS:可以用,但是记不住那么多IP。ssh jump.example.com -tt ssh [email protected]

相关内容