我们如何在ubuntu 16.04中用firewalld替换iptables?


Answers:


15

要进行切换,请执行以下操作:

  1. 如果正在使用,请停止iptables:

    sudo systemctl stop iptables
    
  2. 确保您的系统不再使用iptables

    sudo systemctl mask iptables
    
  3. 检查其状态:

    sudo systemctl status iptables
    
  4. 如果已安装,请删除UFW

    sudo apt-get remove ufw
    

防火墙- 动态防火墙管理器

这取代了iptable作为管理防火墙的首选方法。用于firewalld的命令包括:

  1. 安装firewalld

    sudo apt install firewalld
    
  2. 检查其状态:

    sudo systemctl status firewalld
    
  3. 启用或禁用firewalld

    sudo systemctl [enable | disable ] firewalld
    
  4. 启动和停止它:

    sudo systemctl [ start | stop ] firewalld
    

因此,使用它只是像步骤2中那样启用它,然后使用手册页来获取更多信息。

有关如何使用firewalld的更多信息,请参见此处


您在“防火墙”部分中省略了“易于安装firewalld”-默认情况下它不包含在Ubuntu 16.04中
Phil McKerracher '18
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.