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
15 changes: 13 additions & 2 deletions root/etc/config/firewall
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,31 @@ config rule
option target ACCEPT

config rule
option name Allow-IPSec-ESP
option name Allow-IPv6-IPSec-ESP
option src wan
option dest lan
option proto esp
option family ipv6
option target ACCEPT

config rule
option name Allow-ISAKMP
option name Allow-IPv6-IKE
option src wan
option dest lan
option src_port 500
option dest_port 500
option proto udp
option family ipv6
option target ACCEPT

config rule
option name Drop-IPv6-IKE-Unsolicited
option src wan
option dest lan
option dest_port 500
option proto udp
option family ipv6
option target DROP

### EXAMPLE CONFIG SECTIONS
# do not allow a specific ip to access wan
Expand Down