Well, I've tested with split tunneling and it works perfectly. PAC file used by IVE is containing one regular function FindProxyForURL(url, host) followed by conditions for DIRECT & PROXY access. This function should return direct or proxy_ip: port instantproxy is smoothly different... It begins with function FindClientProxy(url, host) - not sure if this one has any purpose : function FindClientProxy(url, host) { return "DIRECT"; Next is function FindServerProxy which contains all the expresions from the original PAC : function FindServerProxy(url, host) And last is : function FindProxyForURL(url, host) { if (shExpMatch(host, "IVE_URL")) { return "DIRECT"; } else { return FindServerProxy(url, host); } I assume that it is done this way to distinguish traffic destined to IVE and the rest of connections.
... View more