ham-hotspot/ansible/roles/networking/templates/ham-hotspot-nat.nft.j2
John Burwell d2c19248f2 nat fixes
2025-04-26 16:00:47 -05:00

9 lines
194 B
Django/Jinja

table ip nat {
chain postrouting {
type nat hook postrouting priority srcnat; policy accept;
{% for radio in radios %}
oif "{{ radio.ax_iface }}" masquerade
{% endfor %}
}
}