在尝试诊断 OpenVPN 客户端配置上的 UDP 多播问题时,我在配置文件中遇到了这个块:
# Use the same setting as you are using on
# the server.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun
UFW 似乎未安装(ufw
未找到命令)。我还应该检查什么以确保满足此条件?我的路由器的 NAT 配置是否相关?
非常感谢,blz
答案1
显示 IPv4 防火墙规则:
iptables -L -nv
- 查看输入链,iptables -P INPUT ACCEPT
- 这将改变防火墙策略以接受所有数据包,iptables -F INPUT
- 刷新(删除)INPUT 链中的所有规则。
IPv6:相同参数不同的命令,改为iptables
使用ip6tables
。
上述操作将确保数据包过滤不会影响您的流量。