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

squid服务搭建

时间:2019-01-18 19:59:35      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:转发   eth1   10.10   ima   .com   snat   direct   tab   防火   

主机1:  外网eth0:192.168.5.110  内网eth1:192.168.10.10

主机2:  内网eth0:192.168.10.20

yum install squid  安装服务

service squid start 启动服务

chkcon?g squid on 开机启动

iptables -F 清除防火墙规则 

技术分享图片

设置完代理IP 端口 打开浏览器 访问百度

透明代理设置

vim /etc/squid/squid.conf

技术分享图片改deng为allow//允许所有用户使用

 技术分享图片添加transparent //开启透明代理

vim /etc/sysctl.conf 

技术分享图片0改成1

 sysctl –p   使转发规则?生效

iptables -F 

增加防火墙规则

iptables -t nat -I PREROUTING -i eth0 -s 192.168.10.0/24 -p tcp --dport 80 -j REDIRECT --to-port 3128

iptables -t nat -A POSTROUTING -s 192.168.10.0/24 -o eth0 -j SNAT --to 192.168.5.110

service iptables save 保存防火墙规则

 

squid服务搭建

标签:转发   eth1   10.10   ima   .com   snat   direct   tab   防火   

原文地址:https://www.cnblogs.com/w1997/p/10289206.html

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