ich bekomm meinen dns server (bind9) nicht mehr zum laufen und find den fehler nicht. eventuell koennt findet ja hier jemand was ...
hier mal meine configs:
named.conf
Code: Alles auswählen
options {
directory "/etc/bind/";
auth-nxdomain no; # conform to RFC1035
forwarders {
172.30.0.1;
};
};
key "localnet" {
algorithm hmac-md5;
secret "xxx";
};
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/zones/root.hints";
};
zone "localhost" {
type master;
file "/etc/bind/zones/localhost";
}
zone "0.0.127" {
type master;
file "/etc/bind/zones/127.0.0";
}
zone "l-c-f.lan" {
type master;
file "/etc/bind/zones/l-c-f.lan";
allow-update {
key "xxx";
};
};
zone "30.172.in-addr.arpa" {
type master;
file "/etc/bind/zones/172.30";
allow-update {
key "xxx"; };
};
Code: Alles auswählen
$TTL 3D
@ IN SOA l-c-f.lan. root.l-c-f.lan. (
20021121 ; Serial
28800 ; Refresh
7200 ; Retry
604800 ; Expire
86400) ; Minimum TTL
NS l-c-f.lan.
1 PTR localhost.
Code: Alles auswählen
$TTL 3D
@ IN SOA l-c-f.lan. root.l-c-f.lan. (
199609206 ; serial, todays date + todays serial #
8H ; refresh, seconds
2H ; retry, seconds
4W ; expire, seconds
1D ) ; minimum, seconds
NS ns1.l-c-f.lan.
NS ns2.l-c-f.lan.
MX 10 l-c-f.lan. ; Primary Mail Exchanger
; Servers
localhost A 127.0.0.1
gateway A 172.30.0.1
ns1 A 172.30.0.1
ns2 A 172.30.1.1
ftp A 172.30.2.1
www A 172.30.2.2
mail A 172.30.1.1
smtp A 172.30.1.1
mp3 A 172.30.2.2
; Workstations
danke schonmal.