|
|
|
|
|
by ryukafalz
2244 days ago
|
|
>If you're using an older SSH you can do this with a `ProxyCommand` (requires netcat on the jump box, but that's pretty standard) Even without ProxyJump, you can do something similar with ProxyCommand without netcat: Host final
HostName host.example.com
ProxyCommand ssh -W %h:%p user@jumpbox.example.com
(Granted, this is still more recent, but I think ProxyJump was introduced later than this.) |
|