How to set up a transparent squid proxy server using pfSense
By skear
Proxy servers act as an intermediary for clients on a network requesting resources from another server. The most common type of proxy is a web proxy. Proxy servers can be very useful for improving the speed of an internet connection by caching, logging internet usage, or filtering the traffic. The proxy server will store local copies of HTML pages, images, and other files in its cache. Caching proxy servers can greatly improve the internet performance of corporate networks or internet cafe's where many users may be requesting similar pages.
When a client requests a web page the proxy checks to see if has any of the files stored in cache, if it does it serves them to the client without having to download them from the web server. This reduces latency and saves internet bandwidth. Transparent proxys route the clients traffic through the proxy server automatically, unlike traditional proxys which require configuration changes on the client systems.
If you are unfamiliar with pfSense check out an Introduction to pfSense.
Getting Started
The first thing you'll need to do is install the squid package in pfSense. This can be done from the package manager found under the system menu. Locate the Squid package and click the + symbol next to it to begin the installation. The installation process normally takes a few minutes to complete.
Configuration
After the installation is completed you will have a new menu option under 'Services' called 'Proxy Server'. Click on the new menu option to bring of the configuration page.
Here you will need to set the proxy interface which is typically LAN. Next check to box 'Allow users on the interface'. Then check the box 'Enable transparent proxy'. Now scroll down to the bottom and hit save. This will start the squid service using the settings you have defined.
At this point you have a fully functional transparent proxy server running on pfSense. You do not need to make any changes to the computers on your network for them to use the proxy. Any clients requesting web pages on port 80 will be automatically redirected through the proxy. The users on your network won't even know their traffic is going through a proxy!
Traffic Management
The traffic management tab has some settings that are useful if you want to place bandwidth usage restrictions on the proxy. Using these settings you can configure a maximum download or upload size which will restrict transfers over a certain size limit.
You can also set the proxy to throttle binary files, cd images, or any other file type that you specify. Per host throttling sets the maximum amount of bandwidth an individual host can use.
Performance Tweaks
There are various options on the cache tab of the squid configuration page that you can modify to improve performance in your environment. Below are some of the settings I recommend modifying. If the computer running the proxy has a limited amount of disk and ram you should be cautious not to use overly aggressive settings. On the other hand if you have lots of resources to spare you can increase the settings to improve performance.
- Hard disk cache size - This sets the total amount of hard disk space squid will use to cache objects. If you have a large hard drive you can increase this setting to cache more objects. Just remember that objects cached in memory will be retrieved faster than objects on hard disk.
- Memory cache size - If your pfSense system has plenty of ram I recommend increasing the size of the memory cache. Objects that squid can't store in memory end up getting swapped to disk which is much slower than RAM.
- Maximum object size -The default of 4K is pretty small, I recommend increasing this to 50. You could set it larger but most cache hits tend to take place on small files anyway.
- Edit /boot/loader.conf.local - This change needs to be done via SSH. Using a text editor such as vi add kern.ipc.nmbclusters="32768" to the file then save the file and reboot the pfSense router. This increases the total amount of memory used for socket buffers to 32M.
Visit the pfSense documentation site for more Squid performance tuning tweaks.
Manually Clearing The Squid Cache
Squid has it's own system for purging old objects from the cache but occasionally you may want to clear the entire Squid cache.
I recommend logging into pfSense using SSH to run these commands. It is possible to run them using the command prompt function in the diagnostics menu but I don't advise doing so.
First you'll need to stop the proxy service.
squid -k shutdown
The command below will delete all of the files in the cache directory. This command can take a long time to run especially if you have defined a large cache size so be patient.
rm -fr /var/squid/cache/*
Before you restart Squid you should recreate the swap directly structure.
If you receive a message that Squid is already running go ahead and shutdown the service and again and rerun the command. PfSense seems to restart Squid on it's own when it notices it's not running.
squid -z
Finally you can restart Squid to begin using the proxy again.
/usr/local/sbin/squid -D
To make sure it started you can check the status on the services menu which is found under the status menu of the web interface.
Proxy Reports
If you are interested in tracking the usage of your proxy you can install an additional package called Lightsquid.
Lightsquid will generate interactive reports that track all of the websites visited by users, as well as a list of top sites.
You can even determine which IP visited a certain site, and what time it was visited.
Lightsquid can be installed through the pfSense package manager the same way you installed squid.
After installation a new menu item will be created under Status called Proxy Report.
On the settings page you can set the report refresh schedule to an interval between 10 minutes and 24 hours. This determines how often Lightsquid generates a new report. You can manually refresh the report using the refresh now button. To view the report click on the Lightsquid Report tab.
Additional pfSense Guides
- How to configure a DNS blacklist using pfSense
If your looking for an easy way to block domains on your network based on many common categories DNS blacklist can do the job easily. DNS blacklist is a package for the popular pfSense platform. - Dual Wan Router - How to Load Balance Using pfSense
Purchasing a dual wan router can easily set you back several hundred bucks. Besides the high prices many of the models on the market lack many features. So instead of shelling out cash for a router with... - Setting up a pfSense router
If your looking to replace your home router with something that offers more control, features, and performance pfSense is an excellent choice. pfSense can act as both a router and firewall offering lots of features for free that are often only found
Conclusion
I hope this hub has demonstrated how easy it is to setup a transparent proxy using the power of pfSense. Transparent proxys can add value to small home networks or large corporate networks with hundreds of users.
Feel free to comment if you have any questions and please let me know what else you would like to learn about pfSense.
If you found this hub useful please take a moment to rate it or leave a comment below.
Create a Proxy Server Appliance
|
|
NEW Soekris VPN1411 MiniPCI Card 4501/4801
Current Bid: $57.99
|
|
|
Soekris net4801 w/blue case
Current Bid: $75.00
|
|
|
Lots of 5 Soekris Net4521-30 Board Only W/CF card
Current Bid: $80.00
|
|
|
Soekris Engineering net4521 P/N15452130 Board, Used
Current Bid: $29.95
|
|
|
SOEKRIS Engineering net4801 Firewall model number net4801-60 version 1.22 256MB
Current Bid: $195.00
|
|
|
Soekris Engineering net4511 P/N15451130 Board, Used
Current Bid: $29.95
|
Comments
Hi Mon,
To edit the file you'll need to first log in using SSH. For instructions on setting up SSH check out http://samkear.com/how-to-guides/how-to-configure- , the SSH instructions are at the very end of that post.
Once you're logged in type vi /boot/loader.conf.local then hit insert and add the line kern.ipc.nmbclusters="32768". To save the file hit ESC, then type :wq! enter.
hi Skear,
is it possible to setup up a separate pfsense box for squid proxy server connected to a pfsense box for multi wan with loadbalancer and failover on the same subnet?HOW?
Thanks
Wow, What the great information. Thank you.
skear --
Thanks for this great site. It is one of a few that actually show what can be done with PFSense in a practical way. Your other articles are valuable also as a primer to use PFSense "Newbies"...
Regards;
H.
@mon
In order to run the proxy in transparent mode it must be on the same box as the router. So potentially you could set up one pfsense router/transparent proxy whose gateway pointed toward a second pfsense multi wan router.
I haven't tried this before but when I find some time I will test this theory and update this hub.
@weseppers
I'm glad you've found the hub useful, thanks!
@hmeister
Thanks for your kind words! I have found pfSense to be a very valuable resource. I hope my articles will allow others to discover this to.
I love you O_O
and is not possible to have multiple WAN and squid proxy in the same box?
@Yohans, Currently it doesn't appear to be possible, squid will only use one of the wan links.
The workaround is to install pfSense on a second machine running the proxy. The proxy machine would point to the dual wan router as it's gateway.
The clients would point to the transparent proxy as their default gateway.
Clients -> Squid Proxy -> Dual Wan Router
great article - worked like a charm!
Thanks for the info but I am running into an issue on my new pfsense install 2.0. I am unable to download packages. An error comes up something about check internet connection. I am to do an nslookup, ping, traceroute from the pfsense box to www.pfsense.com. So I don't think that is my problem. Any ideas what else to check?
Guys on the forum page of pfsense.org, there is a step by step on how to enabled multiwan and squid in one box.
Nice work
BIG THANKS to you man! ). It was very usefull to me.
Hi Skear,
Nice work!
I have one question:
What do you mean by this:"Before you restart Squid you should recreate the swap directly structure."?
Which command can do that?
Thanks forward.


mon 14 months ago
how to to edit boot/loader.conf.local?