From ef315b06ce3d223ecded3646101a9e438180d95d Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Wed, 22 Nov 2023 05:18:06 +0100 Subject: luci-mod-network: Evidently hostid was not max 32 bits but 64 bits 🤷 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/network/dhcp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/luci-mod-network/htdocs/luci-static') 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 04b57a277d..da0eeabb5a 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 @@ -909,8 +909,8 @@ return view.extend({ so = ss.option(form.Value, 'hostid', _('IPv6-Suffix (hex)'), - _('The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 chars).')); - so.datatype = 'and(rangelength(0,8),hexstring)'; + _('The IPv6 interface identifier (address suffix) as hexadecimal number (max. 16 chars).')); + so.datatype = 'and(rangelength(0,16),hexstring)'; so = ss.option(form.DynamicList, 'tag', _('Tag'), -- cgit v1.2.3