diff --git a/doc/Changelog b/doc/Changelog index b078977ae..3844fd413 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +15 July 2008: Wouter + - Follow draft-ietf-dnsop-default-local-zones-06 added reverse + IPv6 example prefix to AS112 default blocklist. + 3 July 2008: Wouter - Matthijs fixed memory leaks in root hints file reading. diff --git a/doc/unbound.conf.5.in b/doc/unbound.conf.5.in index 32b5fdcbc..b5f6dfb69 100644 --- a/doc/unbound.conf.5.in +++ b/doc/unbound.conf.5.in @@ -563,6 +563,14 @@ Reverse data for zone D.F.ip6.arpa. .TP 10 \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 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 +This also works with the other default zones. .\" End of local-zone listing. .TP 5 .B local\-data: \fI"" diff --git a/services/localzone.c b/services/localzone.c index 11d4e6d6b..2712bab7a 100644 --- a/services/localzone.c +++ b/services/localzone.c @@ -647,7 +647,8 @@ lz_enter_defaults(struct local_zones* zones, struct config_file* cfg, !add_as112_default(zones, cfg, buf, "8.e.f.ip6.arpa.") || !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, "b.e.f.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; }