Erstmal vielen dank an alle, die hier so eifrig Probleme lösen. Das ist echt genial !
Nun zum Problem: Ich hab einen Nameserver (Bind9 @ Suse8.1) noch dem HowTo von TOM aufgesetzt. Das hat soweit auch Prima geklappt :-D - mit der ersten Domain.
Jetzt wollte ich eine weitere Domain hinzufügen und bekomme immer Fehlermeldungen, wenn ich ihn meinen Server als Nameserver bei Providerdomain eintrage. Leider bin ich noch nicht ganz durch die Nameservergeschichte durchgestiegen, deswegen frag ich hier auch nach
Configfiles & die Fehlermeldung & Sonstiges:
ServerIP: 100.0.0.1
Erste Domain, die ich eingetragen habe und die Funktioniert: erstedomain.dom
Zweite Domain, die nicht geht: neuedomain.dom
named.conf
Code: Select all
acl local {
127.0.0/8;
100.0.0.1;
};
acl secondary {
195.20.224.97;
195.20.225.34;
};
options {
directory "/var/named";
#pid-file "/var/run/bind/named.pid";
version "My version is so secret that I even don`t know what I`m running on";
notify yes;
auth-nxdomain no; # conform to RFC1035
allow-transfer { secondary; };
allow-query { any; };
};
zone "." {
type hint;
file "root.hint";
};
zone "localhost" {
type master;
file "localhost.zone";
allow-query { local; };
};
zone "0.0.100.in-addr.arpa" {
type master;
file "100.0.0.zone";
allow-query { local; };
};
zone "erstedomain.dom" {
type master;
file "default.zone";
allow-query { any; };
};
zone "neuedomain.dom" {
type master;
file "default.zone";
allow-query { any; };
};
100.0.0.1.zone
Code: Select all
$TTL 1W
@ IN SOA ns.hauptdomain.dom. root.hauptdomain.dom. (
2003030501 ; serial
8H ; refresh
2H ; retry
1W ; expiry
11h) ; minimum
IN NS ns
IN NS ns.schlund.de.
64 IN PTR hauptdomain.dom.
default.zone
Code: Select all
$ttl 38400
@ IN SOA ns hostmaster (
2003022401
10800
3600
604800
38400 )
@ IN NS ns
@ IN NS ns.schlund.de.
@ IN A 100.0.0.1
* IN A 100.0.0.1
@ IN MX 80 mx
* IN MX 80 mx
Code: Select all
; <<>> DiG 9.1.3 <<>> @localhost neuedomain.dom
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 29025
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
;; QUESTION SECTION:
;neuedomain.dom. IN A
;; ANSWER SECTION:
neuedomain.dom. 38400 IN A 100.0.0.1
;; AUTHORITY SECTION:
neuedomain.dom. 38400 IN NS ns.neuedomain.dom.
neuedomain.dom. 38400 IN NS ns.schlund.de.
;; ADDITIONAL SECTION:
ns.schlund.de. 24488 IN A 195.20.224.97
ns.neuedomain.dom. 38400 IN A 100.0.0.1
;; Query time: 1 msec
;; SERVER: 127.0.0.1#53(localhost)
;; WHEN: Fri Mar 21 09:33:24 2003
;; MSG SIZE rcvd: 119
Code: Select all
The domain neuedomain.dom has NOT been updated. The following errors were detected: Server ns.neuedomain.dom. not in NS set! Server ns.hauptdomain.dom. not known by server ns.hauptdomain.dom.! Server ns.neuedomain.dom. not in NS set! Server ns.hauptdomain.dom. not known by server ns.schlund.de.!