从ssh配置文件中的代理列表中排除test.com

时间:2014-11-05 10:32:04

标签: ssh proxy

我通过代理添加到我的ssh配置

,通过代理ssh到所有服务器
Host * 
ProxyCommand nc -x 'someProxy.com' %h %p

如何从中排除test.com

1 个答案:

答案 0 :(得分:0)

您可以使用match命令和否定运算符:

Match Host *,!test.com
ProxyCommand nc -x 'someProxy.com' %h %p

来源:http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/ssh_config.5