加速下载Hysteria · GitHub Release · 反代镜像加速

app/v2.9.1

本区块自动同步 Hysteria 的官方 GitHub Release,并为每个文件预生成 4 个反代镜像加速下载通道。 国内访问 GitHub 慢、下载断、连接超时时,挑一个反代列点开即可,无需手动拼接镜像 URL。镜像只改变访问路径,文件内容、版本号、SHA 校验与 GitHub 官方一致。

发布于 2026-05-1028 个文件⭐ 21,170License MITgithub.com/apernet/hysteria

怎么挑:Windows 优先 .exe / .msi;macOS 优先 .dmg;Linux 选 .deb / .rpm / .AppImage;Android 选 .apk;带 .sig / .asc / .sha256 的是校验文件,不是安装包。 下载慢:从右侧四个反代列里挑一个能通的点开就是加速下载直链,复制后扔下载器也可以。

文件 / 平台大小官方直链反代 · gh.llkk.cc反代 · ghproxy.net反代 · ghfast.top反代 · mirror.ghproxy.com
hashes.txt其他2.5 KB
hysteria-android-386Android19.8 MB
hysteria-android-amd64Android20.5 MB
hysteria-android-arm64Android18.7 MB
hysteria-android-armv7Android19.4 MB
hysteria-darwin-amd64其他20.4 MB
hysteria-darwin-amd64-avx其他20.4 MB
hysteria-darwin-arm64其他18.8 MB
hysteria-freebsd-386其他18.2 MB
hysteria-freebsd-amd64其他19.6 MB
hysteria-freebsd-amd64-avx其他19.6 MB
hysteria-freebsd-arm其他18.2 MB
hysteria-freebsd-arm64其他18.0 MB
hysteria-linux-386Linux19.0 MB
hysteria-linux-amd64Linux20.3 MB
hysteria-linux-amd64-avxLinux20.3 MB
hysteria-linux-armLinux18.8 MB
hysteria-linux-arm64Linux18.7 MB
hysteria-linux-armv5Linux18.9 MB
hysteria-linux-loong64Linux19.8 MB
hysteria-linux-mipsleLinux21.5 MB
hysteria-linux-mipsle-sfLinux21.5 MB
hysteria-linux-riscv64Linux17.8 MB
hysteria-linux-s390xLinux20.6 MB
hysteria-windows-386.exeWindows19.6 MB
hysteria-windows-amd64-avx.exeWindows20.8 MB
hysteria-windows-amd64.exeWindows20.8 MB
hysteria-windows-arm64.exeWindows18.6 MB

本页加速下载用到的 4 个 GitHub 反代镜像

反代前缀说明
gh.llkk.cchttps://gh.llkk.cc/国内稳定
ghproxy.nethttps://ghproxy.net/老牌备份
ghfast.tophttps://ghfast.top/新生快线
mirror.ghproxy.comhttps://mirror.ghproxy.com/子域名

反代是第三方公益服务,单个通道可能临时挂掉,多挑几个再判断网络是否有问题。所有反代均为 HTTPS,文件内容与 GitHub 原始 Release 字节一致,可放心做 SHA256 校验。

GitHub 仓库简介:Hysteria is a powerful, lightning fast and censorship resistant proxy. · 许可 MIT · ⭐ 21,170

TL;DR

Hysteria 2 是基于 QUIC 的高速抗审查代理协议,21K+ stars。核心优势:弱网抗丢包(QUIC 多路复用)、端口跳跃抗 QoS、真实 TLS 握手。部署get.hy2.sh 一键脚本 + ACME 自动证书。适合:跨境移动网络、高带宽下载、ISP QoS 限速绕过。抗审查:仅次于 VLESS Reality,远优于 Shadowsocks / Trojan。

Hysteria 是 2022-2026 年 QUIC 代理协议的代表,作者 apernet 长期维护。本篇按协议原理、服务端、端口跳跃、客户端、对比五块讲清楚。

协议原理

传统 TCP-based 代理(SS / VLESS):

   TCP 三次握手 + TLS 握手 + 数据
   ↓ 丢包就会 retransmit,弱网卡顿严重

Hysteria 2 (QUIC-based):

   QUIC(UDP)+ TLS 1.3 集成在握手内
   ↓ 多路复用(一个连接传多个流)
   ↓ 丢包重传只影响该流,其它流继续

Hysteria 2 用 QUIC 协议(HTTP/3 同协议):

  • 完整 TLS 1.3 + 真实证书
  • 多路复用:一个连接传多个 TCP 流
  • 抗丢包:QUIC 流级别重传
  • 端口跳跃:抗 GFW 按端口的 QoS

服务端部署

一键脚本(推荐)

bash <(curl -fsSL https://get.hy2.sh/)

脚本自动:

  • 下载 hysteria binary
  • 创建 systemd service
  • 申请 ACME 证书(你提供域名 + 邮箱)
  • 生成默认 config.yaml

config.yaml 示例

listen: :443

acme:
  domains:
    - your.example.com
  email: [email protected]

auth:
  type: password
  password: yourpassword

masquerade:
  type: proxy
  proxy:
    url: https://www.bing.com
    rewriteHost: true

masquerade 表示当不带正确密码的请求来时,伪装成 bing.com 的反向代理。

Docker

docker run -d \
  --name hysteria \
  -v $(pwd)/config.yaml:/etc/hysteria/config.yaml \
  -p 443:443/udp \
  tobyxdd/hysteria server -c /etc/hysteria/config.yaml

端口跳跃(抗 QoS)

GFW 对 443 / 80 等单端口长连接 UDP 流量会做 QoS 限速。端口跳跃让一个连接随机切换源端口段。

服务端 iptables

iptables -t nat -A PREROUTING -p udp --dport 20000:50000 -j REDIRECT --to-ports 443

客户端 hysteria2 URL

hysteria2://[email protected]:443?mport=20000-50000#node1

客户端会从 20000-50000 之间随机选源端口。GFW 看到的是多端口分散流量,QoS 无法识别。

客户端连接

GUI 客户端(推荐)

命令行客户端

hysteria client -c client-config.yaml

client-config.yaml:

server: your.example.com:443
auth: yourpassword

socks5:
  listen: 127.0.0.1:1080
http:
  listen: 127.0.0.1:8080

与同类协议对比

维度Hysteria 2VLESS RealityShadowsocksTrojan
抗 GFW★★★★★★★★★★★★★★★
弱网性能★★★★★★★★★★★★
配置复杂度★★★★★★★
端口跳跃
客户端兼容最多
适合场景移动网络 / 高带宽抗审查极强老用户TLS 伪装

配套订阅

Hysteria 2 是单一协议,订阅可能包含多个协议混合:

  • Hysteria 2 节点(弱网友好)
  • VLESS Reality 节点(抗审查极强)
  • Shadowsocks 节点(兼容性好)

配套订阅线路 提供多协议混合订阅,5 端同步。

来源与最后核对

本文最后实际验证日期:2026-05-18,测试环境:Ubuntu 22.04 + Hysteria v2.9.1 + Mihomo 客户端。