Создал свой ДНС, в локалке как мастер, при попытке сделать запрос с любой машины в messages пишется следующее client IP-addr#32123: query '1.0.0.127.in-addr.arpa/IN' denied
host выдает: Host 1.0.0.127.in-addr.arpa not found: 5 (REFUSED)
Какие надо посмотреть параметры что б устранить эту ошибку?
/* * If there is a firewall between you and nameservers you want * to talk to, you might need to uncomment the query-source * directive below. Previous versions of BIND always asked * questions using port 53, but BIND 8.1 uses an unprivileged * port by default. */ // query-source address * port 53; };
// // a caching only nameserver config // controls { inet 88.1.3.121 port 53 allow { 88.1.3.0; }; };
zone "." IN { type hint; file "named.ca"; };
zone "localdomain" IN { type master; file "localdomain.zone"; allow-update { none; }; };
zone "localhost" IN { type master; file "localhost.zone"; allow-update { none; }; };
zone "0.0.127.in-addr.arpa" IN { type master; file "named.local"; allow-update { none; }; };
zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN { type master; file "named.ip6.local"; allow-update { none; }; };
zone "255.in-addr.arpa" IN { type master; file "named.broadcast"; allow-update { none; }; };
zone "0.in-addr.arpa" IN { type master; file "named.zero"; allow-update { none; }; };
zone "guvd.mo" { type master; file "guvd.mo.zone" ; };
zone "121.3.1.88.in-addr.arpa" { type master; file "121.3.1.88.zone"; };
include "/etc/rndc.key";
$ttl 1D guvd.mo. IN SOA station1.guvd.mo. root.station1.guvd.mo. ( 2006092002 2H 5M 1W 1M ) @ IN NS ns.guvd.mo.
localhost A 127.0.0.1 station1 A 88.1.3.121
ns CNAME station1
$TTL 1D @ IN SOA station1.guvd.mo. root.station1.guvd.mo. ( 2006092000 ; serial (d. adams) 2H ; refresh 5M ; retry 1W ; expiry 1M ) ; minimum
IN NS station1.guvd.mo.
121.3.1.88.in-addr.arpa. IN PTR station1.guvd.mo. @ IN PTR ns.guvd.mo.