Zentyal Forum, Linux Small Business Server

Zentyal Server => Other modules => Topic started by: ak007 on June 24, 2020, 10:57:05 am

Title: [SOLVED] DNS allow new subnet for query
Post by: ak007 on June 24, 2020, 10:57:05 am
Hi All,

I am using Zentyal Commercial Edition V6.0.3 in production environment.
Just enable the following module:-
Network , Firewall (Just enable no any firewall rules), DNS, logs, NTP and Domain Controller.
It's work fine for one subnet. But I have added a new subnet for small office in difference floor on same building.
We use two Physical firewall to build a site to site VPN.
The small office can join this domain through VPN, but can't use the same DNS for web site resolve.
Anyway, I can fix this problem by manual add the subnet 192.168.2.0/24 in bind configure file.
the Bind config as follow:-

#vi /etc/bind/named.conf.local

//Generated by Zentyal

acl "trusted" {
     192.168.1.0/24;
     192.168.2.0/24;
     localhosts;
     localnets;
};

But after I reboot the Zentyal Server, the manual added line is deleted automatically.
How to add that subnet to avoid after reboot server deleted that line ?
Thanks in advance.

Rgds
AK
Title: Re: DNS allow new subnet for query
Post by: doncamilo on June 24, 2020, 01:52:32 pm
 :)

Read this document: https://doc.zentyal.org/en/appendix-c.html#stubs (https://doc.zentyal.org/en/appendix-c.html#stubs)

Cheers!
Title: [SOLVED] Re: DNS allow new subnet for query
Post by: ak007 on June 26, 2020, 05:35:29 am
Hi Doncamilo,

Thanks for your support.
I share my method to solve this problem.
According to your URL , I find this config file.

#cd /etc/zentyal
# cp dns.conf dns.conf.keep
# vi dns.conf

Add my new subnet in this line

intnets = 192.168.1.0/24,192.168.2.0/24

save the file.
Even reboot ,My new subnet will keep in  /etc/bind/named.conf.local like below:-

 //Generated by Zentyal

acl "trusted" {
     192.168.1.0/24;
     192.168.2.0/24;
     localhost;
     localnets;
};