What configurations do I need to enable on sshd_config on a jump node server to be able to utilize that server using ProxyJump.
What configurations do I need to enable on sshd_config on a jump node server to be able to utilize that server using ProxyJump.
You must enable port forwarding with
AllowTcpForwarding
using at leastlocal
or elseyes
(which is the default):That's because the
ProxyJump
option is just an optimized method (using pipes instead of tcp or unix sockets on the local side) from the client to ask the server to forward a tcp port. In the end the server is just receiving the same request and doing the same treatment.Running:
currently spawns a subprocess (both are connected with two pairs of pipes for a full-duplex result):
-W
is an ssh option similar to-L
: