openwrt手动安装v2ray中转节点

默认分类 · 15 天前

1.安装v2ray

opkg update
opkg install v2ray-core

2. 配置 V2Ray

编辑 V2Ray 的配置文件

vi /etc/v2ray/config.json

确保 V2Ray 配置正确,保存后退出。

3. 添加 V2Ray 到 OpenWRT 服务

在 /etc/init.d/ 目录下创建一个新的服务脚本:

vi /etc/init.d/v2ray
#!/bin/sh /etc/rc.common
# OpenWRT init script for V2Ray
START=99
STOP=15

start() {
    sleep 10  # 延迟启动 10 秒
    /usr/bin/v2ray -config /etc/v2ray/config.json >/dev/null 2>&1 &
}

stop() {
    killall v2ray
}

然后赋予执行权限:

chmod +x /etc/init.d/v2ray

4. 设置开机启动

使用以下命令启用 V2Ray 的开机自启动:

/etc/init.d/v2ray enable
/etc/init.d/v2ray start

5. 验证 V2Ray 是否运行

ps | grep v2ray
Theme Jasmine by Kent Liao