Настройка DNS-сервера на CentOs 5.8

У меня возникли некоторые проблемы с настройкой моего DNS-сервера на моем VPS (CentOs 5.8 32 бит)

Я настроил зону DNS с помощью мастера ISPConfig 3. Мои серверы имен зарегистрированы у моего регистратора доменов (в Yahoo)

Я настроил свой домен для использования моих серверов имен:

ns1.mydomain.com
ns2.mydomain.com

Тем не менее, когда я захожу в свой домен, он говорит, что страница не найдена.


Настоящая ошибка - "не могу найти domainname.com"


named.conf (в /var/named/chroot/etc)

//
// Sample named.conf BIND DNS server 'named' configuration file
// for the Red Hat BIND distribution.
//
// See the BIND Administrator's Reference Manual (ARM) for details, in:
//   file:///usr/share/doc/bind-*/arm/Bv9ARM.html
// Also see the BIND Configuration GUI : /usr/bin/system-config-bind and
// its manual.
//
options
{
    // Those options should be used carefully because they disable port
    // randomization
    // query-source    port 53;
    // query-source-v6 port 53;

    // Put files that named is allowed to write in the data/ directory:
    directory "/var/named"; // the default
    dump-file               "data/cache_dump.db";
    statistics-file         "data/named_stats.txt";
    memstatistics-file      "data/named_mem_stats.txt";

};
logging
{
/*      If you want to enable debugging, eg. using the 'rndc trace' command,
 *      named will try to write the 'named.run' file in the $directory (/var/named).
 *      By default, SELinux policy does not allow named to modify the /var/named  directory,
 *      so put the default debug log file in data/ :
 */
     channel default_debug {
         file "data/named.run";
         severity dynamic;
     };
};
//
// All BIND 9 zones are in a "view", which allow different zones to be served
// to different types of client addresses, and for options to be set for groups
// of zones.
//
// By default, if named.conf contains no "view" clauses, all zones are in the
// "default" view, which matches all clients.
//
// If named.conf contains any "view" clause, then all zones MUST be in a view;
// so it is recommended to start off using views to avoid having to restructure
// your configuration files in the future.
//

1 ответ

Решение

Что-то не так с настройкой программного обеспечения DNS-сервера на вашем сервере. Это видно из следующих вопросов о диагностике DNS.

Ваш домен правильно делегирован (dig ns uk2be.com):

;; QUESTION SECTION:
;uk2be.com.         IN  NS

;; ANSWER SECTION:
uk2be.com.      172800  IN  NS  ns1.uk2be.com.
uk2be.com.      172800  IN  NS  ns2.uk2be.com.

Клеевые записи существуют (dig ns1.uk2be.com а также dig ns2.uk2be.com), хотя это один сервер:

;; QUESTION SECTION:
;ns1.uk2be.com.         IN  A

;; ANSWER SECTION:
ns1.uk2be.com.      172726  IN  A   46.37.174.74

------

;; QUESTION SECTION:
;ns2.uk2be.com.         IN  A

;; ANSWER SECTION:
ns2.uk2be.com.      172714  IN  A   46.37.174.74

Но ваш DNS-сервер не отвечает ни на один запрос (dig soa uk2be.com @46.37.174.74 или же dig www.uk2be.com @46.37.174.74):

; <<>> DiG 9.7.3 <<>> soa uk2be.com @46.37.174.74
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 24146
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;uk2be.com.         IN  SOA

;; Query time: 21 msec
;; SERVER: 46.37.174.74#53(46.37.174.74)
;; WHEN: Fri Aug 17 18:30:18 2012
;; MSG SIZE  rcvd: 27

------

; <<>> DiG 9.7.3 <<>> www.uk2be.com @46.37.174.74
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 21070
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;www.uk2be.com.         IN  A

;; Query time: 17 msec
;; SERVER: 46.37.174.74#53(46.37.174.74)
;; WHEN: Fri Aug 17 18:30:48 2012
;; MSG SIZE  rcvd: 31

Если ваш сервер фактически использует этот IP-адрес (46.37.174.74), что-то неправильно настроено в вашем программном обеспечении DNS. Какое программное обеспечение DNS вы используете? Вы видите что-то не так в журналах?

В целях тестирования вы можете попробовать несколько онлайн-инструментов:

Другие вопросы по тегам