Install Squid2011/03/13 |
Configure Proxy server and make web browzing fast. Install Squid for it. |
|
[1] | Install and configure Squid |
root@lan:~# aptitude -y install squid3 root@lan:~# vi /etc/squid3/squid.conf acl CONNECT method CONNECT # line 667: define internal ACL acl lan src 10.0.0.0/24 http_access allow localhost # line 788: add ACL for internal http_access allow lan # line 1075: change http_port 8080 # line 3295: add request_header_access Referer deny all request_header_access X-Forwarded-For deny all request_header_access Via deny all request_header_access Cache-Control deny all # line 3578: add (specify hostname) visible_hostname lan.srv.world # forwarded_for on # line 5304: add (hide IP address) forwarded_for off root@lan:~# /etc/init.d/squid3 restart Restarting Squid HTTP Proxy 3.x: squid3 Waiting.....................done. Creating Squid HTTP Proxy 3.x cache structure ... (warning). 2011/03/13 00:36:49| Creating Swap Directories . |
[2] | Start Web browser on your client PC. This is the example on Internet Explorer 8. Select [Tools] - [Internet Options] and move to [Connections] tab like below. |
[3] | Check 'use a proxy' and input server's hostname and port number set in the section [1]. Then, you can access to internet through proxy server. |
Sponsored Link |