[root@perola named]# more /etc/named.conf
// generated by named-bootconf.pl
options {
        directory "/var/named";
        /*
         * If there is a firewall between you and nameservers you want
         * to talk to, you might need to uncomment the query-source
         * directive below.  Previous versions of BIND always asked
         * questions using port 53, but BIND 8.1 uses an unprivileged
         * port by default.
         */
        // query-source address * port 53;
        dump-file "/var/named/dump/named_dump.db";
        statistics-file "/var/named/dump/named.stats";
        memstatistics-file "/var/named/dump/named.memstats";
        // remove this next line if you want named to listen on
        // all available interfaces, or adjust add new ones as
        // you see fit
        listen-on { 127.0.0.1/32; };
};
//
// a caching only nameserver config
//
zone "." {
        type hint;
        file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
        type master;
        file "named.local";
};
zone "meudominio.com.br" {
           type master;
          file "meudominio.hosts";
};
zone "xxx.xxx.200.in-addr.arpa" {
          type master;
          file "xxx.xxx.200.reverse";
};
[root@perola named]#
[root@perola named]#
[root@perola named]# more /var/named/meudominio.hosts
$TTL 43200
@           IN       SOA    
www.meudominio.com.br.  root.meudominio.com.
br. (
                                              2004101102 ; serial;
                                              3600 ; refresh
                                              900 ; retry
                                              1209600 ; expire
                                               43200 ; default_ttl
                                               )
@          IN            NS           
www.meudominio.com.br.
www      IN            A              200.xxx.xxx.3
[root@perola named]#
[root@perola named]#
[root@perola named]#
[root@perola named]# more /var/named/
xxx.xxx.200.reverse   etc                   meudominio.hosts
dev                   named.ca              var
dump                  named.local
[root@perola named]# more /var/named/xxx.xxx.200.reverse
$TTL 43200
@        IN        SOA     
www.meudominio.com.br.   webmaster.meudominio
.com.br. (
                                              2004101102 ; serial;
                                              3600 ; refresh
                                              900 ; retry
                                              1209600 ; expire
                                               43200 ; default_ttl
                                               )
@          IN            NS           
www.meudominio.com.br.
1           IN            PTR         
www.meudominio.com.br