Fli
06-24-2013, 09:43 AM
Into DNS returned you an error:
Recursive Queries
I could use the nameservers listed below to performe recursive queries. It may be that I am wrong but the chances of that are low. You should not have nameservers that allow recursive queries as this will allow almost anyone to use your nameservers and can cause problems.
You can fix it from server command line (SSH). Do:
vim /var/named/chroot/etc/named.conf
Then insert:
options {
recursion no;
};
then restart dns by:
service named restart
if it did not put intodns error away, try adding the above directive instead into:
vim /etc/named.conf ?
Need to know more? Google: what is recursive queries
Recursive Queries
I could use the nameservers listed below to performe recursive queries. It may be that I am wrong but the chances of that are low. You should not have nameservers that allow recursive queries as this will allow almost anyone to use your nameservers and can cause problems.
You can fix it from server command line (SSH). Do:
vim /var/named/chroot/etc/named.conf
Then insert:
options {
recursion no;
};
then restart dns by:
service named restart
if it did not put intodns error away, try adding the above directive instead into:
vim /etc/named.conf ?
Need to know more? Google: what is recursive queries