Displaying 1 result from an estimated 1 matches for "specialserv".
Did you mean:
specialserver
2010 Nov 08
1
How to explicitly define the default setting for ProxyCommand for a particular host
I would like to create an ssh_config file with two basic groups of settings:
A default "Host *" settings group with:
Proxycommand=/my/helper/binary
%h %p
And another specific "Host specialServer" settings group with
ProxyCommand=
or
ProxyCommand=''
And yes, my current ssh_config file is setup in the correct order with the "Host *" declaration last.
Host specialServer
ProxyCommand=XXXXXXX
Host *
Proxycommand=/my/helper/binary
%h %p
I would like to know wh...