I have a gpu-server Server-A in office. The only way to access that server is through the office wired network. The office provides a proxy server Server-B. How I connect to the
Have you looked into setting up a tunnel in your ssh config to go to Server-A via Server-B?I believe vscode will respect the tunnels you setup in your .ssh/config file.
After several days struggling, I have figure it out. As Marc said, vscode respects the tunnels I setup in my .ssh/config file. A sample can be like :
Host server1
HostName server1_ip
PreferredAuthentications publickey
IdentityFile your_key
User you
Host server2
Hostname server2_ip
IdentityFile your_key
ProxyJump server1
User you