Skip to content

How to Use the iptables Raw Table

DodaTech Updated 2026-06-24 2 min read

The raw table allows packets to bypass connection tracking. This improves performance for high-throughput traffic that does not need state tracking. This guide walks through the specific troubleshooting steps to diagnose and resolve raw table 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

All traffic goes through connection tracking by default

Wrong: All traffic tracked unnecessarily

iptables -t raw -A PREROUTING -p tcp --dport 80 -j NOTRACK

Right: Using NOTRACK in raw table to bypass conntrack

Output

NOTRACK set on HTTP traffic\nConnection tracking bypassed for port 80\nReduced conntrack table pressure

Prevention

To avoid future issues, follow these best practices:

  • Use the raw table to exclude high-volume traffic from connection tracking
  • Apply NOTRACK before the conntrack module processes the packet
  • The raw table has only PREROUTING and OUTPUT chains
  • Monitor conntrack count before and after adding NOTRACK rules
  • Use NOTRACK for locally generated traffic that does not need state tracking

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 raw table

  1. Mixing let bindings with <- bindings in do notation, producing type errors
  2. Overlapping type class instances that cause GHC to reject the program with ambiguous dispatch errors
  3. Non-exhaustive pattern matches that compile with warnings then crash at runtime

These mistakes appear frequently in real-world IPTABLES 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

When should I use the raw table?|||Use the raw table when you want to bypass connection tracking for high-volume traffic like DNS or load-balanced web servers.
What chains are available in the raw table? The raw table has PREROUTING chain (for incoming packets before routing) and OUTPUT chain (for locally generated packets).

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro