Собственно две подсети:
192.168.0.0/24
192.168.2.0/24
Для первой dhcp выдает соответственно dns 192.168.0.1, для второй - 192.168.2.0. Настройка самая простая - форвардинг запросов на провайдерские dns. Почему-то имена резолвятся только из 192.168.0.0/24. Конфиг бинда:
//
// /etc/named.conf
//
options {
directory "/var/named";
pid-file "/var/run/named/named.pid";
auth-nxdomain yes;
datasize default;
listen-on { 127.0.0.1; 192.168.0.1; 192.168.2.1; };
allow-query { any; };
allow-query-cache { any; };
allow-recursion { any; };
forwarders {
193.200.32.5;
195.182.194.3;
};
query-source address * port 53;
};
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
allow-transfer { any; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "127.0.0.zone";
allow-update { none; };
allow-transfer { any; };
};
zone "168.192.in-addr.arpa" {
type master;
file "/var/named/192.168.zone";
allow-update { none; };
allow-transfer { any; };
};
zone "." IN {
type hint;
file "root.hint";
};
logging {
channel xfer-log {
file "/var/log/named.log";
severity info;
print-category yes;
print-severity yes;
print-time yes;
};
category notify {
xfer-log;
};
category xfer-out {
xfer-log;
};
category xfer-in {
xfer-log;
};
};