Subscribe For Free Updates!

We'll not spam mate! We promise.

Sunday 24 November 2013

Howto add SQUID Proxy Server with MIKROTIK [Short Reference Guide]


To add SQUID Proxy Caching Server support in Mikrotik, Assuming the following Scenario.
DSL MODEM IP = 192.168.1.1
MIKROTIK LAN IP = 10.0.0.1
SQUID LAN IP = 192.168.2.1

I assume that you already have working Mikrotik in place, and Already configured SQUID Server ready, (You can search guides about there configurations at my blog), I will just show you how to interconnect them together so All users browsing port 80 request will go to SQUID for caching facility)
We will divide this article in two sections.
1#  MIKROTIK CONFIGURATION
2#  SQUID CONFIGURATION

1#  MIKROTIK CONFIGURATION

Mikrotik Have 3 Interfaces.
ether1 = 10.0.0.1
Connected to LAN
ether2 = 192.168.2.2
Connected Directly to PROXY’s eth0 via crossover cable.
ether3 = 192.168.1.2
Connected Directly to WAN/DSL
As shown in the image below . . .

Open New Terminal and create new NAT rule to redirect port 80 traffic to SQUID proxy server. Command as follows.
1
2
/ip firewall nat
add action=dst-nat chain=dstnat disabled=no dst-port=80 protocol=tcp to-addresses=192.168.2.1 to-ports=8080
[192.168.2.2 is the SQUID proxy server ip]
As shown in the image below . . .

That’s it for mikrotik configuration, moving on to squid

2#  SQUID CONFIGURATION

SQUID PROXY SERVER have two Interfaces
eth0 = 192.168.2.1
Connected Directly with Mikrotik’s PROXY interface via crossover cable.
eth1 = 192.168.1.3
Connected Directly with WAN/DSL
Note: I Will not discuss howto configure SQUID here as it have already been well described in my other articles as follows, Therefore I assume you have already configured SQUID and must be running it in TRANSPARENT mode (using squid.conf directives and iptables)
Add the following line in /etc/squid/squid.conf
1
2
# PORT and Transparent Option
http_port 8080 transparent
For iptables to redirect user request to port 8080 transparently, Add the following line in /etc/rc.local or issue the command at CLI,
1
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to 192.168.2.1:8080
Where eth0 is LAN interface of SQUID.
For more information, Read the below . . .
Now Try to Browse, and at Proxy Server , Monitor SQUID Log by following command
1
tail -f /var/log/squid/access.log
and you will see User Browsing request coming  via Mikrotik ip.
As shown in the image below . . .

If you want to log USER’s Original IP address instead of Mikrotik, Either add route in Squid server for your local user subnet pointing to mikrotik proxy interface, OR you have to use Packet Marking + ROUTING method as described in the following article.
Regard’s
naveed ahmad

Please Give Us Your 1 Minute In Sharing This Post!
SOCIALIZE IT → , ,
FOLLOW US →
SHARE IT →

2 comments:

  1. how to add route in Squid server for your local user subnet pointing to mikrotik proxy interface .
    Please help
    Thanks in advanced.

    ReplyDelete
  2. Great article!

    There is a demand for a better blacklist. And with few alternatives available, we intend to fill that gap.

    It would be our pleasure to serve you,

    Signed,

    Benjamin E. Nichols
    http://www.squidblacklist.org

    ReplyDelete

 
".