]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Correct example IPs in tcp_outgoing_address config
authoramosjeffries <>
Sun, 20 Jan 2008 18:01:11 +0000 (18:01 +0000)
committeramosjeffries <>
Sun, 20 Jan 2008 18:01:11 +0000 (18:01 +0000)
Deja Vu. I'm sure I fixed this weeks ago.

src/cf.data.pre

index 01070d1702231cd5aab8bd4d28ce56a8f1760150..57321ca2528471034d8ca2290cb16150b33156bc 100644 (file)
@@ -1,6 +1,6 @@
 
 #
-# $Id: cf.data.pre,v 1.488 2007/11/15 23:33:05 wessels Exp $
+# $Id: cf.data.pre,v 1.488.2.1 2008/01/20 11:01:11 amosjeffries Exp $
 #
 # SQUID Web Proxy Cache                http://www.squid-cache.org/
 # ----------------------------------------------------------
@@ -1097,11 +1097,11 @@ DOC_START
        source address 10.1.0.2 and the rest will be forwarded with
        source address 10.1.0.3.
 
-       acl normal_service_net src 10.0.0.0/255.255.255.0
-       acl good_service_net src 10.0.1.0/255.255.255.0
-       tcp_outgoing_address 10.0.0.1 normal_service_net
-       tcp_outgoing_address 10.0.0.2 good_service_net
-       tcp_outgoing_address 10.0.0.3
+       acl normal_service_net src 10.0.0.0/24
+       acl good_service_net src 10.0.2.0/24
+       tcp_outgoing_address 10.1.0.1 normal_service_net
+       tcp_outgoing_address 10.1.0.2 good_service_net
+       tcp_outgoing_address 10.1.0.3
 
        Processing proceeds in the order specified, and stops at first fully
        matching line.