使用命令
iptables -L
我列出了所有链中的规则,但此工具列出了保存规则的主机名而不是IP地址。这是一种难以阅读的内容,因为我想在列表中快速找到一些IP地址,这是不可能的。
有没有办法,命令开关或任何简单易用的东西,让我用IP地址而不是主机名列出我的iptables规则?
答案 0 :(得分:9)
使用以下内容:
iptables -L -n
来自man page:
-n, --numeric
Numeric output. IP addresses and port numbers will be printed in numeric format.
By default, the program will try to display them as host names, network names,
or services (whenever applicable).