hi,
ich verwalte eine kleine subdomain und wollte mir jetzt einen nameserver aufsetzen.
hier meine probleme
- - der nameserver selber löst nichts auf. in der resolv.conf habe ich die ip des nameservers(also die eigene) eingetragen
- - die auflösung ip->domain hat noch nen knick. bei einem
seht ihr, dass der server eine eigenartige form hat. ich bin mir aber nicht sicher, ob das falsch sein sollte
Code: Alles auswählen
C:\Dokumente und Einstellungen\wolfgang>nslookup dns.sub.domain.de Server: dns.sub.domain.de.123.123.123.in-addr.arpa Address: 123.123.123.7 Name: dns.sub.domain.de Address: 123.123.123.7
wolfgang
hier meine confs:
named.conf.options:
Code: Alles auswählen
options {
directory "/var/cache/bind";
forwarders {
123.123.4.1;
123.123.5.1;
};
forward first;
notify no;
};
Code: Alles auswählen
include "/etc/bind/named.conf.options";
logging {
category lame-servers { null; };
category cname { null; };
};
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";
Code: Alles auswählen
zone "sub.domain.de" IN {
type master;
file "/etc/bind/sub.domain.de";
};
zone "123.123.123.in-addr.arpa" IN {
type master;
file "/etc/bind/123.123.123";
};
Code: Alles auswählen
$TTL 1d
@ IN SOA dns.sub.domain.de. admin.sub.domain.de. (
2008122704
28800
7200
864000
86400
)
NS dns.sub.domain.de.
MX 10 mail.sub.domain.de.
$ORIGIN sub.domain.de.
mail A 123.123.123.5
dns A 123.123.123.7
ateam A 123.123.123.240
Code: Alles auswählen
$TTl 1d
@ IN SOA dns.sub.domain.de. admin.sub.domain.de. (
2008122704
8H
1H
1W
1D
)
NS dns.sub.domain.de.
MX 10 mail.sub.domain.de.
5 PTR mail.sub.domain.de
7 PTR dns.sub.domain.de