Skip to content

Commit

Permalink
allow DHCPv6 (e.g.for IONOS important)
Browse files Browse the repository at this point in the history
  • Loading branch information
toralf committed Jun 8, 2024
1 parent 000d95f commit 5f64faa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ipv6-rules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ function addCommon() {
$ipt -A INPUT -p ipv6-icmp --icmpv6-type echo-request -m limit --limit 6/s -j ACCEPT
$ipt -A INPUT -p ipv6-icmp --icmpv6-type echo-request -j $jump
$ipt -A INPUT -p ipv6-icmp -j ACCEPT

# DHCPv6
$ipt -A INPUT -p udp --sport 547 -j ACCEPT
$ipt -A INPUT -p udp --dport 546 -j ACCEPT
}

function addTor() {
Expand Down

0 comments on commit 5f64faa

Please sign in to comment.