web-dev-qa-db-ja.com

ネームサーバーが解決しない

OVHから管理されていない専用VPSを取得したばかりで、サーバーやDNSサーバーをセットアップした経験はありませんが、いくつかの方法に従ってwebminをインストールし、NS Zones for私のドメインですが、今ではmxtoolboxとintodns.comが、ns1.example.comとns2.exampleを登録したにもかかわらず、ドメインのNSレコードが見つからない)と言っているという奇妙な問題が発生しています。ドメインレジストラ(この場合はNetwork Solutions)を使用した.comですが、それでも失敗し続け、Webサイトにアクセスできません。2日間解決策を探していましたが、まだ取得していません。 、CentOs6.3を使用しています。これがWebminから取得したBIND構成です。

//
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only nameserver (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
options {
listen-on port 53 { 127.0.0.1; 198.245.51.xxx;};
listen-on-v6 port 53 { ::1; };
directory   "/var/named";
dump-file   "/var/named/data/cache_dump.db";
    statistics-file "/var/named/data/named_stats.txt";
    memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query     { localhost; any; };                      ## IP Range ##
allow-transfer  { localhost; 198.245.51.xxx; };                        ## Slave     DNS IP ## 
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
/* Path to ISC DLV key */
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
forwarders {
    198.245.51.xxx;
    8.33.137.xxx;
    };
};
logging {
    channel default_debug {
            file "data/named.run";
            severity dynamic;
    };
};
zone "." IN {
type hint;
file "named.ca";
};
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
zone "example.org" {
type master;
file "/var/named/example.org.hosts";
allow-transfer {
    8.33.137.xxx;
    };
also-notify {
    8.33.137.xxx;
    };
};
zone "221.51.245.198.in-addr.arpa" {
type master;
file "/var/named/198.245.51.xxx.rev";
};

私のIPテーブルルール:-

http://i.imgur.com/uIwOWIK.png

私のhostsファイル:-

Do not remove the following line, or various programs
that require network functionality will fail.

127.0.0.1       localhost.localdomain localhost

198.245.51.xxx  ns1

198.245.51.xxx  example.org

198.245.51.xxx  ns1.example.org

198.245.51.xxx  ns1.example.org.

私のresolv.confファイル:-

namserver 198.245.51.xxx
ns1.example.org 198.245.51.xxx
ns2.example.org 8.33.137.xxx
nameserver 127.0.0.1
nameserver 213.186.33.xx
search ovh.net

intodns.comの結果:-

http://i.imgur.com/6iCpTgX.png

注:-ドメインに関して混乱が生じた場合に備えてexample.org、私はただ使用しますこのエイリアスは私のドメイン名を隠すためのものですが、皆さんはすでにそれを理解していると確信しているので、そこに置くだけです。

ご返事ありがとうございます!

更新:-

マイゾーンファイル:-

$ttl 38400
example.org.    IN  SOA ns1.example.org. admin.example.org. (
        1368243151
        10800
        3600
        604800
        38400 )
example.org.    IN  NS  ns1.example.org.
example.org.    IN  A   198.245.51.xxx
www.example.org.    IN  A   198.245.51.xxx
ns1.example.org.    30m IN  A   198.245.51.xxx
example.org.    IN  NS  ns2.example.org.
ns2.example.org.    IN  A   8.33.137.xxx
198.245.51.xxx.example.org. IN  PTR ns1
198.245.51.xxx.example.org. IN  PTR example.org

マイゾーンの概要:-ゾーン
ゾーン:ルートゾーンタイプ:ルートゾーン:0タイプ:マスターゾーン:0000 :: 1タイプ:マスターゾーン:127.0.0.1タイプ:マスターゾーン:198.245.51.xxxタイプ:マスターゾーン:ローカルホストマスターゾーン:localhost.localdomainタイプ:マスターゾーン:example.orgType:マスター;

私の掘り出し物の結果:-

[xxxx@xxxxxx ~]# Dig ns1.example.org

; <<>> Dig 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6_4.4 <<>> ns1.example.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 19537
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 1

;; QUESTION SECTION:
;ns1.example.org.            IN      A

;; ANSWER SECTION:
ns1.example.org.     1800    IN      A       198.245.51.xxx

;; AUTHORITY SECTION:
example.org.         38400   IN      NS      ns1.example.org.
example.org.         38400   IN      NS      ns2.example.org.

;; ADDITIONAL SECTION:
ns2.example.org.     38400   IN      A       8.33.137.xxx

;; Query time: 4 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Sat May 11 23:01:48 2013
;; MSG SIZE  rcvd: 100

さらに情報が必要な場合はお知らせください。

2
Mr.Flocker

あなたはファイアウォールを実行しているかもしれません、そして私が覚えているように、CentOSのデフォルトのファイアウォールブロックポート53(私はここで間違っているかもしれませんが)。


変化する

allow-query     { localhost; any; };

allow-query     { any; };

多分それはいくつかの問題を引き起こしています。 :も削除します

forwarders {
198.245.51.xxx;
8.33.137.xxx;
};

2IPはあなた自身のIPだと私は信じているので。

バインドを再起動し、再起動後、実際にps -ef | grep bindで実行されていることを確認します。

2
Sandor Marton

したがって、DNSネームサーバーレコードを設定する場合、2つのコンポーネントがあります。

1)Glue Record-これは、ネームサーバーをレジストラに登録するときに発生します。

2)NSレコード-example.orgまたはドメインが何であれ、DNSゾーンを作成し、Glueで設定したIPを指すns1およびns2のAレコードを作成する必要があります記録。

0
Will