UDP + tun
#2068
Replies: 1 comment
-
|
No, it's not possible, because shadowsocks is a family of proxy protocols for TCP and UDP traffic, not a VPN protocol for IP packets like WireGuard is. If you are looking for a proxy-like protocol for obfuscating your WireGuard traffic, take a look at https://github.com/database64128/swgp-go. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
Is it possible to configure shadowsocks-rust so that its behavior resembles WireGuard?
That is:
I tried to run a UDP server like this:
ssserver -s "100.100.100.100:1000" -m "2022-blake3-chacha20-poly1305" -k "9s9ldAXfVpMRXzCQRovnLNJ+3Ni3OS8+oFR2LqhxYT8=" -uand the client like this:
ip netns exec GATE_SS /home/eris/.cargo/bin/sslocal -s "100.100.100.100:1000" -m "2022-blake3-chacha20-poly1305" -k "9s9ldAXfVpMRXzCQRovnLNJ+3Ni3OS8+oFR2LqhxYT8=" --protocol tun --tun-interface-name tun0 --tun-interface-address "10.255.0.2/24" --tun-interface-destination "10.255.0.1/24" --outbound-bind-interface eth0 -UI check the result with:
ping 10.255.0.1The reply comes back too quickly, as if it were from the local network.
It seems the client–server connection is not actually being established.
Is it possible to achieve the desired behavior, and how can I do it?
Beta Was this translation helpful? Give feedback.
All reactions