删除 iptables 中的端口别名

删除 iptables 中的端口别名

如何让 iptables 显示端口号而不是众所周知的端口号的别名(例如 http 为 80,https 为 443 等)。有没有办法让它始终只显示端口号?

答案1

使用该-n选项。

$ iptables --help
[...]
  --numeric     -n              numeric output of addresses and ports

相关内容