Dustin Lieu <whale_163@xxxxxxxxxxxx> wrote: > Hello, > > When I try adding a rule to set meta broute, I get an error that says it's not supported. I'm running nftables version v1.0.9, which should support broute. Does anyone know what the issue could be? > > $ nft --version > nftables v1.0.9 (Old Doc Yak #3) > > $ nft add table bridge bridge_rules > $ nft add chain bridge bridge_rules prerouting "{ type filter hook prerouting priority 0; policy accept; }" > $ nft add rule bridge bridge_rules prerouting meta broute set 1 Worksforme on 6.10: table bridge bridge_rules { chain prerouting { type filter hook prerouting priority 0; policy accept; meta broute set 1 } } > Error: Could not process rule: Not supported > add rule bridge bridge_rules prerouting meta broute set 1 > ^^^^^^^^^^^^^^^^^ Kernel lacks support, this needs 6.4 or later and CONFIG_NFT_BRIDGE_META=y or =m in kernel config. 'modinfo nft-meta-bridge' would tell if module is present or not.