"mate-network-properties" won't honor ignored-hosts address
Solution 1:
The mate-network-properties
GUI focuses on the Proxy settings:
The values that are entered into "Ignored Hosts" will not run through the proxy connection. This is why the three localhost
addresses are pre-filled in, as there's no point running any of those through a proxy server.
If you would like to block network traffic to Facebook (or any other service), then the simplest methods would be through the use of a hosts.deny
file. Here's how you can set one up:
- Open Terminal (if it's not already open)
- Create the
hosts.deny
file:sudo vi /etc/hosts.deny
- Add records in this format:
Note: Do not forget that precedingALL : .domain.com
.
in front of the domain. - Save the file
- There is no fourth step
What's nice about this method is that you can create a single list that gets shared across multiple devices through a regular sync process. No muss. No fuss.