VSCODE - yiliu30/yi GitHub Wiki
Jump Jump SSH
# Jump box with public IP address
Host jump-box
HostName 52.179.157.97
User sana
IdentityFile ~/.ssh/jumpbox
# Target machine with private IP address
Host target-box
HostName <IP address of target>
User sana
IdentityFile ~/.ssh/target
ProxyCommand ssh -q -W %h:%p jump-box
Save pwd
https://stackoverflow.com/a/72650548