Actions
Bug #10684
closedRFC 2136 incomplete options
Start date:
06/20/2020
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.4.5-p1
Affected Architecture:
All
Description
The topic has been dealt with before and marked as done in #1327.
But in the current version, the zone parameter is missing again in the ouputfile /var/etc/nsupdatecmds0.
Maybe not all DNS Server affected, but the free DNS Provider dynv6.com need the zone parameter for a successful update.
The easiest way is to add one line in the services.inc for the update instructions and set the zone to 'host' like:
/* generate update instructions */
$upinst = "";
if (!empty($dnsupdate['server'])) {
$upinst .= "server {$dnsupdate['server']}\n";
$upinst .= "zone {$dnsupdate['host']}\n";
}
But it is much better to set the zone in the GUI, or to add a custom field to set additional options to avoid problems with other configurations.
Actions