Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions root/etc/config/firewall
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ config rule
option src wan
option proto icmp
list icmp_type echo-request
list icmp_type echo-reply
list icmp_type destination-unreachable
list icmp_type packet-too-big
list icmp_type time-exceeded
Expand All @@ -95,14 +94,20 @@ config rule
option family ipv6
option target ACCEPT

config rule
option name Drop-ICMPv6-Excess
option src wan
option proto icmp
option family ipv6
option target DROP

# Allow essential forwarded IPv6 ICMP traffic
config rule
option name Allow-ICMPv6-Forward
option src wan
option dest *
option proto icmp
list icmp_type echo-request
list icmp_type echo-reply
list icmp_type destination-unreachable
list icmp_type packet-too-big
list icmp_type time-exceeded
Expand All @@ -112,6 +117,14 @@ config rule
option family ipv6
option target ACCEPT

config rule
option name Drop-ICMPv6-Forward-Excess
option src wan
option dest *
option proto icmp
option family ipv6
option target DROP

config rule
option name Allow-IPSec-ESP
option src wan
Expand Down