ich habe seit langem schon lokal einen BIND9 (DNS-)Server am laufen. Erst für jede Domain die mir gehört der Primary DNS Server. Ich muss sagen es funktioniert alles wunderbar, seblst der Zonentransfer zu einer Windowsmaschine, könnte nicht besser laufen.
Nur ein Problem, da komme ich absolut gar nicht weiter und das auch schon seit sehr langer Zeit. Ich bin fröhlich und gehe in die /etc/resolv.conf und trage als ersten Nameserver "127.0.0.1" (also meinen lokalen DNS-Server). Der Antwortet auch super, für all die Zonen die er verwaltet, bzw. wo er Zonefiles für hat. Jetzt meine Frage, warum macht der das nicht für Domains, die er nicht im Zonefile hat?
Ich habe Forwarders eingetragen aber es will einfach nciht funktionieren, selbst wenn ich "Forward Only;". Ich verstehe das nicht und hoffe das mir hier einer helfen kann, langsam verzweifele ich doch sehr start.
MFG
Higidi
PS: Meine Conf vielleicht noch
Code: Alles auswählen
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
options {
directory "/var/cache/bind";
pid-file "/var/run/bind/named.pid";
notify yes;
allow-transfer {195.137.213.164; 81.169.148.38;};
allow-query { any; };
listen-on-v6 { none; };
listen-on port 53 { 127.0.0.1; 81.169.168.51; };
auth-nxdomain no; # conform to RFC1035
recursion yes;
allow-recursion { 195.137.213.164; 81.169.148.38;};
forwarders {81.169.163.106; 81.169.163.104;};
};
// 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";
};
// zone "com" { type delegation-only; };
// zone "net" { type delegation-only; };
// From the release notes:
// Because many of our users are uncomfortable receiving undelegated answers
// from root or top level domains, other than a few for whom that behaviour
// has been trusted and expected for quite some length of time, we have now
// introduced the "root-delegations-only" feature which applies delegation-only
// logic to all top level domains, and to the root domain. An exception list
// should be specified, including "MUSEUM" and "DE", and any other top level
// domains from whom undelegated responses are expected and trusted.
// root-delegation-only exclude { "DE"; "MUSEUM"; };
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
## CONFIXX
Include "/etc/bind/named.confixx";
## /CONFIXX