alpine系统搭建hy2节点

  • 更新系统
1
apk update && apk upgrade
  • 查看ip
1
curl ifconfig.me
  • alpine中安装hysteria2
1
wget -O hy2.sh https://raw.githubusercontent.com/zrlhk/alpine-hysteria2/main/hy2.sh  && sh hy2.sh

打开V2rayN,选择服务器,选择添加hy2服务器

1
2
3
4
5
6
7
8
9
10
别名:随便
地址:2a01:4f9:6b:47e9::345 ipv6
端口:40443 去配置文件:/etc/hysteria/config.yaml 查看
密码:5PK35VON4/KM64bxw8cEXtkt 去配置文件:/etc/hysteria/config.yaml 查看
混淆密码:空
跳跃端口范围 空

传输层安全 tls
SNI bing.com
跳过证书验证 true 其他默认
  • 卸载Hysteria2
  1. 停止运行中的hy2服务
1
sudo rc-service hysteria stop
  1. 禁用开机自启动
1
sudo rc-update del hysteria
  1. 删除hy2服务文件
1
sudo rm /etc/init.d/hysteria
  1. 删除hy2配置文件
1
sudo rm -rf /etc/hysteria/
  1. 确认卸载完成
1
ps aux | grep hysteria

如果**仅显示 grep hysteria**,则表明系统中已无 Hysteria2 进程,卸载成功。