web-dev-qa-db-ja.com

ネームサーバー「不一致NSレコード」を修正するにはどうすればよいですか?

初心者なので安心してください。

自分の国のドメインレジストラー(mitsu.in)からドメイン名を購入し、約8か月前にそこからドメイン名www.ashurocks.inを購入しました。また、別の会社(unlimitedgb.com)からWebホスティングを購入し、cpanelを入手しました。 (Linuxホスティングがあります)。

私はunlimitedgb.comのcpanelを使用しているので、NSレコードをドメイン名のレコードに更新しましたNSレコードはunlimitedgbから与えられました。これらはいた

1001.globedns.com.
1002.globedns.com. 

さて、ウェブサイトは今日まで問題なく動作していましたが、突然エラーが発生しましたconnection timed outとしばらくしてエラーが発生しましたserver not found at www.ashurocks.in

intoDNS.com for[〜#〜] nslookup [〜#〜]を使用すると、次のエラーが発生します-

Error- Mismatched NS records    WARNING: One or more of your nameservers did not return any of your NS records.

Error- DNS servers responded    ERROR: One or more of your nameservers did not respond:
The ones that did not respond are:
72.52.205.202 72.52.205.201

Multiple Nameservers    ERROR: Looks like you have less than 2 nameservers. According to RFC2182 section 5 you must have at least 3 nameservers, and no more than 7. Having 2 nameservers is also ok by me.

Missing nameservers reported by your nameservers    You should already know that your NS records at your nameservers are missing, so here it is again:

1001.globedns.com.
1002.globedns.com. 

SOA record  No valid SOA record came back!
Error- MX Records   Oh well, I did not detect any MX records so you probably don't have any and if you know you should have then they may be missing at your nameservers!
Error- WWW A Record     ERROR: I could not get any A records for www.ashurocks.in!

これらのエラーは突然popsupになります。購入して以来、ドメイン名の構成を変更していません。今日まで、サイトは突然正常に機能していましたserver not foundエラーが発生します。設定ミスがドメイン名側かウェブサーバー側(unlimitedgb)かどうかを理解できません。帯域幅が原因でWebサーバーがダウンしている可能性がある可能性があります。

すぐに助けてください。私は今この問題の真っ最中です。

4
ashutosh

問題は非常に単純です。

1001.globedns.comおよび1002.globedns.comは単にDNS要求に応答しません。

mypc:~$ Dig @1001.globedns.com www.ashurocks.in

; <<>> Dig 9.8.1-P1 <<>> @1001.globedns.com www.ashurocks.in
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached

mypc:~$ Dig @1002.globedns.com www.ashurocks.in

; <<>> Dig 9.8.1-P1 <<>> @1002.globedns.com www.ashurocks.in
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached

また、以前の構成(ネームサーバーをmitsu.inとして設定している場合)は、現在達成しようとしているものと同じではないようです。

mypc:~$ Dig @ns1.mitsu.in www.ashurocks.in +answer +nocmd

; <<>> Dig 9.8.1-P1 <<>> @ns1.mitsu.in www.ashurocks.in +answer +nocmd
; (4 servers found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47688
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; WARNING: recursion requested but not available

;; QUESTION SECTION:
;www.ashurocks.in.      IN  A

;; ANSWER SECTION:
www.ashurocks.in.   28800   IN  CNAME   ghs.google.com.

;; Query time: 638 msec
;; SERVER: 50.23.136.173#53(50.23.136.173)
;; WHEN: Wed Jan 16 21
4
Alex