■ BINDの設定変更

これまでの構成ではcorega BAR SW-4Pを使っていましたので、外向きBINDの設定を変更することが必要となります。と、言っても一カ所だけです。

■ /etc/bind/namedb-outer/named-outer.conf の編集
//
// named-outer.conf
//

options {
directory "/etc/bind/namedb-outer";
listen-on {
xx1.xx2.xx3.xx4
};
pid-file "/var/run/named-outer.pid";
};

logging {
category lame-servers { null; };
category cname { null; };
};

zone "." {
type hint;
file "/etc/bind/db.root";
};

zone "localhost" { //localhost 用正引き設定。
type master;
file "/etc/bind/db.local";
};

zone "127.in-addr.arpa" { //localhost 用逆引き設定。
type master;
file "/etc/bind/db.127";
};

zone "test.com" { //外側のドメイン用正引き設定。
type master;
file "outer.zone";
notify yes;
allow-transfer {
127.0.0.1;
xx5.xx6.xx7.xx8; //セカンダリ引受先ネットワーク//
};
};

zone "xx4.xx3.xx2.xx1.IN-ADDR.ARPA" { //外側のドメイン用逆引き設定。
type master;
file "outer.zone.rev";
};