Squid正向代理(编译安装)
tps://www.aliyun.com/product/cas?source=5176.11533457&userCode=kv73ipbs&type=copy
https://www.aliyun.com/product/cas?source=5176.11533457&userCode=kv73ipbs&type=copy
https://www.aliyun.com/product/cas?source=5176.11533457&userCode=kv73ipbs&type=copyhttps://www.aliyun.com/product/cas?source=5176.11533457&userCode=kv73ipbs&type=copy
编译安装
版本为squid-3.5.27
系统为Centos6.5
依赖环境
yum install -y perl gcc*autoconf automake make sudo wget libxml2-devel libcap-devel libtool-ltdl-devel
解压
[root@uu ~]# mkdir /application [root@uu ~]# cd /application/ [root@uu application]# rz [root@uu application]# tar zxvf squid-3.5..tar.gz
关于软连接
编译软件时指定版本号(/appiication/app1.1.1),访问时希望去掉版本号(/application/app,),可以设置软链接到编译的路径。 所有程序都访问软链接文件(/application/app,),当软件升级高版本后,只需删除链接文件重建到高版本路径的软链接接口(/application/app,)。
做软连接
[root@uu application]# ln -s squid-3.5.27 squid
编译
./configure --prefix=/application/squid --disable-loadable-modules --enable-gnuregex --enable-icmp --enable-linux-netfilter --enable-err-language="zh-cn" --enable-default-err-language="zh-cn" --enable-kill-parent-hack --enable-cache-digests --enable-dlmalloc--enable-poll --enable-async-io= --enable-arp-acl--mandir=/usr/share/man/ --with-large-files --with-fd= --with-large-files --enable-arp-acl
注释
--enable-arp-acl
通过IP地址来识别用户很不可靠,比IP地址更好的是网卡的MAC物理地址。要在Squid中使用MAC地址识别,
配置文件中加入:
acl advance arp 00:01:02:1f:2c:3e 00:01:02:3c:1a:8b ...
验证
echo $?
PS
Squid本身会被安装到/application/sbin下
Squid的cache目录默认为/application/squid/cache
Squid的log目录默认为/application/squid/logs
squid的配置文件目录默认为/application/etc/squid
编译安装的注释
l --enable-async-io= 这个主要是设置async模式来运行squid,我的理解是设置用线程来运行squid,如果服务器配置很不错,有1G以上内存,cpu使用SMP的方式的话可以考虑设成160或者更高。如果服务器比较糟糕就根据实际情况设了。另外此项还另cache文件支持aufs。80这个值是根据160的配置情况自己确定的。 l --enable-epoll LINUX2. 内核中提高I/O性能的新方法。 l --enable-poll 应启用Poll()函数而不是select()函数,通常而言poll(轮询)比 select要好,但configure(脚本程序)已知Poll在某些平台下失效, 若你认为你比configure编译配置脚本程序要聪明的话,可以用这个选项启用Poll。总之就是用这个可以提升性能就是啦。没有看得很明白,但是我自己感觉是不是epoll更先进一点。反正我用epoll取代了poll。 epoll是Linux内核为处理大批量句柄而作了改进的poll,是Linux下多路复用IO接口select/poll的增强版本,它能显著减少程序在大量并发连接中只有少量活跃的情况下的系统CPU利用率。 l --disable-internal-dns Squid代理服务器在程序内部实现DNS解析,不会检查/etc/hosts文件,直接根据/etc/resolv.conf中的DNS服务器。我的实践:、配置参数中dns_children 必须要依赖于disable-internal-dns。、默认是检查/etc/hosts文件的。默认值是hosts_file /etc/hosts。如果要不检查,必须显示指定hosts_file none。 l --with_filedescriptors= 增加并发是同时打开文件的文件描述符数量,默认是1024,一般不够。会在cache_log中形成WARNING: your cache is running out of the filedescriptors!的警告信息。另外我的实践:必须在配置文件中显示指定max_filedescriptors ,前后两个值并不一定要相等,前面是编译时设定的最大值,后面配置文件中的值不大于该值即可。 l --enable-kill-parent-hack 关掉suqid的时候,要不要连同父进程一起关掉,这个当然要啦。当然要,就要吧。以前发生过关闭SQUID不正常,无法删除pid文件什么的,可能是和这个选项有关。(.7也支持本选项) l --enable-underscore 在3.0里不再需要也不再支持这个安装选项(.7也不支持了)。在配置文件中有allow_underscore 这个选项。默认是允许域名中支持下划线了。 l --enable-err-language="zh-cn" --enable-default-err-language="zh-cn" 原来是--enable-err-language="Simplify_Chinese" --enable-default-err-language="Simplify_Chinese"
安装
注意
squid 3.1.5以后版本,默认编译时,会出现如下错误,可以禁用eCAP(--disable-loadable-modules)
> ../libltdl/libltdl/lt_error.h::: error: libltdl/lt_system.h: No such file or directory
> make[]: *** [LoadableModule.o] Error
> make[]: Leaving directory `/application/src/squid/squid-3.1./src’
> make[]: *** [all-recursive] Error
> make[]: Leaving directory `/application/src/squid/squid-3.1./src’
> make[]: *** [all] Error
> make[]: Leaving directory `/application/src/squid/squid-3.1./src’
> make: *** [all-recursive] Error
或者:
In file included from LoadableModule.cc:: ../libltdl/ltdl.h:: 错误:‘LT_DLSYM_CONST’没有命名一个类型 LoadableModule.cc: In constructor ‘LoadableModule::LoadableModule(const String&)’: LoadableModule.cc:: 错误:‘lt__PROGRAM__LTX_preloaded_symbols’在此作用域中尚未声明 make[]: *** [LoadableModule.o] 错误 make[]: Leaving directory `/application/squid-3.5./src' make[]: *** [all-recursive] 错误 make[]: Leaving directory `/application/squid-3.5./src' make[]: *** [all] 错误 make[]: Leaving directory `/application/squid-3.5./src' make: *** [all-recursive] 错误 如果你用的是centos系统的最小化安装,可能没有安装c语言编译器,需要手动安装,如安装过程中出现以下错误: -bash: make: command not found 这是因为没有安装编译器,用以下命令安装:yum install gcc* gcc-*。安装后,再次make就可以了
make
[root@uu squid-3.5.]##make sed " s%@DEFAULT_ERROR_DIR@%%g; s%@DEFAULT_MIME_TABLE@%%g; s%@""PACKAGE_STRING""@%Squid Web Proxy 3.5.27%g; s%@SYSCONFDIR@%/application/squid/etc%g; " < ./cachemgr.cgi..in > cachemgr.cgi. make[]: Leaving directory `/application/squid-3.5./tools' make[]: Leaving directory `/application/squid-3.5./tools' Making all in test-suite make[]: Entering directory `/application/squid-3.5./test-suite' make[]: Nothing to be done for `all'. make[]: Leaving directory `/application/squid-3.5./test-suite' make[]: Entering directory `/application/squid-3.5.' make[]: Nothing to be done for `all-am'. make[]: Leaving directory `/application/squid-3.5.' [root@uu squid-3.5.]# echo $?
make install
[root@uu squid-3.5.]# make install make[]: Leaving directory `/application/squid-3.5./tools' make[]: Leaving directory `/application/squid-3.5./tools' make[]: Leaving directory `/application/squid-3.5./tools' Making install in test-suite make[]: Entering directory `/application/squid-3.5./test-suite' make[]: Entering directory `/application/squid-3.5./test-suite' make[]: Nothing to be done for `install-exec-am'. make[]: Nothing to be done for `install-data-am'. make[]: Leaving directory `/application/squid-3.5./test-suite' make[]: Leaving directory `/application/squid-3.5./test-suite' make[]: Entering directory `/application/squid-3.5.' make[]: Entering directory `/application/squid-3.5.' make[]: Nothing to be done for `install-exec-am'. make[]: Nothing to be done for `install-data-am'. make[]: Leaving directory `/application/squid-3.5.' make[]: Leaving directory `/application/squid-3.5.' [root@uu squid-3.5.]# echo $?
到此为止,squid3.5.5已经安装到/application/squid目录下了,运行
配置文件
>/application/squid/etc/squid.conf
vim /application/squid/etc/squid.conf [root@uu etc]# cat squid.conf http_port cache_mem MB maximum_object_size MB minimum_object_size KB maximum_object_size_in_memory KB cache_dir aufs /application/squid/var/cache/squid cache_mem MB cache_log /application/squid/var/logs/cache.log #logfile_rotate #cache_swap_high #cache_swap_low request_entities off #ident_timeout seconds #设置squid等待用户认证请求的时间。缺省值为10秒。[–enable-ident-lookups] cache_effective_user nobody cache_effective_group nobody httpd_suppress_version_string on #acl manager proto cache_object #acl localhost src 127.0.0.1/ :: #acl to_localhost dst 127.0.0.0/ 0.0.0.0/ :: acl localnet src 10.0.0.0/ acl SSL_ports port acl Safe_ports port acl Safe_ports port acl CONNECT method CONNECT acl http proto HTTP acl good_domain dstdomain yyt.etcsd.com http_access allow manager localhost http_access allow http good_domain http_access deny http !good_domain http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow all coredump_dir /application/squid/var/cache/squid refresh_pattern ^ftp: % refresh_pattern ^gopher: % refresh_pattern -i (/cgi-bin/|\?) % refresh_pattern . % visible_hostname pstation cache_mgr @.com
错误提示
去掉manager和127.0.0.1的行 UPGRADE: ACL 'manager' is now a built-in ACL. Remove it from your config file. // ::| Processing: acl localhost src 127.0.0.1/ :: // ::| WARNING: (B) '127.0.0.1' is a subnetwork of (A) '127.0.0.1' // ::| WARNING: because of this '127.0.0.1' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '127.0.0.1' from the ACL named 'localhost' // ::| WARNING: (B) '127.0.0.1' is a subnetwork of (A) '127.0.0.1' // ::| WARNING: because of this '127.0.0.1' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '127.0.0.1' from the ACL named 'localhost' // ::| WARNING: (B) '::1' is a subnetwork of (A) '::1' // ::| WARNING: because of this '::1' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '::1' from the ACL named 'localhost' // ::| WARNING: (B) '::1' is a subnetwork of (A) '::1' // ::| WARNING: because of this '::1' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '::1' from the ACL named 'localhost' // ::| Processing: acl to_localhost dst 127.0.0.0/ 0.0.0.0/ :: // ::| WARNING: (B) '127.0.0.0/8' is a subnetwork of (A) '127.0.0.0/8' // ::| WARNING: because of this '127.0.0.0/8' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '127.0.0.0/8' from the ACL named 'to_localhost' // ::| WARNING: (B) '0.0.0.0' is a subnetwork of (A) '0.0.0.0' // ::| WARNING: because of this '0.0.0.0' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '0.0.0.0' from the ACL named 'to_localhost' // ::| WARNING: (B) '0.0.0.0' is a subnetwork of (A) '0.0.0.0' // ::| WARNING: because of this '0.0.0.0' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '0.0.0.0' from the ACL named 'to_localhost' // ::| WARNING: (B) '::1' is a subnetwork of (A) '::1' // ::| WARNING: because of this '::1' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '::1' from the ACL named 'to_localhost' // ::| WARNING: (B) '::1' is a subnetwork of (A) '::1' // ::| WARNING: because of this '::1' is ignored to keep splay tree searching predictable // ::| WARNING: You should probably remove '::1' from the ACL named 'to_localhost'
启动
/application/squid/sbin/squid -z /application/squid/sbin/squid -k parse 测试配置文件 /application/squid/sbin/squid -k reconfigure 重新配置文件 /application/squid/sbin/squid -k shutdown 关闭squid /application/squid/sbin/squid -s 开启squid 后台 /application/squid/sbin/squid -N -d1 前台开启squid /application/squid/sbin/squid -k interrupt 关闭squid(更高crr优先级,直接关闭squid) /application/squid/sbin/squid -k kill 关闭squid(最高优先级,直接杀死squid进程) netstat -ntpl 检测squid端口是否已经启动:
[root@uu ~]# netstat -tunpl | grep : 不重起,只装入新的配置文件:
[root@rh73 ~]# /etc/rc.d/init.d/squid reload
问题处理
安装好了以后,系统中新建了一个用户squid
cat /etc/passwd|grep squid
cat /etc/group|grep 65534
如果没有的话,手动添加
添加用户
[root@uu
application]# useradd squid -s /sbin/nologin -M
问题处理
、root@uu etc]# /application/squid/sbin/squid -k parse 报错的话: WARNING: Cannot write log file: /application/squid/var/logs/cache.log /application/squid/var/logs/cache.log: Permission denied messages will be sent to 'stderr' 、[root@uu etc]# /application/squid/sbin/squid -z 初始化配置 // :: kid1| Current Directory is /application/squid/etc // :: kid1| Creating missing swap directories FATAL: Failed to make swap directory /var/spool/squid: () Permission denied 解决: chown -R nobody /application/squid/var/cache/
chown -R nobody /application/squid/var/logs/ 一般出现的问题是squid对安装缓存的目录权限不够则开启适当的权限即可, 然后查看是否可以启动,最后停留在一行不动 则表示启动成功用Ctrl+c终止 如果显示正常启动的正确信息 则现在可以启动Squid了 ###下面这条是目录搞错了,配置文件参数应当是:coredump_dir /application/squid/var/cache/squid // :: kid1| cannot change current directory to /var/spool/squid: () No such file or directory
优化-----标记符
[root@uu etc]# pwd /application/squid/etc 加入开机启动 [root@uu etc]# echo "/application/squid/sbin/squid start " >>/etc/rc.local
定期清理swap.state内无效数据
squid -k rotate -f /path/to/squid/conf_file vi /etc/crontab * * * root squid -k rotate -f /application/squid/etc/squid.conf 当squid应用运行了一段时间之后,cache_dir对应的swap.state文件就会变得越来越大,里面的无效接口数据越来越多,这可能影响squid的响应时间,因此需要使用squid清理swap.state里面的无效数据,减少swap.state的大小。
环境变量
添加PATH环境变量(临时),可用:
[root@uu]#
export PATH="/application/squid/sbin:$PATH"
export PATH="/application/squid/bin:$PATH"
永久添加环境变量(影响所有用户)
在文档最后,添加(两种方法)
、# vim /etc/profile export PATH="/application/squid/sbin:$PATH" 保存,退出, 、echo export PATH="/application/squid/sbin:$PATH" >> /etc/profile echo export PATH="/application/squid/bin:$PATH" >> /etc/profile 然后运行: #source /etc/profile 不报错则成功。 [root@uu etc]# source /etc/profile [root@uu etc]# echo $PATH /application/squid/sbin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
试试吧
killall squid
squid -k parse
squid -z
squid start
netstat -tunpl | grep :3128
配置认证
默认时,Squid本身不带任何认证程序,但是可以通过外部认证程序来实现用户认证。一般有以下的认证程序:LDAP认证、SMB认证、基于mysql的认证、基于sock5的密码认证和基于Radius的认证。下面介绍常用的ncsa实现的认证,ncsa是Squid源代码包自带的认证程序,但是需要使用到apache的htpasswd来生成密码文件。或者使用 apt-get/yum install http-tools的方式安装此工具
NCSA方式。
加入认证配置
auth_param basic program /application/squid/helpers/basic_auth/NCSA/basic_ncsa_auth /opt/squid/etc/passwd auth_param basic realm hello auth_param basic credentialsttl hours auth_param basic casesensitive on auth_param basic children acl alloweduser proxy_auth REQUIRE http_access allow alloweduser #一定要放在所有http_access前面,否则不生效
完整版配置(注意顺序)
[root@uu etc]# cat squid.conf http_port cache_mem MB maximum_object_size MB minimum_object_size KB maximum_object_size_in_memory KB cache_dir aufs /application/squid/var/cache/squid cache_mem MB cache_log /application/squid/var/logs/cache.log #logfile_rotate #cache_swap_high #cache_swap_low vary_ignore_expire on collapsed_forwarding on request_entities off ident_timeout seconds #设置squid等待用户认证请求的时间。缺省值为10秒。[–enable-ident-lookups] cache_effective_user nobody cache_effective_group nobody httpd_suppress_version_string on #acl manager proto cache_object #acl localhost src 127.0.0.1/ :: #acl to_localhost dst 127.0.0.0/ 0.0.0.0/ :: #acl localnet src 10.0.0.0/ acl SSL_ports port acl Safe_ports port acl Safe_ports port acl CONNECT method CONNECT acl http proto HTTP acl good_domain dstdomain yyt.etcsd.com auth_param basic program /application/squid/helpers/basic_auth/NCSA/basic_ncsa_auth /opt/squid/etc/passwd auth_param basic realm hello auth_param basic credentialsttl hours auth_param basic casesensitive on auth_param basic children acl alloweduser proxy_auth REQUIRE acl authorizedip src "/application/squid/authorizedip.txt" #http_access allow manager localhost http_access allow http good_domain http_access deny http !good_domain http_access allow alloweduser http_access allow authorizedip http_access deny !Safe_ports http_access deny CONNECT !SSL_ports #http_access allow all http_access deny all coredump_dir /application/squid/var/cache/squid refresh_pattern ^ftp: % refresh_pattern ^gopher: % refresh_pattern -i (/cgi-bin/|\?) % refresh_pattern . % visible_hostname pstation cache_mgr @.com ########################################################
注释
auth_param basic program /usr/lib/squid/ncsa_auth /opt/squid/etc/passwd #定义了认证方式为basic,认证程序的路径和认证程度需要读取的帐户文件 auth_param basic children #此选项定义了认证程序的进程为5个 auth_param basic credentialsttl hours #定义了认证程序的时间为2小时,如果2小时过后用户还需要使用squid,则必须重新输入帐户和密码 auth_param basic realm Please input account #定义了用户的登录时显示的领域内容,类似于Apache的用户认证 auth_param basic casesensitive off #指定是否区分用户名大小写,on为区分,off为不区分。 acl auth_user proxy_auth REQUIRED # 强制要求用户验证 http_access allow auth_user #普通用户需要认证才能访问internet,允许经过认证的用户访问。 #名称和相对位置不对会报错 #// ::| /application/squid/etc/squid.conf: unrecognized: 'authenticate_program' #// ::| Processing: authenticate_program realm hello #// ::| /application/squid/etc/squid.conf: unrecognized: 'authenticate_program' #// ::| Processing: acl alloweduser proxy_auth REQUIRED #// ::| Can't use proxy auth because no authentication schemes are fully configured. #FATAL: ERROR: Invalid ACL: acl alloweduser proxy_auth REQUIRED
创建密码文件
htpasswd是Apache的密码生成器,没有 Apache的话需要先安装,yum install httpd -y即可。 [root@uu opt]# mkdir /opt/squid/etc -p [root@uu opt]# cd /opt/squid/etc [root@uu etc]# touch passwd [root@uu etc]# htpasswd -bc /opt/squid/etc/passwd test test Adding password for user test
Squid正向代理(编译安装)的更多相关文章
- Linux 笔记 - 第十九章 配置 Squid 正向代理和反向代理服务
一.简介 Squid 是一个高性能的代理缓存服务器,对应中文的乌贼,鱿鱼的意思.Squid 支持 FTP,gopher 和 HTTP 协议.和一般的代理缓存软件不同,Squid 用一个单独的,非模块化 ...
- Squid 正向代理
实现通过特定设备对特定的网址访问加速 使用squid 正向代理 实现,区别于反向代理,两者区别的根本在于作为中转的服务器在一个完整的请求中是代表客户端还是代表服务器. 服务端设置 1.安装程序包(推荐 ...
- Squid 正向代理配置
Squid 正向代理配置 1.删除主配置文件重写写入配置 rm -f /etc/squid/squid.conf 2.重新写入配置正向代理 vim /etc/squid/squid.conf # 监听 ...
- squid正向代理访问外网
目录 一.前言 二.Squid安装 三.客户端设置 四.验证 五.Python请求 六.写在最后 一.前言 1)我们可能会碰到这样的需求,客户端Client-1需要访问Server-1,但由于各种各样 ...
- Linux代理服务器—squid正向代理实验
1.代理服务器squid简介 Squid cache(简称为Squid)是一个流行的自由软件(GNU通用公共许可证)的代理服务器和Web缓存服务器.Squid有广泛的用途,从作为网页服务器的前置cac ...
- squid 正向代理 简单配置
linux 正向同步 项目上web服务器不给访问外网,迁移服务器环境又太麻烦,决定给web服务器做正向代理,刚开始使用nginx,但是https代理一直不成功,后面大佬建议使用squid来达到相同目的 ...
- nginx或者squid正向代理实现受限网站的访问
项目背景:公司商务同事需要操作合作方的后台,但是这个后台做了限制(安全考虑只对指定IP放行),刚好公司是adsl拨号,经常更换IP 需求:让商务同事不要经常给IP到合作方去添加白名单 于是想到了做正向 ...
- 教你如何在5分钟轻松部署squid正向代理
正向代理是一个位于客户端和原始服务器(origin server)之间的服务器,为了从原始服务器取得内容,客户端向代理发送一个请求并指定目标(原始服务器),然后代理向原始服务器转交请求并将获得的内容返 ...
- squid正向代理使用
环境: Squid Cache: Version 3.5.20 操作系统: centos7.6 squid安装配置 yum install -y squid systemctl start sq ...
随机推荐
- WEB漏洞 XSS(一)
1.xss的形成原理 xss 中文名是“跨站脚本攻击”,英文名“Cross Site Scripting”.xss也是一种注入攻击,当web应用对用户输入过滤不严格,攻击者写入恶意的脚本代码(HTML ...
- django----Form提交按钮
form表单中要用submit,如果用button切记要加上type,不然button默认的type是submit,会有影响 <button class="login" ty ...
- 备份还原数据数据库(固定IP版)
1.新建data文件夹,用于存放备份数据 2.新建db文件夹,用于存放初建数据库为脚本 3.首次使用双击export.bat进行备份数据库: 4.以后每次使用双击setup.bat进行还原数据库: 备 ...
- 20165323 实验一 Java开发环境的熟悉
一.实验报告封面 课程:Java程序设计 班级:1653班 姓名:杨金川 学号:20165323 指导教师:娄嘉鹏 实验日期:2018年4月2日 实验时间:13:45 - 15:25 实验序号:一 实 ...
- VS2017+mysql5.7 连接数据库生成实体
参考:https://www.cnblogs.com/RushPasser/p/5438334.html 下载:https://share.weiyun.com/5rM4FrG mysql-for-v ...
- kafka.common.KafkaException: Failed to acquire lock on file .lock in /tmp/kafka-logs. A Kafka instance in another process or thread is using this directory.
1.刚才未启动zookeeper集群的时候,直接启动kafka脚本程序,kafka报错了,但是进程号启动起来来,再次启动出现如下所示的问题,这里先将进程号杀死,再启动脚本程序. [hadoop@sla ...
- [转] Nodejs 进阶:Express 常用中间件 body-parser 实现解析
写在前面 body-parser是非常常用的一个express中间件,作用是对post请求的请求体进行解析.使用非常简单,以下两行代码已经覆盖了大部分的使用场景. app.use(bodyParser ...
- javascript获取时间戳
时间戳: 时间戳是自 1970 年 1 月 1 日(00:00:00 GMT)以来的秒数.它也被称为 Unix 时间戳(Unix Timestamp). JavaScript 获取当前时间戳: < ...
- python全栈开发day74-普通验证码和滑块验证码
一.昨日内容回顾 django认证系统 1. 默认auth_user ``` # 创建用户 from django.contrib.auth.models import User User.objec ...
- 使用element-ui的常见问题
给组件绑定的事件为什么无法触发? 在 Vue 2.0 中,为自定义组件绑定原生事件必须使用 .native 修饰符: <my-component @click.native="han ...