svn commit: r218543 - stable/7/etc/namedb
Doug Barton
dougb at FreeBSD.org
Fri Feb 11 05:57:34 UTC 2011
Author: dougb
Date: Fri Feb 11 05:57:33 2011
New Revision: 218543
URL: http://svn.freebsd.org/changeset/base/218543
Log:
MFC 218350:
Catch up with reality and references from the latest RFCs
(especially 5735) for our default empty zones.
Modified:
stable/7/etc/namedb/named.conf
Directory Properties:
stable/7/etc/ (props changed)
Modified: stable/7/etc/namedb/named.conf
==============================================================================
--- stable/7/etc/namedb/named.conf Fri Feb 11 05:56:48 2011 (r218542)
+++ stable/7/etc/namedb/named.conf Fri Feb 11 05:57:33 2011 (r218543)
@@ -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 (and BCP 32 for localhost)
+// RFCs 1912 and 5735 (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"; };
@@ -133,10 +133,10 @@ zone "255.in-addr.arpa" { type master; f
// RFC 1912-style zone for IPv6 localhost address
zone "0.ip6.arpa" { type master; file "/etc/namedb/master/localhost-reverse.db"; };
-// "This" Network (RFCs 1912 and 3330)
+// "This" Network (RFCs 1912 and 5735)
zone "0.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
-// Private Use Networks (RFC 1918)
+// Private Use Networks (RFCs 1918 and 5735)
zone "10.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
zone "16.172.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
zone "17.172.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
@@ -156,16 +156,19 @@ zone "30.172.in-addr.arpa" { type master
zone "31.172.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
zone "168.192.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
-// Link-local/APIPA (RFCs 3330 and 3927)
+// Link-local/APIPA (RFCs 3927 and 5735)
zone "254.169.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
-// TEST-NET-[1-3] for Documentation (RFC 5737)
+// IETF protocol assignments (RFCs 5735 and 5736)
+zone "0.0.192.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
+
+// TEST-NET-[1-3] for Documentation (RFCs 5735 and 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"; };
+zone "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"; };
@@ -175,11 +178,11 @@ zone "example.com" { type master; file "
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)
+// Router Benchmark Testing (RFCs 2544 and 5735)
zone "18.198.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
zone "19.198.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
-// IANA Reserved - Old Class E Space
+// IANA Reserved - Old Class E Space (RFC 5735)
zone "240.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
zone "241.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
zone "242.in-addr.arpa" { type master; file "/etc/namedb/master/empty.db"; };
More information about the svn-src-all
mailing list