[squid-users] Delay_pools problem in Squid 3.5.20

Alex Tang bear410hk at gmail.com
Wed Jul 26 01:49:44 UTC 2017


Dear All,

I had installed a squid 3.5.20 on Centos7. I'm also setting up a
delay_pools and cache_peer function on this squid server .

but I don't know why delay_pools function not working now. before I tested
is OK and I can limit user download less then 512 kb. but now, all user
download is over 512kb and can't control. I tried reboot the squid or use
the other delay_pools command to try to test which part has problem to
cause the delay_pools problem. I've checked my config file seem OK (this is
my first time to install and use squid proxy server) , would you mind tell
me is it my config problem or squid bug (maybe)

here is my full config file.

====================================================
#
# Recommended minimum configuration:
#

# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 111.11.0.0/12 # RFC1918 possible internal network
acl localnet src 11.123.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7       # RFC 4193 local private network range
acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged)
machines

acl SSL_ports port 443 563
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
#acl CONNECT method CONNECT



#
# Recommended minimum Access Permission configuration:
#
# Deny requests to certain unsafe ports
#http_access allow !Safe_ports

# Deny CONNECT to other than secure SSL ports
#http_access allow CONNECT !SSL_ports

# Only allow cachemgr access from localhost
http_access allow localhost manager
http_access deny manager

# We strongly recommend the following be uncommented to protect innocent
# web applications running on the proxy server who think the only
# one who can access services on "localhost" is a local user
#http_access deny to_localhost

#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#

# Example rule allowing access from your local networks.
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
http_access allow localnet
http_access allow localhost
#log_fqdn on

# And finally deny all other access to this proxy
http_access deny all

# Squid normally listens to port 3128
#http_port 8000
#http_port 8001
icp_port 3130

# Uncomment and adjust the following to add a disk cache directory.
#cache_dir ufs /var/spool/squid 1500 16 256

# Leave coredumps in the first cache dir
coredump_dir /var/spool/squid

#
# Add any of your own refresh_pattern entries above these.
#
#refresh_pattern ^ftp: 1440 20% 10080
#refresh_pattern ^gopher: 1440 0% 1440
#refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
#refresh_pattern . 0 20% 4320

http_port 8000 name=port_8000
http_port 8001 name=port_8001

nonhierarchical_direct off

acl port_8000_acl myportname port_8000
acl port_8001_acl myportname port_8001

always_direct deny port_8000_acl
always_direct deny port_8001_acl

never_direct allow port_8000_acl
never_direct allow port_8001_acl

# 8000
cache_peer xxx.xxxx.com parent 8000 3130 weight=20 no-digest no-query
name=proxy8000
cache_peer_access proxy8000 allow port_8000_acl
cache_peer_access proxy8000 deny all

# 8001
cache_peer xxx.xxxx.com parent 8001 3130 weight=20 no-digest no-query
name=proxy8001
cache_peer_access proxy8001 allow port_8001_acl
cache_peer_access proxy8001 deny all

cache_mem 100 MB
cache_swap_low 90
cache_swap_high 95


acl work_day time MTWHFAS 09:00-18:30
acl BBHK src 11.123.0.0/16
delay_pools 1
delay_class 1 2
delay_parameters 1 -1/-1 512000/512000
delay_access 1 allow work_day
delay_access 1 allow BBHK


acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
maximum_object_size 2048 KB
ipcache_size 1024
ipcache_low 90
ipcache_high 95
fqdncache_size 1024
logformat squid      %ts.%03tu %6tr %>A %Ss/%03>Hs %<st %rm %ru %[un
%Sh/%<a %mt
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log none
pid_filename /var/run/squid.pid
auth_param ntlm program /usr/bin/ntlm_auth
--helper-protocol=squid-2.5-ntlmssp
auth_param ntlm children 30
auth_param basic program /usr/bin/ntlm_auth
--helper-protocol=squid-2.5-basic
auth_param basic children 30
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
request_body_max_size 15 MB



acl AuthorizedUsers proxy_auth REQUIRED
acl shockwaveplayer browser Shockwave
acl Java browser Java/1.4 Java/1.5 Java/1.6
acl BBhknet src "/etc/squid/ACL/allow_net"
acl allow_ip src "/etc/squid/ACL/allow_ip"
#acl deny_ip src "/etc/squid/ACL/deny_ip"
#acl DenyUsers proxy_auth "/etc/squid/ACL/deny_users"
acl allow_pattern dstdom_regex "/etc/squid/ACL/allow_domain"

acl allow_sites url_regex "/etc/squid/ACL/allow_url"
#http_access allow allow_sites

acl deny_site url_regex "/etc/squid/ACL/deny_url"
#http_access deny deny_site

acl deny_pattern dstdom_regex "/etc/squid/ACL/deny_domain"
#http_access deny deny_pattern

acl deny_domain dstdom_regex "/etc/squid/ACL/deny_domain"
acl deny_url url_regex "/etc/squid/ACL/deny_url"

acl fwdurl dstdomain .salesforce.com .force.com
never_direct allow fwdurl

acl fwdhkpurl dstdomain "/etc/squid/ACL/fwdhkpdomain"
never_direct allow fwdhkpurl


http_access allow fwdurl
http_access allow fwdhkpurl
http_access allow shockwaveplayer
http_access allow Java
http_access allow allow_ip
http_access allow allow_pattern
http_access allow allow_sites
http_access deny deny_domain
http_access allow BBhknet
http_access allow BBHK
http_access deny all


http_reply_access allow all
icp_access allow all
miss_access allow all
cache_mgr BBHK Network Admin Email
cache_effective_user squid
cache_effective_group squid
visible_hostname proxy6.hkg.xerox.com
max_filedesc 4096
never_direct allow all
error_directory /usr/share/squid/errors/English
coredump_dir /var/spool/squid

=======================================================

Thanks all

Alex
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squid-cache.org/pipermail/squid-users/attachments/20170726/636e48a4/attachment-0001.html>


More information about the squid-users mailing list