How to fake DNS-responses?

Barry Margolin barry.margolin at level3.com
Tue Oct 28 14:57:46 UTC 2003


In article <bnkkdl$1dl3$1 at sf1.isc.org>, Matze <hinzkunz at gmx.li> wrote:
>I need to setup an DNS-Server (available: BIND 8) which responds to
>ANY request with a SINGLE IP-Address (which belongs to my webserver).

Configure it as a master server for the root (".") zone and enter a
wildcard A record with this IP address.

named.conf:

zone "." {
  type master;
  file "root.db";
};

root.db:

@ IN SOA ...
  IN NS ns.yourdomain.com.
* IN A <address of your web server>

-- 
Barry Margolin, barry.margolin at level3.com
Level(3), Woburn, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the group.


More information about the bind-users mailing list