我通过代理添加到我的ssh配置
,通过代理ssh到所有服务器Host *
ProxyCommand nc -x 'someProxy.com' %h %p
如何从中排除test.com
。
答案 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