我过去常常登录门服务器,然后登录实际的 GPU 服务器,现在如何使用将这 2 个命令合并为一个?ssh -p 54321 [email protected]
ssh johnaddress
-J
ssh -J -p 54321 [email protected] john@johnaddress
不起作用
ssh -p 54321 [email protected] -J john@johnaddress
也不
答案1
man ssh_config
显示配置参数的语法ProxyJump
(这-J
是一个快捷方式):
代理跳转
将一个或多个跳转代理指定为[user@]host[:port]
ssh URI。
在你的情况下它变成:
ssh -J [email protected]:54321 john@johnaddress
或者,使用配置文件的选项格式:
ssh -o [email protected]:54321 john@johnaddress