I have actually come across the same issue.
It looks like you can specify the port in the config file on the host
Example below, where a manual port insertion on the primaries line did the trick for me.
The issue with this approach appears to be any GUI edit regenerates the config and wipes out said adjustment.
Granted I haven't yet explored a better/more permanent approach.
Hopefully we hear some developments from others who come across this thread. Else might be one for a GitHub feature request.
It looks like you can specify the port in the config file on the host
Code Select
/usr/local/etc/namedb/named.conf
Example below, where a manual port insertion on the primaries line did the trick for me.
Code Select
zone "lan1" {
type secondary;
primaries { 10.1.1.1 port 53530; };
file "/usr/local/etc/namedb/secondary/lan1.db";
allow-transfer {
dns_lan;
};
allow-query {
dns_lan;
};
};
The issue with this approach appears to be any GUI edit regenerates the config and wipes out said adjustment.
Granted I haven't yet explored a better/more permanent approach.
Hopefully we hear some developments from others who come across this thread. Else might be one for a GitHub feature request.