svn commit: r202582 - head/etc/namedb

Doug Barton dougb at FreeBSD.org
Mon Jan 18 18:37:47 UTC 2010


Author: dougb
Date: Mon Jan 18 18:37:47 2010
New Revision: 202582
URL: http://svn.freebsd.org/changeset/base/202582

Log:
  Update the example named.conf file to answer locally for the newly
  released IPv4 documentation ranges (http://tools.ietf.org/html/rfc5737)
  and catch up to the IPv6 documentation range and domain names that 5737
  also references.

Modified:
  head/etc/namedb/named.conf

Modified: head/etc/namedb/named.conf
==============================================================================
--- head/etc/namedb/named.conf	Mon Jan 18 17:53:44 2010	(r202581)
+++ head/etc/namedb/named.conf	Mon Jan 18 18:37:47 2010	(r202582)
@@ -125,7 +125,7 @@ zone "in-addr.arpa" {
 	1. Faster local resolution for your users
 	2. No spurious traffic will be sent from your network to the roots
 */
-// RFC 1912
+// RFC 1912 (and BCP 32 for localhost)
 zone "localhost"	{ type master; file "/etc/namedb/master/localhost-forward.db"; };
 zone "127.in-addr.arpa"	{ type master; file "/etc/namedb/master/localhost-reverse.db"; };
 zone "255.in-addr.arpa"	{ type master; file "/etc/namedb/master/empty.db"; };
@@ -159,8 +159,21 @@ zone "168.192.in-addr.arpa" { type maste
 // Link-local/APIPA (RFCs 3330 and 3927)
 zone "254.169.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
 
-// TEST-NET for Documentation (RFC 3330)
+// TEST-NET-[1-3] for Documentation (RFC 5737)
 zone "2.0.192.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
+zone "100.51.198.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
+zone "113.0.203.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
+
+// IPv6 Range for Documentation (RFC 3849)
+zone "0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa" { type master; file "/etc/namedb/master/empty.db"; };
+
+// Domain Names for Documentation and Testing (BCP 32)
+zone "test" { type master; file "/etc/namedb/master/empty.db"; };
+zone "example" { type master; file "/etc/namedb/master/empty.db"; };
+zone "invalid" { type master; file "/etc/namedb/master/empty.db"; };
+zone "example.com" { type master; file "/etc/namedb/master/empty.db"; };
+zone "example.net" { type master; file "/etc/namedb/master/empty.db"; };
+zone "example.org" { type master; file "/etc/namedb/master/empty.db"; };
 
 // Router Benchmark Testing (RFC 3330)
 zone "18.198.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };


More information about the svn-src-all mailing list