How do I hide the version of BIND/named that I am running from the world?
Updated -
To prevent the version of the DNS server that is being used by the system in question to be revealed when queried, make the following modification in the /etc/named.conf
file:
options {
directory "/var/named";
allow-query { any;};
version "<ANY OTHER STRING>";
}
The version
argument is important. With it, the the DNS software is ...
Subscriber exclusive content
A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.