更改名称服务器委派时更新延迟多长时间,我该如何测试更改?

chi*_*uit 2 domain-name-system delegation

我刚刚通过我们的注册商(MelbourneIT,如果重要的话)更改了我们的委托名称。

更新后的域名服务器值显示在 whois 报告中 - 这是否意味着更新已完成?

如果没有,我应该等待多久完成更改?

域是一个com.au.

Tim*_*imB 5

首先,找出 com.au 的域名服务器:

$ dig com.au ns
[snip]
com.au.                 86400   IN      NS      audns.optus.net.
com.au.                 86400   IN      NS      udns3.ausregistry.net.au.
com.au.                 86400   IN      NS      dns1.telstra.net.
com.au.                 86400   IN      NS      udns2.ausregistry.net.au.
com.au.                 86400   IN      NS      udns4.ausregistry.net.au.
com.au.                 86400   IN      NS      ns1.audns.net.au.
com.au.                 86400   IN      NS      udns1.ausregistry.net.au.
com.au.                 86400   IN      NS      ns3.ausregistry.net.au.
com.au.                 86400   IN      NS      ns3.melbourneit.com.
com.au.                 86400   IN      NS      au2ld.csiro.au.
com.au.                 86400   IN      NS      ns1.ausregistry.net.au.
com.au.                 86400   IN      NS      ns4.ausregistry.net.au.
com.au.                 86400   IN      NS      ns2.ausregistry.net.au.
[snip]
Run Code Online (Sandbox Code Playgroud)

然后检查这些名称服务器的样本,看看它们是否具有您的域的新委托。例如,对于 theage.com.au:

$ dig @ns1.audns.net.au. theage.com.au ns
[snip]
theage.com.au.          14400   IN      NS      ns1.fairfax.com.au.
theage.com.au.          14400   IN      NS      ns2.fairfax.com.au.
[snip]
Run Code Online (Sandbox Code Playgroud)

$ dig @ns3.melbourneit.com. theage.com.au
[snip]
theage.com.au.          14400   IN      NS      ns1.fairfax.com.au.
theage.com.au.          14400   IN      NS      ns2.fairfax.com.au.
[snip]
Run Code Online (Sandbox Code Playgroud)

如果任何名称服务器显示旧的委托,则更新仍在传播。

谈到 DNS,“dig”是您的朋友;花一些时间了解它是如何工作的,以及 DNS 系统是如何工作的。(我应该自己多听取一些建议——我仍然认为我没有完全了解 DNS。)