Sudhi Herle

Results 15 comments of Sudhi Herle

The logs show broken pipe when the server is connected to downstream iperf instance. > `:2022/05/16 08:44:20.715817 [gotun-:8877-10.128.227.23:8877.0x4-127.0.0.1:34840-127.0.0.1:5201] (server.go:713) 127.0.0.1:5201: Write Err write tcp 127.0.0.1:34840->127.0.0.1:5201: write: broken pipe` EPIPE (broken...

I don't understand the use case; are you trying to send clear-text UDP over TLS (TCP)? If so, this is a major change to the code; I need to think...

If I understand you correctly, you have Box A that needs to access a public web service; and the public web service runs TLS 1.2. If so, then yes, you...

That is normal. When one end of the socket closes connection, the end that is reading (i.e., server.go) gets "zero bytes" and in golang, EOF is also set. Here is...

Pls check if your service does a redirect to a different server/URL. My first try with www.kernel.org confused me because of the HTTP 3xx redirect. After I put the exact...

do you have any logs or other details to help narrow down the "retries"?

Could you try the latest version (0.4.3) and see if it produces the retries?

So, #1: if you are on _any_ linux system and type make on the top-dir of this repo, it will by default build a _statically_ linked executable. You can move...

If I understood you correctly: Clients --> Local SOCKS server --> TLS/QUIC --> Remote go-tunnel with specific outbound ports. In this scenario - the difficulty is mapping the SOCKS resolved...

Ah I understand now; Thank you for clarifying. I think the example I provided would work for 3B? In fact that is how I use gotunnel today - I have:...