利用 GOST 搭建UDP和TCP的加密中转隧道
先下载并解压
wget -N –no-check-certificate https://www.632idc.com/tools/gost-linux-amd64-2.11.5.gz && gzip -d gost-linux-amd64-2.11.5.gz
改名:
mv gost-linux-amd64-2.11.5 gost
给与运行权限:
chmod +x gost
运行程序:
nohup ./gost -L udp://:1122 -L tcp://:1122 -F relay+mtls://111.111.111.111:12345
监听本机 1122 端口的 TCP、UDP 连接,转发到111.111.111.111的 12345 端口。
然后在111.111.111.111的机器,也要运行gost命令:
nohup ./gost -L relay+mtls://:12345/222.222.222.222:54321
监听本机的 12345 端口,接收转发过来的连接,再转给222.222.222.222的54321端口。
注意因为gost需要窗口化运行,关掉Ssh后,程序也关闭了,为了在后台也可以使用,所以使用nohup 命令,或者也可以在结尾加 & 也可以。