web代理的工作機(jī)制:
緩存網(wǎng)頁對(duì)象,減少重復(fù)請求
成都創(chuàng)新互聯(lián)是專業(yè)的象州網(wǎng)站建設(shè)公司,象州接單;提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行象州網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
傳統(tǒng)代理:適用于Internet,需明確指定服務(wù)端
透明代理:客戶機(jī)不需要指定代理服務(wù)器的地址和端口,是通過默認(rèn)路由,防火墻將web重定向給代理
提高web訪問速度
隱藏客戶機(jī)的真實(shí)IP地址
squid服務(wù)器:192.168.52.134
web服務(wù)器:192.168.52.135
client服務(wù)器:192.168.52.138
[root@squid ~]# mkdir /abc
[root@squid ~]# mount.cifs //192.168.100.3/LNMP-C7 /abc/ ##掛載
[root@squid ~]# cd /abc/
[root@squid abc]# tar zxvf squid-3.4.6.tar.gz -C /opt ##解壓
[root@squid abc]# yum install gcc gcc-c++ make -y ##安裝環(huán)境組件
[root@squid abc]# cd /opt/squid-3.4.6
[root@squid squid-3.4.6]# ./configure \
--prefix=/usr/local/squid \ ##安裝路徑
--sysconfdir=/etc \ ##配置文件目錄
--enable-arp-acl \ ##支持acl訪問控制列表
--enable-linux-netfilter \ ##支持網(wǎng)絡(luò)篩選
--enable-linux-tproxy \ ##支持透明
--enable-async-io=100 \ ##io優(yōu)化
--enable-err-language="Simplify_Chinese" \ ##報(bào)錯(cuò)顯示簡體中文
--enable-underscore \
--enable-poll \
--enable-gnuregex ##支持正則表達(dá)
[root@squid squid-3.4.6]# make && make install ##編譯安裝
[root@squid squid-3.4.6]# ln -s /usr/local/squid/sbin/* /usr/local/sbin/ ##便于系統(tǒng)識(shí)別
[root@squid squid-3.4.6]# useradd -M -s /sbin/nologin squid ##創(chuàng)建系統(tǒng)用戶
[root@squid squid-3.4.6]# chown -R squid.squid /usr/local/squid/var/ ##給目錄所有文件屬主屬組權(quán)限
[root@squid squid-3.4.6]# vim /etc/squid.conf ##修改squid配置文件
# And finally deny all other access to this proxy
http_access allow all ##添加此項(xiàng)
#http_access deny all ##注釋,允許終端訪問
# Squid normally listens to port 3128
http_port 3128
cache_effective_user squid ##指定用戶squid
cache_effective_group squid ##指定組
[root@squid squid-3.4.6]# squid -k parse ##檢查配置文件語法
[root@squid squid-3.4.6]# squid -z ##初始化緩存目錄
[root@squid squid-3.4.6]# squid ##開啟服務(wù)
[root@squid squid-3.4.6]# netstat -ntap | grep 3128 ##查看squid端口
[root@squid squid-3.4.6]# cd /etc/init.d/
[root@squid init.d]# vim squid ##編輯service啟動(dòng)squid的腳本
#!/bin/bash
#chkconfig: 2345 90 25
PID="/usr/local/squid/var/run/squid.pid" ##PID文件進(jìn)程號(hào)
CONF="/etc/squid.conf" ##主配置文件
CMD="/usr/local/squid/sbin/squid" ##啟動(dòng)命令
case "$1" in
start)
netstat -ntap | grep squid &> /dev/null
if [ $? -eq 0 ]
then
echo "squid is running"
else
echo "正在啟動(dòng) squid...."
$CMD
fi
;;
stop)
$CMD -k kill &> /dev/null ##關(guān)閉squid
rm -rf $PID &> /dev/null ##刪除PID文件
;;
status)
[ -f $PID ] &> /dev/null
if [ $? -eq 0 ]
then
netstat -ntap | grep squid
else
echo "squid is not running"
fi
;;
restart)
$0 stop &> /dev/null
echo "正在關(guān)閉 squid..."
$0 start &> /dev/null
echo "正在啟動(dòng) squid..."
;;
reload)
$CMD -k reconfigure ##重載配置文件
;;
check)
$CMD -k parse ##檢查語法
;;
*)
echo "用法:$0{start|stop|reload|status|check|restart}"
;;
esac
[root@squid init.d]# chmod +x squid ##給執(zhí)行權(quán)限
[root@squid init.d]# chkconfig --add squid ##添加到service管理中
[root@squid init.d]# chkconfig --level 35 squid on ##開機(jī)自啟
[root@squid init.d]# vim /etc/squid.conf ##修改主配置文件
# Squid normally listens to port 3128
http_port 3128
cache_mem 64 MB ##內(nèi)存空間大小
reply_body_max_size 10 MB ##允許下載最大文件大小
maximum_object_size 4096 KB ##允許保存緩存空間最大對(duì)象大小
[root@squid init.d]# service squid restart
[root@squid init.d]# iptables -L ##查看表內(nèi)容
[root@squid init.d]# iptables -F ##清空表緩存
[root@squid init.d]# setenforce 0
[root@squid init.d]# iptables -I INPUT -p tcp --dport 3128 -j ACCEPT ##允許3128端口
[root@squid init.d]# service squid reload ##重載配置文件
[root@web ~]# systemctl stop firewalld.service ##關(guān)閉防火墻
[root@web ~]# setenforce 0
[root@web ~]# yum install httpd -y ##安裝web服務(wù)
[root@web ~]# systemctl start httpd.service
squid:192.168.100.1 內(nèi)網(wǎng):ens33
12.0.0.1 外網(wǎng):ens36
web:12.0.0.12
client:192.168.100.50
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=static
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=yes
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=ens33
UUID=3ceed540-b04c-48d6-a4f7-79951f09ea1d
DEVICE=ens33
ONBOOT=yes
IPADDR=12.0.0.12
NETMASK=255.255.255.0
GATEWAY=12.0.0.1
[root@localhost ~]# systemctl restart network
[root@localhost ~]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 12.0.0.12 netmask 255.255.255.0 broadcast 12.0.0.255
inet6 fe80::3e1d:31ba:f66a:6f80 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:95:9b:1b txqueuelen 1000 (Ethernet)
RX packets 189 bytes 26901 (26.2 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 83 bytes 10980 (10.7 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
當(dāng)前標(biāo)題:Squid代理服務(wù)器——傳統(tǒng)代理,透明代理(實(shí)踐?。?/a>
URL地址:http://www.rwnh.cn/article12/gposgc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、網(wǎng)頁設(shè)計(jì)公司、全網(wǎng)營銷推廣、企業(yè)網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)