Skip to content

How to Use Sets in nftables

DodaTech Updated 2026-06-24 2 min read

Sets in nftables provide efficient data structures for matching packets against collections of values. They are far more scalable than individual rules. This guide walks through the specific troubleshooting steps to diagnose and resolve set creation issues.

Before You Begin

Before you begin, be sure to have the following in place:

  • A Linux server with the relevant software installed
  • Access to the command line interface
  • Appropriate permissions (root or sudo)

Quick Fix

Wrong

iptables -A INPUT -s 10.0.0.1 -j DROP (one rule per IP)

Wrong: Individual rules for each IP to block

nft add set inet filter blacklist { type ipv4_addr; flags timeout; }

Right: Named set with timeout for dynamic blocking

Output

Set blacklist created\n  Type: ipv4_addr\n  Flags: timeout\n  Elements can be added with timeout

Prevention

To avoid future issues, follow these best practices:

  • Use sets to avoid creating many individual rules
  • Sets support ipv4_addr, ipv6_addr, inet_service, and concatenations
  • Use flags timeout for auto-expiring elements
  • Add elements to sets with nft add element
  • List set contents with nft list set

DodaTech Tools

For further assistance with any of the above issues, consider using DodaTech consulting services or DodaTech tutorials for more in-depth guidance.

Common Mistakes with set create

  1. Forgetting deriving (Show, Eq) on custom data types needed for debugging
  2. Placing the wildcard pattern first in case expressions, making all subsequent patterns unreachable
  3. Using head and tail instead of pattern matching, causing runtime errors on empty lists

These mistakes appear frequently in real-world NFTABLES code. DodaTech's contributors have identified these patterns through analysis of open-source projects and production systems.

Practice Exercise

Write a pure function that safely divides two integers using Maybe, then test it with edge cases like division by zero and negative numbers.

This exercise reinforces the concepts covered in this guide. Try implementing it before checking online solutions.

FAQ

Why are nftables sets more efficient than individual rules?|||Sets use hash or interval data structures in kernel for O(1) lookups, unlike individual rules which are checked sequentially.
How do I add an element to an nftables set? Run nft add element inet filter blacklist { 10.0.0.1 timeout 60s }.

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro