
时间:2015-06-28 00:00 来源:IT猫扑网|http://www.itmop.com/ 作者:网管联盟 我要评论(0)
一.下载squid for windows
下载地址:http://www.acmeconsulting.it/SquidNT.html
二.安装与配置
1.解压squid-2.6.STABLE6-NT-bin.zip到C:squid
2.单击[开始],选择&运行&,输入 cmd ,在命令提示符窗口内输入以下命令:
C:>cd c:squidetc
C:squidetc>copy squid.conf.default squid.conf
**将Squid的默认配置文件复制一份并起名为squid.conf
C:squidetc>copy mime.conf.default mime.conf
**将mime.conf.default复制一份并起名为mime.conf
3.编辑squid.conf,根据需要添加和修改以下内容
http_port 3128 ;定义squid监听端口
visible_hostname tianwei-itrus :定义机器名
cache_mem 64 MB ;定义代理服务器缓存
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 :定义本地网络为localhost
acl outnetwork 192.168.10.0/255.255.255.0
acl SSL_ports port 443
acl Safe_ports port 80 # 定义http端口
acl Safe_ports port 21 # 定义ftp端口
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 1863 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access allow outnetwork
icp_access allow all
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_reply_access allow all
icp_access allow all
http_access deny all
三.启动
c:>cd c:squidsbin
C:squidsbin>squid -i (注册Squid为Windows的服务)
C:squidsbin>squid -z (生成高速缓存的目录)
C:squidsbin>squid
关键词标签:Windows,squid
相关阅读 使用Python配平化学方程式的方法 CentOS NTP服务器安装与配置 Windows Server服务器日常管理技巧 RedHat Linux DHCP服务器中继 明明白白你的Linux服务器——安全篇 linux服务器基本安全配置手册
热门文章
CentOS NTP服务器安装与配置
nginx搭建flv流媒体服务器
CentOS 5.4+OpenVZ+Vtonf自建VPS服务器
DHCP服务器数据库移植的三个步骤
备份还原DHCP服务器配置的具体操作
Windows 2003下配置架设NTP时间服务器
人气排行 VMware中Shared Folders(共享文件夹)的配置 CentOS NTP服务器安装与配置 nginx搭建flv流媒体服务器 Windows 2003下配置架设NTP时间服务器 详细!解决WSUS服务器更新问题(附官方链接) heartbeat+LVS-ipvsadm+ldirectord搭建lvs DR集群 nginx的自动启动脚本 使用Python配平化学方程式的方法 linux服务器基本安全配置手册 DHCP服务器的授权问题 Ubuntu/Debian下简易Nginx+FastCGI+PHP配置 在Debian Linux系统下搭建DHCP服务器
查看所有0条评论>>