-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
The command currently used for ssh proxy depends on netcat being installed on the bounce host. As of OpenSSH v5.4, there is no need to do it this way as there is native support. Migrate!
The current/old method:
ProxyCommand="ssh ${bounce} nc %h.${tld} 22"The new method can simply use:
ProxyCommand="ssh ${bounce} -W %h:%p"Reactions are currently unavailable