How to Configuring DNS on Ubuntu Server.
Bind 9 is the default package for the DNS service on the Ubuntu server and it is pre-installed with the OS.
In case if it is not there you may use the below command to install it.
apt-get install bind9
/etc/bind is the directory where all the The DNS configuration files resides by default. The primary configuration file is /etc/bind/named.conf .
It has the following files incuded
“/etc/bind/named.conf.options”
“/etc/bind/named.conf.local”
“/etc/bind/named.conf.default-zones”
named.conf.options file allowes you to specifies your ISP provided nameservers
forwarders {
192.168.1.1;
};
In this whole tutorial replace 192.168.1.1 and 192.168.1.2 with the IP Addresses of actual servers.
“/etc/bind/named.conf.local” is the File where you configure the DNS zones . The example is given below
zone “hostripples.com” {
type master;
file “/etc/bind/zones/Hostripples.com.db”;
};
Where as /etc/bind/named.conf.default-zones is configurations for default zones on the server. Normally you are not supposed to make changes here.
Now lets begin with configurtion of the DNS zone for your domain..
Create a sub-directory called zones .
mkdir /etc/bind/zones
Edit the zone file /etc/bind/zones/hostripples.com.db , The default zone file is also present at /etc/bind/db.local you may refer it as well…
;
; BIND data file for local loopback interface
;
$TTL 1800
@ IN SOA ns1.hostripples.com. root.hostripples.com. (
2009121502 ; Serial
28800 ; Refresh
7200 ; Retry
604800 ; Expire
86400 ) ; Negative Cache TTL
;
@ IN NS ns1.hostripples.com.
@ IN NS ns2.hostripples.com.
@ IN A 192.168.1.1
@ IN AAAA ::1
www IN A 192.168.1.1
@ MX 10 mail.hostripples.com.
mail IN A 192.168.1.1
ns1 IN A 192.168.1.1
ns2 IN A 192.168.1.2
Once the file is saved, correct the ownership of zoes folder at /etc/bind
chown root.bind /etc/bind/zones/ -R
Now restart bind9
/etc/init.d/bind9 restart
To verify the settings you may use dig command
dig +short A hostripples.com
192.168.1.1
dig +short MX hostripples.com
10 mail.hostripples.com.
If the dig command is not there you may use the below cmmand to install dig command
apt-get install dnsutils
To tr0uble shoot the DNS configurations you may always refer to the logs /var/log/syslog
named[17901]: zone hostripples.com/IN: sending notifies (serial 2009121502) in the syslog indicates that the configurations are working fine.
As the demand for virtual private servers (VPS) continues to grow, businesses and individuals are faced with a crucial decision:…
Web hosting is a large industry, as many other factors help any web hosting provider to form a company. The…
Welcome to the complete guide to WordPress security best practices in 2024. As technology evolves rapidly, implementing strong security measures…
Hey, wanted to learn about web hosting? Or do you want to start a new website and need hosting? Questions…
In today's digital world, the threat of DDoS attacks has become increasingly prevalent. These types of attacks have the power…