如何修复名称服务器“不匹配的 NS 记录”?

如何修复名称服务器“不匹配的 NS 记录”?

我是这里的新手,所以请对我宽容一点。

我从我所在国家的本地注册商 (mitsu.in) 购买了域名,大约 8 个月前从那里购买了域名 www.ashurocks.in。我还从另一家公司 (unlimitedgb.com) 购买了网络托管,该公司为我提供了一个 cpanel。(它有 Linux 托管)。

由于我使用的是 unlimitedgb.com 的 cpanel,因此我将我的域名的 NS 记录更新为 unlimitedgb 给我的 NS 记录。这些记录是-

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

现在,该网站一直运行良好,直到今天,突然出现错误connection timed out,过了一段时间后,错误就出现了server not found at www.ashurocks.in

当我使用intoDNS.com为了查找,我得到了以下错误-

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!

这些错误突然出现。自从我购买域名以来,我从未更改过域名配置。直到今天,网站运行正常,突然server not found出现错误。我无法理解错误配置是出在我的域名端还是我的网络服务器端(unlimitedgb)。网络服务器可能因带宽问题而停机。

请尽快帮助我。我现在正处于这个问题之中。

答案1

问题很简单。

1001.globedns.com1002.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

相关内容