电脑网络 · 2024年04月11号 0

端口转发、二级代理、隧道中转、链式代理

视频文档

x-ui

安装x-ui:bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)

gost-v3

项目地址:https://github.com/go-gost/gost

官方文档:https://gost.run

端口转发

x-ui启用端口转发:创建 dokodemo-door

gost启用端口转发:./gost -L tcp://:9527/落地机ip:80

二级代理

参考:https://youtu.be/Vj4TGd9IaQc

隧道中转

方式1:

中转机:./gost -L tcp://:9527 -F relay+tls://1.1.1.1:8443

落地机:./gost -L relay+tls://:8443/:80

方式2:

中转机:./gost -L tcp://:9527/1.1.1.1:80 -F relay+tls://1.1.1.1:8443

落地机:./gost -L relay+tls://:8443

后台运行:

nohup 运行指令 > gost.log 2>&1 &

链式代理

clash:

  - name: "链式代理"
   type: relay
   proxies:
      - proxy1
      - proxy2
      - proxy3
YAML

v2ray代理链:https://toutyrater.github.io/advanced/outboundproxy.html
gost代理链:https://gost.run/concepts/chain/