update README

This commit is contained in:
rui.zheng 2016-10-22 10:11:46 +08:00
parent 8552498992
commit 944af50639
2 changed files with 17 additions and 5 deletions

View File

@ -212,7 +212,7 @@ gost -L=:8080 -F=socks://server_ip:1080
**注:** 如果transport已经支持加密(wss, tls, http2)则SOCKS5不会再使用加密方法防止不必要的双重加密。 **注:** 如果transport已经支持加密(wss, tls, http2)则SOCKS5不会再使用加密方法防止不必要的双重加密。
#### Shadowsocks #### Shadowsocks
gost对Shadowsocks的支持是基于[shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go)库。 gost对shadowsocks的支持是基于[shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go)库。
服务端(可以通过ota参数开启OTA模式): 服务端(可以通过ota参数开启OTA模式):
```bash ```bash

View File

@ -3,8 +3,6 @@ gost - GO Simple Tunnel
### A simple security tunnel written in Golang ### A simple security tunnel written in Golang
[中文文档](README.md)
Features Features
------ ------
* Listening on multiple ports * Listening on multiple ports
@ -155,10 +153,24 @@ Gost HTTP2 supports two modes and self-adapting:
* As a standard HTTP2 proxy, and backwards-compatible with the HTTPS proxy. * As a standard HTTP2 proxy, and backwards-compatible with the HTTPS proxy.
* As transport (similar to wss), tunnel other protocol. * As transport (similar to wss), tunnel other protocol.
**NOTE:** The proxy chain of gost supports only one HTTP2 proxy node and the nearest rule applies, **NOTE:** The proxy chain of gost supports only one HTTP2 proxy node and the nearest rule applies,
the first HTTP2 proxy node is treated as an HTTP2 proxy, and the other HTTP2 proxy nodes are treated as HTTPS proxies. the first HTTP2 proxy node is treated as an HTTP2 proxy, and the other HTTP2 proxy nodes are treated as HTTPS proxies.
#### QUIC
Support for QUIC is based on library [quic-go](https://github.com/lucas-clemente/quic-go).
Server:
```bash
gost -L=quic://:6121
```
Client(Chrome):
```bash
chrome --enable-quic --proxy-server=quic://server_ip:6121
```
**NOTE:** Due to Chrome's limitations, it is currently only possible to access the HTTP (but not HTTPS) site through QUIC.
Encryption Mechanism Encryption Mechanism
------ ------
#### HTTP #### HTTP
@ -206,7 +218,7 @@ Otherwise, use standard SOCKS5 for communication (no-auth or user/pass).
#### Shadowsocks #### Shadowsocks
Support for shadowsocks is based on library [shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go). Support for shadowsocks is based on library [shadowsocks-go](https://github.com/shadowsocks/shadowsocks-go).
Server (The OTA mode can be enabled with the ota parameter): Server (The OTA mode can be enabled by the ota parameter):
```bash ```bash
gost -L=ss://aes-128-cfb:123456@:8338?ota=1 gost -L=ss://aes-128-cfb:123456@:8338?ota=1
``` ```