Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 08/09/2013, à 23:09

chtitueur62

[résolu] probleme port 53

Bonjour,

j'ai installer et configurer 2 serveurs DNS et je me retrouve avec cette erreur:

f: Le serveur n'écoute pas ou ne répond pas en TCP sur le port 53
Réf: IETF RFC1035 (p.32 4.2. Transport)
The DNS assumes that messages will be transmitted as datagrams or in a byte stream carried by a virtual circuit. While virtual circuits can be used for any DNS activity, datagrams are preferred for queries due to their lower overhead and better performance.
ns2.hgfr.eu/62.4.26.238

voici mes fichiers de config:

// 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";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

zone "hgfr.eu" {
        type master;
        notify yes;
        file "/etc/bind/db.hgfr.eu";
        forwarders{};
};
$TTL    604800

@       IN      SOA     hgfr.eu. postmaster.hgfr.eu. (

                        2013090802;
                        10800 ; Refresh
                        3600 ; Retry
                        604800 ; Expire
                        3600  ; Minimum
);

@       IN      A       62.4.26.237

srv1.hgfr.eu. IN      A 62.4.26.237
srv2.hgfr.eu. IN      A 62.4.26.238

@       IN      NS      ns1.hgfr.eu.
@       IN      NS      ns2.hgfr.eu.

ns1             IN      A   62.4.26.237
ns2             IN      A   62.4.26.238

cloud                   IN      CNAME   hgfr.eu.
www.cloud               IN      CNAME   hgfr.eu.
webmail                 IN      CNAME   hgfr.eu.
www.webmail             IN      CNAME   hgfr.eu.
www                     IN      CNAME   hgfr.eu.
sql                     IN      CNAME   hgfr.eu.
www.sql                 IN      CNAME   hgfr.eu.
monitoring              IN      CNAME   hgfr.eu.
www.monitoring          IN      CNAME   hgfr.eu.

smtp                    IN      A   62.4.26.238
@                       IN      MX      10      smtp.hgfr.eu.

mail                    IN      CNAME   hgfr.eu.
pop                     IN      CNAME   hgfr.eu.
imap                    IN      CNAME   hgfr.eu.

serveur esclave:

options {
        directory "/var/cache/bind";

        // If there is a firewall between you and nameservers you want
        // to talk to, you may need to fix the firewall to allow multiple
        // ports to talk.  See http://www.kb.cert.org/vuls/id/800113

        // If your ISP provided one or more IP addresses for stable
        // nameservers, you probably want to use them as forwarders.
        // Uncomment the following block, and insert the addresses replacing
        // the all-0's placeholder.

        // forwarders {
        //      0.0.0.0;
        // };

        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { any; };
        allow-notify { 62.4.26.238; };
};
//
// Do any local configuration here
//

// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";

zone "hgfr.eu" {
        type slave;
        file "db.hgfr.eu";
        masters { 62.4.26.237; };
};

zone "26.4.62.in-addr.arpa" {
        type slave;
        file "db.hgfr.eu.inv";
        masters { 62.4.26.237; };
};

Merci pour l'aide que vous pourrez m'apporter.

edit: il me suffisait d'ouvrir les ports avec iptables

Dernière modification par chtitueur62 (Le 08/09/2013, à 23:11)


Thery Guillaume
Intel core i3-2100
1 SSD 250 Go et 1 SSD 120 Go
ATI radeon HD 7970 2Gb

Hors ligne

#2 Le 09/09/2013, à 11:50

vinny

Re : [résolu] probleme port 53

Bonjour,

As tu un firewall actif sur ta machine?

Dernière modification par vinny (Le 09/09/2013, à 11:50)


www.journaldunadminlinux.fr
La connaissance est la seule chose qui grandit quand on la partage

Hors ligne