Назад | Перейти на главную страницу

Bind9 в Debian: точка nslookup на локальном хосте, а не на моем IP-сервере

Я только что установил bind9 на Debian.

Я думаю, что не все настроил, потому что у меня все еще есть проблема с DNS и распространением. Я думаю, проблема в том, что nslookup :

Server:         127.0.0.1
Address:        127.0.0.1#53

Команда :

root@ks3309528:~# nslookup stats.yt
Server:         127.0.0.1
Address:        127.0.0.1#53

Name:   stats.yt
Address: 5.135.160.63

root@ks3309528:~# nslookup cakebox.stats.yt
Server:         127.0.0.1
Address:        127.0.0.1#53

Name:   cakebox.stats.yt
Address: 5.135.130.63

Может это мой /etc/resolv.conf

nameserver 127.0.0.1
nameserver 213.186.33.99
search ovh.net

Мое имя.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 http://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;
        // };

        //========================================================================
        // If BIND logs error messages about the root key being expired,
        // you will need to update your keys.  See https://www.isc.org/bind-keys
        //========================================================================
        dnssec-validation auto;

        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { ::1; };
        listen-on port 53 { any; };
        allow-recursion { 127.0.0.1;};
};

мой db.statsyt

$TTL 86400
@ IN SOA ks3309528.kimsufi.com. root.stats.yt. (
        2014012514      ;serial
        3600            ;refresh
        600             ;retry
        2419200         ;expire
        600)            ;minimum
@        IN NS     ks3309528.kimsufi.com.
@        IN NS     ns.kimsufi.com.
stats.yt.            IN A      5.135.160.63
www                  IN CNAME  stats.yt.
cakebox              IN A      5.135.130.63

И db.statsyt.inv

$TTL 86400
@ IN SOA ks3309528.kimsufi.com. root.stats.yt. ( 2014012501 3600 600 2419200 600)
@        NS     ks3309528.kimsufi.com.

63      IN PTR  stats.yt.

Так что проблема в IP-адресе сервера и я думаю.

Если я сделаю https://www.whatsmydns.net/#A/cakebox.stats.yt

Это нормально, но почему я не могу получить доступ к cakebox.stats.yt ?

Или проблема от апача?

В вашей зоне допущена опечатка:

stats.yt.            IN A      5.135.**160**.63
www                  IN CNAME  stats.yt.
cakebox              IN A      5.135.**130**.63

Подсказка: используйте CNAME, чтобы избежать подобных проблем, как вы это делали с www.