Salve Turma !

Passar meu quadro . hoje em dia tenho um BSD rodando com QMAIL e estou
migrando para DEBIAN com POSTFIX , AMAVIS .... BIND9

Estou tendo o seguinte problema , na hora de dar o START no BIND9 !Preciso
criar 2 zonas como pode ver abaixo uma no FILE como INTERNET e á outra
INTERNO em cima do mesmo domínio Ex: xingling.com.br
<http://xingling.com.br/>

Ele da falha

firewall1:/etc/bind# /etc/init.d/bind9 start

Starting domain name service...: bind9 failed!

Sendo que criei ACL como é solicitado em varios artigos no howtoforge

Fiz da seguinte forma !

acl slaves {
    xxx.xxx.112.xx/24;    // XName
};

acl internals {
    127.0.0.0/8;
    10.0.0.0/24;
};

view "internal" {
    match-clients { internals; };
    recursion yes;

    zone "xingling.com.br" {
        type master;
        file "/etc/bind/internals/xingling.org.br-interno";
    };
};

view "external" {
    match-clients { any; };
    recursion yes;

    zone "xingling.com.br" {
        type master;
        file "/etc/bind/externals/xingling.org.br-internet";
        allow-transfer { slaves; };
    };
};

*O erro que apresenta é o seguinte !*

Jun  2 08:53:02 firewall1 named[3145]: starting BIND 9.5.1-P3 -u bind
Jun  2 08:53:02 firewall1 named[3145]: found 2 CPUs, using 2 worker threads
Jun  2 08:53:02 firewall1 named[3145]: using up to 4096 sockets
Jun  2 08:53:02 firewall1 named[3145]: loading configuration from
'/etc/bind/named.conf'
Jun  2 08:53:02 firewall1 named[3145]: /etc/bind/named.conf:12: when using
'view' statements, all zones must be in views
Jun  2 08:53:02 firewall1 named[3145]: loading configuration: failure
Jun  2 08:53:02 firewall1 named[3145]: exiting (due to fatal error)
_______________________________________________
Postfix-BR mailing list
[email protected]
http://listas.softwarelivre.org/mailman/listinfo/postfix-br

Responder a