centos系统上安装v2ray

在centos上安装v2ray教程

安装步骤

  1. 下载安装脚本
curl -s -L https://git.io/v2ray.sh
  1. 根据教程安装v2ray软件及其依赖包

教程链接

  1. 停止v2ray进程

v2ray stop

  1. 用以下内容替换/etc/v2ray/config.json文件
{
    "inbounds":[
        {
            "port":*****,
            "protocol":"vmess",
            "settings":{
                "clients":[
                    {
                        "id":"*******",
                        "level":1,
                        "alterId":64
                    }
                ]
            },
            "streamSettings":{
                "network":"tcp"
            }
        }
    ],
    "outbounds":[
        {
            "protocol":"freedom",
            "settings":{

            }
        },
        {
            "protocol":"blackhole",
            "settings":{

            },
            "tag":"blocked"
        }
    ],
    "routing":{
        "rules":[
            {
                "type":"field",
                "ip":[
                    "geoip:private"
                ],
                "outboundTag":"blocked"
            }
        ]
    }
}

******部分需替换为实际内容。

  1. 使用后台命令启动v2ray后台进程
nohup /usr/bin/v2ray/v2ray -config /etc/v2ray/config.json > /dev/null 2>&1 &

说明

使用教程链接中封装的v2ray命令也可管理v2ray后台进程的生命周期。因为没有对教程中封装的v2ray命令行工具进行代码分析,不清楚配置数据的安全性,所以本文重新使用后台进程启动。

参考

V2Ray搭建详细图文教程