是否有可能做到这一点:
ns1.domain.com GLUE -> IP
ns2.domain.com GLUE -> IP
但是对于该域名,名称服务器是否指向不同的提供商,例如 cloudflare?
我希望拥有在记录 IP 上运行的名称服务器的粘合记录,但使用 cloudflare 作为该域的 DNS。
我需要粘合记录,以便我的客户可以使用 ns1/ns2.domain.com 作为他们的名称服务器
答案1
仅可以通过根域注册商的控制台添加 Glue。
粘合记录的概念是将 A 交给名称服务器。
例如,您可以在 Cloudflare 区域上添加名为 sub.domain.com 的子域名,并为 ns1 和 ns2 赋予 A,如下所示:
your-dns-ip A ns1.sub.domain.com
your-dns-ip A ns2.sub.domain.com
然后将子记录提供给 ns1 和 ns2,例如
sub.domain.com NS ns1.sub.domain.com
sub.domain.com NS ns2.sub.domain.com
传播后,您可以在 DNS 服务器端管理 *.sub.domain.com 的记录。
希望这会有所帮助