Disable DNS Recursive / DNS Recursion

Disable Recursion in Plesk
**************************************
Log into the Plesk Admin Panel.
Select Tools and Settings.
Click DNS Template Settings from the section.
Select Localnets from the DNS Recursion section.
Click the OK button.


Disable Recursion in Windows Server 2003 and 2008
**************************************
Access the DNS Manager from the Start menu:
Click the Start button.
Select Administrative Tools.
Select DNS.
Right click on the desired DNS Server in the Console Tree.
Select the Proprerties tab.
Click the Advanced button in the Server Options section.
Select the Disable Recursion checkbox.
Click the OK button.


Disable Recursion in Linux
**************************************

1. Locate the BIND configuration file within the operating system. The BIND configuration file is usually located in one of the following paths:Open the named.conf file in your preferred editor

/etc/bind/named.conf
/etc/named.conf

2. Add the following details to the Options section:

allow-transfer {"none";};
allow-recursion {"none";};
recursion no;

3. Restart the device.
  • 832 Users Found This Useful
Was this answer helpful?

Related Articles

How can i run asp.net's web page ?

Please be informed that .Net Framework had been installed inside your server. However, you need...

How can i run perl or cgi scripts in Windows server ?

You can upload the scripts to /cgi-bin folder. Here is the path for the perl.exe...

I lost my Dedicated Server's root / admin login.

Kindly submit a support ticket using your registered email, we will reset the root password for...

What choice of Linux Operating System do I have?

Operating System  --  Control Panel CentOS 5           --  Cpanel, Plesk or DirectAdmin Debian 4...

Where is perl located in Linux ?

/usr/bin/perl , Add #!/usr/bin/perl -w: in your perl scripts header.