From 4e0fdb516ad48e4f64821dfdefec50595d514b0f Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sun, 3 Jan 2021 21:39:52 +0100 Subject: [PATCH] firewall: add type 128 to outgoing IPv6 essentials #4565 --- src/etc/inc/filter.lib.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/filter.lib.inc b/src/etc/inc/filter.lib.inc index fa1453f01..5f4d117d5 100644 --- a/src/etc/inc/filter.lib.inc +++ b/src/etc/inc/filter.lib.inc @@ -239,7 +239,7 @@ function filter_core_rules_system($fw, $defaults) // Allow only bare essential icmpv6 packets $fw->registerFilterRule( 1, - array('ipprotocol' => 'inet6', 'protocol' => 'ipv6-icmp', 'icmp6-type' => '129,133,134,135,136', + array('ipprotocol' => 'inet6', 'protocol' => 'ipv6-icmp', 'icmp6-type' => '128,129,133,134,135,136', 'statetype' => 'keep', 'descr' => 'IPv6 requirements (ICMP)', 'from' => '(self)', 'to' => 'fe80::/10,ff02::/16', 'direction' => 'out' ), $defaults['pass']