ansible/roles/nftables_infra/templates/nftables.d/50-output.conf.j2

23 lines
270 B
Text
Raw Normal View History

{{ ansible_managed | comment }}
table inet output {
chain conntrack {
ct state vmap {
2022-01-13 13:59:49 +01:00
established: accept,
related: accept,
invalid: drop,
}
}
chain output {
type filter hook output priority filter
policy accept
jump conntrack
counter
}
}