How to set nonProxyHosts for a SOCKS proxy

别说谁变了你拦得住时间么 提交于 2020-06-09 11:59:32

问题


I want to set the nonProxyHosts list for a SOCKS5 proxy, i.e. the list of hostnames to which a direct connection should be used.

As the oracle docs describe, there are options named http.nonProxyHosts and ftp.nonProxyHosts to set proxy exclusions for HTTP and FTP, but there is no specific setting for SOCKS proxies.

I tried http.nonProxyHosts, but this doesn't affect SOCKS connections.

The SOCKS proxy is set up via:

System.setProperty("socksProxyHost", "192.168.10.10");
System.setProperty("socksProxyPort", "3128");

But this causes that even DB connections to localhost are using the SOCKS proxy, which is unacceptable.

How is this supposed to be used? How can I exclude certain hosts from the proxified connections?


回答1:


Use the socksNonProxyHosts system property; this is undocumented, but exists in Oracle JDKs 8 thru 11, and probably others too.

java -DsocksProxyHost=mySocksServer -DsocksProxyPort=8888 -DsocksNonProxyHosts=127.0.0.1 [...]

TL;DR

The property socksNonProxyHosts is found in the source code for sun.net.spi.DefaultProxySelector (thanks to @rince)

However, the documentation for the Java networking properties implies this doesn't exist, so its use may be unstable:

Once a SOCKS proxy is specified in this manner, all TCP connections will be attempted through the proxy.

(Emphasis added)

You might be able to use the Proxy and/or ProxySelector classes, but:

  • ProxySelector is only applicable if your application uses URLConnection to establish connections.

  • Proxy is applicable for arbitrary sockets ... but only if you can supply the Proxy object as a parameter to the relevant Socket constructor calls. (And you would need logic to supply different Proxy objects depending on what your code is trying to connect to.)

There's a bug for this RFE for this. The ticket suggests another workaround. Apparently, if the java.net.useSystemProxies property is true, then (on some platforms) the default proxy selector will respect exclude hosts specified in the appropriate system proxy settings.



来源:https://stackoverflow.com/questions/25445875/how-to-set-nonproxyhosts-for-a-socks-proxy

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!