microsoft | Bonjour à tous,
Tout d'abord je précise que mon pseudo n'est pas un appel au troll
Voilà je m'initie à la configuration réseau sous linux et je rencontre un petit problème avec bind.
J'ai un poste client.mondomaine.fr (ubuntu/192.168.0.2) et un serveur.mondomaine.fr (debian/192.168.0.1), ils se pinguent bien via l'ip, mais je n'arrive pas à pinguer ni client, ni client.mondomaine.fr depuis mon serveur.
Voici mon fichier named.conf:
Code :
- // 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 "mondomaine.fr." {
- type master;
- file "/etc/bind/db.mondomaine.fr";
- };
- 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 "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";
|
et le fichier db.mondomaine.fr que j'ai créé:
Code :
- $TTL 604800
- @ IN SOA mondomaine.fr (
- 1 ; Serial
- 604800 ; Refresh
- 86400 ; Retry
- 2419200 ; Expire
- 604800 ) ; Negative Cache TTL
- ;
- @ IN NS serveur
- @ IN NS serveur.mondomaine.fr
- client IN A 192.168.0.2
- deb IN CNAME client
|
Si quelqu'un pouvais jetter un ptit coup d'oeil sur ces fichiers ce serait sympa .
merci a+
---------------
Il [e2fsck] a bien démarré, mais il m'a rendu la main aussitot en me disant "houlala, c'est pas beau à voir votre truc, je préfèrerai que vous teniez vous même la tronçonneuse"
|