Приветствую всех и прошу помочь.
Настроет DHCP+DNS-сервера все вроде работает нормально, но тут выяснилось что на 1(как минимум) сайт не получается зайти
nslookup hosting.timeweb.ru
Server: 192.168.0.2
Address: 192.168.0.2#53
** server can't find hosting.timeweb.ru: NXDOMAIN
т.е. как понимаю запрос останавливается на локальном DNS.
named.conf
options {
listen-on port 53 {127.0.0.1; 192.168.0.2;};
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-query { localhost; 192.168.0.0/24; };
# --------------------------------
allow-query-cache { localhost; 192.168.0.0/24; };
auth-nxdomain no;
forward first;
# --------------------------------
allow-recursion {192.168.0.0/24; localhost;};
forwarders {8.8.8.8; 8.8.4.4; 77.88.8.8; 77.88.8.1; 213.158.0.6; 212.48.193.36; };
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
}
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
channel bind_log {
file "/var/log/named/named.log";
print-time yes;
print-category yes;
print-severity yes;
};
channel update_debug {
file "/var/log/named/update-debug.log";
severity debug 3;
print-time yes;
print-category yes;
print-severity yes;
};
channel security_info {
file "/var/log/named/security-info.log";
severity info;
print-time yes;
print-category yes;
print-severity yes;
};
category default { bind_log;};
category xfer-in { bind_log;};
category xfer-out { bind_log;};
category update { update_debug;};
category security { security_info;};
};
zone "." IN {
type hint;
file "named.ca";
};
include "/etc/rndc.key";
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
Пните в нужном направлении куда копать. т.к. проблема с остальными доменами не наблюдается.
# nslookup hosting.timeweb.ru
;; Got SERVFAIL reply from 192.168.0.2, trying next server
;; connection timed out; no servers could be reached
# nslookup hosting.timeweb.ru
Server: 192.168.0.2
Address: 192.168.0.2#53
** server can't find hosting.timeweb.ru: NXDOMAIN