Hi Pablo, How can I add the 'counter' option to the existing flowtable? Is this possible? I tried the following: [magi@s116r2l1fw01a ~]$ sudo nft add flowtable inet filter f { hook ingress priority filter \; counter \;} It didn't complain, but I couldn't see the 'counter' option when I listed the flowtable: [magi@s116r2l1fw01a ~]$ sudo nft list flowtables Did not kill table inet filter { flowtable f { hook ingress priority filter devices = { tun0, bond0, dummy0, bond1.999, bond1, vrf-conntrackd, vrf-mgmt, enp66s0f1, enp66s0f0, enp5s0f1, enp5s0f0, eno4, eno3, eno2, eno1 } } } table ip nat { } And looking at the output of conntrack -L, the counters didn't increase past the initial flow creation packet: tcp 6 src=192.168.125.3 dst=192.168.40.254 sport=53420 dport=22 packets=1 bytes=60 src=192.168.40.254 dst=192.168.125.3 sport=22 dport=53420 packets=1 bytes=60 [OFFLOAD] mark=0 use=2 How do I enable the 'counter' option exactly (since I'm clearly doing something wrong)? Thanks, -Martin