add README_en.md
This commit is contained in:
parent
3418dd0f00
commit
605c43ca08
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
### GO语言实现的安全隧道
|
### GO语言实现的安全隧道
|
||||||
|
|
||||||
|
[English README](README_en.md)
|
||||||
|
|
||||||
## 功能特性
|
## 功能特性
|
||||||
|
|
||||||
- [x] 多端口监听
|
- [x] 多端口监听
|
||||||
@ -12,7 +14,8 @@
|
|||||||
- [x] DNS解析和代理
|
- [x] DNS解析和代理
|
||||||
- [x] TUN/TAP设备
|
- [x] TUN/TAP设备
|
||||||
- [x] 负载均衡
|
- [x] 负载均衡
|
||||||
- [x] 路由控制
|
- [x] 流量控制
|
||||||
|
- [x] 准入控制
|
||||||
- [x] 动态配置
|
- [x] 动态配置
|
||||||
- [x] Prometheus监控指标
|
- [x] Prometheus监控指标
|
||||||
- [x] Web API
|
- [x] Web API
|
||||||
|
53
README_en.md
Normal file
53
README_en.md
Normal file
@ -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)
|
@ -1,5 +1,5 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
version = "3.0.0-beta.2"
|
version = "3.0.0-beta.3"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user