DNS 문제: A 레코드가 없습니다.

DNS 문제: A 레코드가 없습니다.

열흘 전 OVH의 Kimsufi에 Debian 9 버전을 설치했습니다. 레코드 A에 문제가 있는 지원팀으로부터 이메일을 받았습니다. 내 서버는 ns.xzave.net이고 내 서버에는 레코드 A가 없습니다.

https://www.whatsmydns.net/#A/ns.xzave.netA 레코드가 없어요

Google Toolbox에서 "creation-site-pro.fr"을 찾아보세요.

https://www.toolbox.googleapps.com/apps/dig/#A/

id 5158
opcode QUERY
rcode SERVFAIL
flags QR RD RA
;QUESTION
creation-site-pro.fr. IN A
;ANSWER
;AUTHORITY
;ADDITIONAL

서비스 바인드9 상태:

bind9.service - BIND Domain Name Server
   Loaded: loaded (/lib/systemd/system/bind9.service; enabled; vendor preset: enabled)
   Active: active (running) since Sun 2019-06-09 15:48:15 UTC; 6min ago
     Docs: man:named(8)
 Main PID: 665 (named)
    Tasks: 7 (limit: 4915)
   CGroup: /system.slice/bind9.service
           └─665 /usr/sbin/named -f -u bind

Jun 09 15:48:18 ns named[665]: managed-keys-zone: journal file is out of date: removing journal file
Jun 09 15:48:18 ns named[665]: managed-keys-zone: loaded serial 415
Jun 09 15:48:18 ns named[665]: zone creation-site-pro.fr/IN: loaded serial 2019052810
Jun 09 15:48:18 ns named[665]: zone localhost/IN: loaded serial 2
Jun 09 15:48:18 ns named[665]: zone 0.in-addr.arpa/IN: loaded serial 1
Jun 09 15:48:18 ns named[665]: zone 255.in-addr.arpa/IN: loaded serial 1
Jun 09 15:48:18 ns named[665]: zone 127.in-addr.arpa/IN: loaded serial 1
Jun 09 15:48:18 ns named[665]: all zones loaded
Jun 09 15:48:18 ns named[665]: running
Jun 09 15:48:18 ns named[665]: zone creation-site-pro.fr/IN: sending notifies (serial 2019052810)

파일 이름은 .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";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

파일 이름은 .conf.local입니다.

zone "creation-site-pro.fr" {
        type master;
        allow-transfer {213.186.33.199;};
        file "/etc/bind/pri.creation-site-pro.fr";
        allow-query{any;};
        notify yes;
};

파일 이름은 .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-enable yes;
        dnssec-validation auto;
        dnssec-lookaside auto;

        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { any; };
};

CPU 이름:

ns

호스트 이름-f

ns.xzave.net

뭐가 문제 야?

답변1

fr.Zone 에 따라 creation-site-pro.fr2개의 네임서버가 있습니다.

creation-site-pro.fr.   172800  IN  NS  ns.xzave.net.
creation-site-pro.fr.   172800  IN  NS  ns.kimsufi.com.

둘 중 ns.xzave.net.하나는 존재하지 않으며( xzave.net.등록된 도메인도 아님) ns.kimsufi.com.쿼리를 거부하는 것 같습니다.

데비안 서버가 이 영역의 쿼리에 올바르게 응답하도록 구성되어 있더라도 호스트 이름이 ns.xzave.net.이를 가리키지 않기 때문에 액세스할 수 없습니다.

등록 기관에서 제공하는 이름 서비스를 사용하는 것을 고려하거나(제공하는 경우) 서버에 이를 가리키는 올바른 FQDN이 있는지 확인하는 것이 좋습니다. 또한 다른 서버가 쿼리를 거부하고 있는지도 알아내야 합니다.

관련 정보