From 43dc4208647734ab440eb84ecc7d11f8b2fd3e11 Mon Sep 17 00:00:00 2001 From: Robby K Date: Thu, 1 Oct 2020 22:52:46 +0200 Subject: luci-app-firewall: rules: add ICMPv6 Packet Too Big (Type 2) The "Match ICMP type" drop-down menu was missing this ICMPv6 type. According to RFC 4890 section 4.3.1 it is essential for communications and must not be dropped. This patch allows for doing this through LuCI. Signed-off-by: Robby K --- .../htdocs/luci-static/resources/view/firewall/rules.js | 1 + 1 file changed, 1 insertion(+) (limited to 'applications/luci-app-firewall') diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js index 8cb1a1242..bacbbd704 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js @@ -308,6 +308,7 @@ return view.extend({ o.value('network-redirect'); o.value('network-unknown'); o.value('network-unreachable'); + o.value('packet-too-big'); o.value('parameter-problem'); o.value('port-unreachable'); o.value('precedence-cutoff'); -- cgit v1.2.3