UFW限定IPV4/IPV6/来源IP规则的简单记录
ufw防火墙在用基础的开放端口ufw allow 12345/tcp
语法的时候,默认是同时开启ipv4和ipv6。
如果只想开启12345端口的ipv4访问
ufw allow proto tcp to 0.0.0.0/0 port 12345
同理,如果只想开启12345端口的ipv6访问
ufw allow proto tcp to ::/0 port 12345
如果想限定12345端口的来访ip范围
ufw allow from 192.168.1.0/24 to any port 12345
如果想限定12345端口tcp协议的来访ip范围
ufw allow proto tcp from 192.168.1.0/24 to any port 12345
查看ufw当前开放的所有端口、规则
ufw status verbose
samba服务使用的端口和协议
To Action From
-- ------ ----
137,138/udp (Samba) ALLOW IN Anywhere
139,445/tcp (Samba) ALLOW IN Anywhere