ansible-edda/playbooks/filesystem/yggdrasil/usr/local/sbin/post-up-br0-ipv4.nft.j2

20 lines
570 B
Django/Jinja

#!/usr/bin/env -S nft -f
table ip br0_ipv4 {
chain prerouting {
type nat hook prerouting priority -100;
iif {{ ethx }} tcp dport { 80, 443 } dnat to {{ vpn_reverse_proxy_address }};
}
chain input {
type filter hook input priority 0;
ct state established,related accept;
iif br0 ip daddr {{ subnet }} drop;
}
chain postrouting {
type nat hook postrouting priority 100;
iif br0 oif {{ ethx }} masquerade;
}
}