我有一个关于域和子域绑定配置的问题。
例如,我有"example.lcl“的主域,在A站点有"alpha.example.lcl”的子域,在站点B有"beta.example.lcl“的子域。
站点A上的Linux服务器对"example.lcl“和"alpha.example.lcl”具有权威性。
我想知道如何配置区域,以及如何配置正向和反向查找区域文件。
发布于 2012-04-01 18:51:40
如果您希望将beta.example.lcl委托给不同的DNS服务器,请使用example.lcl区域中的NS记录,如下所示:
@ IN A 10.0.0.1
alpha IN A 10.0.0.1
beta IN NS some.other.dns.server.example.net.
beta IN NS another.other.dns.server.example.net.另一方面,如果希望将所有内容保存在现有的DNS服务器上,并且可以在一个区域下设置alpha和beta主机名:
@ IN A 10.0.0.1
alpha IN A 10.0.0.1
beta IN A 10.9.2.5等等..。
https://serverfault.com/questions/371773
复制相似问题