BIND – Configure master/slave zone

Published on Author gryzli

Below is some simple configuration for running DNS Master/Slave zone.   We assume the following IP configuration: DNS Master : 192.168.1.1 DNS Slave : 192.168.1.2 DNS Zone: domain.com   Master Server Configuration Master server’s named.conf must contain something like this: view “external” { allow-transfer {none;}; zone “.” IN { type hint; file “named.ca”; }; include… Continue reading BIND – Configure master/slave zone

Centos 6 – BIND [chroot] fresh install

Published on Author gryzli

Here I will describe some basic steps for doing fresh install of chrooted bind version under Centos 6.     Install the rpm packages yum install bind bind-chroot bind bind-libs   Move the necessary directories mv /var/named/named.* /var/named/chroot/var/named/ mv /var/named/{data,dynamic} /var/named/chroot/var/named/ This part is very important, cause if you don’t do this, bind won’t start.… Continue reading Centos 6 – BIND [chroot] fresh install