It’s a small thing, but someone might feel it to be useful of running a public DNS like google has 8.8.8.8. You actually can build a recursive DNS and serve to the world (instead to your network user only! 🙂 )
Install Bind
apt install bind9 bind9utils -y
It’s pretty simple, all you need is the have your bind package installed and some very basic configurations like below-
nano /etc/bind/named.conf
include "/etc/bind/named.conf.options"; include "/etc/bind/named.conf.local"; include "/etc/bind/named.conf.default-zones";
nano /etc/bind/named.conf.options
Continue reading “Build an openDNS recursive resolver DNS using Bind” »