Here is the quick code to disable DNS recursion on kloxo based server:
Login to SSH with root credential
Find the “named” configuration file:
# locate named.conf
For chrooted system:
Output : /var/named/chroot/etc/named.conf
Edit the file named.conf
# nano /var/named/chroot/etc/named.conf
In updated Kloxo following is the options file:
# nano /var/named/chroot/etc/global.options.named.conf
Add following code at the end of named.conf file and save changes by CTRL+O:
options {allow-recursion {127.0.0.1; };};
Exit from text editor (For nano)
CTRL+X
Restart named services:
service named restart
That is all : )