这是 iptables 规则:
-A INPUT -i eth0 -s 10.2.0.51,10.2.0.52 -d 228.0.0.3 -j ACCEPT
我如何将其转换为 ufw 规则?
我试过了:
root@localhost:~# sudo ufw allow from 10.2.0.51,10.2.0.,52 to 228.0.0.3 to any port
ERROR: Wrong number of arguments
root@localhost:~# sudo ufw allow from 10.2.0.51,10.2.0,52 to 228.0.0.3 to any port proto tcp
ERROR: Wrong number of arguments
我错过了什么?
答案1
语法如下:
sudo ufw allow from <target> to <destination> port <port number> proto <protocol name>
所以你应该运行
sudo ufw allow from 10.2.0.51,10.2.0.52 to 228.0.0.3
它将允许所有端口和所有协议。仅适用于 TCP:
sudo ufw allow from 10.2.0.51,10.2.0.52 to 228.0.0.3 proto tcp