WINDOWS2008下面安装SQUID 2.6

公司在美国的一个代理已不够了。

再加一个吧。一个对全公司同事,一个对重要职位的。吼吼。。。

参考贴:

http://zhidao.zgsj.com/article/13/201146160943.shtml

http://www.reaper-x.com/2011/10/17/how-to-install-squid-proxy-on-windows/

Restricting access to your Squid Proxy Server

To limit on who are allowed to connect to your Proxy Server, you should change / add the allowed IP Address that is allowed to connect to your squid proxy at below section

acl localnet src 10.0.0.0/8	# RFC1918 possible internal network
acl localnet src 172.16.0.0/12	# RFC1918 possible internal network
acl localnet src 192.168.0.0/16	# RFC1918 possible internal network

By using the same format as the above code for example, acl localnet src 123.456.789.0

And then right before http_access allow localnet, add http_access allow localhost so it looks like:

http_access allow localhost
http_access allow localnet

And finally if you don’t want Squid to bind to all adapters (which is the default) you might want to change Squid Listen Address and Port to your LAN IP Address or if you’re just going to use Squid for yourself only then you should use below

# Default http_port 3128
# Bind to localhost at port 3128 only
http_port 127.0.0.1:3128

Limiting access to specific ports only

If you need to limit on which ports your Squid proxy clients are allowed to connect to, then you need to adjust this

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 591		# filemaker
acl Safe_ports port 777		# multiling http

For example if you want to limit your clients to HTTP and HTTPS only, then you can remove / comment all the other lines beside 80 and 443

时间: 2025-01-26 17:01:44

WINDOWS2008下面安装SQUID 2.6的相关文章

linux下安装Squid代理的详细配置教程_服务器其它

1.如果系统中还没有装squid,按以下顺序输入命令后即可完成安装 # wget http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE18.tar.gz //下载Squid代理安装包 # tar -zxvf squid-3.0.STABLE18.tar.gz //解压Squid安装包 # cd squid-3.0.STABLE18 # ./configure --prefix=/usr/local/squid --sysconfd

用DNSPod和Squid打造自己的CDN (五) 安装Squid的前期准备_Linux

第 5 章 安装Squid的前期准备 从本章开始,大家将会学到如何在Linux下面安装.编译程序,还会学到程序编译的优化方法,最后会通过源代码编译的方式把Squid安装上. 1.Linux下面程序安装的基本知识 A.程序安装包的分类平时大家在Windows下面安装程序,一般都是直接运行安装程序,然后安装程序会把编译好的二进制文件拷贝到系统里面,最终完成安装过程.Linux下面,安装程序的自由度比Windows要大.因为Linux下面大部分东西都是开源的,所以程序的提供方式一般是二进制包或者源代码

windows上面安装squid加速代理网站配置方法_win服务器

windows 上面安装squid 加速代理网站 windows squid 下载 http://www.jb51.net/softs/43599.html 下载解压到 c:\squid c:\squid\etc\squid.conf 如下 复制代码 代码如下: #本地绑定的IP端口 http_port IP:80 vhost visible_hostname localhost cache_dir ufs c:/squid/cache 1024 16 256 cache_mem 100 MB

Windows下安装squid的步骤详解_服务器其它

一.下载squid for windows 下载地址:http://www.acmeconsulting.it/SquidNT.html http://www.jb51.net/softs/43599.html 二.Windows下安装squid与配置 1.解压squid-2.6.STABLE6-NT-bin.zip到C:\squid 2.单击[开始],选择"运行",输入 cmd ,在命令提示符窗口内输入以下命令: C:\>cd c:\squid\etc C:\squid\etc

如何在Windows2008下安装Live Messenger2009

Live Messenger 2009也就是MSN9.0虽然还在Beta中,但是官方已经提供了下载试用.关于下载,微软做的有点不厚道,官方提供了网络安装和硬盘安装两种方式,网络安装的话下载一个几百K的小文件,在安装的过程中才从网络上下载真正的安装文件,我网络不是很好,肯定不愿意网络安装.本地安装的话却要下载121M的大文件,这其中包括了Live的一套软件:Mail.Photo.Messenger.Writer等等,还有安装需要支持的.net framework之类的文件.我只想安装一个Messe

centos下简单配置安装Squid 3.0反向代理_Linux

安装篇: 本教程应用环境为干净centos 5.5 ,预先分好并加载/data分区,并且关闭selinux及iptables 首先修改文件描述符并设定临时端口范围,这些设置重启后生效 复制代码 代码如下: cat >> /etc/security/limits.conf <<DDD * soft nofile 8192 * hard nofile 20480 DDD cat >> /etc/sysctl.conf <<DDD #set temp port r

用DNSPod和Squid打造自己的CDN (六) 编译并安装Squid_Linux

第 6 章 编译并安装Squid首先使用tar把源代码压缩包解压 tar zxvf squid-2.6.STABLE13.tar.gz 解压后,我们得到一个名为 squid-2.6.STABLE13 的目录.进入目录 cd squid-2.6.STABLE13 在configure前,我们必须要先设置cflags,这里我们假设CPU是intel core duo的,cpu family 6,model 14.通过 http://gentoo-wiki.com/Safe_Cflags#Intel_

搭建Linux安全的Squid代理服务器

代理服务器的功能是代理网络用户取得网络信息,它 是网络信息的中转站.随着代理服务器的广泛使用,随之而来的是一系列的安全问题.由于没有对代理服务器的访问控制策略作全面细致的配置,导致用户可以随意地通过代理服务器访问许多色情.反动的非法站点,而这些行为往往又很难追踪,给管理工作带来极大的不便. Squid是Linux下一个缓存Internet数据的代理服务器软件,其接收用户的下载申请,并自动处理所下载的数据.也就是说,当一个用户想要下载一个主页时,可以向Squid发出一个申请,要Squid代替其进行

Linux Squid代理的普通代理

一.安装Squid和配置 1.安装Squid yum-yinstallsquid* 2.squid配置文件 /etc/squid/squid.conf 3.squid操作 servicesquidstart/stop/restart 4.重新加载配置文件 squid-kreconfig 二.Squid常用配置项 #开启 http_port 192.168.10.1:3128 #设置使用内存大小 cache_mem 64 MB #缓存对象大小 maximum_object_size 4096 KB