Page 1 of 1

Warn Meldung vom Bind

Posted: 2003-05-16 17:39
by mastertec

Code: Select all

May 15 22:09:54 p15112117 /usr/sbin/named[737]: client 217.6.37.77#2759: zone transfer denied

Hallo kurze Hilfe bräuchte ich :-)

Habe wie immer über domaindiscount ne Domain bestellt:

wahltalbahn.de

soweit alles OK. bei den Nameservern habe ich meinen
ns.virtuserv.biz und den von Domaindiscount eingetragen, wie immer.
ns1.domaindiscount.net

und auch A meine IP

auf ein DIG antwortet mein NS korrekt
auf ein DIG antwortet deren NS korrekt

Nun warte ich seit 3 Tagen das die Domain auf meinen Server konnectiert wird aber nix passiert :-( .
Nun habe ich in der var/log/warn obige Meldung gefunden
das ist die IP vom Domaindiscount NS

Was läuft da schief , bisher ging das Ohne Probleme
Bin wie immer dankbar für eure Hilfe

Alex

Re: Warn Meldung vom Bind

Posted: 2003-05-16 17:53
by kase
Hast du die IP von denen bei allow-transfer eingetragen ? in der named.conf

Hi

Posted: 2003-05-16 18:18
by mastertec
Danke hab es auch gerade im forum gefunden.
HAbe ich jetzt gemacht , mal sehen wenn ich jetzt nen Tag warte was passiert :-)
Wenn es funzt melde ich mich nochmal OK

Danke dir

Alex

Re: Warn Meldung vom Bind

Posted: 2003-06-04 11:52
by deanwickert
Also ich erhalte eine ähnliche Fehlermeldung:

Code: Select all

Jun  4 03:18:11 p15134852 /usr/sbin/named[12089]: client 195.20.224.97#52424: zone transfer denied
Aber normalerweise müsste meine named.conf richtig sein. Oder habe ich mich da irgendwo vertippt? Kann mir jemand helfen?
Das ist garantiert wieder irgend eine Kleinigkeit die ich übersehen habe! :?

Code: Select all

        # The next three statements may be needed if a firewall
        # stands between the local server and the internet.

        #query-source address * port 53;
        #transfer-source * port 53;
        #notify-source * port 53;

        # The allow-query record contains a list of networks or
        # IP-addresses to accept and deny queries from. The
        # default is to allow queries from all hosts.

        #allow-query { 127.0.0.1; };

        # If notify is set to yes (default), notify messages are
        # sent to other name servers when the the zone data is
        # changed. Instead of setting a global 'notify' statement
        # in the 'options' section, a separate 'notify' can be
        # added to each zone definition.

        notify no;

        # erlaubt das zone-update zu ns.schlund.de und ns2.schlund.de

        allow-transfer { 195.20.244.97; 195.20.225.34; };

};

# The following three zone definitions don't need any modification.
# The first one defines localhost while the second defines the
# reverse lookup for localhost. The last zone "." is the
# definition of the root name servers.

zone "localhost" in {
        type master;
        file "localhost.zone";
};

zone "0.0.127.in-addr.arpa" in {
        type master;
        file "127.0.0.zone";
};

zone "." in {
        type hint;
        file "root.hint";
};

# You can insert further zone records for your own domains below.


zone "191.160.217.in-addr.arpa" in {
        type master;
        file "217.160.191.zone";
};

zone "wserv03.de" in {
        type master;
        file "wserv03.zone";
};
[/quote]