mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-01-18 13:59:31 +08:00
Page:
常见错误
Pages
Android Guide
Dirty experience in dealing with ISP traffic policies
Features
Frequently Asked Questions
Home
How to build
Known issues and solutions
Notes on encryption
Related Works
about mtu
bypass mtu limitation
faketcp方案和常见的udp over tcp、udp in tcp方案的区别
how to choose a binary for your device
keep udp2raw alive
nftables udp2raw
rst==1 in log
run udp2raw as non root
udp2raw wireguard example configurations
udp2raw openvpn config guide
中文文章
在windows mac上运行udp2raw客户端,带图形界面
常见错误
网络不允许桥接的情况下,如何在虚拟机运行udp2raw
进程保活
Clone
This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
现象:连接不上或连接不稳定。
错误:忘记使用-a选项
解决方法:使用-a选项自动添加、或-g选项手动添加所需的iptables规则
错误:使用了虚拟机,但是虚拟机是非桥接模式
解决方法:改成桥接模式
错误:机器上设置了其他不兼容的iptables规则,干扰了udp2raw工作
解决方法:清空iptables后重试。
错误:在udp2raw执行后清空/重新加载了iptables规则
原因:udp2raw需要和iptables规则配合才能正常工作(-a
自动添加,或-g
手动添加), 如果你在udp2raw启动后,把所需的iptables规则通过清空/重新加载弄没了,那么udp2raw自然也就无法正常工作了。
解决方法: 避免在udp2raw执行后清空/重新加载iptables规则,如果不可避免,那么请杀掉udp2raw进程重新按正常流程启动udp2raw。
不可抗力:VPS不支持raw流量通过
如果确认没有犯前面出现的错误,仍然连接不上/不稳定。 可能是因为你的VPS不能正常支持raw traffic。 常见的vultr、搬瓦工、阿里云都是没问题的。 目前已知GigsGigsCloud不支持raw traffic。 谷歌云也是支持的,只是情况有点特殊,参考 这个issue。
不可抗力:墙
也有可能是因为墙的问题。 判断的方法:停掉udp2raw并尝试在同样的端口运行其他的tcp程序,如果一样连接不上/不稳定,那就是此问题了。换--raw-mode
也许会有效果,也可能没有。
现象:ssh退出后udp2raw进程结束
错误:没有正常使udp2raw后台运行
解决方法:了解一下nohup/screen/tmux中任意一个的使用