go-tun2socks icon indicating copy to clipboard operation
go-tun2socks copied to clipboard

A tun2socks implementation written in Go.

Results 14 go-tun2socks issues
Sort by recently updated
recently updated
newest added

会不会出c/c++版本的tun2socks,GO版本IOS太点用内存,直接挂。rust语言又不懂,加自己的业务又不知道如何加。

I made a couple of improvements in my fork: https://github.com/kayrus/go-tun2socks * An ability to manage tun routes including automatic hostnames resolving * Switch to go-wireguard TUN driver for a better...

系统是win7sp1,在虚拟机和物理机都测试了。 确定程序和网卡以及路由表没有任何问题。 测试结果: 没有任何流量被发送到socks5服务器。从tap网卡看到只有发送,极少有接收。 请问有知道如何解决的吗,不胜感激

配置socks服务器为本地127.0.0.1时,怎么添加路由?求指教 删除默认路由 `route delete 0.0.0.0 mask 0.0.0.0` 添加虚拟网卡出口 `route add 0.0.0.0 mask 0.0.0.0 10.0.0.1 metric 6` 代理转发网关 `route add 127.0.0.1 192.168.1.1 metric 5` 这么添加似乎无效...

Hi I want to use tun2socks with v2rayn as sock5 proxy. is there any tutorial from scratch? I know nothing from networking and coding. I also use dnscrypt with [adguard...

UDP穿透请求中的DST.ADDR和DST.PORT应该是客户端将要发出UDP请求的ip地址和端口,但现在是远程服务器的地址和端口: > https://blog.csdn.net/whatday/article/details/40183555 o VER 协议版本,5。 o CMD 命令,UDP穿透填3。 其它的CONNECT是1,BIND是2。 o RSV 保留字段,填0。 o ATYP 地址类型,IPV4:1,域名:3,IPV6:4。 o DST.ADDR IP地址。对于UDP穿透来说,好像没有什么意义,填0(也就是127.0.0.1)。 o DST.PORT 客户端想发送/接收UDP包的本地端口。后面在发送UDP包时代理服务器会检测收到的UDP包的源端口,只有和这里填入的端口号符合的包才会被处理。

fixed #100 目前先使用nio这个外部包来解决, 并且buffer的用到的[]byte没有加入共享的bytes pool.