目标服务器 :111.111.11.11
跳板机:100.100.10.10
1. mobaxterm通过跳板机连接服务器
1.1 目标服务器信息
1.2 跳板机信息
1.3 登录
点击登录,会输入密码,成功
参考:https://blog.csdn.net/qq_40636486/article/details/129843631
2. vscode通过跳板机连接服务器
2.1 目标服务器信息
bash
Host machine2
HostName 111.111.11.11
User test
# 以下两行用于指定使用 sshpass 输入密码
LocalCommand sshpass -p "test1111" ssh -o StrictHostKeyChecking=no %r@%h
RequestTTY no
# 以下这行指定通过跳板机连接
ProxyCommand ssh -W %h:%p machine1
2.2 跳板机信息
bash
Host machine1
HostName 100.100.10.10
Port 22
User test
参考:https://blog.csdn.net/shuaikang9864/article/details/136872557