diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-04-03 07:54:26 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-04-03 07:54:26 +0000 |
commit | 2590d04ff2398cac80817f5f39ad4d1efe20ea67 (patch) | |
tree | 50404d377c2c8006df479812db10c142e83818dd /lib | |
parent | 0d1e3946657f56c13ba5fbccb0e9791b212615b7 (diff) | |
download | drakx-net-2590d04ff2398cac80817f5f39ad4d1efe20ea67.tar drakx-net-2590d04ff2398cac80817f5f39ad4d1efe20ea67.tar.gz drakx-net-2590d04ff2398cac80817f5f39ad4d1efe20ea67.tar.bz2 drakx-net-2590d04ff2398cac80817f5f39ad4d1efe20ea67.tar.xz drakx-net-2590d04ff2398cac80817f5f39ad4d1efe20ea67.zip |
allow more local networks in squid (from squid default conf)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/network/squid.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/network/squid.pm b/lib/network/squid.pm index f045b14..b92589f 100644 --- a/lib/network/squid.pm +++ b/lib/network/squid.pm @@ -35,6 +35,9 @@ acl all src 0.0.0.0/0.0.0.0 acl manager proto cache_object acl localhost src 127.0.0.1/255.255.255.255 acl to_localhost dst 127.0.0.0/8 +acl localnet src 10.0.0.0/8 # RFC1918 possible internal network +acl localnet src 172.16.0.0/12 # RFC1918 possible internal network +acl localnet src 192.168.0.0/16 # RFC1918 possible internal network acl SSL_ports port 443 563 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp @@ -54,6 +57,7 @@ http_access deny CONNECT !SSL_ports http_access deny to_localhost acl mynetwork src $intf->{NETWORK}/$intf->{NETMASK} http_access allow mynetwork +http_access allow localnet http_access allow localhost http_reply_access allow all icp_access allow all |