fixx
Well-Known Member
Hey guys
I have setup a basic proxy auto configuration script as described in many online tutorials. I have noticed that if I point my browser's automatic configuration script directly to the pac file, the browser does get the correct settings, so my pac file is fine.
However, the DHCP server on my Linux boxen doesn't pass the options for the proxy server to the clients. Below is my dhcpd.conf file:
Can someone please help me with the DHCP options that will pass the local-proxy-config option to my DHCP clients?
Thanks a mil
I have setup a basic proxy auto configuration script as described in many online tutorials. I have noticed that if I point my browser's automatic configuration script directly to the pac file, the browser does get the correct settings, so my pac file is fine.
However, the DHCP server on my Linux boxen doesn't pass the options for the proxy server to the clients. Below is my dhcpd.conf file:
Code:
option local-proxy-config code 252 = text;
subnet 10.10.50.0 netmask 255.255.255.0 {
option local-proxy-config "http://pac.mydomain.co.za/myclient.pac";
option routers 10.10.50.7;
option subnet-mask 255.255.255.0;
option domain-search "mydomain.co.za";
option domain-name-servers 10.10.50.1;
option time-offset -18000; # Eastern Standard Time
range 10.10.50.120 10.10.50.250;
}
Can someone please help me with the DHCP options that will pass the local-proxy-config option to my DHCP clients?
Thanks a mil