Answers:
要进行切换,请执行以下操作:
如果正在使用,请停止iptables:
sudo systemctl stop iptables
确保您的系统不再使用iptables:
sudo systemctl mask iptables
检查其状态:
sudo systemctl status iptables
如果已安装,请删除UFW:
sudo apt-get remove ufw
防火墙- 动态防火墙管理器
这取代了iptable作为管理防火墙的首选方法。用于firewalld的命令包括:
安装firewalld
:
sudo apt install firewalld
检查其状态:
sudo systemctl status firewalld
启用或禁用firewalld:
sudo systemctl [enable | disable ] firewalld
启动和停止它:
sudo systemctl [ start | stop ] firewalld
因此,使用它只是像步骤2中那样启用它,然后使用手册页来获取更多信息。
有关如何使用firewalld的更多信息,请参见此处