J'aimerai créer mon propre server DNS pour cela j'installe le paquetage bind
je crée les fichiers de configurations, ma résolution ( nom -> ip ) ne fonctionne pas mais ma résolution inverse ( ip -> nom ) fonctionne.
Voici mes fichiers de configuration :
- Code: Tout sélectionner
options{
directory "/var/named/";
forward only;
forwarders {
212.27.53.252;
212.27.24.252;
};
};
zone "."{
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa"{
type master;
file "0.0.127.in-addr.arpa.zone";
};
zone "30.10.10.in-addr.arpa" {
type master;
file "30.10.10.in-addr.arpa.zone";
};
zone "domaine"{
type master;
file "domaine.zone";
};
controls{
inet * allow { any; } keys {"rndc-key";};
};
key "rndc-key" {
algorithm hmac-md5;
secret "QbMUjiqxtPUUzyPrbyYMOw==";
};
30.10.10.in-addr.arpa.zone :
- Code: Tout sélectionner
$TTL 86400
@ IN SOA lr3-05.univ-artois.fr. root.localhost. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
@ IN NS lr3-05.univ-artois.fr.
1 IN PTR routeur.serviceGW.dept-gtr.bethune.
10 IN PTR mail.serviceGW.dept-gtr.bethune.
domaine.zone :
- Code: Tout sélectionner
$TTL 86400
@ IN SOA localhost. root.localhost. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
@ IN NS ns
localhost IN A 127.0.0.1
lr3-05 IN A 192.168.0.6
routeur IN A 10.10.30.1
mail IN A 10.10.30.10
Voila étant novice me permet de vous demander de l'aide
En plus de ca j'aimerai avoir des informations supplémentaires :
Quel est la signification du "@" et de la ligne @ IN SOA localhost. root.localhost. ? Dois je toujours laisser localhost ?
Merci d'avance