Bonjour Niloo,
Dans le named.conf j’ai ça :
[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 “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 “ndd.com” IN {
type master;
notify yes;
allow-transfer { 88.191.254.7; };
file “/etc/bind/db.ndd.com”;
};
zone “01.00.191.88.in-addr.arpa” {
type master;
file “/etc/bind/db.ndd.com.rev”;
};
// 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”;[/code]
au passage je précise que j’avais une petite erreur de frappe dans ce fichier j’avais mis un ndd.xom au lieu de .com mais apparement ça ne change rien à mon problème!
et sinon pour le db.ndd.com j’ai ceci :
[code]$TTL 604800
@ IN SOA sd-xxxxx.dedibox.fr. root.localhost. (
20071111 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
@ IN NS sd-xxxxx.dedibox.fr.
@ IN NS nssec.dedibox.fr.
@ IN MX 10 mail.ndd.com.
ndd.com. IN A 88.191.00.01
ns IN A 88.191.00.01
mail IN A 88.191.00.01
www CNAME ndd.com.
ftp CNAME ndd.com.
[/code]
Voilà Monsieur
une idée de ma bétise ?
Nb : sd-xxxxx est un numéro fictif de ma dedibox
ndd.com est un nom de domaine fictif
88.191.00.01 est une adresse fictive
Cuore