diff options
-rw-r--r-- | data/templates/conntrack/nftables-ct-ignore.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/conntrack/nftables-ct-ignore.tmpl b/data/templates/conntrack/nftables-ct-ignore.tmpl index 59c1cb1d2..4ec133680 100644 --- a/data/templates/conntrack/nftables-ct-ignore.tmpl +++ b/data/templates/conntrack/nftables-ct-ignore.tmpl @@ -32,7 +32,7 @@ table raw { {% set nft_command = nft_command ~ ' ' ~ rule_config.protocol ~ ' sport { ' ~ rule_config.source.port ~ ' }' %} {% endif %} {% endif %} - {{ nft_command }} counter return comment ignore-{{ rule }} + {{ nft_command }} counter notrack comment ignore-{{ rule }} {% endfor %} {% endif %} return |