ISC DHCP / unbound / dnsmasq - be more explicit of what the feature offers. https://github.com/opnsense/core/issues/7209

This commit is contained in:
Ad Schellevis 2024-02-07 13:59:20 +01:00
parent d8df599d0d
commit 43c3ca47af
2 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@
</field>
<field>
<id>unbound.general.regdhcp</id>
<label>Register DHCP Leases</label>
<label>Register ISC DHCP4 Leases</label>
<type>checkbox</type>
<help>If this option is set, then machines that specify their hostname when requesting a DHCP lease will be registered in Unbound, so that their name can be resolved.</help>
</field>
@ -58,7 +58,7 @@
</field>
<field>
<id>unbound.general.regdhcpstatic</id>
<label>Register DHCP Static Mappings</label>
<label>Register ISC DHCP Static Mappings</label>
<type>checkbox</type>
<help>
<![CDATA[If this option is set, then DHCP static mappings will be registered in Unbound, so that their name can be resolved.

View File

@ -304,7 +304,7 @@ $( document ).ready(function() {
</td>
</tr>
<tr>
<td><a id="help_for_regdhcp" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DHCP Registration");?></td>
<td><a id="help_for_regdhcp" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Register ISC DHCP4 Leases");?></td>
<td>
<input name="regdhcp" type="checkbox" id="regdhcp" value="yes" <?=!empty($pconfig['regdhcp']) ? "checked=\"checked\"" : "";?> />
<?= gettext('Register DHCP leases') ?>
@ -328,7 +328,7 @@ $( document ).ready(function() {
</td>
</tr>
<tr>
<td><a id="help_for_regdhcpstatic" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Static DHCP");?></td>
<td><a id="help_for_regdhcpstatic" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Register ISC DHCP Static Mappings");?></td>
<td>
<input name="regdhcpstatic" type="checkbox" id="regdhcpstatic" value="yes" <?=!empty($pconfig['regdhcpstatic']) ? "checked=\"checked\"" : "";?> />
<?= gettext('Register DHCP static mappings') ?>