Ich habe BIND9 installiert und versucht zu konfigurieren. Ich will folgendes erreichen. Ich habe für meine .ch Domain keinen Nameserver und will diesen nun auf meinem eigenen Server betreiben...
Wie auch immer. Ich habe bei SWITCH meinen Server als primärer Nameserver (ohne sekundären) eingetragen, allerdings funktioniert es nicht.. SWITCH sagt beim Nameserver test:
Test: Error performing delegation check
==> generic
Hier sind meine Config Files:
/etc/bind/named.conf
Code: Alles auswählen
include "/etc/bind/named.conf.options";
zone "." {
type hint;
file "/etc/bind/db.root";
};
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 "q-lan.ch" in {
type master;
file "/etc/bind/default.zone";
allow-query { any; };
};
include "/etc/bind/named.conf.local";
/etc/bind/named.conf.options
Code: Alles auswählen
options {
directory "/var/cache/bind";
pid-file "/var/run/bind/named.pid";
notify yes;
listen-on port 53 { 127.0.0.1; 85.25.130.172; };
listen-on-v6 { none; };
allow-query { 127.0.0.1; 85.25.130.172; };
allow-recursion { 127.0.0.1; 85.25.130.172; };
auth-nxdomain no; # conform to RFC1035
};
Code: Alles auswählen
$TTL 1W
@ IN SOA ns root (
2006020605 ; serial
8H ; refresh
2H ; retry
1W ; expiry
11h) ; minimum
IN NS ns
IN MX 80 mail
IN A 85.25.130.172
IN MX 80 mail
* IN A 85.25.130.172
IN MX 80 mail
ns IN A 85.25.130.172
; Fuer die Subdomain NS wird kein MX Eintrag angelegt !
mail IN A 85.25.130.172
IN MX 80 mail