Proxy Server (Mini Project)

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

MINI - PROJECT REPORT

ON

“PROXY SERVER”
TE COMPUTER ENGINEERING

IN

NETWORK PROGRAMMING LABORATORY

Submitted by

14CO45 - (SHAH SHAHIL)

16DCO72 - (SAYYED REHAN)

11CO35 - (PRASAD CHANDRESH)

Course Owner

(SHAIKH ABDUL SALAM)

Department of Computer Engineering,

School of Engineering & Technology

Anjuman-I-Islam’s Kalsekar Technical Campus


Plot no 2 & 3, Sector - 16, Near Thana Naka, Khandagaon,

New Panvel, Navi Mumbai - 410206

Academic Year: 2017-18


Setting up Proxy Server on Ubuntu 17.10
Install package:

$ sudo apt-get install squid

Configure squid:

$ sudo vim.tiny /etc/squid/squid.conf


http_access allow localhost

http_access allow mylan

http_access deny all


Define port:

http_port 3128

Define cache dir:

cache_dir ufs /var/spool/squid 30000 16 256


Start services:

$ sudo systemctl start squid

$ sudo systemctl status squid

$ sudo systemctl enable squid

$ sudo systemctl is-enabled squid


Logs file:

$ sudo tail -f /var/log/squid/access.log

Block facebook.com:

acl deny_site dstdomain "/etc/squid/deny_site"

http_access deny deny_site

#cat /etc/squid/deny_site

.facebook.com
Manual Setting:
Access internet through proxy server:

You might also like