Bonjour, j'ai décidément pas mal de problèmes en ce moment. Je gère sur une fc8 un domaine local appelé suivi.app. J'ai donc installé bind comme DNS primaire et configuré une zone comme ceci:
zone "suivi.app." IN {
type master;
file "suivi.app.conf";
allow-update { none; };
};
zone "1.10.10.IN-ADDR.ARPA." {
type master;
file "reverse.suivi.app.conf";
};
Ma zone directe:
$TTL 86400
@ IN SOA localhost.suivi.app. webmaster.suivi.app. (
2008040800
24H
2H
1W
2D )
@ IN NS localhost.suivi.app.
@ IN A 10.10.1.1
localhost IN A 10.10.1.1
www IN A 10.10.1.1
* IN CNAME www
Et enfin ma zone inversée:
$TTL 3h
@ IN SOA localhost.suivi.app. webmaster.suivi.app. (
2008040800
24H
2H
1W
2D )
@ IN NS localhost.suivi.app.
1 IN PTR localhost.suivi.app
Je gère sur le même serveur des applications http avec Apache, et je souhaite que les postes client du réseau 10.10.1.0/24 puissent accéder au port 80 via l'url
http://www.suivi.app.
Tenez je suis sympa j'vous ai même préparé un amour de petit schéma :lol:
J'ai ajouté des règles de filtrages concernant DNS et HTTP, mais je ne peut accéder à ces services depuis un poste client. Le nslookup à partir d'un client windows ne retourne l'erreur "DNS request timed out", et l'url
http://www.suivi.app me renvoit une erreur de chargement, alors que j'ai bien l'application web avec l'ip du serveur. J'ai donc tout de suite pensé au pare-feu qui pourrait bloquer l'accès aux requêtes DNS, mais après vérification les règles de filtrages ont l'air correctes.
Chain INPUT (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:domain
ACCEPT udp -- anywhere anywhere udp dpt:domain
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp spt:http
ACCEPT tcp -- anywhere anywhere tcp spt:domain
ACCEPT udp -- anywhere anywhere udp spt:domain
Je bloque vraiment sur ce problème, pouvez vous me donner un coup de main svp?