From 7c3924248e1291c553e100dcbb37bd444fe958d0 Mon Sep 17 00:00:00 2001 From: Ivan Larionov Date: Fri, 9 Feb 2018 10:10:54 -0800 Subject: [PATCH] Fixed localnet ACL definition in recommended/default squid.conf (#146) ... it was lacking 169.254.0.0/16 subnet due to a typo in fe204e1. --- src/cf.data.pre | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cf.data.pre b/src/cf.data.pre index 4f8a218377..784231439b 100644 --- a/src/cf.data.pre +++ b/src/cf.data.pre @@ -1538,7 +1538,7 @@ NOCOMMENT_START acl localnet src 0.0.0.1-0.255.255.255 # RFC 1122 "this" network (LAN) acl localnet src 10.0.0.0/8 # RFC 1918 local private network (LAN) acl localnet src 100.64.0.0/10 # RFC 6598 shared address space (CGN) -acl localhet src 169.254.0.0/16 # RFC 3927 link-local (directly plugged) machines +acl localnet src 169.254.0.0/16 # RFC 3927 link-local (directly plugged) machines acl localnet src 172.16.0.0/12 # RFC 1918 local private network (LAN) acl localnet src 192.168.0.0/16 # RFC 1918 local private network (LAN) acl localnet src fc00::/7 # RFC 4193 local private network range -- 2.47.2