步骤一:进入本用户的 SSH 配置文件目录
# cd ~/.ssh/
步骤二:创建或修改本用户的 SSH 配置文件
# vim config
创建以下内容:
Host jump_machine
HostName 192.168.1.1
User mingyuzhu
IdentityFile ~/.ssh/jump_machine
Host remote_srv_machine
HostName 192.168.1.100
ProxyCommand ssh jump_machine -W %h:%p
User mingyuzhu
(补充:这里以将IP 地址为 192.168.1.1 的服务器作为跳板机连接到 IP 地址为 192.168.1.100 的服务器为例)