Hab da eine DNS Frage:
ich hab div. Domains über Schlundtech auf meinen Debian Rooty übertragen. Schlundtech sagt nach einigen kleineren Problemen in meiner ursprünglichen Config mittlerweile, dass DNS technisch alles ok sei. Wenn ich ns.schlund.de abfrage, stimmt auch alles.
Nicht so bei dns.denic.de und vor allem nicht bei meinem eigenen Server, wenn ich ihn über ns.meinserver.tld anspreche! Dort stehen dann jeweils noch die alten Einträge von meinem vorigen Hoster.
Wenn ich nun allerdings eine Abfrage auf meinem Server mittels localhost mache, stimmt es auch dort.
Kann mir da jemand weiterhelfen?
Noch einige Daten:
- Debian Rootserver
- Bind9
- DNS nach Toms Tutorial, leicht modifiziert, so dass als Nameserver immer ns.meinehauptdomain.tld steht.
Hier die named.conf:
Code: Select all
acl local {
        127.0.0/8;
        217.160.xxx.xxx;
};
acl secondary {
        195.20.224.97;
        195.20.225.34;
};
acl trusted { };
options {
        directory "/var/cache/bind";
        version "Secret";
        notify yes;
        auth-nxdomain no;    # conform to RFC1035
        allow-transfer { secondary; trusted; };
        allow-query { any; };
        allow-recursion { local; };
        forwarders { 195.20.224.234; 195.20.224.99; };
        forward first;
        listen-on port 53 { local; };
        listen-on-v6 { none; };
};
zone "." {
        type hint;
        file "/etc/bind/db.root";
};
zone "localhost" {
        type master;
        file "/etc/bind/db.local";
        allow-query { local; };
};
zone "127.in-addr.arpa" {
        type master;
        file "/etc/bind/db.127";
        allow-query { local; };
};
zone "0.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0";
        allow-query { local; };
};
zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
        allow-query { local; };
};
zone "domain.tld" {
        type master;
        file "/var/cache/bind/default.hosts";
        allow-query { any; };
};Hier die default.hosts:
Code: Select all
$ttl 1W
@       IN      SOA     ns.meinehauptdomain.tld. hostmaster.meinehauptdomain.tld. (
                2003051402      ;serial
                8H              ;refresh
                2H              ;retry
                1W              ;expiry
                1h)             ;minimum
        IN      NS      ns.meinehauptdomain.tld.
        IN      NS      ns.schlund.de.
        IN      MX      80 mail
        IN      A       217.160.xxx.xxx
        IN      MX      80 mail
*       IN      A       217.160.xxx.xxx
        IN      MX      80 mail
ns      IN      A       217.160.xxx.xxx
mail    IN      A       217.160.xxx.xxx
        IN      MX      80 mail