Ubuntu – Set web proxy using pac-file-url in lubuntu

chromiumlubuntuPROXYsystem-settings

I want to use a pac-file-url to set the web proxy rules for chromium in lubuntu. Chromium reads its settings from the system wide OS settings. I read How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio? but I am not clear on the following question.

How do I specify the pac-file-url in the system wide settings in
lubuntu?

Best Answer

Here a several ways to do this.

Network based configurations

DHCP

If you are using DHCP, you can set here an option configuring your clients. For this specify in your dhcpd configuration:

option wpad-url  code 252 = text;
option wpad-url  "http://mywebserver/myconf.pac" ;

DNS

An alternate possibility is to use the DNS to specify the pac file.

See e.g. wikipedia

Before fetching its first page, a web browser implementing this method sends the local DHCP server a DHCPINFORM query, and uses the URL from the WPAD option in the server's reply. If the DHCP server does not provide the desired information, DNS is used. If, for example, the network name of the user's computer is pc.department.branch.example.com, the browser will try the following URLs in turn until it finds a proxy configuration file within the domain of the client:

http://wpad.department.branch.example.com/wpad.dat
http://wpad.branch.example.com/wpad.dat
http://wpad.example.com/wpad.dat
http://wpad.com/wpad.dat (in incorrect implementations, see note in Security below)

(Note: These are examples and may not be live URLs.)

Notes:

  • The wpad.dat file may be an symbolic link to the file used in the DHCP configuration.
  • The DNS based resolution has normally a lower priority as the DHCP based resolution.

System / user based configurations

system (or user) based configuration via environment variable

To use the pac file for curl and other programs you can set the environment variable auto_proxy. E.g.:

 auto_proxy=http://myserver/myconf.pac

user based configuration for applications using gconf

For adding the autoconfig url to your gconf settings you can use the following command:

gconftool-2 --set /system/proxy/autoconfig_url \
    --type string  ${auto_proxy}

lxproxy Utility for Lubuntu

Please see the community wiki. Here is the ppa for lxproxy referenced. Lxproxy claims to be a smlall gui to set a proxy server.

Application specific configuration

chromium

You may enforce that all chromium browser instances on a machine use the autoconfig url. Place a file (e.g. proxyConfig) below /etc/chromium-browser/policies/managed/ with the following content

      {
          "ProxyMode": "pac_script",
          "ProxyPacUrl": "http://myserver/myconfig.pac",
     }

Note: Placing this file below /etc/chromium-browser/policies/recommended will make this setting a default. The user is able to change this setting afterwards in his own chromium configuration.

firefox

Edit the file /etc/firefox/syspref.js and add the following lines

 lockPref("network.proxy.autoconfig_url", "http://myserver/myconfig.pac");
 lockPref("network.proxy.type", 2);

Alternate way: Set this values as user preferences via about:config.

thunderbird

Edit the file /etc/thunderbird/syspref.js and add the following lines

 pref("network.proxy.autoconfig_url", "http://myserver/myconfig.pac");
 pref("network.proxy.type", 2);

Note: Due to bug #1081015 you can't lock down this setting. So it is here only possible to set a default. Ensure that this values are note overwritten by prefs.js in your active profile.