Basic DNS - (Domain Name Service ) Linux Query
5. If I wanted to add a new zone, how would I go about doing this?
6. What commands do you use to validate your bind configuration?
7. What command do you use to validate your configuration of your zone?
8. Given what you know, create a simple Zone in bind which has the ability to resolve.
Command for adding new zone:
$ ipa dnszone-add domainName
Command for validate bind configuration:
named-checkconf /etc/named.conf
Command for Creating a simple zone:
For this we need dns config ffils suppose we have file name db.config.org // location of file we need to enter
And second file is db.193.168.0
zone "config.org" { type master; file "/etc/bind/zones/master/db.config.org"; }; zone "0.168.192.in-addr.arpa" { type master; file "/etc/bind/zones/master/db.193.168.0"; };
Get Answers For Free
Most questions answered within 1 hours.