UBUNTU SERVER : UBUNTU 10.04 SQUID PROXY

UBUNTU SERVER : UBUNTU 10.04 SQUID PROXY

Squid is a caching proxy server that can provide enhanced performance for HTTP,HTTPS  and FTP. Squid will cache commonly accessed sites so that it can improve performance by 10-20% for Internet connections.

Squid is compliant to the Harvest Cache architecture and uses the Inter-Cache Protocol (ICP) to transfer data between peer and /parent/child servers. Squid can accelerate traffic from the inside network to the Internet or it can be employed to act as a front-end accelerator for a Web server, increasing access to the web pages on the server.

Here is what Squid can do:
1.Accelerate Internet Connections for Internal Network
2.Protect the Internal Network When Surfing the Internet
3.Create Detailed Information About User Activity on the Internet
4.Prevent Inappropriate Activity by Users on the Internet
5.Enforce Use by Authorized Users Only
6.Filter Sensitive Material
7.Accelerate Web Server Pages

Live Ubuntu Courses or Online Ubuntu Courses are available.

Squid acts both as a proxy, working in behalf of a user, and as a cache.   When squid works as a proxy and a user makes a request for a web site, squid retrieves the web page and then provides it to the user.  The user, in reality never reaches the Internet as the proxy server retrieves and caches all the sites the user makes requests for.

Install and Start Squid
Ubuntu now installs squid 2.7 as the default which is focused on high-performance with features aimed at high traffic volume.  This is in contrast to the other option squid 3.0 which has a greater focus on web filtering.  Be sure that any modifications you make are viewed as version specific.

sudo apt-get install squid

Start / Stop / Restart
Because squid is now integrated with upstart the best way to control squid is using these commands:

start squid
stop squid
restart squid

Important Locations
Once you install Squid, you will need to be familiar with these locations that are important for Squid.

/etc/squid                          config directory
/etc/squid/squid.conf     squid configuration file
/usr/share/doc/squid     documentation and examples
/usr/lib/squid                   support files
/usr/sbin/squid               squid daemon
/var/log/squid                 log directory
/var/spool/squid             cache directory

Basic  Squid Configuration
The complete configuration file is found at /etc/squid/squid.conf. However, since the Squid configuration file has over 4960 lines it is not the easiest to work with. A basic configuration of Squid only needs  one modification, if you are using private networks.
The hostname is automatically discovered by squid, however if you want to set a specific name you can use  visible hostname.
visible_hostname myserver
The only line that must be set is to create a http_access variable that will allow users on the internal network to access the Internet. The line should look something like this:
http_access allow localnet
This line needs to be placed in a specific location, included in the example is the line number so it is easier to locate, note that the localhost is configured to work by default.
677 http_access allow localhost
678 http_access allow localnet
This is possible because the default settings now include these three private networks.
acl localnet src 10.0.0.0/8
acl localnet src 172.16.0.0/12
acl localnet src 192.168.0.0/16
Once you have set this up restart squid with the following command.
restart squid
squid start/running, process 13551

Here is a tutorial with additional information on Squid ACLs

Point your browsers from those internal machines to the squid proxy.  Several points to note about the proxy settings.  The default port that you will connect to is 3128 and set squid to use all protocols.  Once that is set you should have Internet access.

Ubuntu 10.04 Squid Proxy 273x300 UBUNTU SERVER : UBUNTU 10.04 SQUID PROXY
Ubuntu 10.04 Squid Proxy

You will need to configure your firewall. Limit access so that clients can only go through port 3128. This will force them to use the proxy which will provide speed, save resources and protect your internal machines.

Here is an example of allowing an entire subnet.

ufw allow proto tp from 192.168.4.0/24 to any port 3128

Source



Enter your email address:

Delivered by FeedBurner

 ,  squid ubuntu 10 04 ,  restart squid ubuntu server 10 04 ,  start squid proxy ubuntu server 10 04 ,  ubuntu squid best performance

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark
tabs-top banner ad

One Response to “UBUNTU SERVER : UBUNTU 10.04 SQUID PROXY”

  1. [...] kind of error while booting Ubuntu/Ubuntu boot errors,grub/grub 2 errors,etc If you are new to Ubuntu (linux) and you recently installed upgrades through synaptic package manager or other means you are [...]

Leave a Reply