in iptables i use the following:
Code: Select all
-A INPUT -p tcp -m multiport --dports 25,143,465,587,993 -m set --match-set mail src -j DROPhow can I achieve the same result with nftables?
P.S. I've created a netdev table called filter in nftables as I understand that it's the fastest way to filter large amounts of ips (https://blog.cloudflare.com/how-to-drop ... n-packets/), as I understand, it should support both ipv4 and ipv6.

