ich hab folgendes Problem, wenn ich eine neue Domain per Confixx in meinem Nameserver eintragen lasse wird dieser bei providerdomain abgeleht. Ich weis eigentlich auch schon die ursache, in dem file "named.confixx" fehlt der eintrag:
Code: Select all
   allow-query { any; };Code: Select all
zone "domain.de" {
   type master;
   file "/var/named/confixxdns/domain.de.db";
};Code: Select all
options {
        directory "/var/named";
        forwarders { 195.20.224.234; 195.20.224.99; };
        forward first;
        listen-on port 53 { 127.0.0.1; 217.160.109.218; };
        listen-on-v6 { none; };
        allow-transfer { 195.20.224.97; };
        allow-query { 127.0.0.1; 217.160.109.218; 195.20.224.97; };
        notify yes;
        auth-nxdomain no;
        allow-recursion { 127.0.0.1; 217.160.109.218; };
};
// prime the server with knowledge of the root servers
zone "." {
        type hint;
        file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
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";
};
// add entries for other zones below here
## CONFIXX
Include "/etc/bind/named.confixx";
## /CONFIXXDanke
tobi
