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:
@@ -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; };
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user