2017-07-13 21:53:15 +08:00
|
|
|
# glider
|
|
|
|
glider is a forward proxy with several protocols support.
|
2017-07-13 21:55:41 +08:00
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
go get -u github.com/nadoo/glider
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
```bash
|
2017-07-18 19:25:54 +08:00
|
|
|
glider v0.2 usage:
|
|
|
|
-checkduration int
|
2017-07-18 19:01:42 +08:00
|
|
|
proxy check duration(seconds) (default 30)
|
2017-07-18 19:25:54 +08:00
|
|
|
-checkhost string
|
|
|
|
proxy check address (default "www.apple.com:443")
|
|
|
|
-config string
|
|
|
|
config file path
|
|
|
|
-forward value
|
2017-07-13 21:55:41 +08:00
|
|
|
forward url, format: SCHEMA://[USER|METHOD:PASSWORD@][HOST]:PORT[,SCHEMA://[USER|METHOD:PASSWORD@][HOST]:PORT]
|
2017-07-18 19:25:54 +08:00
|
|
|
-listen value
|
2017-07-13 21:55:41 +08:00
|
|
|
listen url, format: SCHEMA://[USER|METHOD:PASSWORD@][HOST]:PORT
|
2017-07-18 19:25:54 +08:00
|
|
|
-strategy string
|
2017-07-13 21:55:41 +08:00
|
|
|
forward strategy, default: rr (default "rr")
|
2017-07-18 19:25:54 +08:00
|
|
|
-verbose
|
|
|
|
verbose mode
|
2017-07-13 21:55:41 +08:00
|
|
|
|
|
|
|
Available Schemas:
|
|
|
|
mixed: serve as a http/socks5 proxy on the same port. (default)
|
|
|
|
ss: ss proxy
|
|
|
|
socks5: socks5 proxy
|
|
|
|
http: http proxy
|
|
|
|
redir: redirect proxy. (used on linux as a transparent proxy with iptables redirect rules)
|
|
|
|
tcptun: a simple tcp tunnel
|
|
|
|
dnstun: listen on udp port and forward all dns requests to remote dns server via forwarders(tcp)
|
|
|
|
|
|
|
|
Available schemas for different modes:
|
|
|
|
listen: mixed ss socks5 http redir tcptun dnstun
|
|
|
|
forward: ss socks5 http
|
|
|
|
|
|
|
|
Available methods for ss:
|
|
|
|
AEAD_AES_128_GCM AEAD_AES_192_GCM AEAD_AES_256_GCM AEAD_CHACHA20_POLY1305 AES-128-CFB AES-128-CTR AES-192-CFB AES-192-CTR AES-256-CFB AES-256-CTR CHACHA20-IETF XCHACHA20
|
|
|
|
|
|
|
|
Available forward strategies:
|
|
|
|
rr: Round Robin mode
|
|
|
|
ha: High Availability mode
|
|
|
|
|
|
|
|
Examples:
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -config glider.conf
|
|
|
|
-run glider with specified config file.
|
|
|
|
|
|
|
|
glider -listen :8443
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :8443, serve as http/socks5 proxy on the same port.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen ss://AEAD_CHACHA20_POLY1305:pass@:8443
|
|
|
|
-listen on 0.0.0.0:8443 as a shadowsocks server.
|
2017-07-13 21:55:41 +08:00
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen socks5://:1080 -verbose
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :1080 as a socks5 proxy server, in verbose mode.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen http://:8080 -forward socks5://127.0.0.1:1080
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :8080 as a http proxy server, forward all requests via socks5 server.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen redir://:1081 -forward ss://method:pass@1.1.1.1:443
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :1081 as a transparent redirect server, forward all requests via remote ss server.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen tcptun://:80=2.2.2.2:80 -forward ss://method:pass@1.1.1.1:443
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :80 and forward all requests to 2.2.2.2:80 via remote ss server.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen socks5://:1080 -listen http://:8080 -forward ss://method:pass@1.1.1.1:443
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :1080 as socks5 server, :8080 as http proxy server, forward all requests via remote ss server.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen redir://:1081 -listen dnstun://:53=8.8.8.8:53 -forward ss://method:pass@server1:port1,ss://method:pass@server2:port2
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :1081 as transparent redirect server, :53 as dns server, use forward chain: server1 -> server2.
|
|
|
|
|
2017-07-18 19:25:54 +08:00
|
|
|
glider -listen socks5://:1080 -forward ss://method:pass@server1:port1 -forward ss://method:pass@server2:port2 -strategy rr
|
2017-07-13 21:55:41 +08:00
|
|
|
-listen on :1080 as socks5 server, forward requests via server1 and server2 in roundrbin mode.
|
|
|
|
```
|
|
|
|
|
2017-07-18 19:45:35 +08:00
|
|
|
## Config File
|
|
|
|
Command:
|
|
|
|
```bash
|
|
|
|
glider -config glider.conf
|
|
|
|
```
|
|
|
|
Config file, **just use the command line flag name as the key name**:
|
|
|
|
```bash
|
|
|
|
### glider config file
|
|
|
|
|
|
|
|
# verbose mode, print logs
|
|
|
|
verbose
|
|
|
|
|
|
|
|
# listen on 8443, serve as http/socks5 proxy on the same port.
|
|
|
|
listen=:8443
|
|
|
|
|
|
|
|
# listen on 8443 as a ss server.
|
|
|
|
# listen=ss://AEAD_CHACHA20_POLY1305:pass@:8443
|
|
|
|
|
|
|
|
# listen=http://:8080
|
|
|
|
# listen=socks5://:1080
|
|
|
|
# listen=redir://:1081
|
|
|
|
# listen=tcptun://:8080=1.1.1.1:80
|
|
|
|
|
|
|
|
# listen on udp port 53, forward dns requests via tcp protocol
|
|
|
|
listen=dnstun://:53=8.8.8.8:53
|
|
|
|
|
|
|
|
# upstream forward proxy
|
|
|
|
forward=socks5://192.168.1.10:1080
|
|
|
|
|
|
|
|
# upstream forward proxy
|
|
|
|
forward=ss://method:pass@1.1.1.1:443
|
|
|
|
|
|
|
|
# upstream forward proxy (forward chain)
|
|
|
|
forward=http://1.1.1.1:8080,socks5://2.2.2.2:1080
|
|
|
|
|
|
|
|
# multiple upstream proxies forwad strategy
|
|
|
|
strategy=rr
|
|
|
|
|
|
|
|
# check address (to check a whether a forward proxy)
|
|
|
|
checkhost=www.apple.com:443
|
|
|
|
# check duration
|
|
|
|
checkduration=30
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-07-13 21:55:41 +08:00
|
|
|
## Service
|
|
|
|
```bash
|
|
|
|
cd /etc/systemd/system/
|
|
|
|
vim glider.service
|
|
|
|
```
|
|
|
|
|
|
|
|
```bash
|
|
|
|
[Unit]
|
|
|
|
Description=glider
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2017-07-18 22:16:30 +08:00
|
|
|
PermissionsStartOnly=true
|
2017-07-13 21:55:41 +08:00
|
|
|
ExecStartPre=/bin/mkdir -p /run/glider
|
|
|
|
ExecStartPre=/bin/chown nobody:nobody /run/glider
|
2017-07-18 22:16:30 +08:00
|
|
|
# NOTE: change to your glider path
|
|
|
|
ExecStart=/opt/glider/glider -config /opt/glider/glider.conf
|
2017-07-13 21:55:41 +08:00
|
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
|
|
ExecStop=/bin/kill -INT $MAINPID
|
|
|
|
Restart=always
|
|
|
|
User=nobody
|
|
|
|
Group=nobody
|
|
|
|
UMask=0027
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
```
|
|
|
|
|
|
|
|
```bash
|
|
|
|
systemctl enable glider.service
|
|
|
|
systemctl start glider.service
|
|
|
|
```
|
2017-07-14 11:20:02 +08:00
|
|
|
|
2017-07-18 19:45:35 +08:00
|
|
|
## Links
|
2017-07-16 20:13:01 +08:00
|
|
|
- [go-ss2](https://github.com/shadowsocks/go-shadowsocks2): the core ss protocol support
|
2017-07-18 19:45:35 +08:00
|
|
|
- [gost](https://github.com/ginuerzh/gost): ideas and inspirations
|
|
|
|
- [conflag](https://github.com/nadoo/conflag): command line and config file parse support
|