We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
English Only (except for bug reporting). https://github.com/wangyu-/UDPspeeder/wiki/UDPspeeder-openvpn-config-guide 其中有ip route add 128.0.0.0/1 via x.x.x.x dev tun100是不是错了?应该ip route add 127.0.0.0/1 via x.x.x.x dev tun100才对?
The text was updated successfully, but these errors were encountered:
It's as expected.
128/1 is 10000000/1
127/1 is 01111111/1
#chang x.x.x.x to the P-to-P dest address ip route add 0.0.0.0/1 via x.x.x.x dev tun100 ip route add 128.0.0.0/1 via x.x.x.x dev tun100
01111111/1 is not what we want.
Sorry, something went wrong.
0.0.0.0/1 + 128.0.0.0/1 = 0.0.0.0/0
No branches or pull requests
English Only (except for bug reporting).
https://github.com/wangyu-/UDPspeeder/wiki/UDPspeeder-openvpn-config-guide
其中有ip route add 128.0.0.0/1 via x.x.x.x dev tun100是不是错了?应该ip route add 127.0.0.0/1 via x.x.x.x dev tun100才对?
The text was updated successfully, but these errors were encountered: