mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
Q: How do I restrict / prevent lookups of the version string remotely.
This commit is contained in:
18
FAQ
18
FAQ
@@ -70,3 +70,21 @@ Q: How do I produce a useful core file on Linux?
|
|||||||
A: Apply the kernel patch found in bind9/linux/coredump-patch and rebuild
|
A: Apply the kernel patch found in bind9/linux/coredump-patch and rebuild
|
||||||
the kernel. This patch causes multithreaded programs to dump the correct
|
the kernel. This patch causes multithreaded programs to dump the correct
|
||||||
thread.
|
thread.
|
||||||
|
|
||||||
|
Q: How do I restrict / prevent lookups of the version string remotely.
|
||||||
|
|
||||||
|
A: The following view statement will intercept lookups as the internal
|
||||||
|
view that holds the information will be matched last. Note doing this
|
||||||
|
will not prevent attacks and may impeed people trying to diagnose problems
|
||||||
|
with your server. Also it is possible to "fingerprint" nameservers to
|
||||||
|
determine there version.
|
||||||
|
|
||||||
|
view "chaos" chaos {
|
||||||
|
match-clients { <those to be refused>; };
|
||||||
|
allow-query { none; };
|
||||||
|
|
||||||
|
zone "." {
|
||||||
|
type hint;
|
||||||
|
file "/dev/null"; // or any empty file
|
||||||
|
};
|
||||||
|
};
|
||||||
|
Reference in New Issue
Block a user