Configuring two DNS zones with named.conf
I am trying to configure DNS to run two domain names. I am able to do one domain but am not sure how to configure a second domain.
So for example: test.com and test1.com on same machine.
How do i configure zone file and named.conf to achieve this?
Each domain would have its own zone file with its own records. In named.conf
, each zone gets its own declaration as such:
zone "example.com" in{
type master;
file "example.com.dns";
// enable slaves only
allow-transfer {192.168.23.1;192.168.23.2;);
};
So you would have one block for example.com
, and another for other-example.com
each directed to load the appropriate zone file from disk.