ich habe hier ein Testsystem (Hostname = debian, IP= 192.168.2.105) aufgesetzt, das per DHCP den Wind.-Clients die Netzwerkkonf. übermittelt.
Daneben läuft noch mein "Produktiv-Server" (Hostname = linux, IP= 192.168.2.100 statisch).
IP Adressbereich: 192.168.2.0/255.255.255.0
Gebe ich bei den Clients die Hostnamen "debian" oder "linux" zum Verbinden an, klappt alles. Hänge ich aber die Domäne an den Hostnamen dran (debian.zuhause.xx oder linux.zuhause.xx) kann der Name von Bind9 nicht aufgelöst werden.
Inhalt der named.conf:
Inhalt der named.conf.local:include "/etc/bind/rndc.key";
controls {
inet 127.0.0.1 allow {localhost; } keys {rndc-key; };
};
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";
};
include "/etc/bind/named.conf.local";
Inhalt der named.conf.options:zone "zuhause.xx" {
type master;
file "/etc/bind/db.zuhause";
allow-update { key "rndc-key"; };
notify yes;
};
zone "2.168.192.in-addr-arpa" {
type master;
file "/etc/bind/db.192.168.2";
allow-update { key "rndc-key"; };
notify yes;
};
Inhalt der db.zuhause:options {
directory "/var/cache/bind";
listen-on port 53 { 127.0.0.1; 192.168.2.105; };
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};
Inhalt der db.192.168.2:$TTL 86400
@ IN SOA localhost. root.localhost. (
2007122201 ; serial
10800 ; refresh (seconds)
3600 ; retry
604800 ; expire
86400 ; minimum
)
IN NS debian.zuhause.xx.
IN MX 10 mail.zuhause.xx.
localhost IN A 127.0.0.1
@ IN A 192.168.2.105
www IN A 192.168.2.105
linux IN A 192.168.2.100
loopback IN CNAME localhost
$ORIGIN zuhause.xx.
Inhalt der resolv.conf:$TTL 14400
@ IN SOA localhost. root.debian.zuhause.xx. (
2007122301 ; serial
10800 ; refresh
3600 ; rety
604800 ; expire
86400 ; minimum
)
NS localhost.
1 PTR debian.zuhause.xx.
Ich muß zugeben, daß ich bei der Konfiguration dieser Dateien nicht wirklich den Durchblick habe. Die diversen Tuts widersprechen sich zum Teil.order bind,hosts
search zuhause.xx
nameserver 192.168.2.105
Aber vielleicht weiß ja jemand Rat.
Gruß
Andreas