在BIND中,将特定域的DNS查询转发到特定名称服务器


10

Windows Server 2003具有此功能,您可以在其中将对域“ example.com”的查询转发到特定的名称服务器(而不是默认的DNS服务器)。

如何在BIND中进行设置?例如,我想设置将本地TLD转发到特定本地名称服务器的功能。

绑定版本9.6

工作配置

正如Khaled所指出的,我们可以在zone子句中使用forwarders语句。它使用以下配置:

zone "local." IN {
   type forward;
   forward only;
   forwarders { 10.10.1.9; };
};

Answers:


7

看看这个页面。您可以在区域块中使用forwardand forwarders语句。

forward ( only | first )
forwarders { ipv4_addr }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.