跳至主要內容

X-UI搭建

三思原创大约 2 分钟vpnvps安装客户端证书目标网站

本文介绍了如何购买VPS并安装X-UI,提供了各平台客户端下载链接。同时指导了搭建vision节点申请证书的步骤,并推荐了查询ASN和寻找目标网站的工具。最后还分享了一个检测端口是否被封的网站链接。

image
image

X-UI

VPS购买

美国CN2 GIA线路:https://bwg.880805.xyzopen in new window

香港CN2 GIA线路:https://hk.880805.xyzopen in new window

日本CN2 GIA线路:https://jp.880805.xyzopen in new window

优惠码: BWHNCXNVXV

安装X-UI

bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/x-ui/956bf85bbac978d56c0e319c5fac2d6db7df9564/install.sh) 0.3.4.4

各平台客户端

Windows(v2rayN):https://github.com/2dust/v2rayN/releases/tag/6.23open in new window

Android(v2rayNG):https://github.com/2dust/v2rayNG/releases/tag/1.8.5open in new window

IOS(shadowrocket):https://apps.apple.com/app/shadowrocket/id932747118open in new window

搭建vision节点申请证书

#安装证书工具:
curl https://get.acme.sh | sh; apt install socat -y || yum install socat -y; ~/.acme.sh/acme.sh --set-default-ca --server letsencrypt

#三种方式任选其中一种,申请失败则更换方式
#申请证书方式1: 
~/.acme.sh/acme.sh  --issue -d 你的域名 --standalone -k ec-256 --force --insecure
#申请证书方式2: 
~/.acme.sh/acme.sh --register-account -m "${RANDOM}@chacuo.net" --server buypass --force --insecure && ~/.acme.sh/acme.sh  --issue -d 你的域名 --standalone -k ec-256 --force --insecure --server buypass
#申请证书方式3: 
~/.acme.sh/acme.sh --register-account -m "${RANDOM}@chacuo.net" --server zerossl --force --insecure && ~/.acme.sh/acme.sh  --issue -d 你的域名 --standalone -k ec-256 --force --insecure --server zerossl

#安装证书:
~/.acme.sh/acme.sh --install-cert -d 你的域名 --ecc --key-file /etc/x-ui/server.key --fullchain-file /etc/x-ui/server.crt

Shell

  • 复制*

Reality寻找适合的目标网站

查询ASN:https://tools.ipip.net/as.phpopen in new window

寻找目标:https://fofa.infoopen in new window

asn=="25820" && country=="US" && port=="443" && cert!="Let's Encrypt" && cert.issuer!="ZeroSSL" && status_code="200"

检测端口是否被封

https://tcp.ping.pe/open in new window