From e9669ec5c8ca6ee63e7eb80a1581911866147082 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sat, 21 May 2022 19:39:54 +0200 Subject: flow-accounting: T4437: also install rule to IPv6 VYOS_CT_PREROUTING_HOOK --- src/conf_mode/flow_accounting_conf.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/conf_mode/flow_accounting_conf.py') diff --git a/src/conf_mode/flow_accounting_conf.py b/src/conf_mode/flow_accounting_conf.py index 7f7a98b04..9fc7e204a 100755 --- a/src/conf_mode/flow_accounting_conf.py +++ b/src/conf_mode/flow_accounting_conf.py @@ -109,6 +109,9 @@ def _nftables_config(configured_ifaces, direction, length=None): iface_prefix = "o" if direction == "egress" else "i" rule_definition = f'{iface_prefix}ifname "{iface}" counter log group 2 snaplen {length} queue-threshold 100 comment "FLOW_ACCOUNTING_RULE"' nftable_commands.append(f'nft insert rule {nftables_table} {nftables_chain} {rule_definition}') + # Also add IPv6 ingres logging + if nftables_table == nftables_nflog_table: + nftable_commands.append(f'nft insert rule ip6 {nftables_table} {nftables_chain} {rule_definition}') # change nftables for command in nftable_commands: -- cgit v1.2.3