Update README.md

This commit is contained in:
wangyu- 2017-08-09 03:09:27 -07:00 committed by wangyu
parent d01c619603
commit 675121c768
8 changed files with 117 additions and 1 deletions

117
README.md
View File

@ -1,2 +1,117 @@
# UDPspeeder
UDP加速器降低UDP传输的丢包率。尤其适用于游戏和语音。
![image0](images/Capture.PNG)
UDP加速工具降低丢包率配合vpn可以加速任何协议尤其适用于游戏同时也是一个UDP连接的调试和统计工具。
这个是我自己稳定用了一个月的项目用来玩服务器在美国的brawl stars和服务器在亚洲国外的mobile legend效果不错。
#### 原理简介
目前原理就是简单粗暴的多倍发包(以后会做ReedSolomon code)。
跟net-speeder比优势在于client和server会把收到的多余包自动去掉这个过程对上层透明没有兼容性问题。而且发出的冗余数据包会做长度和内容的随机化抓包是看不出发了冗余数据的所以不用担心vps被封的问题。
每个冗余数据包都是间隔数毫秒可配置以后延迟发出的可以避开中间路由器因为瞬时buffer长度过长而连续丢掉所有副本。
可以模拟延迟抖动,这样上层应用计算出来的RTT方差会更大以等待后续冗余包的到达不至于过早重传。
#### 适用场景
绝大部分流量不高的情况。程序本身加速udp但是配合openvpn可以加速任何流量。网络状况不好时游戏卡得没法玩或者网页卡得没法打开使用起来效果最好。对于解决语音通话的断断续续效果也不错。不适合大流量的场景比如BT下载和在线看视频。 无论从自己使用效果的角度,还是从国际出口带宽占用的角度,都建议不要在大流量环境使用。
#### 其他功能
输出UDP收发情况报告可以看出丢包率。
模拟丢包模拟延迟模拟jitter。便于通过实验找出应用卡顿的原因。
重复包过滤功能可以关掉,模拟网络本身有重复包的情况。用来测试应用对重复报的支持情况。
目前有amd64,x86,ar71xx的binary
如果你需要绕过UDP屏蔽/QOS或者需要连接复用/连接保持功能或者是加密。解决方案在另一个repo(可以跟UDPspeeder一起使用)
https://github.com/wangyu-/udp2raw-tunnel
# 简明操作说明
### 环境要求
Linux主机可以使是openwrt路由器也可以是树莓派。在windows和mac上可以开虚拟机桥接模式测试可用
### 安装
下载编译好的二进制文件,解压到本地和服务器的任意目录。
https://github.com/wangyu-/UDPspeeder/releases
### 运行
假设你有一个serverip为44.55.66.77有一个服务监听在udp 7777端口。 假设你需要加速本地到44.55.66.77:7777的流量。
```
在client端运行:
./speeder_ar71xx -l0.0.0.0:3323 -r 44.55.66.77:8855 -c -d2
在server端运行:
./speeder_amd64 -l0.0.0.0:8855 -r127.0.0.1:7777 -s -d2
```
现在client和server之间建立起了tunnel。想要连接44.55.66.77:7777只需要连接 127.0.0.1:3333。来回的所有的udp流量会被加速。
注:-d2 表示除了本来的包以外额外再发2个冗余包。可调。
# 效果
在模拟丢包的网络环境下架设了vpn服务器(udp模式)。收发各有10%的丢包率
#### 使用前
<img src="images/Capture4.PNG" width="500">
#### 使用后
3倍冗余数据。等了一页半终于出现了一个timeout。
<img src="images/Capture6.PNG" width="500">
# 进阶操作说明
### 命令选项
```
UDPspeeder
version: Aug 9 2017 18:13:09
repository: https://github.com/wangyu-/UDPspeeder
usage:
run as client : ./this_program -c -l local_listen_ip:local_port -r server_ip:server_port [options]
run as server : ./this_program -s -l server_listen_ip:server_port -r remote_ip:remote_port [options]
common option,must be same on both sides:
-k,--key <string> key for simple xor encryption,default:"secret key"
main options:
-d <number> duplicated packet number, -d 0 means no duplicate. default value:0
-t <number> duplicated packet delay time, unit: 0.1ms,default value:20(2ms)
-j <number> simulated jitter.randomly delay first packet for 0~jitter_value*0.1 ms,to
create simulated jitter.default value:0.do not use if you dont
know what it means
--report <number> turn on udp send/recv report,and set a time interval for reporting,unit:s
advanced options:
-t tmin:tmax simliar to -t above,but delay randomly between tmin and tmax
-j jmin:jmax simliar to -j above,but create jitter randomly between jmin and jmax
--random-drop <number> simulate packet loss ,unit 0.01%
-m <number> max pending packets,to prevent the program from eating up all your memory.
other options:
--log-level <number> 0:never 1:fatal 2:error 3:warn
4:info (default) 5:debug 6:trace
--log-position enable file name,function name,line number in log
--disable-color disable log color
--sock-buf <number> buf size for socket,>=10 and <=10240,unit:kbyte,default:512
-h,--help print this help message
```
# 应用
#### UDPspeeder + openvpn加速任何流量
如果你只是需要玩游戏,效果(可能/大概)会比kcp/finalspeed方案更好。可以优化tcp游戏的延迟通过冗余发包避免了上层的重传。比如魔兽世界。
![image0](images/Capture2.PNG)
跟openvpn via kcptun方式的对比
kcptun在udp层有RS code也是一种冗余传输通过openvpn把流量转成tcp再通过kcptun加速是有一定效果的。但是tcp的是按序到达的。按序到达的意思是,如果你发了1 2 3 4 5 6 ,6个包如果第一个包丢了那么必须等第一个包重传成功以后 2 3 4 5 6 才能到达只要有一个包不到后续数据包就要一直等待。用tcp承载udp流量会破坏udp的实时性。会造成游戏卡顿更严重。
udp协议本身是ip协议加上了端口之后的直接封装udp继承了ip协议的实时/乱序到达特性更适合中转vpn。
#### UDPspeeder + kcptun/finalspeed同时加速tcp和udp流量
如果你需要用加速的tcp看视频和下载文件这样效果比vpn方案更好。不论是速度还是流量的耗费上。
![image0](images/Capture3.PNG)

1
images/11 Normal file
View File

@ -0,0 +1 @@
11

BIN
images/Capture.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
images/Capture2.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
images/Capture3.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
images/Capture4.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
images/Capture5.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
images/Capture6.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB