From a31b907bc06a3ef71e705e22bc30e914464b2417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Fri, 17 Nov 2023 15:22:44 +0100 Subject: [PATCH] Enable net.ipv6.conf.all.forwarding=1 This since the per interface setting does not work as in ipv4 The only way to limit forward (per interface) for ipv6 is by using netfilter. --- board/netconf/rootfs/etc/sysctl.d/ipv6.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/board/netconf/rootfs/etc/sysctl.d/ipv6.conf b/board/netconf/rootfs/etc/sysctl.d/ipv6.conf index 008a185a..ede8bd0d 100644 --- a/board/netconf/rootfs/etc/sysctl.d/ipv6.conf +++ b/board/netconf/rootfs/etc/sysctl.d/ipv6.conf @@ -1,4 +1,5 @@ -net.ipv6.conf.all.forwarding=0 +net.ipv6.conf.all.forwarding=1 +net.ipv6.conf.default.forwarding=0 net.ipv6.conf.all.autoconf=0 net.ipv6.conf.default.autoconf=0 net.ipv6.conf.default.keep_addr_on_down=1