Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/guides/security/firewalls/what-is-iptables/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,14 @@ This guide helps you understand iptables and explains what is iptables. It gets

A table is a collection of chains that serves a particular function. The 3 main tables in iptables are the Filter, NAT, and Mangle tables.

!["iptables table of tables](iptables-table-of-tables.png "iptables table of tables")
| **Filter** | **NAT** | **Mangle** |
|-------------------|--------------------------|-----------------------------------|
| INPUT chain | INPUT chain | INPUT chain |
| FORWARD chain | OUTPUT chain | FORWARD chain |
| OUTPUT chain | PREROUTING chain | OUTPUT chain |
| | POSTROUTING chain | PREROUTING chain |
| | | POSTROUTING chain |


- The **Filter Table** is used to control the flow of packets in and out of a system.
- The **NAT Table** is used to redirect connections to other interfaces on the network.
Expand Down
Loading