DNS debian SERVFAIL serveur ne peut pas trouver, pas de ping

Je suis en train de créer un serveur DNS dans mon environnement de test, mais je ne sais pas se lier. Les paramètres de mon serveur est créé, avec un résultat de recherche dans google. La liaison de démarrage sans erreur, mais ne résout pas mon domaine. Je suis en train de créer un domaine: lunarinterativa.les laboratoires à utiliser dans mes solutions.

je reçois cette erreur:

server can't find www.lunarinterativa.labs.lunarinterativa.labs: SERVFAIL

quand j'execute la commande ci-dessous:

nslookup
> server interativa32
Default server: interativa32
Address: 172.224.116.100#53
> www.lunarinterativa.labs
Server:         interativa32
Address:        172.224.116.100#53

L'intérieur de ma netwotk paramètres est:

ip address: 172.224.116.100
netmask: 255.255.255.0
gateway: 172.224.116.254

Je ping à interativa32.lunarinterativa.laboratoires: est OK

PING interativa32.lunarinterativa.labs (172.224.116.100) 56(84) bytes of data.64 bytes from interativa32.lunarinterativa.labs (172.224.116.100): icmp_req=1 ttl=64 time=0.049 ms

Je ping à www.interativa32.lunarinterativa.labs: est Mal

ping: unknown host www.interativa32.lunarinterativa.labs

C'est le contenu du fichier de paramètres dans mon domaine (le fichier: /etc/bind/db.lunarinterativa.labs) :

; -------------------------------------------------------------------
; Created by Lunar Interativa Scripts
; type: Bind9
; author: Sileno de Oliveira Brito
; since: 09 Mar 2013
; created: 10 Mar 2013
; domain: lunarinterativa.labs
; ip address: 172.224.116.100
; hostname: interativa32
; -------------------------------------------------------------------
$TTL   604800
@       IN      SOA     interativa32.lunarinterativa.labs.      root.interativa32.lunarinterativa.labs. (
                        2004111700  ; Serial
                        604800          ; Refresh
                        86400           ; Retry
                        2419200     ; Expire
                        604800 )    ; Negative Cache TTL
;
@       IN      A                               172.224.116.100

interativa32            IN      A       172.224.116.100
www                     IN      CNAME   @
ftp                     IN      CNAME   @
repo                    IN      CNAME   @
ns1                     IN      CNAME   @

C'est le contenu du fichier de paramètres de mon domaine inverse ("fichier: /etc/bind/db.lunarinterativa.labs):

; -------------------------------------------------------------------
; Created by Lunar Interativa Scripts
; type: Bind9 Reverse
; author: Sileno de Oliveira Brito
; since: 09 Mar 2013
; created: 10 Mar 2013
; domain: lunarinterativa.labs
; reverse: 116.224.172.in-addr.arpa
; ip address: 172.224.116.100
; hostname: interativa32
; -------------------------------------------------------------------
@       IN      SOA     interativa32.lunarinterativa.labs.      root.interativa32.lunarinterativa.labs. (
                        2004111700  ; Serial
                        604800          ; Refresh
                        86400           ; Retry
                        2419200     ; Expire
                        604800 )    ; Negative Cache TTL
@       IN      NS                              ns.lunarinterativa.labs.
@       IN      A                               172.224.116.100
100     IN      PTR     interativa32.lunarinterativa.labs

C'est l'entrée dans /etc/bind/named.conf.local

zone "116.224.172.in-addr.arpa" {
        type master;
        file "/etc/bind/db.116.224.172.in-addr.arpa";
};
zone "lunarinterativa.labs" {
        type master;
        file "/etc/bind/db.lunarinterativa.labs";
};

C'est mon /etc/resolv.conf

domain lunarinterativa.labs
search lunarinterativa.labs
nameserver 127.0.0.1

C'est mon /etc/hosts

127.0.0.1       localhost
172.224.116.100 interativa32.lunarinterativa.labs       interativa32

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

C'est mon /etc/bind/named.conf.options

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 {
                8.8.8.8;
        //     0.0.0.0;
                172.224.116.254;
        };

        auth-nxdomain no;    # conform to RFC1035
        listen-on port 53 { 127.0.0.1; 172.224.116.100; };
        allow-query { 127.0.0.1; 172.224.116.0/24; };
        allow-recursion { 127.0.0.1; 172.224.116.0/24; };
        allow-transfer { none; };

        listen-on-v6 { any; };
InformationsquelleAutor Sileno Brito | 2013-03-10