62 lines
2.9 KiB
Diff
62 lines
2.9 KiB
Diff
commit c2baa73db1a2a0b0c0c8bba3d203a28ca86c5f31
|
|
Author: wouter <wouter@be551aaa-1e26-0410-a405-d3ace91eadb9>
|
|
Date: Tue May 4 10:50:27 2010 +0000
|
|
|
|
- Conforms to draft-ietf-dnsop-default-local-zones-13. Added default
|
|
reverse lookup blocks for IPv4 test nets 100.51.198.in-addr.arpa,
|
|
113.0.203.in-addr.arpa and Orchid prefix 0.1.1.0.0.2.ip6.arpa.
|
|
|
|
diff --git a/doc/unbound.conf.5.in b/doc/unbound.conf.5.in
|
|
index 16a607c..40b4bad 100644
|
|
--- a/doc/unbound.conf.5.in
|
|
+++ b/doc/unbound.conf.5.in
|
|
@@ -778,7 +778,8 @@ records are provided.
|
|
.TP 10
|
|
\h'5'\fIreverse RFC3330 IP4 this, link\-local, testnet and broadcast\fR
|
|
Reverse data for zones 0.in\-addr.arpa, 254.169.in\-addr.arpa,
|
|
-2.0.192.in\-addr.arpa, 255.255.255.255.in\-addr.arpa.
|
|
+2.0.192.in\-addr.arpa (TEST NET 1), 100.51.198.in\-addr.arpa (TEST NET 2),
|
|
+113.0.203.in\-addr.arpa (TEST NET 3), 255.255.255.255.in\-addr.arpa.
|
|
.TP 10
|
|
\h'5'\fIreverse RFC4291 IP6 unspecified\fR
|
|
Reverse data for zone
|
|
@@ -793,12 +794,17 @@ Reverse data for zone D.F.ip6.arpa.
|
|
\h'5'\fIreverse RFC4291 IPv6 Link Local Addresses\fR
|
|
Reverse data for zones 8.E.F.ip6.arpa to B.E.F.ip6.arpa.
|
|
.TP 10
|
|
+\h'5'\fIreverse RFC4843 Orchid Prefix\fR
|
|
+Reverse data for zone 0.1.1.0.0.2.ip6.arpa.
|
|
+.TP 10
|
|
\h'5'\fIreverse IPv6 Example Prefix\fR
|
|
Reverse data for zone 8.B.D.0.1.0.0.2.ip6.arpa. This zone is used for
|
|
tutorials and examples. You can remove the block on this zone with:
|
|
.nf
|
|
local\-zone: 8.B.D.0.1.0.0.2.ip6.arpa. nodefault
|
|
.fi
|
|
+You can also selectively unblock a part of the zone by making that part
|
|
+transparent with a local\-zone statement.
|
|
This also works with the other default zones.
|
|
.\" End of local-zone listing.
|
|
.TP 5
|
|
diff --git a/services/localzone.c b/services/localzone.c
|
|
index b8da77a..248d45f 100644
|
|
--- a/services/localzone.c
|
|
+++ b/services/localzone.c
|
|
@@ -689,6 +689,8 @@ lz_enter_defaults(struct local_zones* zones, struct config_file* cfg,
|
|
!add_as112_default(zones, cfg, buf, "0.in-addr.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "254.169.in-addr.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "2.0.192.in-addr.arpa.") ||
|
|
+ !add_as112_default(zones, cfg, buf, "100.51.198.in-addr.arpa.") ||
|
|
+ !add_as112_default(zones, cfg, buf, "113.0.203.in-addr.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "255.255.255.255.in-addr.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "d.f.ip6.arpa.") ||
|
|
@@ -696,6 +698,7 @@ lz_enter_defaults(struct local_zones* zones, struct config_file* cfg,
|
|
!add_as112_default(zones, cfg, buf, "9.e.f.ip6.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "a.e.f.ip6.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "b.e.f.ip6.arpa.") ||
|
|
+ !add_as112_default(zones, cfg, buf, "0.1.1.0.0.2.ip6.arpa.") ||
|
|
!add_as112_default(zones, cfg, buf, "8.b.d.0.1.0.0.2.ip6.arpa.")) {
|
|
log_err("out of memory adding default zone");
|
|
return 0;
|