首页 > 代码库 > Squid代理服务器
Squid代理服务器
缓存代理概述:做为应用层的代理服务软件,squid主要提供缓存加速,应用层过滤控制的功能。
1.代理的工作机制
当客户机通过代理来请求web页面时,指定的代理服务器会先检查自己的缓存,如果缓存中已经有客户机需要的页面,则直接将缓存中的页面内容反馈给客户机,如果缓存中没有客户机要访问的页面,则由代理服务器向Internet发送访问请求,当获得返回的web页面以后,将网页数据保存到缓存中并发送给客户机!如图
HTTP代理缓存加速对象主要是文字,图像等静态web元素。使用缓存机制后,当客户机在不同的时候访问同一web元素,或者不同的客户机访问不同的web元素时,可以直接从代理服务器的 缓存中获得结果。这样就大大减少了想Internet提交重复的web请求的过程,提高了客户机的web访问响应速度。
由于客户机的web访问请求实际上是由代理服务器来替代完成的,从而可以隐藏用户的真实ip地址,起到一定的保护作用。另一方面,代理服务器担任着类似“经纪人”的角色,所以有机会针对要访问的目标,客户机的地址,访问的时间段等进行过滤控制。
2.代理的基本性质类型。
根据实现方式不同,代理服务器可分为传统代理和透明代理两种常见的代理服务。
1)传统代理:也就是普通的代理服务,首先必须在客户机的浏览器,qq聊天工具,下载软件等程序中手动设置代理服务器的地址和端口,然后才能使用代理来访问网络。对于网页浏览器,访问网站时的域名解析请求也会发给指定的代理服务器。
2)透明代理:提供与传统代理相同的功能和服务,其区别在于客户机不需要指定代理服务器的地址和端口,而是通过默认路由,防火墙策略将web访问重定向,实际仍然交给代理服务器处理。重定向的过程对客户机来说是透明的,用户甚至并不知道自己在使用代理服务,所有称为“透明代理”,使用透明代理时,网页浏览器访问网站时的域名解析请求将优先先发给dns服务器。
安装及运行控制
软件:squid3.4.6
系统:centos 6.5
1)编译安装squid
[root@localhost ~]# tar zxf squid-3.4.6.tar.gz -C /usr/src/ //解压 [root@localhost ~]# cd /usr/src/squid-3.4.6/ [root@localhost squid-3.4.6]# ./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 //配置 [root@localhost squid-3.4.6]# make && make install //编译安装
- --prefix=/usr/local/squid //安装目录
- --sysconfdir=/etc //单独将配置文件修改到其他目录
- --enable-arp-acl //可以在规则中设置直接通过客户端MAC进行管理,防止客户端使用ip欺骗
- --enable-linux-netfilter //使用内核过滤
- --enable-linux-tproxy //支持透明模式
- --enable-async-io //异步i/o,提升存储性能,相当于--enable-pthreads --enable-storeio=ufs,aufs --with//-pthreads --with-aufs-thread=值
- --enable-err-language="Simplify_Chinses" //错误信息的显示语音
- --enable-underscore //允许URL中有下划线
- --enable-poll //使用poll()模式,提高性能
- --enable-gnuregex //使用GNU正则表达式
创建链接文件、创建用户和组更改目录属主属组
[root@localhost squid-3.4.6]# ln -s /usr/local/squid/sbin/* /usr/local/sbin/ [root@localhost squid-3.4.6]# useradd -M -s /sbin/nologin squid [root@localhost squid-3.4.6]# chown -R squid.squid /usr/local/squid/var/ [root@localhost squid-3.4.6]# vim /etc/squid.conf //修改配置文件
49 # Example rule allowing access from your local networks. 50 # Adapt localnet in the ACL section to list your (internal) IP networks 51 # from where browsing should be allowed 52 http_access allow localnet 53 http_access allow localhost 54 55 # And finally deny all other access to this proxy 56 http_access deny all 57 58 # Squid normally listens to port 3128 59 http_port 3128 60 cache_effective_user squid //这一项指定squid的程序用户,用来设置初始化允许缓存的账号,负责启动不成功! 61 cache_effective_group squid //默认为cache_effective_user指定账号的基本组 62 # Uncomment and adjust the following to add a disk cache directory. 63 #cache_dir ufs /usr/local/squid/var/cache/squid 100 16 256 64 65 # Leave coredumps in the first cache dir 66 coredump_dir /usr/local/squid/var/cache/squid 67
[root@localhost ~]# squid -k parse //检查配置文件语法是否正确 2015/09/23 06:38:26| Startup: Initializing Authentication Schemes ... 2015/09/23 06:38:26| Startup: Initialized Authentication Scheme ‘basic‘ 2015/09/23 06:38:26| Startup: Initialized Authentication Scheme ‘digest‘ 2015/09/23 06:38:26| Startup: Initialized Authentication Scheme ‘negotiate‘ 2015/09/23 06:38:26| Startup: Initialized Authentication Scheme ‘ntlm‘ 2015/09/23 06:38:26| Startup: Initialized Authentication. 2015/09/23 06:38:26| Processing Configuration File: /etc/squid.conf (depth 0) 2015/09/23 06:38:26| Processing: acl localnet src 10.0.0.0/8 # RFC1918 possible internal network 2015/09/23 06:38:26| Processing: acl localnet src 172.16.0.0/12 # RFC1918 possible internal network 2015/09/23 06:38:26| Processing: acl localnet src 192.168.0.0/16 # RFC1918 possible internal network 2015/09/23 06:38:26| Processing: acl localnet src fc00::/7 # RFC 4193 local private network range 2015/09/23 06:38:26| Processing: acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines 2015/09/23 06:38:26| Processing: acl SSL_ports port 443 2015/09/23 06:38:26| Processing: acl Safe_ports port 80 # http 2015/09/23 06:38:26| Processing: acl Safe_ports port 21 # ftp 2015/09/23 06:38:26| Processing: acl Safe_ports port 443 # https 2015/09/23 06:38:26| Processing: acl Safe_ports port 70 # gopher 2015/09/23 06:38:26| Processing: acl Safe_ports port 210 # wais 2015/09/23 06:38:26| Processing: acl Safe_ports port 1025-65535 # unregistered ports 2015/09/23 06:38:26| Processing: acl Safe_ports port 280 # http-mgmt 2015/09/23 06:38:26| Processing: acl Safe_ports port 488 # gss-http 2015/09/23 06:38:26| Processing: acl Safe_ports port 591 # filemaker 2015/09/23 06:38:26| Processing: acl Safe_ports port 777 # multiling http 2015/09/23 06:38:26| Processing: acl CONNECT method CONNECT 2015/09/23 06:38:26| Processing: http_access deny !Safe_ports 2015/09/23 06:38:26| Processing: http_access deny CONNECT !SSL_ports 2015/09/23 06:38:26| Processing: http_access allow localhost manager 2015/09/23 06:38:26| Processing: http_access deny manager 2015/09/23 06:38:26| Processing: http_access allow localnet 2015/09/23 06:38:26| Processing: http_access allow localhost 2015/09/23 06:38:26| Processing: http_access deny all 2015/09/23 06:38:26| Processing: http_port 3128 2015/09/23 06:38:26| Processing: cache_effective_user squid 2015/09/23 06:38:26| Processing: cache_effective_group squid 2015/09/23 06:38:26| Processing: coredump_dir /usr/local/squid/var/cache/squid 2015/09/23 06:38:26| Processing: refresh_pattern ^ftp: 1440 20% 10080 2015/09/23 06:38:26| Processing: refresh_pattern ^gopher: 1440 0% 1440 2015/09/23 06:38:26| Processing: refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 2015/09/23 06:38:26| Processing: refresh_pattern . 0 20% 4320 [root@localhost ~]#
[root@localhost ~]# squid -z //启动前必须初始化缓存目录
[root@localhost ~]# squid //启动squid
服务启动脚本:如下
#!/bin/bash #chkconfig: 2345 90 25 #config: /etc/squid.conf #pidfile: /usr/local/squid/var/run/squid.pid #description: squid - internet object cache. PID="usr/local/squid/var/run/squid.pid" CONF="/etc/squid.conf" CMD="/usr/local/squid/sbin/squid" case "$1" in start) netstat -anpt | 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 -anpt | 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 |restart | reload | check | status}" ;; esac
[root@localhost ~]# chmod 775 /etc/init.d/squid //授权脚本权限 [root@localhost ~]# /etc/init.d/squid restart //重启squid服务 [root@localhost ~]# chkconfig squid on //开机自启动 [root@localhost ~]# chkconfig --add squid //添加系统服务
Squid代理服务器