Main.Dynanal History

Hide minor edits - Show changes to output

June 22, 2012, at 11:54 AM EST by 155.98.60.157 -
Added lines 4-21:

!! Configure BIND to return one IP for all DNS queries
Taken from http://serverfault.com/questions/396958/configure-dns-server-to-return-same-ip-for-all-domains

[@
With BIND, you need a fake root zone to do this. In named.conf, put the following:

zone "." {
type master;
file "/etc/bind/db.fakeroot";
};

Then, in that db.fakeroot file, you will need something like the following:

@ IN SOA ns.domain.com. hostmaster.domain.com. ( 1 3h 1h 1w 1d )
IN NS <ip>
* IN A <ip>
@]
June 22, 2012, at 11:50 AM EST by 155.98.60.157 -
Changed line 3 from:
* Procmon (regmon, and friends are integrated now)
to:
* Procmon (regmon, and friends are integrated now) http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
June 22, 2012, at 11:49 AM EST by 155.98.60.157 -
Added lines 1-3:
!!Classic tools

* Procmon (regmon, and friends are integrated now)