Overview
This how-to tells you whether IPTables is in use on your system.
It assumes you are on Linux. If you are not sure about that, see here
Initial Steps Overview
Detailed Steps
1) Run lsmod
If this command generates any output, then IPTables is in effect on the system:
lsmod | grep -wi iptables
If this command generates any output, then NetFilter is in effect on the system:
lsmod | grep -i netfilter
2) Run iptables-save
To extract the existing rules in effect, run:
iptables-save
redirecting to a file if you want to keep the rules for later reference.
Further Information
Note that the iptables
command is back-compatible with NetFilter, which has replaced IPTables in most Linux kernels.
Thus, while technically NetFilter is being used rather than IPTables, you can still work as though IPTables is installed.