最简单的住宅代理 IP 使用教程,一键安装,支持 http/https/socks5 出站

Vevc • 160 人浏览

本期关键词:自建代理 | 住宅代理 | Sing-box | Argo Tunnel

本期项目地址:
https://github.com/vevc/singbox-installer

住宅代理服务:
https://dashboard.thordata.com/zh/register?invitation_code=619S6RWH
八折优惠券:vevclab

上期问题汇总

  1. 是否支持 Alpine 系统
  2. 是否考虑加入 http/https 的出站
  3. 怎么使用 Argo 隧道

材料准备

  • 一台 VPS
  • 家宽代理节点

防火墙端口放行

不同的操作系统防火墙放行操作略有差异。

ufw allow 8080,8443,9443/tcp && ufw allow 8080,8443,9443/udp

自建节点(基础)

代理端口尽量选择 Web 常用端口。

curl -fsSL "https://raw.githubusercontent.com/vevc/singbox-installer/main/install.sh" | bash -s -- \
  --install-deps \
  --vless-port 8080 \
  --hy2-port 8443 \
  --tuic-port 9443

住宅代理的使用(主要)

脚本根据用户名分流。

curl -fsSL "https://raw.githubusercontent.com/vevc/singbox-installer/main/install.sh" | bash -s -- \
  --install-deps \
  --vless-port 8080 \
  --hy2-port 8443 \
  --tuic-port 9443 \
  --user vevc \
  --user thordata-us \
  --user thordata-pl \
  --user thordata-sg \
  --user-http thordata-us=xx \
  --user-https thordata-pl=xx \
  --user-https thordata-sg=xx

结合使用 Argo 隧道(进阶)

临时隧道

  --argo \

固定隧道

  --argo \
  --argo-domain example.com \
  --argo-token eyJhIjoiND... \

更多用法

Nat VPS / 使用 CA 正式证书等更多用法查看项目 README 说明。