From da7d2887f4ce92f7eaeda905038975df8fae101d Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Thu, 25 Jan 2024 02:14:33 +0100 Subject: [PATCH] luci-mod-network: Restructure DHCP options DHCP limits: add [min|max]_cache_ttl Signed-off-by: Paul Donald (cherry picked from commit a9744f00e18a8684fe912f49c707ba4af51494b9) --- .../luci-static/resources/view/network/dhcp.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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 9e40d142f7..415dfb7fdb 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 @@ -602,6 +602,19 @@ return view.extend({ o.datatype = 'range(0,10000)'; o.placeholder = 150; + o = s.taboption('limits', form.Value, 'min_cache_ttl', + _('Min cache TTL'), + _('Extend short TTL values to the seconds value given when caching them. Use with caution.') + + _(' (Max 1h == 3600)')); + o.optional = true; + o.placeholder = 60; + + o = s.taboption('limits', form.Value, 'max_cache_ttl', + _('Max cache TTL'), + _('Set a maximum seconds TTL value for entries in the cache.')); + o.optional = true; + o.placeholder = 3600; + o = s.taboption('pxe_tftp', form.Flag, 'enable_tftp', _('Enable TFTP server'), _('Enable the built-in single-instance TFTP server.')); -- 2.30.2