Linux DNS绑定域子域configuration

我有一个关于域和子域的绑定configuration的问题。

例如,我有“example.lcl”的主要域名,下面我在站点A有“alpha.example.lcl”的子域,在站点B有“beta.example.lcl”。

站点A的Linux DNS服务器对“example.lcl”和“alpha.example.lcl”是权威的。

我想知道如何configuration区域以及如何configuration正向和反向查找区域文件。

如果您正在考虑将beta.example.lcl委派给不同的DNS服务器,请在example.lcl区域中使用NSlogging,如下所示:

@ 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服务器的一切,你可以在一个区域下创buildalpha和beta主机名:

 @ IN A 10.0.0.1 alpha IN A 10.0.0.1 beta IN A 10.9.2.5 

等等…