我最近一直在研究 DNS,目前使用 DIG 命令收到以下错误消息:
BAD (HORIZONTAL) REFERRAL
据我了解,这是由于委托名称查找而不遍历“DNS 树”而引起的。与代表“DNS 树”的垂直引荐不同,水平引荐代表如下名称:
(来自“google.com”区域的名称服务器的虚构示例答案)
;; QUESTION SECTION:
;123.google.com. IN A
;; AUTHORITY SECTION:
a.123.google.com. 7200 IN NS ns1.321.google.com.
a.123.google.com. 7200 IN NS ns2.321.google.com.
a.123.google.com. 7200 IN NS ns3.321.google.com.
当您询问上述指定的名称服务器之一时,将返回以下答案:
;; QUESTION SECTION:
;123.google.com. IN A
;; AUTHORITY SECTION:
a.123.google.com. 7200 IN NS ns4.321.google.com.
a.123.google.com. 7200 IN NS ns5.321.google.com.
a.123.google.com. 7200 IN NS ns6.321.google.com.
这种情况会一直持续下去,而不会靠近可以实际回答“a.123.google.com”请求的名称服务器。
回到我的问题:
通常不允许横向推荐,还是仅此特定情况是不好的横向推荐?