Avec la version 9 de named, il est possible de faire reponse différente suivant l'adresse qui demande, il faut utiliser l'option view:
Voici un extrait du named.conf que j'utilise
view "local" {
match-clients { 192.168.0.0/24; 127.0.0.1; } ;
zone "." {
type hint;
file "root.hints";
};
zone "0.0.127.in-addr.arpa" {
notify no;
type master;
file "pz/127.0.0";
forwarders{};
};
zone "tutur.com" {
notify no;
type master;
file "pz/tutur.com.local";
forwarders{};
};
zone "0.168.192.in-addr.arpa" {
notify no;
type master;
file "pz/192.168.0";
forwarders{};
};
};
view "externe" {
zone "." {
type hint;
file "root.hints";
};
zone "tutur.com" {
notify yes;
type master;
file "pz/tutur.com.extern";
allow-transfer { 80.67.173.196; };
zone-statistics yes;
forwarders{};
};
};
les fichiers pz/tutur.com.local et ps/tutur.com.externe sont different.
Le resultat se voit facilement:
#host mail.tutur.com
mail.tutur.com is an alias for belledonne.tutur.com.
belledonne.tutur.com has address 192.168.0.4
#host mail.tutur.com ns.nerim.net
mail.tutur.com is an alias for chartreuse.tutur.com.
chartreuse.tutur.com has address 62.212.107.174
[^] # Re: Petite question pour mon routeur..
Posté par Tutur . En réponse au journal Petite question pour mon routeur... Évalué à 1.
Voici un extrait du named.conf que j'utilise
view "local" {
match-clients { 192.168.0.0/24; 127.0.0.1; } ;
zone "." {
type hint;
file "root.hints";
};
zone "0.0.127.in-addr.arpa" {
notify no;
type master;
file "pz/127.0.0";
forwarders{};
};
zone "tutur.com" {
notify no;
type master;
file "pz/tutur.com.local";
forwarders{};
};
zone "0.168.192.in-addr.arpa" {
notify no;
type master;
file "pz/192.168.0";
forwarders{};
};
};
view "externe" {
zone "." {
type hint;
file "root.hints";
};
zone "tutur.com" {
notify yes;
type master;
file "pz/tutur.com.extern";
allow-transfer { 80.67.173.196; };
zone-statistics yes;
forwarders{};
};
};
les fichiers pz/tutur.com.local et ps/tutur.com.externe sont different.
Le resultat se voit facilement:
#host mail.tutur.com
mail.tutur.com is an alias for belledonne.tutur.com.
belledonne.tutur.com has address 192.168.0.4
#host mail.tutur.com ns.nerim.net
mail.tutur.com is an alias for chartreuse.tutur.com.
chartreuse.tutur.com has address 62.212.107.174