Help! Newbie using Bind 9.1.0

roy rico roy_rico at hotmail.com
Sun Sep 9 23:27:05 UTC 2001


I just recently got the @Work product so I have set up my DNS at home (linux
rh7.1/bind 9.1.0)

I have set up my zone files, and it worked for a period of 2-3 days, however
now anything trying to query my DNS times out.   I'm new to running bind,
and have looked at the logs (/var/log/messages/) and do not see any error
messages.

heres my info:
ns1.halo8.com -> 216.216.97.226 -> primary Linux/Bind9
ns2.halo8.com -> 216.216.97.227 -> secondary Win2k DNS

Here's my configuration, can anyone help me figure out what i am doing
wrong!
Thanks in advance!

NAMED.CONF
==========================================================
// bogusnets are impossible IP addresses that are used for in spoofing
attacks
acl bogusnets { 0.0.0.0/8; 1.0.0.0/8; 2.0.0.0/8; 192.0.2.0/24; 224.0.0.0/3;
10.0.0.0/8; 172.16.0.0/12; 192.168.0.0/16; };
acl fellow-dns { 63.226.22.18; 216.216.97.227; 192.168.100.2; };

options {
        directory "/etc/named";                         // Working directory
        pid-file "/var/run/named.pid";          // Put pid file in working
dir
        auth-nxdomain yes;
        allow-query { any; };
        allow-recursion { fellow-dns; };
        blackhole { bogusnets; };
        };

zone "." {
        type hint;
        file "aziz_root.db";
        };

// HALO8.COM
zone "halo8.com" {
        type master;
        file "halo8_com.db";
        allow-transfer { fellow-dns; };
        allow-query { any; };
        };
zone "97.216.216.in-addr.arpa" {
        type master;
        file "halo8_com.rev";
        allow-query { any; };
        };

// HALO8PRODUCTIONS.NET
zone "halo8productions.net" {
        type master;
        file "halo8productions_net.db";
        allow-transfer { fellow-dns; };
        allow-query { any; };
        };

// SCORPIONKNIVES.COM
zone "scorpionknives.com" {
        type master;
        file "scorpionknives_com.db";
        allow-transfer { fellow-dns; };
        allow-query { any; };
        };

// COXCBS.COM
zone "coxcbs.com" {
        type master;
        file "coxcbs_com.db";
        allow-transfer { fellow-dns; };
        allow-query { any; };
        };

// LOCALHOST REVERSE LOOKUP
zone "0.0.127.in-addr.arpa" {
        type master;
        file "aziz_localhost.rev";
        allow-transfer { fellow-dns; };
        allow-query { any; };
        };

halo8_com.db
==========================================================
$TTL 1h
@               IN      SOA  halo8.com.  root.halo8.com. (
                2001090905      ; Serial
                20m             ; refresh
                30m             ; retry
                1d              ; expire
                1h                              ; minimum
                )

                ; Name servers for the domain
@               IN  NS          ns1.halo8.com.
@               IN  NS          ns2.halo8.com.

                ; Mail server for domain
@               IN MX           5       mail

                ; Nodes in domain
@               IN A            216.216.97.226
localhost       IN A            127.0.0.1
aziz            IN A            216.216.97.226
leon            IN A            216.216.97.227
shaner          IN A            63.226.22.18

                ; Aliases to existing nodes in domain
a4s             IN CNAME        leon
clubarizona     IN CNAME        leon
entrekinlaw     IN CNAME        aziz
ftp             IN CNAME        aziz
inttech         IN CNAME        leon
jenn            IN CNAME        aziz
kdc             IN CNAME        aziz
mail            IN CNAME        aziz
ns1             IN CNAME        aziz
ns2             IN CNAME        leon
platinum        IN CNAME        leon
tagstrance      IN CNAME        aziz
www             IN CNAME        aziz
xtreme          IN CNAME        leon
cox             IN CNAME        leon


halo8_com.rev
==========================================================
$TTL 1h
@               IN      SOA   halo8.com. root.halo8.com. (
                2001090905      ; Serial
                20m             ; refresh
                30m             ; retry
                1d              ; expire
                1h                              ; minimum
                )

                ; Name Servers
@               IN      NS              ns1.halo8.com.
@               IN      NS              ns2.halo8.com.

                ; Addresses in 216.216.97.
226             IN      PTR             halo8.com.
227             IN  PTR         leon.halo8.com.




More information about the bind-users mailing list