2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 06:55:30 +00:00
This commit is contained in:
Automatic Updater
2009-08-20 01:13:34 +00:00
parent 34ef21525e
commit 80c2098825

9
FAQ
View File

@@ -157,12 +157,17 @@ A: BIND 9.3 and later: Use TSIG to select the appropriate view.
secret "xxxxxxxx"; secret "xxxxxxxx";
}; };
view "internal" { view "internal" {
match-clients { !key external; 10.0.1/24; }; match-clients { !key external; // reject message ment for the
// external view.
10.0.1/24; }; // accept from these addresses.
... ...
}; };
view "external" { view "external" {
match-clients { key external; any; }; match-clients { key external; any; };
server 10.0.1.2 { keys external; }; server 10.0.1.2 { keys external; }; // tag messages from the
// external view to the
// other servers for the
// view.
recursion no; recursion no;
... ...
}; };