[master] "in-view" zone option

3673.	[func]		New "in-view" zone option allows direct sharing
			of zones between views. [RT #32968]
This commit is contained in:
Evan Hunt
2013-11-13 20:35:40 -08:00
parent 9800974419
commit 434bfc3dfa
26 changed files with 473 additions and 26 deletions

View File

@@ -81,6 +81,10 @@ view "first" {
update-policy local;
notify-source 10.10.10.10 port 53 dscp 55;
};
zone "clone" {
type master;
file "yyy";
};
dnssec-lookaside auto;
dnssec-validation auto;
zone-statistics terse;
@@ -103,7 +107,22 @@ view "second" {
};
zone-statistics no;
};
zone "clone" {
in-view "first";
};
dnssec-lookaside "." trust-anchor "dlv.isc.org.";
dnssec-validation auto;
zone-statistics full;
};
view "third" {
match-clients {
"none";
};
zone "clone" {
in-view "first";
forward only;
forwarders {
10.0.0.100;
};
};
};