I have successfully setup DNS server on Centos7. But, configured only one nameserver 'NS1' and want to configure one more nameserver 'NS2' for the same IP.
Have done the below changes in forward and reversed zone.
##########Forward zone############
$TTL 1D
@ IN SOA ns1.mydomain.in. root.ns1.mydomain.in. (
01 ; serial
1D ; refresh
1H ; retry
1W ; expire
3H ) ; minimum
IN NS ns1.mydomain.in.
ns1 IN A 10.20.10.20
ns2 IN A 10.20.10.20
############## Reversed Zone ###################
$TTL 1D
@ IN SOA ns1.mydomain.in. root.ns1.mydomain.in. (
3 ; serial
1D ; refresh
1H ; retry
1W ; expire
3H ) ; minimum
IN NS ns1.mydomain.in.
20 IN PTR ns1.mydomain.in.
20 IN PTR ns2.mydomain.in.
Are these changes sufficient or do I need to make any more modifications?