VMESS 相信大家都不陌生了,他是 V2RAY 的传输协议。但是在 5 月 V2RAY 爆出新闻之后,很多大神们都在弄一个新的协议,最具代表的就是 VLESS 协议。
如官方所说,VLESS 是一个无状态的轻量传输协议,它分为入站和出站两部分,可以作为 V2Ray 客户端和服务器之间的桥梁。
与 VMess 不同,VLESS 不依赖于系统时间,认证方式同样为 UUID,但不需要 alterId。
前置
首先我们得拥有一个自己的域名,建立好服务器,部署好之后我们需要重装一次 centos 7。
登录服务器
系统重装完成之后,用ssh登录服务器。
【推荐】安装 bbrplus 加速
ssh 命令(分别选择 2 和 7,根据提示即可开启成功。):
#bbr 4 in 1 脚本
wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
安装宝塔面板
直接运行官方 centos 安装命令,安装时,一路默认即可,该输入 Y 的输入 Y,没什么难度。
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
安装完成后会出现面板地址及默认账号与密码,(注意新版本在端口号后面还有一个字符串,一定要全部保存)请妥善保管!如图:
配置宝塔:
浏览器访问外网面板地址,输入账号密码登录
安装 LNMP 环境+Nignx 配置(可以后期搭建网站做转发)
只安装 nginx(不做网站转发,只做 ws)
添加站点。这个站点就是你 v2ray 软件里的代理地址。
安装 nginx
添加网站
添加网站前需要解析一个子域名到服务器 ip,然后把解析了服务器 ip 的子域名添加到宝塔,这里创建的子域名是:vless.hexsen.top 并解析域名到服务器 ip:141.164.59.39,如图:
配置 SSL:
创建好网站后我们给网站添加 ssl 证书,并勾选强制 HTTPS
修改配置文件:
接下来进入 修改网站配置文件 点击配置文件,找到 #SSL-END
,大概在 22 行左右,在其下面添加如下代码
location /cs
{
proxy_pass http://127.0.0.1:你的端口号;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 300s;
}
1、其中第一行的 cs 是你自己 ws 的 path,斜杠不要删除,可以自己修改,也可以不改;
2、端口号我们这里先随便写一个比如:31914,因为现在 v2ray 官方不为你生成端口,如下图:
开启防火墙端口或者直接关闭防火墙,我们安装的宝塔面板自带开端口功能,端口处填写上面的 31914,如图:
接下来就是本文重点了,我们开始安装 v2ray 最新官方脚本
注意:全文采用操作系统为 centos 7
安装依赖软件
安装 cURL:
yum makecache
yum install curl
下载脚本
curl -O https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh
curl -O https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-dat-release.sh
使用
该脚本在执行时会提供 info 和 error 等信息,请仔细阅读。
安裝和更新 V2Ray
bash install-release.sh
安裝最新發行的 geoip.dat 和 geosite.dat
bash install-dat-release.sh
以上命令全部在 ssh 执行完之后:
点击链接生成 uuid:https://1024tools.com/uuid,复制其中一行 uuid
进入 /usr/local/etc/v2ray/ 目录,编辑 config.json 文件 将里面全部代码改为:下面这个文件里的内容。
修改以上配置文件并保存,注意下 "path":"/cs" 这一行,如果你没有修改过配置文件中的 pach 这里就是 cs。
设置开机启动
systemctl enable v2ray
systemctl start v2ray
额外的命令参数
移除 V2Ray
如果你不是准备卸载 V2ray ,这条命令你可以忽略,不要执行!
bash install-release.sh --remove
启动 v2ray
#此命令启动 v2ray
systemctl start v2ray
#更多命令
service v2ray start|stop|status|reload|restart|force-reload
參數
usage: install-release.sh [--remove | --version number | -c | -f | -h | -l | -p]
[-p address] [--version number | -c | -f]
--remove Remove V2Ray
--version Install the specified version of V2Ray, e.g., --version v4.18.0
-c, --check Check if V2Ray can be updated
-f, --force Force installation of the latest version of V2Ray
-h, --help Show help
-l, --local Install V2Ray from a local file
-p, --proxy Download through a proxy server, e.g., -p http://127.0.0.1:8118 or -p socks5://127.0.0.1:1080
说下怎么使用客户端连接:
用 Windows 端为例:
全局模式测试成功后大家再慢慢配置 pac 模式,或者白名单模式等。
内容来自于网络,如有侵犯著作权,请联系删除,原文链接:https://hexsen.com/v2ray-baotavlesswstlsnginxcdn.html
config.json 文件无法下载