Приветствую. Возникла необходимость создать днс-сервера для поддержки доменов. В наличии два сервера (debian), 2 ip в разных подсетях(1.1.1.1 и 2.2.2.2).
Пока что домен один (
example.com) и ns-серверы для него должны быть такие:
ns1.example.com и, соответственно на втором сервере,
ns2.example.com
итак, что я делал:
1) прописал у регистратора dns серверы: ns1.example.com 1.1.1.1 и ns2.example.com 2.2.2.2
2) на первом сервере был устновлен BIND, открыт порт 53/tcp привожу содержимое конфигураации:
$ cat /etc/bind/named.conf
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include "/etc/bind/named.conf.options";
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
include "/etc/bind/named.conf.local";
$ cat /etc/bind/named.conf.options
options {
directory "/var/cache/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 0.0.0.0;
// };
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};
$ cat /etc/bind/named.conf.local
zone "example.com" {
type master;
file "/etc/bind/example.com";
};
$ cat /etc/bind/example.com
$TTL 3600
@ IN SOA ns1.example.com. support.example.com. (
2010122202 ; serial, todays date + todays serial #
10800 ; refresh, seconds
3600 ; retry, seconds
604800 ; expire, seconds
86400 ) ; minimum, seconds
@ IN NS ns1.example.com.
@ IN NS ns2.example.com.
mail IN A 1.1.1.1
ns1 IN A 1.1.1.1
www IN A 1.1.1.1
ftp IN A 1.1.1.1
example.com. IN A 1.1.1.1
example.com. IN MX 10 mail
Если сделать nslookup с использованием этого сервера (1.1.1.1), то видим:
$ nslookup example.com localhost
Server: localhost
Address: 127.0.0.1#53
Name: example.com
Address: 1.1.1.1
Все же остальные сервера отвечают: (прошло уже больше суток)
$ nslookup example.com
;; connection timed out; no servers could be reached
Быть может кто-то подскажет мне, в чём проблема?
и хотелось бы рекомендаций, как настраивать вторичный днс на втором сервере (2.2.2.2)