Debian 7.0
Sponsored Link

Install Squid2013/05/12

 
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 718: define ACL for internal

acl lan src 10.0.0.0/24
http_access allow localhost
# line 842: add (set ACL for internal)

http_access allow lan
# line 1136: change

http_port
8080
# line 3449: add follows

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 3748: add (define hostname)

visible_hostname lan.srv.world
# forwarded_for on
# line 5541: add (hide IP address)

forwarded_for off
root@lan:~#
/etc/init.d/squid3 restart

Restarting Squid HTTP Proxy 3.x: squid3 Waiting.....................done.
[2] Start Web browser on your client PC. This is the example on Internet Explorer 9. 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.
Matched Content