diff options
author | Paul Donald <newtwen@gmail.com> | 2023-12-07 01:06:16 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2023-12-08 03:49:01 +0100 |
commit | 6bdc5771095627889d43a1cbdc4fc45e3b0e5537 (patch) | |
tree | 45267df5379cf1b88cd7eb522f90802780d9821f /modules/luci-mod-network | |
parent | ab95f8a61835376e670a04d8995212959540d0ad (diff) |
luci-mod-network: Rework the (multi) mac for static leases text
Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'modules/luci-mod-network')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js index 90f3948f7c..c05d8a278a 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js @@ -834,7 +834,7 @@ return view.extend({ so = ss.option(form.Value, 'mac', _('MAC address(es)'), - _('The hardware address(es) of this entry/host, separated by spaces.') + '<br /><br />' + + _('The hardware address(es) of this entry/host.') + '<br /><br />' + _('In DHCPv4, it is possible to include more than one mac address. This allows an IP address to be associated with multiple macaddrs, and dnsmasq abandons a DHCP lease to one of the macaddrs when another asks for a lease. It only works reliably if only one of the macaddrs is active at any time.')); //As a special case, in DHCPv4, it is possible to include more than one hardware address. eg: --dhcp-host=11:22:33:44:55:66,12:34:56:78:90:12,192.168.0.2 This allows an IP address to be associated with multiple hardware addresses, and gives dnsmasq permission to abandon a DHCP lease to one of the hardware addresses when another one asks for a lease so.validate = function(section_id, value) { |