3180. [func] Local copies of slave zones are now saved in raw

format by default, to improve startup performance.
			'masterfile-format text;' can be used to override
			the default, if desired. [RT #25867]
This commit is contained in:
Evan Hunt
2011-10-26 15:23:37 +00:00
parent f4ee3d9741
commit 9570ddcd41
11 changed files with 139 additions and 57 deletions

View File

@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: named.conf,v 1.4 2007/06/19 23:47:04 tbox Exp $ */
/* $Id: named.conf,v 1.5 2011/10/26 15:23:36 each Exp $ */
// NS1
@@ -23,6 +23,7 @@ controls { /* empty */ };
options {
pid-file "named.pid";
listen-on port 5300 { 10.53.0.1; };
port 5300;
listen-on-v6 { none; };
recursion no;
notify no;
@@ -34,3 +35,21 @@ zone "example" {
masterfile-format raw;
file "example.db.raw";
};
zone "transfer1" {
type master;
file "example.db";
allow-transfer { any; };
};
zone "transfer2" {
type master;
file "example.db";
allow-transfer { any; };
};
zone "transfer3" {
type master;
file "example.db";
allow-transfer { any; };
};