Hi Guys, Im stuck in configuring my DNS to work with ISPConfig 3.0.5.1. I can say that my dns is working because i can dig / nslookup the records that i added to the zone. But the zone that was created by ISPConfig GUI, I cant dig or nslookup into it. In my /etc/named.conf file i included the named.conf.local which is used by ISPConfig. /etc/named.conf PHP: include "/etc/named/rfc1912.zones"; include "/etc/named/root.key"; include "/etc/named/lab.domain.com.zones"; #####include "/var/named/chroot/etc/named.conf.local"; include "/etc/named.conf.local"; /etc/named.conf.local PHP: zone "ez.machines.domain.com" { type master; allow-transfer {none;}; file "/var/named/data/pri.ez.machines.domain.com"; }; ...i cant dig/nslookup the records in ez.machines.domain.com zone. By the way im using BIND 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6.3 chrooted. Would like to know if i am missing something in the setup. Thanks.
its solved! just to update this thread,, its solved. what i did is, i create an empty file /var/named/chroot/etc/named.conf.local and link it to /etc/named.conf.local PHP: ll /etc/named.conf.local lrwxrwxrwx 1 root root 38 Apr 12 17:16 /etc/named.conf.local -> /var/named/chroot/etc/named.conf.local ... and after reloading, creating new zone under the ISPConfig GUI, i can now dig and ping the record ive created. Let me know if this is the right thing to do.