diff options
author | Paul Donald <newtwen@gmail.com> | 2023-11-20 18:39:41 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2023-11-22 05:27:51 +0100 |
commit | 11821a7de98423199e032f4cfa2f7ddd0d69a23d (patch) | |
tree | 08cc22606ddb86cafd0e2516d332b77ce1b12d56 /modules/luci-mod-network/htdocs/luci-static | |
parent | 191cd74cc5326811ea6da8c62a0e5394425187b5 (diff) |
luci-mod-network: Extend helptext for RFC1918 rebind_protection
Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js | 3 |
1 files changed, 2 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 04b57a277d..fc96576f2d 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 @@ -310,7 +310,8 @@ return view.extend({ o = s.taboption('general', form.Flag, 'rebind_protection', _('Rebind protection'), - _('Discard upstream responses containing <a href="%s">RFC1918</a> addresses.').format('https://datatracker.ietf.org/doc/html/rfc1918')); + _('Discard upstream responses containing <a href="%s">RFC1918</a> addresses.').format('https://www.rfc-editor.org/rfc/rfc1918') + '<br />' + + _('Discard also upstream responses containing <a href="%s">RFC4193</a>, Link-Local and private IPv4-Mapped <a href="%s">RFC4291</a> IPv6 Addresses.').format('https://www.rfc-editor.org/rfc/rfc4193', 'https://www.rfc-editor.org/rfc/rfc4291')); o.rmempty = false; o = s.taboption('general', form.Flag, 'rebind_localhost', |