ufw 防火墙在重启后被禁用

ufw 防火墙在重启后被禁用

在 Debian Buster 上,我安装了 UFW 防火墙

然而,在启用

$ ufw enable
Command may disrupt existing ssh connections. Proceed with operation (y|n)? y
Firewall is active and enabled on system startup

重启后防火墙被禁用

$ ufw status
Status: inactive

配置文件如下所示:

nano /etc/ufw/ufw.conf
ENABLED=yes

非常感谢您的帮助!

答案1

您需要使用服务管理器启用该服务。

sudo systemctl start ufw    # starts the service 
sudo systemctl enable ufw   # starts the service on boot

答案2

ufw enable应该做同样的事情。参见第一个输出:

Firewall is active and enabled on system startup

但是你的建议:

$ sudo systemctl enable ufw
Synchronizing state of ufw.service with SysV service script with /lib/systemd/systemd- 
sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable ufw

没有效果:

$ ufw status
Status: inactive

相关内容