23 lines
294 B
Text
23 lines
294 B
Text
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
table inet output {
|
||
|
|
||
|
chain conntrack {
|
||
|
ct state vmap {
|
||
|
established: counter accept,
|
||
|
related: counter accept,
|
||
|
invalid: counter drop,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
chain output {
|
||
|
type filter hook output priority filter
|
||
|
policy accept
|
||
|
|
||
|
jump conntrack
|
||
|
|
||
|
counter
|
||
|
}
|
||
|
|
||
|
}
|