Lazy Diary @ Hatena Blog

PowerShell / Java / miscellaneous things about software development, Tips & Gochas. CC BY-SA 4.0/Apache License 2.0

DNS ゾーン転送 (2)

named には BIND 8.3.7 が使われている。
named.conf の options { ... } の中に次のような内容がある。

 forwarders {
    192.168.137.11;
    192.168.160.64;
      :
      :
 };

そのすぐ下あたりに次を追加すればいいのかな?

 allow-transfer {
    192.168.137.11;
    192.168.160.64;
      :
      :
 };