Petit problème du jour, bind9 ne reconnaît pas mon option controls :
named.conf :
include "/etc/bind/named.conf.options";
zone "." {
type hint;
file "/etc/bind/db.root";
};
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
include "/etc/bind/named.conf.local";
controls {
inet 127.0.0.1 allow {localhost; } keys { "rndc-key"; };
};
J’essaye de démarrer bind9 avec :
/etc/init.d/bind9 start
le daemon.log que j’obtiens:
Mar 12 14:05:49 debian-net named[4236]: starting BIND 9.3.4 -u bind
Mar 12 14:05:49 debian-net named[4236]: found 2 CPUs, using 2 worker threads
Mar 12 14:05:49 debian-net named[4236]: loading configuration from '/etc/bind/named.conf'
Mar 12 14:05:49 debian-net named[4236]: /etc/bind/named.conf:59: unknown option 'controls '
Mar 12 14:05:49 debian-net named[4236]: loading configuration: failure
Mar 12 14:05:49 debian-net named[4236]: exiting (due to fatal error)