]> err.no Git - varnish/commitdiff
Use 192.0.2.0/24 in our examples, this net is reserved for documentation in RFC3330
authorssm <ssm@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 18 Jan 2008 07:35:17 +0000 (07:35 +0000)
committerssm <ssm@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 18 Jan 2008 07:35:17 +0000 (07:35 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2354 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/man/vcl.7

index 17467d66e1372a90f80a9f40234e67db945ed5d5..624917aedffa5466dba1dd42f6e48d11ebc1a53f 100644 (file)
@@ -98,8 +98,8 @@ which can later be used to match client addresses:
 .Bd -literal -offset 4n
 acl local {
     "localhost";         /* myself */
-    "10.0.0.1"/8;       /* and everyone on the local network */
-    ! "10.0.0.23";      /* except for the dialin router */
+    "192.0.2.0"/24;      /* and everyone on the local network */
+    ! "192.0.2.23";      /* except for the dialin router */
 }
 .Ed
 .Pp
@@ -616,7 +616,7 @@ for object invalidation:
 .Bd -literal -offset 4n
 acl purge {
         "localhost";
-        "10.0.0.1"/8;
+        "192.0.2.1"/24;
 }
 
 sub vcl_recv {