Problem mit Confixx und DNS

Bind, PowerDNS
Post Reply
tobi
Posts: 121
Joined: 2002-08-02 20:58
Location: München
 

Problem mit Confixx und DNS

Post by tobi »

hi,

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; };
Es sieht also so aus:

Code: Select all

zone "domain.de" {
   type master;
   file "/var/named/confixxdns/domain.de.db";
};
Wenn ich den fehlenden Eintrag hinzufüge klappt es. Nur löscht ihn Confixx beim nächsten lauf wieder raus! Soviel ich weis gibt es kein named template, oder? Also muß ich vermutlich in meiner named.conf datei was ändern damit ich den zusatz nicht brauche meine named.conf sieht so aus:

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";
## /CONFIXX
Kann irgendjemand mir helfen

Danke

tobi
ronmcd
Posts: 10
Joined: 2003-02-13 13:10
 

Re: Problem mit Confixx und DNS

Post by ronmcd »

ns.schlund.de kennt also domain.de nicht bzw. beantwortet
dazu keine Fragen da die Zone nicht übertragen wurde?
Poste doch einfach einmal die Fehlermeldung von Providerdomain.

Gruß,
Ron
Matthias Diehl
Posts: 315
Joined: 2002-09-24 13:26
 

Re: Problem mit Confixx und DNS

Post by Matthias Diehl »

Code: Select all

        allow-query { 127.0.0.1; 217.160.109.218;195.20.224.97; };
ändern in

Code: Select all

        allow-query { any; };
tobi
Posts: 121
Joined: 2002-08-02 20:58
Location: München
 

Re: Problem mit Confixx und DNS

Post by tobi »

:oops: ich sag jetzt nur soviel, ich habs mir ja fast gedacht.
Asche über mein Haupt, und danke

tobi
cotterley
Posts: 11
Joined: 2003-06-07 12:38
 

Re: Problem mit Confixx und DNS

Post by cotterley »

Steht er dann nicht offen wie ein Scheunentor?
captaincrunch
Userprojekt
Userprojekt
Posts: 7066
Joined: 2002-10-09 14:30
Location: Dorsten
Contact:
 

Re: Problem mit Confixx und DNS

Post by captaincrunch »

Nein, er tut genau das, was er soll : externe Anfragen beantworten. Natürlich kann man dazu auch "offen wie ein Scheunentor" sagen, aber das klingt so böse ... ;)
DebianHowTo
echo "[q]sa[ln0=aln256%Pln256/snlbx]sb729901041524823122snlbxq"|dc
Post Reply