Releases: nadoo/glider
v0.5.2
CHANGES:
- Add ssr support:
-
cli:
glider -verbose -listen :8443 -forward "ssr://method:pass@1.1.1.1:8443?protocol=auth_aes128_md5&protocol_param=xxx&obfs=tls1.2_ticket_auth&obfs_param=yyy"
-
config file:
verbose=True listen=:8443 forward=ssr://method:pass@1.1.1.1:8443?protocol=auth_aes128_md5&protocol_param=xxx&obfs=tls1.2_ticket_auth&obfs_param=yyy
-
v0.5.1
v0.5.0
CHANGES:
- Add tcp support to dns forwarding server.
- Add udp tunnel support:
glider -listen udptun://:53=8.8.8.8:53 -forward ss://method:pass@1.1.1.1:8443
- Add udp over tcp tunnel support(the last forwarding node must be glider):
glider -listen uottun://:53=8.8.8.8:53 -forward ss://method:pass@1.1.1.1:8443
- Add udp support to ss server and client.
- Add udp support to socks5 server and client.
v0.4.3
v0.4.2
v0.4.1
CHANGES:
-
DNS Forwarding Server
-
Enable dns forwarding server in main config
dns=:53 dnsserver=8.8.8.8:53
-
Specify different upstream dns server based on destinations in rule file
# specify a different dns server(if need) dnsserver=208.67.222.222:53
-
Add resolved IPs to proxy rules
-
Add resolved IPs to ipset
-
-
IPSet Mangement
-
Enable ipset management in main config
ipset=glider
-
Add ip/cidrs from rule files on startup
-
Add resolved ips for domains from rule files by dns forwarding server
-
See config and examples for more details.
v0.3.2
v0.3.1
CHANGES:
-
Improve proxy checking method, some proxy server intend to response nothing when the request is invalid, and it will affect the result of proxy_check function. So we changed the check method to sending a "HTTP GET" request and waiting for the server's response, If the response starts with "HTTP", then the forwarders are available.
so WE SHOULD CHANGE the "checkwebsite" config like below:
# Used to connect via forwarders, if the host is unreachable, the forwarder # will be set to disabled. # MUST be a HTTP website server address, format: HOST[:PORT]. HTTPS NOT SUPPORTED. checkwebsite=www.apple.com
HTTPS Server not supported in
checkwebsite
config now, please update your config file -
fixed a bug in strategy proxy ha mode, which actually act in rr mode.
v0.3.0
CHANGES:
-
add destination based rule proxy support
- specify rule file using "-rulefile PATH" in command line or "rulefile=PATH" in config file.
- see configuration examples.
-
change flag name "checkhost" to "checkwebsite", you must specify a HTTP or HTTPS address with the format "HOST:PORT"