Mein erster Beitrag hier, nach stundenlangem lesen...
Ich hab letzte Woche einen Entry-Server von Hetzner (SuSE 8.1, BIND 9) bekommen und möchte jetzt meine Domains von server4free umziehen. Bei server4free hab ich auch schon (Dank dem guten FAQ) einen NS (BIND 8 ) ans laufen bekommen, der auch ohne Probleme läuft.
Jetzt hab ich vorgestern bei PD ein Update des Nameservers gemacht, was auch so ohne Probleme durchgelaufen ist.
Allerdings habe ich jetzt in meinen LogFiles den Eintrag
Code: Select all
linux /usr/sbin/named[32366]: client 195.20.224.97#49342: query denied
Hier meine named.conf
Code: Select all
# Copyright (c) 2001 SuSE GmbH Nuernberg, Germany
#
# Author: Frank Bodammer <feedback@suse.de>
#
# /etc/named.conf
#
# This is a sample configuration file for the name server BIND9.
# It works as a caching only name server without modification.
#
# A sample configuration for setting up your own domain can be
# found in /usr/share/doc/packages/bind9/sample-config.
#
# A description of all available options can be found in
# /usr/share/doc/packages/bind9/misc/options.
options {
directory "/var/named";
forwarders { 195.20.224.234; 195.20.224.99; };
# forward first;
listen-on port 53 { 127.0.0.1; 213.133.108.18; };
listen-on-v6 { none; };
allow-transfer { 195.20.224.97; 195.20.225.34; };
allow-query { 127.0.0.1; 213.133.108.18; };
notify yes;
auth-nxdomain no;
allow-recursion { 127.0.0.1; 213.133.108.18; };
};
# 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 "r-i-p-p.de" {
type master;
file "/var/named/r-i-p-p.de.zone";
allow-query { any; };
};
Mein Zonefile
Code: Select all
$ttl 38400
@ IN SOA ns.r-i-p-p.de. webmaster.r-i-p-p.de. (
20030305301
10800
3600
604800
38400 )
IN NS ns
IN NS ns.schlund.de.
IN MX 10 mx
IN A 213.133.108.18
* IN A 213.133.108.18
Was hab ich falsch gemacht? "Allow query" ist ja drin....
EDIT: Falls hier im Forum irgendwo die Lösung ist, bitte lasst es mich wissen. Die Suche hat mich nicht weitergebracht