DNS (192.168.1.3) :
named.conf
include "/etc/bind/rndc.key";
acl reseauLocal {
192.168.1.0/24;
};
options {
directory "/var/cache/bind";
forwarders {
192.168.1.2;
};
allow-query {reseauLocal;};
allow-recursion {reseauLocal;};
};
controls {
inet 127.0.0.1 port 953
allow { 127.0.0.1; } keys { "Kdhcpupdate_rndc-key"; };
};
zone "." {
type hint;
file "/etc/namedb/db.root";
};
zone "toto.mondomaine.org" in {
type master;
file "/etc/namedb/db.toto.mondomaine.org";
allow-update{key Kdhcpupdate_rndc-key;};
notify yes;
};
zone "1.168.192.in-addr.arpa" in {
type master;
(…)