iptables 通用语句

iptables -t filter -nvL --line-number | grep destination

-t :  指定表 {fillter|nat|mangle|raw}

-v : 显示详细信息 -v -vvv -vvvv ..可以显示更详细的信息

-nvL 这其实是三个参数,等效于 -n -v -L

-v 详细信息列表

-L 列表

通过grep进行筛选关键信息

原文地址:https://www.cnblogs.com/liuliu-word/p/9264847.html