这对我不起作用:
# iptables -A INPUT -p tcp --dports 110,143,993,995 -j ACCEPT
iptables v1.4.7: unknown option `--dports'
Try `iptables -h' or 'iptables --help' for more information.
但是在手册页中,有一个选项--dports
...有什么想法吗?
答案1
您必须--match multiport
在规则中使用来定义更多端口
#iptables -A INPUT -p tcp --match multiport --dports 110,143,993,995 -j ACCEPT
答案2
在使用 dports 选项之前,需要指定 -m 多端口模块