zdszf 大佬有话说 : 2020-1-17 18:22:30
推荐中转神器+套CF神器:ginuerzh/gost
本帖最后由 zdszf 于 2020-1-17 19:35 编辑
gost配置简单,服务端就是一个二进制文件,下载后给予权限即可命令行运行.
项目地址:https://github.com/ginuerzh/gost
详细使用方式: https://docs.ginuerzh.xyz/gost/
我常用的方式:
1. 域名指向服务器,然后国外小鸡搭建服务端套CF过墙:
方法一(多路复用的websockset):
服务端:gost -L=mws://80客户端gost -L=:8080 -F=mwss://cloudflare.domain:443
方法二(ss+obfs): 服务端:gost -L=ss+ohttp://chacha20:123456@:80
客户端: gost -L=:8080 -F=ss+ohttp://chacha20:[email protected]:80 也可使用SS+OBFS做为客户端
2.国内小鸡用来搭建socks给TG:gost -L=auto://user:passwd@:8080 -F=mwss://cloudflare.domain:443
3.gost路由功能有点弱,所以我vps上v2ray来作路由,然后gost搭建代理方式转发到v2ray的监听端口,然后v2ray把访问netflix的流量再转发到原生节点去。。。。
4. 套kcp…..gost -L=kcp://:8388
自用一键脚本,偷懒的按需修改METHOD(运行参数)即可
#!/bin/bash
# Usage:
# curl https://raw.githubusercontent.com/mixool/script/debian-9/gost.sh | bash
METHOD="-L=mwss://:443 -L=http2://:444"
VER="$(wget -qO- https://github.com/ginuerzh/gost/tags | grep -oE "/tag/v[^"]*" | head -n1 | cut -dv -f2)"
VER=${VER:=2.9.1}
URL="https://github.com/ginuerzh/gost/releases/download/v${VER}/gost-linux-amd64-${VER}.gz"
echo "1. Downloading gost-linux-amd64-${VER}.gz to /root/gost from $URL" && echo
[[ -f "/root/gost" ]] && rm -rf /root/gost
wget -O – $URL | gzip -d > /root/gost && chmod +x /root/gost
echo "2. Generate /etc/systemd/system/gost.service"
cat <<EOF > /etc/systemd/system/gost.service
Description=gost
ExecStart=/root/gost $METHOD
Restart=always
User=root
WantedBy=multi-user.target
EOF
systemctl enable gost.service && systemctl daemon-reload && systemctl restart gost.service && systemctl status gost -l
MJJ还有什么好玩的姿势可以分享一波,要是这东西有安卓客户端就好了
宣传 大佬有话说 : 2020-1-17 19:33:10
总结一下就是穷折腾
蓝瘦香菇 大佬有话说 : 2020-1-17 19:09:29
h2代理+探测防御yc018t
server:
gost -L "http2://<username>:<password>@<ip>:443?cert=/etc/letsencrypt/live/<domain>/fullchain.pem&key=/etc/letsencrypt/live/<domain>/privkey.pem&probe_resist=file:/var/www/html/index.html"
client:
gost -L=:1080 -F=http2://<username>:<password>@<ip>:443
jpfree 大佬有话说 : 2020-1-17 18:49:28
不懂说的啥。。。。挽尊
ljm1447669873 大佬有话说 : 2020-1-17 19:05:42
当时就是嫌部署麻烦,感谢大佬的脚本
嘀哩哩 大佬有话说 : 2020-1-17 19:12:22
我可能是个弟弟,但你真的是个大佬
Crypt 大佬有话说 : 2020-1-17 19:13:44
这个方法很独特啊,那kcp怎么套呢?
Rayer 大佬有话说 : 2020-1-17 19:18:40
这个kcp具体怎么使用呢?相比于v2直接来有什么优势呢?
tiberius 大佬有话说 : 2020-1-17 19:24:39
没看懂,但是还是支持楼主:lol
烟花三月 大佬有话说 : 2020-1-17 19:24:42
求第3第4详细姿势
zdszf 大佬有话说 : 2020-1-17 19:30:35
Rayer 大佬有话说 : 2020-1-17 19:18
这个kcp具体怎么使用呢?相比于v2直接来有什么优势呢?
gost -L=kcp://:8388
或者gost -L ss+kcp://chacha20:123456@:8338
优势是配置简单。