I've followed all the advice here and the server log file updates when I do an update on another computer on the network.
However, I never see any TCP_HITs. I even grepped for them. This is some of the tail -f output.
1427226546.326 18 192.168.1.200 TCP_MISS/200 3185 GET http://gb.archive.ubuntu.com/ubuntu/pool/main/l/linux-meta/linux-headers-generic_3.13.0.48.55_amd64.deb - HIER_DIRECT/91.189.92.200 application/x-debian-package
1427226546.510 183 192.168.1.200 TCP_MISS/200 777943 GET http://gb.archive.ubuntu.com/ubuntu/pool/main/l/linux/linux-libc-dev_3.13.0-48.80_amd64.deb - HIER_DIRECT/91.189.92.200 application/x-debian-package
1427226568.142 21631 192.168.1.200 TCP_MISS/200 98066145 GET http://gb.archive.ubuntu.com/ubuntu/pool/main/l/linux/linux-source-3.13.0_3.13.0-48.80_all.deb - HIER_DIRECT/91.189.92.200 application/x-debian-package
1427226568.406 18 192.168.1.200 TCP_MISS/200 3179 GET http://gb.archive.ubuntu.com/ubuntu/pool/main/l/linux-meta/linux-source_3.13.0.48.55_all.deb - HIER_DIRECT/91.189.92.200 application/x-debian-package
It may be worth mentioning that the server is running Lubuntu 14.04, while the clients are running Ubuntu 14.04. However, I made sure I added the missing repos ("updates", I think) to the server's sources.list
What am I missing?
EDIT: My allowed-networks-src.acl looks like this:
# allowed-networks-src.conf
#
# network sources that you want to allow access to the cache
# private networks
10.0.0.0/8
172.16.0.0/12
192.168.0.0/16
192.168.1.0/255.255.0.0
192.168.1.202
192.168.1.201
192.168.1.200
127.0.0.1
# IPv6 private addresses
fe80::/64
::1/128
# additional non-private networks can be added to the directory:
# /etc/squid-deb-proxy/allowed-networks-src.acl.d
I had the same problem for several days after a fresh install, using all the default settings except adding
dl.google.com
tomirror-dstdomain.acl
. I'd always get TCP_MISS.The solution (after many many tries) was to add the exact network to
allowed-networks-src.acl
(don't forget torestart squid3 && restart squid-deb-proxy
). Since then I see the beautifulTCP_MEM_HIT
on every package.(My network is 10.10.10.0/24, which is part of the 10.0.0.0/8 allowed in
allowed-networks-src.acl
. I do think this behaviour is not nice in a system calling itself zero config.)