DNS:如何从 TLD 中挖掘正确的域名?

发布于 2024-07-17 04:24:08 字数 168 浏览 11 评论 0原文

我想查询 DNS 记录,直到获得正确的域名。

例如,给定 www.subdomain.site.com.br,能够从 .br 挖掘到 site.com.br。

哪一种是实现这一目标的最(协议式)方法? 使用 dig/nslookup 的食谱是最好的。

谢谢。

I'd like to query the DNS records until get the right domain name.

For instance, given www.subdomain.site.com.br, be able to dig from .br until site.com.br.

Which is the most (protocol-speaking) way to achieve that? An recipe using dig/nslookup would be best.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最美不过初阳 2024-07-24 04:24:08
dig +trace www.subdomain.site.com.br

将向您展示到底发生了什么。

dig +trace www.subdomain.site.com.br

will show you exactly what happens.

世俗缘 2024-07-24 04:24:08
dig www.mysite.domain.com @a.root-servers.net

您将从那里获得下一个级别。 只需替换“@”后面的部分并继续递归,直到您查询给出答案而不是附加信息的服务器为止

dig www.mysite.domain.com @a.root-servers.net

you'll get the next level from there. Just replace the portion after the '@' and keep recursing until you query a server that gives an answer rather than additional information

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文