Hi, Since Nftables using map/set to collect ip port and others. Is it possible using map or set from different table ? Like the example bellow table ip a { set local_addr { type ipv4_addr flags interval elements = { 192.168.0.1, 10.1.1.1 } } } table ip b { chain input { type filter hook input priority 300; policy accept; ip saddr a@ local_addr accept reject } } The data and rule are in different table to avoid handle the rule by mistake. Thanks. Regards!