Squid 代理服务器 - 实现Web加速缓存及负载均衡

Squid代理服务器

  • 一、Web代理的工作机制
  • 二、代理方式
    • 1. 传统代理
    • 2. 透明代理
    • 3. 反向代理
  • 三、部署传统代理
    • 1. 拓扑图
    • 2. 编译安装
    • 3. 修改配置文件
    • 4. 服务控制
    • 5. 部署Apache服务器
    • 6. 客户机测试
  • 四、部署透明代理
    • 1. 拓扑图
    • 2. 配置Squid
    • 3. 客户机测试
  • 五、ACL 访问控制
    • 1.概述
    • 2. 拓扑图
    • 3. 配置Squid
    • 4. 配置两个Web
    • 5. 客户机测试
  • 六、部署 Squid 日志分析
    • 1. 安装sarg
    • 2. 配置sarg
    • 3. 客户端测试
    • 4. 添加计划任务以每天生成报告
  • 七、Squid反向代理
    • 1. 拓扑图
    • 2.配置Squid
    • 3. Web1
    • 4. Web2
    • 5. 客户机测试

一、Web代理的工作机制

为C/S双方都提供了便利,将服务器数据缓存给客户机,这样客户机访问服务器更快,服务器也能节省资源
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第1张图片

二、代理方式

1. 传统代理

需要在客户端中浏览器配置代理服务器

2. 透明代理

客户机不需要指定代理服务器,而直接通过默认路由、防火墙策略将Web访问重定向给代理服务器处理
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第2张图片

3. 反向代理

负载均衡的过程中Squid起到缓存作用
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第3张图片

三、部署传统代理

Squid 代理服务器 - 实现Web加速缓存及负载均衡_第4张图片

1. 拓扑图

一台Squid一台Apache服务器

Squid 代理服务器 - 实现Web加速缓存及负载均衡_第5张图片

主机 操作系统 IP 地址 主要软件
Squid服务器 CentOS 7 192.168.0.10 Squid
Apache服务器 CentOS 7 192.168.0.20 Apache

2. 编译安装

systemctl stop firewalld
systemctl disable firewalld
setenforce 0

yum -y install gcc gcc-c++ make perl

wget -P /opt http://www.squid-cache.org/Versions/v3/3.5/squid-3.5.28.tar.gz

cd /opt
tar -zxvf squid-3.5.28.tar.gz
cd squid-3.5.28

./configure --prefix=/usr/local/squid \
--sysconfdir=/etc \
--enable-arp-acl \
--enable-linux-netfilter \
--enable-linux-tproxy \
--enable-async-io=100 \
--enable-err-language="Simplify_Chinese" \
--enable-underscore \
--enable-poll \
--enable-gnuregex

make -j && make install

ln -s /usr/local/squid/sbin/* /usr/local/sbin/

useradd -M -s /sbin/nologin squid

chown -R squid:squid /usr/local/squid/var/

#创建软链接至路径环境变量,方便系统识别 squid 的系统命令
#创建程序用户 squid,保证系统安全性
#为 /usr/local/squid/var 目录递归指定属主属组

3. 修改配置文件

vim /etc/squid.conf

#56行,插入
http_access allow all
#放在 http_access deny all 之前,允许任意客户机使用代理服务
http_access deny all

#61行,插入
cache_effective_user squid
#添加指定程序用户,用来设置初始化、运行时缓存的账号,否则启动不成功
cache_effective_group squid
#添加指定账号基本组

#63行,插入
cache_mem 64 MB
#指定缓存功能所使用的内存空间大小,便于保持访问较频繁的WEB对象,容量最好为4的倍数,单位为MB,建议设为物理内存的1/4
reply_body_max_size 10 MB
#允许用户下载的最大文件大小,以字节为单位,当下载超过指定大小的Web对象时,浏览器的报错页面中会出现“请求或访问太大”的提示默认设置0表示不进行限制
maximum_object_size 4096 KB
#允许保存到缓存空间的最大对象大小,以KB为单位,超过大小限制的文件将不被缓存,而是直接转发给用户

4. 服务控制

squid -k parse
#检查配置文件语法是否正确

squid –z
#-z 选项用来初始化缓存目录

squid
#启动 squid 服务

vim /etc/init.d/squid

#!/bin/bash
#chkconfig: 2345 90 25
PID="/usr/local/squid/var/run/squid.pid"
CONF="/etc/squid.conf"
CMD="/usr/local/squid/sbin/squid"

case "$1" in
   start)
     netstat -natp | grep squid &> /dev/null
     if [ $? -eq 0 ]
     then
       echo "squid is running"
       else
       echo "正在启动 squid..."
       $CMD
     fi
   ;;
   stop)
     $CMD -k kill &> /dev/null
     rm -rf $PID &> /dev/null
   ;;
   status)
     [ -f $PID ] &> /dev/null
        if [ $? -eq 0 ]
          then
            netstat -natp | grep squid
          else
            echo "squid is not running"
        fi
   ;;
   restart)
      $0 stop &> /dev/null
      echo "正在关闭 squid..."
         $0 start &> /dev/null
      echo "正在启动 squid..."
   ;;
   reload)
      $CMD -k reconfigure
   ;;
   check)
      $CMD -k parse
   ;;
   *)
      echo "用法:$0{start|stop|status|reload|check|restart}"
   ;;
esac

chmod +x /etc/init.d/squid
#给该服务启动脚本可执行权限
chkconfig --add squid
#将该服务加入 chkconfig 管理
chkconfig --level 35 squid on
#能够在级别3(字符界面),级别5(视图界面)中自启动

chkconfig --list squid
#查看运行级别

ss -natp | grep "squid"

5. 部署Apache服务器

systemctl stop firewalld
systemctl disable firewalld
setenforce 0

yum -y install httpd

6. 客户机测试

配置代理
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第6张图片
访问Web服务器并查看日志

tail -f /var/log/httpd/access_log

Squid 代理服务器 - 实现Web加速缓存及负载均衡_第7张图片

四、部署透明代理

1. 拓扑图

主机 操作系统 IP 地址 主要软件
Squid服务器 CentOS 7 (内网)192.168.0.10 (外网)12.0.0.1 Squid
Apache服务器 CentOS 7 12.0.0.10 Apache

2. 配置Squid

cd /etc/sysconfig/network-scripts/
cp ifcfg-ens33 ifcfg-ens36
#修改外网网卡信息

systemctl restart network
ifconfig

添加提供内网服务的IP地址,和支持透明代理选项 transparent

#60行,修改
vim /etc/squid.conf
......
http_access allow all
http_access deny all

http_port 192.168.0.10:3128 transparent


systemctl restart squid
netstat -anpt | grep "squid"

开启路由转发

echo 'net.ipv4.ip_forward = 1' >> /etc/sysctl.conf
sysctl -p

修改防火墙规则

iptables -F
iptables -t nat -F
iptables -t nat -I PREROUTING -i ens33 -s 192.168.0.0/24 -p tcp --dport 80 -j REDIRECT --to 3128	
iptables -t nat -I PREROUTING -i ens33 -s 192.168.0.0/24 -p tcp --dport 443 -j REDIRECT --to 3128	
iptables -I INPUT -p tcp --dport 3128 -j ACCEPT

3. 客户机测试

关闭之前的代理服务,修改网关为Web服务器IP

Squid 代理服务器 - 实现Web加速缓存及负载均衡_第8张图片
Squid服务器查看日志

tail -f /usr/local/squid/var/logs/access.log


在多访问几次就会显示的是由代理服务器的外网口代替客户机在访问

五、ACL 访问控制

1.概述

在配置文件 squid.conf 中,ACL 访问控制通过以下两个步骤来实现
使用 acl 配置项定义需要控制的条件
通过 http_access 配置项对已定义的列表做“允许”或“拒绝”访问的控制

vim /etc/squid.conf

acl localhost src 192.168.0.30/32 					#源地址为 192.168.0.30
acl MYLAN src 192.168.0.0/24 			#客户机网段
acl destionhost dst 192.168.0.20/32				#目标地址为 192.168.0.20
acl MC20 maxconn 20									#最大并发连接 20
acl PORT port 21									#目标端口 21
acl DMBLOCK dstdomain .qq.com						#目标域,匹配域内所有站点
acl BURL url_regex -i ^rtsp:// ^emule://			#以 rtsp://、emule:// 开头的 URL,-i表示忽略大小写
acl PURL urlpath_regex -i \.mp3$ \.mp4$ \.rmvb$		#以 .mp3、.mp4、.rmvb 结尾的 URL 路径
acl WORKTIME time MTWHF 08:30-17:30

2. 拓扑图

主机 操作系统 IP 地址 主要软件
Squid服务器 CentOS 7 (内网)192.168.0.10 (外网)12.0.0.1 Squid
Apache服务器1 CentOS 7 192.168.0.20 Apache
Apache服务器2 CentOS 7 192.168.0.30 Apache

3. 配置Squid

vim /dest.list
192.168.0.20

vim /etc/squid.conf
......
acl destionhost dst "/dest.list"		
#调用指定文件中的列表内容
......
http_access deny destionhost			
#注意,如果是拒绝列表,需要放在http_access allow all 前面

http_port 3128


systemctl restart squid
netstat -natp | grep "squid"

4. 配置两个Web

systemctl stop firewalld
systemctl disable firewalld
setenforce 0

yum -y install httpd

systemctl start httpd

5. 客户机测试

设置客户机浏览器代理为192.168.0.10:3128
访问192.168.0.20会显示拒绝访问
访问192.168.0.30成功访问
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第9张图片
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第10张图片

六、部署 Squid 日志分析

1. 安装sarg

yum install -y pcre-devel gd gd-devel

mkdir /usr/local/sarg
wget -P /opt https://nchc.dl.sourceforge.net/project/sarg/sarg/sarg-2.4.0/sarg-2.4.0.tar.gz
cd /opt
tar -zxvf sarg-2.4.0.tar.gz

cd sarg-2.4.0

./configure --prefix=/usr/local/sarg --sysconfdir=/etc/sarg --enable-extraprotection
make && make install

2. 配置sarg

#修改配置文件
vim /etc/sarg/sarg.conf

access_log /usr/local/squid/var/logs/access.log		#指定访问日志文件

title "Squid User Access Reports"					#网页标题

output_dir /var/www/html/squid-reports						#报告输出目录
user_ip no											#使用用户名显示

topuser_sort_field connect reverse					#top排序中,指定连接次数采用降序排列,升序是normal

user_sort_field connect reverse						#对于用户访问记录,连接次数按降序排序

exclude_hosts /usr/local/sarg/noreport				#指定不计入排序的站点列表的文件

overwrite_report no									#同名同日期的日志是否覆盖

mail_utility mailq.postfix							#发送邮件报告命令

charset UTF-8										#指定字符集UTF-8

weekdays 0-6										#top排行的星期周期
hours 0-23											#top排行的时间周期

www_document_root /var/www/html						#指定网页根目录


touch /usr/local/sarg/noreport
ln -s /usr/local/sarg/bin/sarg /usr/local/bin/

3. 客户端测试

运行

sarg


验证

yum install httpd -y
systemctl start httpd

访问网页

http://192.168.0.10/squid-reports

Squid 代理服务器 - 实现Web加速缓存及负载均衡_第11张图片

4. 添加计划任务以每天生成报告

vim /usr/local/sarg/report.sh

#/bin/bash
#Get current date
TODAY=$(date +%d/%m/%Y)
#Get one week ago today
YESTERDAY=$(date -d "1 day ago" +%d/%m/%Y)
/usr/local/sarg/bin/sarg -l /usr/local/squid/var/logs/access.log -o /var/www/html/squid-reports -z -d $YESTERDAY-$TODAY &> /dev/null
exit 0



chmod +x /usr/local/sarg/report.sh
#赋权

crontab -e
30 3 * * * /usr/local/sarg/report.sh
#写入计划性任务,每天凌晨3点30分执行该脚本

七、Squid反向代理

1. 拓扑图

主机 操作系统 IP 地址 主要软件
Squid服务器 CentOS 7 192.168.0.10 Squid
Apache服务器1 CentOS 7 192.168.0.20 Apache
Apache服务器2 CentOS 7 192.168.0.30 Apache

2.配置Squid

vim /etc/squid.conf

http_port 192.168.0.10:80
cache_peer 192.168.0.20 parent 80 0 no-query originserver round-robin max_conn=30 weight=1 name=web1
cache_peer 192.168.0.30 parent 80 0 no-query originserver round-robin max_conn=30 weight=1 name=web2
cache_peer_domain web1 web2 www.example.cn

systemctl restart squid

参数介绍

参数 结束
parent 代表为父节点
80 HTTP_PORT
0 ICP_PORT
no-query 不做查询操作,直接获取数据
originserver 不做查询操作,直接获取数据
round-robin 指定 squid 通过轮询方式将请求分发到其中一台父节点
max_conn 指定最大连接数
weight 指定权重
name 设置别名

3. Web1

yum install -y httpd
systemctl start httpd

echo "站点一" > /var/www/html/index.html

4. Web2

yum install -y httpd
systemctl start httpd

echo "站点二" > /var/www/html/index.html

5. 客户机测试

设置hosts文件
192.168.0.10 www.example.cn

配置浏览器代理
192.168.0.10:80

访问 www.example.cn

Squid 代理服务器 - 实现Web加速缓存及负载均衡_第12张图片
Squid 代理服务器 - 实现Web加速缓存及负载均衡_第13张图片

你可能感兴趣的:(运维,squid,缓存,nginx,apache,运维)