~에 따르면https://www.thegeekstuff.com/2011/01/iptables-fundamentals/
IPTables에는 다음과 같은 4개의 내장 테이블이 있습니다.
필터, NAT, Mangle 및 원시 테이블
이 모든 테이블을 보는 iptables 명령은 무엇입니까?
답변1
iptables-save
모든 것을 보여줄 것입니다.
답변2
설명서를 참조하세요 /proc/net/ip_tables_names
.
$ sudo cat /proc/net/ip_tables_names
mangle
nat
filter
$
답변3
이것매뉴얼 페이지다섯 번째 항목인 을 나열합니다 security
. 한 번에 호출할 수 없으며 호출할 때마다 명령을 반복적으로 실행해야 합니다. 예를 들면 다음과 같습니다.
for t in filter nat mangle raw security; do
echo "table $t:"
iptables -t $t -L
done