9 lines
193 B
Plaintext
Raw Normal View History

2022-09-25 16:00:40 +02:00
#!/usr/bin/env -S nft -f
table ip wg0_ipv4 {
chain postrouting {
type nat hook postrouting priority 100;
iif wg0 oif {{ ethx }} masquerade;
}
}