From 7842ff4cdca24048e15178d03c01062c9a3cfc85 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Sun, 6 Oct 2024 09:28:39 +0000 Subject: [PATCH] fix(firewall): ipv6 multicast output address value --- internal/firewall/iptables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/firewall/iptables.go b/internal/firewall/iptables.go index 2034462b..8a51736a 100644 --- a/internal/firewall/iptables.go +++ b/internal/firewall/iptables.go @@ -188,7 +188,7 @@ func (c *Config) acceptIpv6MulticastOutput(ctx context.Context, if intf == "*" { // all interfaces interfaceFlag = "" } - instruction := fmt.Sprintf("%s OUTPUT %s -d ff02::1:ff/104 -j ACCEPT", + instruction := fmt.Sprintf("%s OUTPUT %s -d ff02::1:ff00:0/104 -j ACCEPT", appendOrDelete(remove), interfaceFlag) return c.runIP6tablesInstruction(ctx, instruction) }