Answers:
iptables
不是服务,而是内核内部的功能。这就是为什么你不能阻止它。
如果您需要快速停止iptables,这是我的建议:
配置您的iptables完成。
首先保存配置: iptables-save > /etc/iptables.conf
刷新iptables并将其配置为“打开”:
保存“打开”规则集: iptables-save > /etc/open-iptables.conf
现在,每当需要快速“禁用” iptables时,请执行以下操作:
cat /etc/open-iptables.conf | iptables-restore
。
之后,使用以下命令“重新启用” iptables:
cat /etc/iptables.conf | iptables-restore
(iptables-restore < /etc/open-iptables.conf
可能也可以;但是我在其他地方读到了有时不起作用的信息)