Jumat, 10 Februari 2012

Setting Proxy Server

,
Setting Proxy Server dengan Ubuntu 10.04
1) # apt-get install squid
backup dulu file /etc/squid/squid.conf
2) # cp /etc/squid/squid.conf /etc/squid/squid.conf.original
2) # rm /etc/squid/squid.conf
3) # gedit /etc/squid/squid.conf


acl all src all
acl localnet src 192.168.2.0/24
acl situs url_regex -i “/etc/squid/blokir.txt”
http_access deny situs
http_access allow localnet
http_access allow all
http_port 3128 transparent
cache_mem 8 mb
memory_replacement_policy heap GDSF
cache_replacement_policy heap LFUDA
store_dir_select_algorithm round-robin
cache_dir aufs /cache 10000 24 256
cache_store_log none
cache_access_log /var/log/squid/access.log
cache_effective_user proxy
cache_effective_group proxy
visible_hostname tkj04
3) # gedit /etc/squid/blokir.txt
facebook.com
4) # mkdir /cache
5) # chown –R proxy:proxy /etc/squid/blokir.txt
6) # chown –R proxy:proxy /cache
7) # /etc/init.d/squid stop
8) # squid –z
2010/10/16 19:43:30| Creating Swap Directories
9) /etc/init.d/squid start
10) # gedit /etc/rc.local
iptables -A PREROUTING -t nat -p tcp –dport 80 -j REDIRECT –to-port 3128
#exit 0
11) # /etc/init.d/squid restart
12) buka browser, ketikkan facebook.com

0 komentar to “Setting Proxy Server”

Posting Komentar