DNS-Formatfehler im Syslog, wie kann ich ihn debuggen?

DNS-Formatfehler im Syslog, wie kann ich ihn debuggen?

syslogBeim Auflösen einer Domäne, für die ich auch den DNS besitze, wird mir eine Fehlermeldung angezeigt .

Nov 24 21:51:55 moo named[4075]: DNS format error from 192.227.143.105#53 resolving bostonyoungentrepreneurs.com/NS for client 127.0.0.1#65133: invalid response
Nov 24 21:51:55 moo named[4075]: DNS format error from 192.227.143.105#53 resolving bostonyoungentrepreneurs.com/AAAA for client 127.0.0.1#39972: invalid response

Gibt es eine Möglichkeit, dies richtig zu debuggen und herauszufinden, warum es eine ungültige Antwort ist?

Antwort1

Ja, höchstwahrscheinlich durch Ausführen von:

dig ns problematic-domain.com @127.0.0.1
dig aaaa problematic-domain.com @127.0.0.1

oder

host -t ns problematic-domain.com 127.0.0.1
host -t aaaa problematic-domain.com 127.0.0.1

Meiner Ansicht nach liegt das Problem mit dieser Domäne darin begründet, dass zwei für diese Domäne zuständige Nameserver dieselbe IP-Adresse haben wie der betreffende Datensatz:

; <<>> DiG 9.8.4-P2 <<>> ns problematic-domain.com. +noall +answ
;; global options: +cmd
problematic-domain.com. 172265 IN NS ns1.problematic-domain.com.
problematic-domain.com. 172265 IN NS ns2.problematic-domain.com.
ns1.problematic-domain.com. 172265 IN A   192.227.143.105
ns2.problematic-domain.com. 172265 IN A   192.227.143.105

verwandte Informationen