bind9 probleme

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
littlewurm
Beiträge: 14
Registriert: 13.07.2004 21:36:08

bind9 probleme

Beitrag von littlewurm » 30.09.2004 23:13:20

Hallo ich einen root vserver mit debian woody drauf mit bind9.

Ich hab auch denn bind eingerichtet aber er kann die domaine nicht auflösen.

Kann mir bitte jemant schnell helfen:

Namen.conf

// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//

options {
directory "/var/cache/bind";

// If there is a firewall between you and nameservers you want
// to talk to, you might need to uncomment the query-source
// directive below. Previous versions of BIND always asked
// questions using port 53, but BIND 8.1 and later use an unprivileged
// port by default.

// query-source address * port 53;

// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.

// forwarders {
// 0.0.0.0;
// };

auth-nxdomain no; # conform to RFC1035

};

// 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 "littlewurm.org" {
type master;
file "/etc/bind/littlewurm.org.zone";
};




Datei: littlewurm.de.zone

;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA ns.littlewurm.de (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns.littlewurm.de
@ IN NS ns.dlin.de


@ IN MX mail.littlewurm.de



IN A 217.20.114.200
ns IN A 217.20.114.200
mail IN A 217.20.114.200
www IN A 217.20.114.200


Wür mich über eine schnelle andwort freuen weil es sich nen root server hanttelt.

Benutzeravatar
Raoul
Beiträge: 1435
Registriert: 20.05.2003 00:16:35
Lizenz eigener Beiträge: neue BSD Lizenz
Kontaktdaten:

Beitrag von Raoul » 01.10.2004 02:07:52

In der named.conf ist die Rede von littlewurm.org, in der Zonendatei von littlewurm.de. Ist das Absicht? Die .org gibt's doch gar nicht, oder?

Code: Alles auswählen

host littlewurm.org
Host littlewurm.org not found: 3(NXDOMAIN)
Raoul

Code: Alles auswählen

grep -ir fuck /usr/src/linux

littlewurm
Beiträge: 14
Registriert: 13.07.2004 21:36:08

Beitrag von littlewurm » 01.10.2004 10:20:29

nein das wahr ein schreibfehler von mir. es soll .de sein.

wenn ich es aber in der named.conf auch ender auf littlewurm.de und denn bind neu starte geht es immer noch nit. stimmt denn die zonen file?

Benutzeravatar
hacman
Beiträge: 209
Registriert: 24.04.2004 13:05:48
Wohnort: Hamburg
Kontaktdaten:

Beitrag von hacman » 01.10.2004 10:23:35

Das is sich ja nen Crosspost:
http://www.debianforum.de/forum/viewtopic.php?t=32525
Pfui, bäh...
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GE/CS d- s++:+ a- C+++ USL++++ P+ L+++ E--- W+++ N++ o-- K w--- O- M- V-- PS++ PE Y+ PGP++ t++ 5++ X- R !tv b+++ DI++ D++ G e+++ h-- r++ y?
-----END GEEK CODE BLOCK-----

Friesi
Beiträge: 582
Registriert: 07.07.2003 20:40:11
Wohnort: Stromberg
Kontaktdaten:

Beitrag von Friesi » 01.10.2004 11:23:11

Wegen "Crosspost" nur nen Link zu nem Howto:
http://www.linuxhaven.de/dlhp/HOWTO/DE-DNS-HOWTO.html

Wenn du dich damit auseinander gesetzt hast, kannst nochmal fragen.

Antworten