firewall: do track wireguard connections not meant for us
Oops. Connection tracking is disabled for our wireguard connections because of source address mangling. We still need to track outside connections to allow inbound reply packets through the firewall.
This commit is contained in:
parent
c53df0aa9c
commit
78e02134e7
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ table inet filter {
|
|||
table inet wireguard {
|
||||
chain input {
|
||||
type filter hook prerouting priority raw; policy accept
|
||||
udp dport 51820 notrack \
|
||||
ip daddr {{ wg_ip | ipaddr('address') }} udp dport 51820 notrack \
|
||||
comment "Disable connection tracking for wireguard"
|
||||
}
|
||||
chain output {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue