da ich noch nicht so lange mit debian arbeite, wäre es sehr nett, wenn ihr mir helfen könntet.
Zum Thema:
Ich richte zur Zeit ein Debianserver mit DHCP, DNS, und später noch Samba ein.
Ich bekomme den DNS-Server einfach nicht zum starten, im Syslog steht, dass in der /etc/bind/named.conf und .local der Befehl "zone" unbekannt ist. Hier einmal meine named.conf:
Code: Alles auswählen
include "/etc/bind/rndc.key";
controls {
inet 127.0.0.1 allow {localhost; } keys {rndc-key; };
};
include "/etc/bind/named.conf.options";
zone "." {
type hint;
file "/etc/bind/db.root";
};
zone "localhost" {
type master;
file "/etc/bind/db.local";
allow-update { key "rndc-key"; };
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
allow-update { key "rndc-key"; };
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
allow-update { key "rndc-key"; };
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
allow-update { key "rndc-key"; };
};
include "/etc/bind/named.conf.local";
Gruß freewayy