diff --git a/README.md b/README.md index 460d7b7..69ef8ae 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ ### GO语言实现的安全隧道 +[English README](README_en.md) + ## 功能特性 - [x] 多端口监听 @@ -12,7 +14,8 @@ - [x] DNS解析和代理 - [x] TUN/TAP设备 - [x] 负载均衡 -- [x] 路由控制 +- [x] 流量控制 +- [x] 准入控制 - [x] 动态配置 - [x] Prometheus监控指标 - [x] Web API diff --git a/README_en.md b/README_en.md new file mode 100644 index 0000000..6849d30 --- /dev/null +++ b/README_en.md @@ -0,0 +1,53 @@ +# GO Simple Tunnel + +### A simple security tunnel written in golang + +## Features + +- [x] Listening on multiple ports +- [x] Multi-level forward chain. +- [x] Rich protocol +- [x] TCP/UDP port forwarding +- [x] TCP/UDP transparent proxy +- [x] DNS resolver and proxy +- [x] TUN/TAP device +- [x] Load balancing +- [x] Traffic control +- [x] Admission control +- [x] Dynamic configuration +- [x] Prometheus metrics +- [x] Web API +- [ ] Web UI + +Wiki: [https://latest.gost.run](https://latest.gost.run/en/) + +Telegram: [https://t.me/gogost](https://t.me/gogost) + +Google group: [https://groups.google.com/d/forum/go-gost](https://groups.google.com/d/forum/go-gost) + +Legacy version: [v2.gost.run](https://v2.gost.run/en/) + +## Installation + + +### Binary files + +[https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases) + +### From source + +``` +git clone https://github.com/go-gost/gost.git +cd gost/cmd/gost +go build +``` + +### Docker + +``` +docker pull gogost/gost +``` + +### Shadowsocks Android + +[xausky/ShadowsocksGostPlugin](https://github.com/xausky/ShadowsocksGostPlugin) diff --git a/cmd/gost/version.go b/cmd/gost/version.go index 4903643..2f5c09a 100644 --- a/cmd/gost/version.go +++ b/cmd/gost/version.go @@ -1,5 +1,5 @@ package main const ( - version = "3.0.0-beta.2" + version = "3.0.0-beta.3" )