3130. [func] Support alternate methods for managing a dynamic

zone's serial number.  Two methods are currently
                        defined using serial-update-method, "increment"
                        (default) and "unixtime".  [RT #23849]
This commit is contained in:
Mark Andrews
2011-07-01 02:25:48 +00:00
parent 923fba44d3
commit a69070d8fa
20 changed files with 303 additions and 50 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: named.conf,v 1.21 2011/05/06 23:47:29 tbox Exp $ */
/* $Id: named.conf,v 1.22 2011/07/01 02:25:47 marka Exp $ */
controls { /* empty */ };
@@ -80,3 +80,13 @@ zone "update.nil" {
allow-transfer { any; };
also-notify { othermasters; };
};
zone "unixtime.nil" {
type master;
file "unixtime.db";
check-integrity no;
allow-update { any; };
allow-transfer { any; };
serial-update-method unixtime;
};