码迷,mamicode.com
首页 > 其他好文 > 详细

利用squid 搭建简单的透明代理服务器

时间:2014-10-18 23:48:55      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   ar   strong   sp   文件   on   bs   

环境介绍

虚拟主机1:

ip

eth0192.168.0.100/24

eth1:

200.168.0.100/24

虚拟主机2(模拟外网)

200.168.0.109/24 (运行web server)

pc机()

ip 192.168.0.111/24 gateway 192.168.0.100

透明代理的实现方法

基本实现

1.修改squid.conf

http_port 192.168.0.100:3128 transparent

2.重新加载配置文件

3.添加iptables规则 把内部的http请求 重定向到3128端口

iptables -t nat -A PREROUTING -i eth0 -s 192.168.0.0/24 -p tcp --dport 80 -j REDIRECT --to 3128

(把来自192.168.0.0/24网段的80端口请求重定向到3128端口)

在pc机上 输入 200.168.0.109 进行测试

利用squid 搭建简单的透明代理服务器

标签:style   http   color   ar   strong   sp   文件   on   bs   

原文地址:http://www.cnblogs.com/tl542475736/p/4034009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!