squid delay_pools 限制带宽.doc_第1页
squid delay_pools 限制带宽.doc_第2页
squid delay_pools 限制带宽.doc_第3页
squid delay_pools 限制带宽.doc_第4页
squid delay_pools 限制带宽.doc_第5页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

squid限制带宽squid限制带宽关于设定SQUID带宽限制和流量整形,刻利用squid.conf种的delay_pools字段来完成.delay pools里的bucket就像是一个容器,而这个容器就是squid要控制带宽用的,当容器到达所设定的容量时,这个容器的所有者就无法超过我们所设定的带宽限制,所有的bucket则称之为unified bucket.Class分为三种:(1)Class 1:包含一个unified bucket,而这个bucket是给这个class里所定义的host使用.(2)Class 2:包含一个unified bucket和255个buckets,每一个bucket分配给8bit网络的使用者(255 hosts)使用IPv4 class C).(3)Class 3:包含255个buckets,每一个bucket分配给16bit网络的使用者(65535 hosts)使用(IPv4 class B).(1)Class 1:contains a single unified bucket which is used for all requests from hosts subject to the pool(2)Class 2:contains one unified bucket and 255 buckets, one for each host on an 8-bit network (IPv4 class C)(3)Class 3:contains 255 buckets for the subnets in a 16-bit network, and individual buckets for every host on these networks (IPv4 class B)推测:如果ACL只定义一个class C字段,要限制每个host的单一带宽,可以使用Class 2来做;但如果ACL有定义好几个class C字段,使用Class 3可再对各个class C字段做个别的总带宽限制delay_parameters语法:class 1 delay pool;delay_parameters pool totalclass 2 delay pool;delay_parameters pool tatal per-hostclass 3 delay pool;delay_parameters pool total network per-host每个delay_parameters的数值是由restore(byte/sec)/max(bytes)组成,restore是表示以bytes/sec的速度下载object到bucket里,而max则表示bucket的bytes值.备注1:如果要设定为unilit speed的话,将数值设定为-1即可备注2:SQUID FAQ中有提到,建议max至少要设为restore的两倍(It is recommended that the maximum is at least twice the restore value)设定文档格式说明acl all src /acl lan src / # 定义 ACLdelay_pools n # 总共有几个 delay_poolsdelay_class n1 1 # 第 n1 个 delay_pool 的种类是 Class 1delay_class n2 3 # 第 n2 个 delay_pool 的种类是 Class 3delay_class n3 2 # 第 n3 个 delay_pool 的种类是 Class 2delay_access n1 allow landelay_access n1 deny all # 定义 delay_pool n1 的 access ruledelay_parameters n1 64000/64000 # 定义 delay_pool n1 的速度限制,依 class 的不同有不同的定义方式 (请参照上面的说明)范例说明1. 限制限制带宽为 512 Kbpsacl all src / # might already be defineddelay_pools 1delay_class 1 1delay_access 1 allow alldelay_parameters 1 64000/64000 # 512 kbits = 64 kbytes per second2. 限制限制单一的带宽为 128 Kbpsacl only128kusers src /acl all src /delay_pools 1delay_class 1 3delay_access 1 allow only128kusersdelay_access 1 deny alldelay_parameters 1 64000/64000 -1/-1 16000/640003. 对某些特定的网站设置不通的带宽限制 (自己尝试一下,如果有错误请自行修改)acl lan_use src / # 设置 LAN 使用者的 ACLacl kkbox dstdomain ..tw # 设置特定域名的 ACLdelay_pools 2 # 设置两个 delay_poolsdelay_class 1 1 # 第一个是 Class 1 的,用來限制总带宽delay_class 2 2 # 第二个是 Class 2 的,用来限制单一的带宽delay_access 1 allow kkboxdelay_access 1 deny alldelay_access 2 allow lan_usedelay_access 2 deny alldelay_parameters 1 64000/64000 # 不限制指定域名的单一带宽,但对总带宽速作限制delay_parameters 2 64000/64000 10000/50000 # 限制 LAN 的所有使用者单一带宽,并对总的带宽作以限制本文来自: E点废墟(www.xok.la) 详细出处参考:http:/xok.la/2008/03/squid_limlit_band.htmlclass类型1为单个IP地址流量class类型2为C类网段中的每个IP地址流量class类型3为B类网段中的每个C类网段中的每个IP地址流量所以类型1只有一个总带宽流量实际也就是这个IP地址的流量delay_parameters 1 64000/64000类型2有两个带宽流量参数,第一个为整个C类型网段流量,第二个为每个IP流量delay_parameters 1 -1/-1 64000/64000类型3有三个带宽流量参数,第一个为整个B类网总流量,第二个为每个B类网段中的C类网段总流量,第三个为了B类网段中每个C类网段中的每个IP流量delay_parameters 1 -1/-1 -1/-1 64000/64000注: -1/-1表示流量无限制。 斜杆前后两个参数为最小流量与最大流量.所以看你的情况需要,你只有一个IP地址就用类型1,有一个C类网段就用类型2,有一个B类网段就用类型3.似乎可以通过将IP地址分组对分别给予不等的带宽;原文如下:You can also use delay pools to provide different classes of service. For example, you might have important users and unimportant users. In this case, you could use two class 1 delay pools. Give the important users a higher bandwidth limit than everyone else:delay_pools 2delay_class 1 1delay_class 2 1delay_parameters 1 65536/1048576delay_parameters 2 10000/50000acl ImportantUsers src /22acl All src 0/0delay_access 1 allow ImportantUsersdelay_access 2 allow All-squid限制带宽关于设定SQUID带宽限制和流量整形,刻利用squid.conf种的delay_pools字段来完成.delay pools里的bucket就像是一个容器,而这个容器就是squid要控制带宽用的,当容器到达所设定的容量时,这个容器的所有者就无法超过我们所设定的带宽限制,所有的bucket则称之为unified bucket.Class分为三种:(1)Class 1:包含一个unified bucket,而这个bucket是给这个class里所定义的host使用.(2)Class 2:包含一个unified bucket和255个buckets,每一个bucket分配给8bit网络的使用者(255 hosts)使用IPv4 class C).(3)Class 3:包含255个buckets,每一个bucket分配给16bit网络的使用者(65535 hosts)使用(IPv4 class B).(1)Class 1:contains a single unified bucket which is used for all requests from hosts subject to the pool(2)Class 2:contains one unified bucket and 255 buckets, one for each host on an 8-bit network (IPv4 class C)(3)Class 3:contains 255 buckets for the subnets in a 16-bit network, and individual buckets for every host on these networks (IPv4 class B)推测:如果ACL只定义一个class C字段,要限制每个host的单一带宽,可以使用Class 2来做;但如果ACL有定义好几个class C字段,使用Class 3可再对各个class C字段做个别的总带宽限制delay_parameters语法:class 1 delay pool;delay_parameters pool totalclass 2 delay pool;delay_parameters pool tatal per-hostclass 3 delay pool;delay_parameters pool total network per-host每个delay_parameters的数值是由restore(byte/sec)/max(bytes)组成,restore是表示以bytes/sec的速度下载object到bucket里,而max则表示bucket的bytes值.备注1:如果要设定为unilit speed的话,将数值设定为-1即可备注2:SQUID FAQ中有提到,建议max至少要设为restore的两倍(It is recommended that the maximum is at least twice the restore value)设定文档格式说明acl all src /acl lan src / # 定义 ACLdelay_pools n # 总共有几个 delay_poolsdelay_class n1 1 # 第 n1 个 delay_pool 的种类是 Class 1delay_class n2 3 # 第 n2 个 delay_pool 的种类是 Class 3delay_class n3 2 # 第 n3 个 delay_pool 的种类是 Class 2delay_access n1 allow landelay_access n1 deny all # 定义 delay_pool n1 的 access ruledelay_parameters n1 64000/64000 # 定义 delay_pool n1 的速度限制,依 class 的不同有不同的定义方式 (请参照上面的说明)范例说明1. 限制限制带宽为 512 Kbpsacl all src / # might already be defineddelay_pools 1delay_class 1 1delay_access 1 allow alldelay_parameters 1 64000/64000 # 512 kbits = 64 kbytes per second2. 限制限制单一的带宽为 128 Kbpsacl only128kusers src /acl all src

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论