iptables vs route

27,776

route is a command that displays, adds and deletes entries from the kernel's TCP/IP routing table (aka "Forwarding Information Base").

iptables is a command that displays, adds, and deletes entries from Netfilter, the Linux kernel's packet filtering and manipulating subsystem. It handles NAT.

Since IP forwarding, i.e. routing, is basically rewriting a packet with a different source address and shipping it out of a different network interface, I believe you could technically do static routing with the proper iptables rules in the mangle table, but I believe it's generally fastest to let the routing part of the kernel do that.

There are many diagrams that are out there that illustrate exactly how a TCP/IP packet traverses the kernel (including Netfilter and the routing facility) - an example is this: http://www.adminsehow.com/2011/09/iptables-packet-traverse-map/

Share:
27,776

Related videos on Youtube

Determinant
Author by

Determinant

Updated on September 18, 2022

Comments

  • Determinant
    Determinant over 1 year

    What's the difference between these two tools?

    Can anybody tell me what the main workflow of networking behind Linux (in relation to IPv4 packet filtering, NAT and IP routing table) is?

  • Jacob Margason
    Jacob Margason over 8 years
    That map is great.
  • lovespring
    lovespring about 8 years
    does the "TCP/IP routing table" of route also in/belone the iptables's table ?
  • LawrenceC
    LawrenceC about 8 years
    I haven't tried it but I think you can compile the kernel with Netfilter disabled, yet forwarding will still work if it's enabled. So I believe Netfilter and the routing facility are separate.