Elsa Granger

Results 65 comments of Elsa Granger

Same issue here, have you figured it out?

@qdm12 I check with ss-server only. It works ``` 10:10:38.843050 IP 192.168.1.3.63647 > c7bfc8eb1bf7.8388: UDP, length 71 10:10:38.843435 IP c7bfc8eb1bf7.40855 > server.20001: UDP, length 16 10:10:38.869870 IP server.20001 > c7bfc8eb1bf7.40855:...

@qdm12 I am trying this: client.py -> clash's tun -> my pc's ss gluetun's ss gluetun's wg vpn's wg server.py > Access the shadowsocks server through the vpn ip address...

1. [clash's tun doc](https://github.com/Dreamacro/clash/wiki/premium-core-features#tun-device) But it is only the tutorial of how to use. In a nutshell, it is used for capturing all traffic using a driver and use Shadowsocks...

@qdm12 Well, for point 3, I think that because ss-server is using the same network interface to commuicate with my pc and the server, it has no way to send...

I think that I got some point. TCP is connection-oriented, however the UDP is not. While handling the TCP packet, the 3-way handshake makes it send the packet using incoming...

@qdm12 I did some research. In https://github.com/shadowsocks/shadowsocks-libev/issues/2008 , the author used routing table and some shadowsocks args to properly set the outgoing interface, and it looks like that it will...

I realize that in the past, I turned off the firewall according to https://github.com/qdm12/gluetun/issues/598 . Because I am using iptables-nft in the host, resulting `can't initialize iptables table `filter': Table...

@qdm12 After digging throught the ss-server, I bind the listening addr to eth0 to make this https://github.com/qdm12/ss-server/blob/master/pkg/udp/server.go#L50 happy. ```diff diff --git a/cmd/ss-server/main.go b/cmd/ss-server/main.go index af27e14..dd59a11 100644 --- a/cmd/ss-server/main.go +++ b/cmd/ss-server/main.go...

@Steve-Brule Maybe you can mount the entrypoint file into container in docker-compose, and set entrypoint to the wrapper in docker-compose. In this way, no modification will be made in Dockerfile....