<div dir="ltr"><div>I have magic zone file in my bind 9.7 for three identical zones:</div><div><br></div><div>    $TTL 86400</div><div>    @ IN SOA localhost. root.localhost. (</div><div>     20141010222676</div><div>     3H              ; refresh</div><div>     15M             ; retry</div><div>     1W              ; expiry</div><div>     1D )            ; minimum</div><div>         IN NS ns1</div><div>         IN NS ns2</div><div>    ns1  IN A  1.2.3.4</div><div>    ns2  IN A  1.2.3.4</div><div>    www  IN A  10.20.30.40</div><div><br></div><div>and this zones in named.conf with single file:</div><div><br></div><div>    zone "zone1.tld" IN {</div><div>     type master;</div><div>     file "zone.tld";</div><div>    };</div><div>    zone "zone2.tld" IN {</div><div>     type master;</div><div>     file "zone.tld";</div><div>    };</div><div>    zone "zone3.tld" IN {</div><div>     type master;</div><div>     file "zone.tld";</div><div>    };</div><div><br></div><div>I enable global nsupdate access in named.conf:</div><div><br></div><div>    allow-update {</div><div>     key "key_name";</div><div>    };</div><div><br></div><div>after updating via nsupdate any of this zones (e.g. zone1.tld) and stopping bind I got zone file like this:</div><div><br></div><div>    $TTL 86400</div><div>    zone1.tld. IN SOA localhost. root.localhost. (</div><div>     20141010222676</div><div>     3H              ; refresh</div><div>     15M             ; retry</div><div>     1W              ; expiry</div><div>     1D )            ; minimum</div><div>         IN NS ns1</div><div>         IN NS ns2</div><div>    ns1  IN A  1.2.3.4</div><div>    ns2  IN A  1.2.3.4</div><div>    www  IN A  10.20.30.40</div><div><br></div><div>zone2 and zone3 is still uses this file as zone, but there is no data in this file for zone2 and zone3. bind obviously can't start, returning error "ignoring out-of-zone data".</div><div><br></div><div>which is the correct way to maintain several zones with fully identical data, but with possibility to use nsupdate to it?</div></div>