Skip to content

Commit

Permalink
Merge pull request #98 from voxpupuli/cleanup
Browse files Browse the repository at this point in the history
nftables: fix daddr/saddr for IPv4 outgoing
  • Loading branch information
sebastianrakel authored Dec 29, 2023
2 parents 1a2673e + 3cc62f3 commit 2de6550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/interface.pp
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@
dport => $endpoint_port,
sport => $dport,
proto => 'udp',
daddr => $_daddr,
saddr => $saddr,
daddr => $saddr,
saddr => $_daddr,
oifname => $input_interface,
chain => 'default_out',
notify => Service['systemd-networkd'],
Expand Down

0 comments on commit 2de6550

Please sign in to comment.