From: ssm Date: Fri, 18 Jan 2008 07:35:17 +0000 (+0000) Subject: Use 192.0.2.0/24 in our examples, this net is reserved for documentation in RFC3330 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e1a3ad1ddd4881651e87fa999c63aa008cf44c8;p=varnish Use 192.0.2.0/24 in our examples, this net is reserved for documentation in RFC3330 git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2354 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/man/vcl.7 b/varnish-cache/man/vcl.7 index 17467d66..624917ae 100644 --- a/varnish-cache/man/vcl.7 +++ b/varnish-cache/man/vcl.7 @@ -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 {