0

私はBind/DNSゾーンに比較的慣れていませんが、最近よく読んでいて、DNSをチェックするためのリンクを渡されました. http://intodns.com/empireconqueror.comで確認できるチェックを実行しました。

問題は、ゾーンにはまだ多くの問題があるように思われることです.インターネット上にはそれらのエラーに関する情報がないようです.私は助けを求めてここに来ました.

私のオプションは次のとおりです。

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 {
    //      199.115.230.239;
    //};

    allow-query {
            any;
    };

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

    allow-recursion { localhost; };
};

実際のゾーン オプションについては、次のとおりです。

include "/etc/bind/named.conf.options";

view "external-in" in {
    match-clients { any; };
    allow-query { none; };
    allow-query-cache { none; };
    recursion no;
    additional-from-auth yes;
    additional-from-cache yes;

    include "/etc/bind/named.conf.default-zones";
};

マスター ゾーンの例を次に示します。

zone "empireconqueror.com" {
    type master;
    file "/ect/bind/db.empireconqueror.com";
};

データベース ファイル:

$TTL    86400
$ORIGIN empireconqueror.com.
@       IN      SOA     ns2.webserverhome.com. hostmaster.empireconqueror.com. (
                          2002022401
                          28800
                          7200
                          864000
                          86400
                         )
; Root site
    IN      A       199.115.230.240

; Nameservers
    IN      NS      ns1.webserverhome.com.
    IN      NS      ns2.webserverhome.com.

; Aliases
www     IN      CNAME   empireconqueror.com.
fb      IN      CNAME   empireconqueror.com.
mail    IN      CNAME   ghs.google.com.

; MX Records
    IN      MX      1       aspmx.l.google.com.
    IN      MX      5       alt1.aspmx.l.google.com.
    IN      MX      5       alt2.aspmx.l.google.com.
    IN      MX      10      aspmx2.googlemail.com.
    IN      MX      10      aspmx3.googlemail.com.

手伝ってくれてどうもありがとう、ショーン

4

1 に答える 1

0

問題は、ns1.webserverhome.com と n2.webserverhome.com がゾーン ファイルに存在しないか、または応答していないように見えることです。最初にその問題を修正する必要があります。webserverhome.com も所有している場合は、レジストラに移動して DNS グルー レコードを追加するか、webserverhome.com に基づいて NS を構築する必要があります)。それらがないと、他のゾーンからネームサーバーを参照できません。

于 2011-05-31T15:22:17.640 に答える