Book
Of Zeus
Articles, Tutorials & Source Code
About
Contribute
© 2011-2024 Book of Zeus
All articles, code or tutorials listed on bookofzeus.com/ can be used as reference, links or as in a sharing matter without attribution.
You cannot copy whole tutorials (unless permission is given), either translating to another language.
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
By using and/or reading this site, you agree to our privacy policy and terms and conditions .
Disable Open DNS Recursion
The DNS recursion mean the DNS will not query any other DNS server apart from its own cache within its local DNS server.
By disabling recursion in DNS, your local DNS server might not resolve queries send to the external websites.
First, open this file:
sudo vim /etc/bind/named.conf.options
Then add these options:
recursion no;
version "Not Disclosed";
Restart BIND DNS server
sudo service bind9 restart