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

20 lines
570 B
Plaintext
Raw Normal View History

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