diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-02-04 04:49:58 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-02-04 04:49:58 +0000 |
commit | 16e56ca73893c931f1ef104387248f238164a94c (patch) | |
tree | 7b00ddbe4d7e109a98897784e89df772fa806047 | |
parent | 5efea18c5a38d35d3cc0756e9988aa9b2c97ed0b (diff) | |
download | pfsense-packages-16e56ca73893c931f1ef104387248f238164a94c.tar.gz pfsense-packages-16e56ca73893c931f1ef104387248f238164a94c.tar.bz2 pfsense-packages-16e56ca73893c931f1ef104387248f238164a94c.zip |
Fix SQUID acls
Submitted-by: submicron
-rw-r--r-- | packages/squid_ng.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/squid_ng.inc b/packages/squid_ng.inc index e847d79e..adbcd7f1 100644 --- a/packages/squid_ng.inc +++ b/packages/squid_ng.inc @@ -956,7 +956,7 @@ function write_static_squid_config() { fwrite($fout, "acl within_timeframe time MTWHFAS 00:00-24:00\n"); fwrite($fout, "\n"); - fwrite($fout, "acl all src " . $lansa . "/" . $lansn . "\n"); + fwrite($fout, "acl all src 0.0.0.0/0.0.0.0\n"); fwrite($fout, "acl localnet src " . $lansa . "/" . $lansn . "\n"); fwrite($fout, "acl localhost src 127.0.0.1/255.255.255.255\n"); fwrite($fout, "acl SSL_ports port 443 563 873 # https, snews, rsync\n"); |