V2ray
## 准备 - 一台VPS - windows电脑 ## 安装 更新工具,并安装curl ``` # Ubuntu系统和Debian系统 apt-get update -y apt-get install curl -y # CentOS系统 yum update -y yum install curl -y ``` 在服务器上安装V2ray: ``` bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) ``` ## 配置 获取一个uuid(可以在网上在线生成,也可以用命令生成): ``` cat /proc/sys/kernel/random/uuid ``` 编辑V2ray的配置文件: ``` vi /usr/local/etc/v2ray/config.json ``` 设置端口和uuid: ```json { "inbounds": [ { "port": 16832, // 服务器端口 "protocol": "vmess", "settings": { "clients": [ { "id": "b831381d-6324-4d53-ad4f-8cda68b30851", // 用户uuid, "alterId": 0 } ] } } ], "outbounds": [ { "protocol": "freedom", "settings": {} } ] } ``` 启动V2ray服务: ``` systemctl start v2ray ``` 重启V2ray服务: ``` systemctl restart v2ray ``` ## 优化 ``` wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh && chmod +x bbr.sh && ./bbr.sh # 重新启动服务 systemctl restart v2ray ``` ## 安装客户端 - windows系统:https://github.com/2dust/v2rayN/releases - mac系统:https://github.com/Cenmrev/V2RayX/releases/ 在windows中,下载xxx-Core.zip后解压双击v2rayN.exe即可运行客户端 ## 客户端配置 1. 点击加号,选择手动输入[Vmess] 2. 输入服务器端对应的Port,ID(uuid),alterID 3. 加密方式,建议选择Chacha20-poly1305 4. 点击确定后,设置“自动配置系统代理”和“全局模式/PAC模式”,即可通过服务器访问网站。(PAC模式下对于中国的网站会关闭代理)
创建时间:2023-04-14
|
最后修改:2023-12-27
|
©允许规范转载
酷酷番茄
首页
文章
友链