如何在Ubuntu上暂时停止iptables


Answers:


9

iptables不是服务,而是内核内部的功能。这就是为什么你不能阻止它。

如果您需要快速停止iptables,这是我的建议:

  1. 配置您的iptables完成。

  2. 首先保存配置: iptables-save > /etc/iptables.conf

  3. 刷新iptables并将其配置为“打开”:

    • 所有政策均设为接受
    • 配置所有必需的NAT,以使系统管理员正常工作
    • 如果您在mangle表中使用基于策略的路由,请根据需要对其进行配置
  4. 保存“打开”规则集: 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可能也可以;但是我在其他地方读到了有时不起作用的信息)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.