diff options
author | Robby K <robbyke@gmail.com> | 2020-10-01 22:52:46 +0200 |
---|---|---|
committer | Robby K <robbyke@gmail.com> | 2020-10-01 22:52:46 +0200 |
commit | 43dc4208647734ab440eb84ecc7d11f8b2fd3e11 (patch) | |
tree | a4f0a7a4ee25ad3c1b8962a92691e69655143270 /applications/luci-app-firewall | |
parent | adc89f77d0bcd4945710a56600c1fbd0c2c73fae (diff) |
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 <robbyke@gmail.com>
Diffstat (limited to 'applications/luci-app-firewall')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | 1 |
1 files changed, 1 insertions, 0 deletions
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'); |