Skip to content

How to Use Maps in nftables for Conditional Actions

DodaTech Updated 2026-06-24 2 min read

Maps in nftables provide data-dependent rule actions with O(1) lookup. They replace complex chains of conditional rules. This guide walks through the specific troubleshooting steps to diagnose and resolve map configuration 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

nft add rule ... ip saddr 10.0.0.1 accept (individual rule per IP)

Wrong: Individual rules for each conditional action

nft add map inet filter vmap { type ipv4_addr : verdict; } && nft add rule ... ip saddr vmap @vmap

Right: Verdict map for compact conditional logic

Output

Verdict map vmap created\n  Type: ipv4_addr : verdict\n  Lookups return accept/drop per IP

Prevention

To avoid future issues, follow these best practices:

  • Use maps for data-dependent decisions without multiple rules
  • Verdict maps return accept, drop, jump, or goto targets
  • Set elements with nft add element ... vmap { 10.0.0.1 : accept, 10.0.0.2 : drop }
  • Use concatenated types for complex matching
  • Maps are evaluated in O(1) like sets

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 map

  1. Forgetting that lazy evaluation defers computation until the value is forced, causing space leaks with unevaluated thunks
  2. Using return to exit a function early instead of wrapping a pure value in the monad
  3. Mixing let bindings with <- bindings in do notation, producing type errors

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

What is the difference between sets and maps in nftables?|||Sets check membership (is this IP in the set?). Maps return a value (what verdict/action for this IP?).
What concatenated types are supported in maps? Any combination: ipv4_addr . inet_service (IP+port), ipv4_addr . ipv4_addr (source+dest IP), etc.

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro