12345678910111213141516171819202122 |
- include "/etc/bind/keys/keys.conf";
- options {
- directory "/var/bind";
- listen-on { any; };
- listen-on-v6 { none; };
- allow-transfer { none; };
- allow-update { none; };
- recursion no;
- allow-query { any; };
- };
- zone "slurm.ch" IN {
- type master;
- notify no;
- file "/etc/bind/zones/db.slurm.ch.zone";
- update-policy { grant home.slurm.ch. name home.slurm.ch. A; };
- };
|