hello everyone, I would like to block all traffic from an IP range (e.g.: 123.0.0.0/8), irrespective of its origin, going to, or coming from, using nftables firewall in Debian 10. If I understand correctly, the following will block traffic originating from that IP range. nft insert rule ip filter INPUT ip saddr 123.0.0.0/8 counter drop But it will still allow traffic if it's in response to (or associated with) an application on my Debian machine. The problem: When I run a torrent client and add any torrent, be it Debian/Ubuntu ISO or any other torrent, I can see a bunch of IPs from my ISP connects to the torrent. Even if I add a torrent that have only 1 seed and no peer at all, I can see a lot of IPs from my ISP (with zero percent of torrent availability) in qBittorrent client. In fact, I have blocked like 100+ in qBittorrent but the new IPs still keep popping up under "peers". So I'd like to block an IP range, irrespective of traffic origin, going to, or coming from, using nftables. Thanks a lot in advance. Here's my nftables.conf file: ::::: #!/usr/sbin/nft -f flush ruleset table inet filter { chain input { type filter hook input priority 0; policy drop; iifname lo accept # ssh for internal network ip saddr 192.168.0.0/16 tcp dport 22 counter accept ct state established,related accept # Avoid brute force on ssh tcp dport 22 ct state new limit rate 10/minute accept # Early drop of invalid connections ct state invalid drop # VsFTPD ip saddr 192.168.0.0/16 tcp dport 20 counter accept ip saddr 192.168.0.0/16 tcp dport 21 counter accept ip saddr 192.168.0.0/16 tcp dport 990 counter accept ip saddr 192.168.0.0/16 tcp dport 40000-50000 counter accept # ICMP & IGMP ip saddr 192.168.0.0/16 icmp type echo-request counter accept icmp type echo-request counter drop ip protocol igmp drop # Everything else reject with icmpx type port-unreachable log flags all counter drop log prefix "[nftables] Input Denied: " flags all counter drop } } :::::