Re: Setting Up Bind9 Test

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Michael Butash
Date:  
To: plug-discuss
Subject: Re: Setting Up Bind9 Test
Make sure you're listening on the right interface (not just 127.0.0.1)
and you allow-query any as well as recursion.

options {
    directory "/var/cache/bind";
    pid-file "/var/run/bind/run/named.pid";
    statistics-file "/var/run/named.stats";
    auth-nxdomain no;    # conform to RFC1035
    // listen-on-v6 { any; };
    listen-on port 53 { any; };
    allow-recursion { 10.0.0.0/8; };
    allow-query { any; };
    allow-query-cache { any; };
};


-mb


On 08/14/2011 10:27 AM, David Demland wrote:
> I am trying to set up a DNS poisoning test as an example for my class. I
> have setup both an Ubuntu 6.10 and 10.10 server. When I use my Backtrack
> system to check the DNS server I get a message “This server is not
> replying to recursive requests”. I have added “allow-recursion { any;
> };” to my configuration file. Yet the Backtrack system still fails. What
> do I have to do to allow on the DNS server for the Backtrack system to
> do the recursive request?
>
> Thank you for your help,
>
> David
>
>
>
> ---------------------------------------------------
> PLUG-discuss mailing list -
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss