Skip to content

Commit

Permalink
fix(firewall): ipv6 multicast output address value
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Oct 6, 2024
1 parent 3d6d03b commit 7842ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/firewall/iptables.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 7842ff4

Please sign in to comment.