[squid-users] delay pool not workin

Amos Jeffries squid3 at treenet.co.nz
Fri Sep 22 01:03:49 UTC 2017


On 22/09/17 09:07, Alex Gutiérrez Martínez wrote:
> Could someone be so kind  to explain to me why my rules do not work on 
> my delays pools?
> 
> 
> i got this acl "lento", in spanish means slow
> 
> acl lento url_regex -i "/etc/squid3/bloqueo/lento"
> 
> his format is the next:
> 
> 
> .youtube.com
> 
> .facebook.com
> 

First problem: you are putting domains in dstdomain format into a 
full-URL regex ACL.

Use dstdomain ACL type for these. Much faster.


> 
> My delay config is the next:
> 
> 
> ###############################################################################
> #Delay#
> ###############################################################################
> delay_pools 3
> 
> #Canal 1 extensiones.
> delay_class 1 2
> delay_parameters 1 32768/32768 32768/32768
> delay_access 1 deny !sociales lento navegacion !extensiones
> #delay_access 1 deny all
> 
> #Canal 2 para usuarios.
> delay_class 2 2
> delay_parameters 2 65536/65536 32768/32768
> delay_access 2 deny !navegacion extensiones lento sociales
> #delay_access 2 deny all
> 
> #Canal 2 para usuarios.
> delay_class 3 1
> delay_parameters 3 16384/16384
> delay_access 3 deny extensiones navegacion sociales !lento
> #delay_access 2 deny all
> 
> 

Second problem: deny, deny all. Nothing allowed to use these pools.


Amos


More information about the squid-users mailing list