This commit is contained in:
wangyu- 2017-11-18 00:05:25 -06:00
commit 1301fdc96d
2 changed files with 4 additions and 4 deletions

View File

@ -86,7 +86,7 @@ Now connecting to UDP port 3333 at the client side is equivalent to connecting t
`-k` enables simple XOR encryption `-k` enables simple XOR encryption
To run stably, pay attention to MTU. To run stably, pay attention to MTU. You can also try `--mode 0`,there will be no MTU problem in this mode.
# Advanced Topic # Advanced Topic
### Full Options ### Full Options

View File

@ -69,10 +69,10 @@ https://github.com/wangyu-/UDPspeeder/releases
假设你有一个serverip为44.55.66.77有一个服务监听在udp 7777端口。 假设你需要加速本地到44.55.66.77:7777的流量。 假设你有一个serverip为44.55.66.77有一个服务监听在udp 7777端口。 假设你需要加速本地到44.55.66.77:7777的流量。
``` ```
在server端运行: 在server端运行:
./speederv2 -s -l0.0.0.0:4096 -r127.0.0.1:7777 -f20:10 -k "passwd" ./speederv2 -s -l0.0.0.0:4096 -r127.0.0.1:7777 -f20:10 -k "passwd" --mode 0
在client端运行: 在client端运行:
./speederv2 -c -l0.0.0.0:3333 -r44.55.66.77:4096 -f20:10 -k "passwd" ./speederv2 -c -l0.0.0.0:3333 -r44.55.66.77:4096 -f20:10 -k "passwd" --mode 0
``` ```
现在client和server之间建立起了tunnel。想要连接44.55.66.77:7777只需要连接 127.0.0.1:3333。来回的所有的udp流量会被加速。 现在client和server之间建立起了tunnel。想要连接44.55.66.77:7777只需要连接 127.0.0.1:3333。来回的所有的udp流量会被加速。
@ -83,7 +83,7 @@ https://github.com/wangyu-/UDPspeeder/releases
`-k` 指定一个字符串,开启简单的异或加密 `-k` 指定一个字符串,开启简单的异或加密
如果需要更省流量或更高的下载速度,请加上`--mode 0``--mode 0`模式会牺牲一点点的延迟(默认最多8ms可调)换取更低的流量消耗和更高的吞吐率。另外`--mode 0`模式可以解决MTU问题。 推荐使用`--mode 0`选项,否则你可能需要考虑MTU问题。
###### 注意 ###### 注意
如果你没有使用`--mode 0`模式那么你需要为UDPspeeder加速的应用设置好MTU(不是在UDPspeeder中是在被加速的应用中)建议设置为1200。 如果你没有使用`--mode 0`模式那么你需要为UDPspeeder加速的应用设置好MTU(不是在UDPspeeder中是在被加速的应用中)建议设置为1200。