Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
gost
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
gost
Commits
9436c669
Commit
9436c669
authored
May 16, 2015
by
ginuerzh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update README, add tunnel encryption description
parent
fdabebca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
3 deletions
+39
-3
README.md
README.md
+39
-3
No files found.
README.md
View file @
9436c669
...
@@ -10,7 +10,14 @@ gost - GO Simple Tunnel
...
@@ -10,7 +10,14 @@ gost - GO Simple Tunnel
4.
Tunnel UDP over TCP, UDP数据包使用TCP通道传输,以解决防火墙的限制。
4.
Tunnel UDP over TCP, UDP数据包使用TCP通道传输,以解决防火墙的限制。
5.
多种加密方式(tls,aes-256-cfb,des-cfb,rc4-md5等)。
5.
多种加密方式(tls,aes-256-cfb,des-cfb,rc4-md5等)。
6.
客户端兼容shadowsocks协议,可作为shadowsocks服务器。
6.
客户端兼容shadowsocks协议,可作为shadowsocks服务器。
7.
v1.1支持websocket。
####版本更新
#####v1.1
*
支持websocket tunnel。
#####v1.2
*
websocket tunnel增加加密功能。
二进制文件下载:https://bintray.com/ginuerzh/gost/gost
二进制文件下载:https://bintray.com/ginuerzh/gost/gost
...
@@ -21,9 +28,9 @@ gost - GO Simple Tunnel
...
@@ -21,9 +28,9 @@ gost - GO Simple Tunnel
> -S="": the server that connecting to
> -S="": the server that connecting to
> -cert="": cert
.pem
file for tls
> -cert="": cert file for tls
> -key="": key
.pem
file for tls
> -key="": key file for tls
> -m="": tunnel cipher method
> -m="": tunnel cipher method
...
@@ -53,3 +60,32 @@ gost - GO Simple Tunnel
...
@@ -53,3 +60,32 @@ gost - GO Simple Tunnel
#####作为shadowsocks服务器(默认使用rc4-md5加密,密码:ginuerzh@gmail.com):
#####作为shadowsocks服务器(默认使用rc4-md5加密,密码:ginuerzh@gmail.com):
`$ gost -L=:8080 -S=your_server_ip:443 -ss`
`$ gost -L=:8080 -S=your_server_ip:443 -ss`
####tunnel加密说明
#####目前支持的加密方法
tls, aes-128-cfb, aes-192-cfb, aes-256-cfb, des-cfb, bf-cfb, cast5-cfb, rc4-md5, rc4, table
#####Client
Client端通过-m参数设置加密方式,默认为不加密(-m参数为空)。
如果设置的加密方式不被支持,则默认为不加密。
当设置的加密方式为tls时,-p参数无效。
当设置的加密方式为非tls时,通过-p参数设置加密密码,且不能为空,默认密码为ginuerzh@gmail.com;-p参数必须与Server端的-p参数相同。
#####Server
Server端通过-m参数设置加密方式,默认为不加密(-m参数为空)。
如果设置的加密方式不被支持,默认为不处理。
如果没有设置加密方式(-m参数为空),则由client端控制加密方式,即client端可通过-m参数指定Server端使用哪种加密方式。
如果设置了加密方式(-m参数不为空),client端必须使用与Server端相同的加密方式。
当设置的加密方式为tls时,-p参数无效;-key参数可手动指定公钥文件,-cert参数可手动指定私钥文件,如果未指定,则使用默认的公钥与私钥。
当设置的加密方式为非tls时,-key,-cert参数无效;通过-p参数设置加密密码,且不能为空,默认密码为ginuerzh@gmail.com。
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment