如何通过 SSH 连接到服务器然后连接到同一选项卡中的另一个服务器?

How to SSH to a server then to another within same tab?

我有两个远程服务器(Server_01Server_02)。

我的作品确实在 Server_02 上。为了访问 Server_02,我需要第一个 SSH 到 Server_01,然后另一个 SSH 到 Server_02

(machine)$ ssh Server_01
(Server_01)$ ssh Server_02
(Server_02)$ ...

我想让事情变得更简单,我可以使用 SecureCRT 或终端选项卡点击 SSH 到 Server_02

您正在搜索 ProxyCommand

ssh Server_02 -o ProxyCommand='ssh Server_01 -W %h:%p'

甚至更好地将 Server_02 添加到您的 ~/.ssh/config

HOST Server_02
  user <myUsername>
  ProxyCommand ssh Server_01 -W %h:%p

然后您可以简单地从您的本地计算机

使用ssh Server_02