Hello, I wrote a PAC code that i installed on my system but not working.
The code is supposed to direct all LAN traffic (ip address 192.168.1.0/24) to the Sophos WS500 web appliance with IP address 10.1.0.1
// send traffic via proxy 10.1.0.1 running on port 8080.
if
(isInNet(myIpAddress(),
"192.168.1.0"
,
"255.255.255.0"
))
return
"PROXY 10.1.0.1:8080"
;
Also, it is supposed to load balance between two Sophos web appliances with IP addresses 10.1.0.1 and 10.1.0.2
Kindly help me review the code to know where the error is.
Thanks
This thread was automatically locked due to age.