debian11使用ufw防火墙时报
- ERROR: problem running iptables: # Warning: iptables-legacy tables present, use iptables-legacy to see them
- iptables v1.8.7 (nf_tables): Could not fetch rule set generation id: Invalid argument
删除了 ufw 和 iptables,然后先安装 iptables,然后更改为 iptables-legacy。
之后安装ufw,ufw 似乎只适用于 iptables-legacy。
- apt purge ufw iptables
- apt install iptables
- update-alternatives --set iptables /usr/sbin/iptables-legacy
- update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
- apt install ufw