Linux全攻略--Squid服务器配置与管理
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-16
cache_peer_domain cache-host !domain # cache_peer_domain parent.foo.net .edu #cache_host_domain 202.198.32.3 !.tw !hinet.net//设置SQUID可以查询的PROXY SERVER所在的主机或域,如果是禁止查询,则在前面加上"!" #acl aclname acltype string/file # acl aclname time [day-abbrevs] [h1:m1-h2:m2] # day-abbrevs: # S - Sunday # M - Monday # T - Tuesday # W - Wednesday # H - Thursday # F - Friday # A - Saturday # h1:m1 must be less than h2:m2 这段语句指明要访问的时间,字母代表周日到周六 设置禁止访问某些站点. #acl all src 0.0.0.0/0.0.0.0 #acl manager proto cache_object #acl localhost src 127.0.0.1/255.255.255.255 #acl to_localhost dst 127.0.0.0/8 #acl SSL_ports port 443 563 #acl Safe_ports port 80 # http #acl Safe_ports port 21 # ftp #acl Safe_ports port 443 563 # https, snews #acl Safe_ports port 70 # gopher #acl Safe_ports port 210 # wa acl flag src 192.168.5.0 //加上这一行,定义所有来自192.168.5.*访问PROXY SERVER的连接称为FLAG 设置可以连接的端口 #http_access allow manager localhost #http_access deny manager #http_access deny !Saft_ports #http_access deny CONNECT !SSL_ports http_access allow flag http_access deny all //这一部分设置访问控制,也就是设置哪些情况下可以连接,哪些情况下不可以连接. 其它项目设置 icp_access allow* //允许CACHE_PEER使用ICP协议访问
当我们第一次使用squid服务器之前需要先使用squid -z
# ls /var/spool/squid # squid -z 注意:如果初始化成功的话,会显示:2008/06/20 15:07:51| Creating Swap Directories<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
CPU Usage: 0.064 seconds = 0.008 user 0.056 sys Maximum Resident Size: 0 KB Page faults with physical i/o: 0 Aborted 我们需要在主配置文件中添加一行: # vi /etc/squid/squid.conf visible_hostname squid //其中squid为你当前主机的名称
|
|||||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Ganglia的安装与配置下一篇: 定制Centos5.2
关于Linux全攻略--Squid服务器配置与管理的所有评论