update README

This commit is contained in:
ginuerzh 2022-04-04 21:01:58 +08:00
parent 1b31c80d2c
commit 4b88c240f8
3 changed files with 18 additions and 8 deletions

View File

@ -1,24 +1,34 @@
# GO Simple Tunnel # GO Simple Tunnel
## GO语言实现的安全隧道 ### GO语言实现的安全隧道
## 功能特性 ## 功能特性
- [x] 多端口监听 - [x] 多端口监听
- [x] 支持转发链,并支持多级转发 - [x] 多级转发链
- [x] 支持多种协议(HTTPHTTPSHTTP2SOCKS5WebsocketQUIC...) - [x] 多协议支持
- [x] 本地/远程TCP/UDP端口转发 - [x] TCP/UDP端口转发
- [x] TCP/UDP透明代理
- [x] DNS解析和代理 - [x] DNS解析和代理
- [x] TUN/TAP设备 - [x] TUN/TAP设备
- [x] 负载均衡 - [x] 负载均衡
- [x] 路由控制 - [x] 路由控制
- [x] 动态配置 - [x] 动态配置
- [x] Prometheus Metrics - [x] Prometheus监控指标
- [x] Web API - [x] Web API
- [ ] Web UI - [ ] Web UI
Wiki站点[https://latest.gost.run](https://latest.gost.run)
Telegram讨论群[https://t.me/gogost](https://t.me/gogost)
Google讨论组[https://groups.google.com/d/forum/go-gost](https://groups.google.com/d/forum/go-gost)
旧版入口:[v2.gost.run](https://v2.gost.run)
## 下载安装 ## 下载安装
### 二进制文件 ### 二进制文件
[https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases) [https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases)

2
go.mod
View File

@ -5,7 +5,7 @@ go 1.18
replace github.com/templexxx/cpu v0.0.7 => github.com/templexxx/cpu v0.0.10-0.20211111114238-98168dcec14a replace github.com/templexxx/cpu v0.0.7 => github.com/templexxx/cpu v0.0.10-0.20211111114238-98168dcec14a
require ( require (
github.com/go-gost/core v0.0.0-20220404042802-3cfb5fe2ca14 github.com/go-gost/core v0.0.0-20220404130002-d6e6efb0935b
github.com/go-gost/x v0.0.0-20220404044539-6aa1cc740156 github.com/go-gost/x v0.0.0-20220404044539-6aa1cc740156
) )

4
go.sum
View File

@ -119,8 +119,8 @@ github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/go-gost/core v0.0.0-20220404042802-3cfb5fe2ca14 h1:XxaaYRfY/zXi0xOn6zeBdfKhj8h5Io3jDN4GzFETX8A= github.com/go-gost/core v0.0.0-20220404130002-d6e6efb0935b h1:Whi3wMi5aiC9kVBfTNYe5uVcaElYZqyrDYM94MJvH+A=
github.com/go-gost/core v0.0.0-20220404042802-3cfb5fe2ca14/go.mod h1:/LzdiQ+0+3FMhyqw0phjFjXFdOa1fcQR5/bL/7ripCs= github.com/go-gost/core v0.0.0-20220404130002-d6e6efb0935b/go.mod h1:/LzdiQ+0+3FMhyqw0phjFjXFdOa1fcQR5/bL/7ripCs=
github.com/go-gost/gosocks4 v0.0.1 h1:+k1sec8HlELuQV7rWftIkmy8UijzUt2I6t+iMPlGB2s= github.com/go-gost/gosocks4 v0.0.1 h1:+k1sec8HlELuQV7rWftIkmy8UijzUt2I6t+iMPlGB2s=
github.com/go-gost/gosocks4 v0.0.1/go.mod h1:3B6L47HbU/qugDg4JnoFPHgJXE43Inz8Bah1QaN9qCc= github.com/go-gost/gosocks4 v0.0.1/go.mod h1:3B6L47HbU/qugDg4JnoFPHgJXE43Inz8Bah1QaN9qCc=
github.com/go-gost/gosocks5 v0.3.1-0.20211109033403-d894d75b7f09 h1:A95M6UWcfZgOuJkQ7QLfG0Hs5peWIUSysCDNz4pfe04= github.com/go-gost/gosocks5 v0.3.1-0.20211109033403-d894d75b7f09 h1:A95M6UWcfZgOuJkQ7QLfG0Hs5peWIUSysCDNz4pfe04=