DNS Debian

Fermé
Super_carotte Messages postés 1419 Date d'inscription mardi 8 janvier 2008 Statut Membre Dernière intervention 27 janvier 2015 - 23 févr. 2009 à 10:53
Super_carotte Messages postés 1419 Date d'inscription mardi 8 janvier 2008 Statut Membre Dernière intervention 27 janvier 2015 - 23 févr. 2009 à 15:52
Bonjour,
J'ai un prob avec mon DNS, ça ne fonctionne toujours pas.
3° tuto que je suis et toujours l'echec.
Nom de domaine: testganesha.lan
dans firefox je tape "ns.testganesha.lan" et ça me retourne un 404.
Je n'y connait pas grand chose en DNS. Est-ce correct comme test de mettre ça dans l'URL?
Merci a vous si vous trouvez le probleme.

Voici les 3 fichiers modifiés:

// 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

include "/etc/bind/named.conf.options";

// 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 "testganesha.lan" {
type master;
file "/etc/bind/db.testganesha.lan";
};

zone "18.168.192.in-addr-arpa" {
type master;
file "/etc/bind/db.192.168.18";
};



// 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"; };

include "/etc/bind/named.conf.local";


2° FICHIER MODIFIE:
$TTL 3h
@ IN SOA ns.testganesha.lan. benjamin.testganesha.lan. (
2009012001
8H
2H
1W
1D )

@ IN NS ns.testganesha.lan

ns A 192.168.18.141
client1 A 192.168.18.142


3° FICHIER MODIFIE:
$TTL 3h
@ IN SOA ns.testganesha.lan. benjamin.testganesha.lan. (
2005012001
8H
2H
1W
1D )

@ IN NS ns.testganesha.lan.

$ORIGIN 18.168.192.in-addr-arpa.
141 IN PTR ns.testganesha.lan.
142 IN PTR client1.testganesha.lan.
A voir également:

2 réponses

Salut,
Tu n'a pas compris le principe d'un serveur DNS.
Il est fait pour faire le lien entre les adresses IP (89.210.33.222 par exemple) et les noms des postes, pas pour servir de serveur web.
0
Super_carotte Messages postés 1419 Date d'inscription mardi 8 janvier 2008 Statut Membre Dernière intervention 27 janvier 2015 127
23 févr. 2009 à 15:52
"Il est fait pour faire le lien entre les adresses IP (89.210.33.222 par exemple) et les noms des postes" ça je le savai, je pensai qu'en mettant le nom du poste dans l'URL ça me ferait "quelque chose" mais bon c'est un nslookup qu'il faut faire.

ça fait 4 machine virtuel que je supprime pour essayer de faire un DNS qui tourne, j'en ai marre...
0