i tried the manual, but cant find how/if i can set it to answer single ip for all queries.

anyone tried any of these? which one works?

or any other smaller, secure bind alternatives?

tnx

nb. nsd: http://www.nlnetlabs.nl/projects/nsd/

link|improve this question

50% accept rate
feedback

2 Answers

Try my evldns server framework.

There's an example program in that which always returns the same IP address for any IN A query.

link|improve this answer
i'm no programmer. any ready to use binary i can try? tnx – DennyHalim.com Nov 16 '09 at 8:00
Sorry, no, it's a framework, not a ready-to-run DNS server. However if you're running Linux it's pretty easy to build. – Alnitak Nov 16 '09 at 9:53
feedback
up vote 0 down vote accepted

ok i found it.

here how it goes with nsd:

add this to nsd.conf:

zone:
    name: "."
    zonefile: "root.zone"
    provide-xfr: 0.0.0.0/0 NOKEY
    provide-xfr: ::0/0 NOKEY

then create root.zone and fill it with:

$TTL 1H
@    IN     SOA  @ none. ( 11 1D 1H 1W 3H );
     IN     NS   @
     IN     A    1.2.3.4

then:

nsdc rebuild
nsdc reload

nb. you need to rebuild and reload everytime you change your zone file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.