type
status
date
slug
summary
tags
category
icon
password
1、购买一台VPS虚拟服务器
记录VPS的IP地址、端口号、用户名、用户密码等关键信息
在VPS上安装好系统Debian、Ubuntu、CentOS(任选一个)
2、下载并安装FinalShell SSH工具
3、通过finalshell SSH连接到VPS
输入IP、端口号、用户名、密码连接到VPS
4、安装X-UI
代码:bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/x-ui/956bf85bbac978d56c0e319c5fac2d6db7df9564/install.sh) 0.3.4.4
安装完成要注意是否更改X-UI用户名、密码、端口号等信息
放行X-UI登陆端口:ufw allow 端口号,或者关闭防火墙:ufw disable
(防火墙相关代码)
安装防火墙
Debian/Ubuntu系统执行以下命令:
apt-get update && apt-get install ufw
CentOS系统执行以下命令:
yum install epel-release -y
yum install --enablerepo="epel" ufw -y
放行登陆端口
iptables -I INPUT -p tcp -m tcp --dport 端口 -j ACCEPT
或者ufw allow 端口
关闭防火墙 ufw disable
查看防护墙 ufw status
或者:
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
关闭防火墙:iptables -F
centos可能用到代码:
yum install epel-release -y
yum install --enablerepo="epel" ufw -y
ufw enable
iptables -I INPUT -p tcp -m tcp --dport 端口 -j ACCEPT
yum update && yum upgrade && yum install curl -y
防火墙介绍
5、测试VPS IP及端口是否被墙
6、开始登陆X-UI面板
在浏览器输入VPS的ip+:+X-UI设置的端口号,登陆x-ui,再输入设置的用户名、密码登陆,然后开始搭建
7、BBR加速:
wget --no-check-certificate -q -O bbr2.sh "https://github.com/yeyingorg/bbr2.sh/raw/master/bbr2.sh" && chmod +x bbr2.sh && bash bbr2.sh auto
8、证书相关
安装证书工具
curl https://get.acme.sh | sh; apt install socat -y || yum install socat -y; ~/.acme.sh/acme.sh --set-default-ca --server letsencrypt
申请证书
~/.acme.sh/acme.sh --issue -d 你的域名 --standalone -k ec-256 --force --insecure
这里需要更改您的域名,如果出现提示错误,可能是需要放行80端口。
安装证书
~/.acme.sh/acme.sh --install-cert -d 你的域名 --ecc --key-file /etc/x-ui/server.key --fullchain-file /etc/x-ui/server.crt
#安装证书工具:
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
9、代理工具下载
各平台客户端
v2rayNG【需要最新版本】
Windows(v2rayN):https://github.com/2dust/v2rayN/releases/tag/6.23
安卓(v2rayNG):https://github.com/2dust/v2rayNG/releases/tag/1.8.5
iOS(shadowrocket):https://apps.apple.com/app/shadowrocket/id932747118
10、其他搜集
reality节点教程:Youtube视频教程:https://youtu.be/ha4XB13gAeU
其他节点教程:Youtube播放地址:https://youtu.be/Hg3A_cUYNaI
不良林youtube播放地址:https://youtu.be/SpxTFes1B8U
教程地址
https://bulianglin.com/archives/nicename.htmlhttps://github.com/KEJIXIAOLU/XUI#2下载并安装finalshell-ssh工具https://github.com/KEJIXIAOLU/Vless
搭建视频教程
- 作者:凯文(kevin)
- 链接:https://mtpxsfw.top/article/example-2
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。