Ola Pessoal, estou tentando montar um servidor de dns. Estou tendo
dificuldades de configuração de DNS estou encaminhando os arquivos de
configuração para voces darem uma olha.

Arquivo NAMED
include "/etc/bind/named.conf.options";

// prime the server with knowledge of the root servers
zone "." {
        type hint;
        file "/etc/bind/db.root";
};

// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912

zone "localhost" {
        type master;
        file "/etc/bind/db.local";
};

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

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

zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
};
// zone "com" { type delegation-only; };
zone "meudominio.com" {
        type master;
        file "/etc/bind/db.meudominio";
};

zone "ipreverso.in-addr.arpa" {
        type master;
        file "/etc/bind/db.rev.meudominio";
};


Arquivo meudominio
$TTL 3D
@       IN      SOA     meudominio.com. root.meudominio.com. (
                        200803143       ; serial, todays date + todays
serial #
                        8H              ; refresh, seconds
                        2H              ; retry, seconds
                        4W              ; expire, seconds
                        1D )            ; minimum, seconds
                NS      meudominio.com.
                MX      10 meudominio.com.  ; Primary Mail Exchanger

localhost       A       127.0.0.1

meudominio.com.        A       IP EXTERNO
ns                      A       IP EXTERNO
www                     A       IP EXTERNO

ftp             CNAME   meudominio.com.
mail            CNAME   meudominio.com.

arquivo rev.meudominio
$TTL    604800
@       IN  SOA     meudominio.com. root.meudominio.com.  (
                        2008031401 ; Serial
                        28800      ; Refresh
                        14400      ; Retry
                        3600000    ; Expire
                        86400 )    ; Minimum

@       IN      NS      meudominio.com.
85      IN      PTR     meudominio.com.

Se Possivel alguem me ajudar eu agradeço!!!

-- 
Tiago Bast
-- 
Interessado em aprender mais sobre o Ubuntu em português?
http://wiki.ubuntu-br.org/ComeceAqui  -
ubuntu-br mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

Responder a