According to https://www.thegeekstuff.com/2011/01/iptables-fundamentals/
IPTables has the following 4 built-in tables.
Filter, NAT, Mangle, and Raw table
What is the iptables command to view all these tables?
According to https://www.thegeekstuff.com/2011/01/iptables-fundamentals/
IPTables has the following 4 built-in tables.
Filter, NAT, Mangle, and Raw table
What is the iptables command to view all these tables?
-L
listing can omit important information, like for example if a particular rule will apply to a specific interface only. I would recommend adding-vn
to the options to display all the fields and to not attempt to convert IP addresses to names, which could cause delays in output. Note that the resulting output will be rather wider than the standard 80 characters. – telcoM Mar 15 '21 at 15:39