LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 05-23-2016, 10:43 PM   #1
s.antosh
LQ Newbie
 
Registered: May 2016
Posts: 8

Rep: Reputation: Disabled
Need help in setting up Squid 3.1.23 Transparent Proxy on Centos 6.7 with 2 NICs


Hello Folks,

Need help in setting up Squid 3.1.23 Transparent Proxy on Centos 6.7 with 2 NICs.

Here are my setup details...

Centos 6.7 (64bit) running on Hyper-V VM

eth0 is connected to WAN and eth1 is connected to LAN network

Quote:
eth0 :
ip = 10.218.104.146
mask = 255.255.254.0
gw = 10.218.103.1
dns =10.221.1.15 (Local DNS Server)
dns =10.221.1.16 (Local DNS Server)
Quote:
eth1 -
ip = 10.10.10.123
mask = 255.255.255.0
gw -No Gateway

My squid config file looks like below

Quote:

# cat /etc/squid/squid.conf
#
# Recommended minimum configuration:
#
acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1

# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines

#Local Area Network
acl lan src 10.10.10.0/24

#Allow LAN
http_access allow lan

#Hostname
visible_hostname master.mwdbcoe.net

acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT

#
# Recommended minimum Access Permission configuration:
#
# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager

# Deny requests to certain unsafe ports
http_access deny !Safe_ports

# Deny CONNECT to other than secure SSL ports
http_access deny CONNECT !SSL_ports

# We strongly recommend the following be uncommented to protect innocent
# web applications running on the proxy server who think the only
# one who can access services on "localhost" is a local user
#http_access deny to_localhost

#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#

# Example rule allowing access from your local networks.
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
http_access allow localnet
http_access allow localhost

# And finally deny all other access to this proxy
http_access deny all

# Squid normally listens to port 3128
http_port 3128 transparent

# Uncomment and adjust the following to add a disk cache directory.
#cache_dir ufs /var/spool/squid 100 16 256

# Leave coredumps in the first cache dir
coredump_dir /var/spool/squid

# Add any of your own refresh_pattern entries above these.
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern . 0 20% 4320
I ran following commands, saved iptables rules and restarted the service

Quote:

iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 -j DNAT --to 10.10.10.123:3128

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128

iptables -I INPUT -s 10.10.10.0/24 -p tcp --dport 3128 -j ACCEPT
I have used 10.10.10.123 as GW on a test machine (10.10.10.x subnet) to see the internet access but in vain.

What am I missing here? Any help would be appreciated.

P.S. I am fairly new to Linux world and learning things everyday. Kindly bear with me

Regards

Last edited by s.antosh; 05-25-2016 at 11:04 PM.
 
Old 05-24-2016, 06:38 AM   #2
s.antosh
LQ Newbie
 
Registered: May 2016
Posts: 8

Original Poster
Rep: Reputation: Disabled
Thumbs up

I managed to setup a transparent proxy using "Artica-Proxy".

There's a great video on youtube: Setting up transparent proxy using 2 network interfaces using Artica-Proxy. I had followed that.

https://www.youtube.com/watch?v=B7RNa_s-XIQ

Edit: Marked the thread as solved.

Cheers

Last edited by s.antosh; 05-25-2016 at 11:04 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to setup squid transparent proxy in centOS 6.4 Meren Linux - Newbie 5 07-02-2015 02:17 PM
[SOLVED] Problem Deploying SQUID as Transparent Proxy Server on CentOS 6.4 s4starb4boy Linux - Networking 23 01-07-2015 08:39 AM
LXer: How to set up Squid as a transparent web proxy on CentOS or RHEL LXer Syndicated Linux News 0 06-25-2014 01:20 PM
Transparent proxy, 2 NICs, forward to internal proxy server Alcyone Linux - Networking 6 05-14-2013 07:15 PM
LXer: Setting up ubuntu 10.04 (Lucid) server with squid 3 as a Transparent Proxy LXer Syndicated Linux News 0 06-22-2010 07:11 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 10:28 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration