WillyXJ / facileManager

A modular suite of web apps built with the sysadmin in mind.
www.facilemanager.com
GNU General Public License v2.0
84 stars 37 forks source link

[BUG] Secondary zone from Windows DNS server #627

Closed VN1977 closed 2 months ago

VN1977 commented 2 months ago

fM Version : 4.6.1 fMDNS Version : 6.0.4

In raising this issue, I confirm the following (please check boxes, eg [X]):


We have Windows DNS server with primary zone. If we use usual pure BIND we can add slave zone pointing to that DNS server and everything works good. I could not find info how to do the same via fM. I added remote server but cannot choose it as master server during creating a new zone. Maybe it is unsupported configuration?

WillyXJ commented 2 months ago

Thanks for the bug report. This will be fixed in the next release. If you need a fix sooner, you can change https://github.com/WillyXJ/facileManager/blob/fefedaf4d16f17572cd4feb99664ce0786b904a1/server/fm-modules/fmDNS/js/module.php#L366

From:

    } else if ($(this).val() == "slave" || $(this).val() == "stub") {

To:

    } else if ($(this).val() == "secondary" || $(this).val() == "stub") {
WillyXJ commented 2 months ago

This is now fixed in fmDNS 6.0.5 and later.