25 lines
638 B
Markdown
25 lines
638 B
Markdown
Bind9 Master and Slave
|
|
======================
|
|
|
|
1. Install bind9 service as well as some convinient utilities on master and slave servers
|
|
```bash
|
|
apt-get update
|
|
apt-get install bind9 dnsutils
|
|
```
|
|
|
|
2. create the zone directory on the master server
|
|
```bash
|
|
mkdir /etc/bind/master
|
|
chown bind.bind /etc/bind/master
|
|
```
|
|
|
|
2. Allow zone transfer on master by adding the following line to `named.conf.options`
|
|
```bash
|
|
allow-transfer { slave-ip; };
|
|
```
|
|
|
|
3. Addlow notifications on the slave server by adding the following line to `named.conf.options`
|
|
```bash
|
|
allow-notify { master-ip; };
|
|
```
|