diff --git a/bypass-mtu-limitation.md b/bypass-mtu-limitation.md index 061f0b8..f2cb771 100644 --- a/bypass-mtu-limitation.md +++ b/bypass-mtu-limitation.md @@ -1,9 +1,9 @@ udp2raw by default support MTU max at around 13xx, depending on what kind of VPN you are using. (although I am usually suggesting 1200) -In case you need MTU >1300, you can chain [UDPspeeder](https://github.com/wangyu-/UDPspeeder) in between: +In case you need MTU >1300, it's a well-known problem which can be near perfectly sloved by chaining [UDPspeeder](https://github.com/wangyu-/UDPspeeder) in between: ``` -wireguard_client-->udpspeeder_client-->udp2raw_client------------------->udp2raw_server-->udpspeeder_server-->wireguard_server +wireguard_client-->udpspeeder_client-->udp2raw_client---------(internet)---------->udp2raw_server-->udpspeeder_server-->wireguard_server ``` -UDPspeeder (with `--mode 0`, the default) supports both user space package splitting and FEC, it allows you to send large packet efficiently without enlarge the network packet loss (maybe this is the only efficient way ever). But you might need to [tune parameters](https://github.com/wangyu-/UDPspeeder/wiki/Suggested-parameters). \ No newline at end of file +UDPspeeder (with `--mode 0`, the default mode) supports both user space package splitting and FEC, it allows you to send large packet efficiently without enlarge the network packet loss (maybe this is the only efficient way ever). But you might need to [tune parameters](https://github.com/wangyu-/UDPspeeder/wiki/Suggested-parameters). \ No newline at end of file