关于 v2ray-openwrt
https://github.com/felix-fly/v2ray-openwrt
上传软件及客户端配置文件
mkdir /etc/config/v2ray
cd /etc/config/v2ray
# 上传v2ray、config.json文件到该目录下,配置文件根据个人需求修改
chmod +x v2ray
vi /etc/config/v2ray/v2ray.service
贴入以下内容保存退出
#!/bin/sh /etc/rc.common
# "new(er)" style init script
# Look at /lib/functions/service.sh on a running system for explanations of what other SERVICE_
# options you can use, and when you might want them.
START=80
ROOT=/etc/config/v2ray
SERVICE_WRITE_PID=1
SERVICE_DAEMONIZE=1
start() {
service_start $ROOT/v2ray
}
stop() {
service_stop $ROOT/v2ray
}
服务自启动
chmod +x /etc/config/v2ray/v2ray.service ln -s /etc/config/v2ray/v2ray.service /etc/init.d/v2ray /etc/init.d/v2ray enable 开启 /etc/init.d/v2ray start 关闭 /etc/init.d/v2ray stop 以下是附件文件 2021091316521217
参考网址:
https://itcao.com/2018/10271925.html
本文由 我爱PHP169 作者:admin 发表,其版权均为 我爱PHP169 所有,文章内容系作者个人观点,不代表 我爱PHP169 对观点赞同或支持。如需转载,请注明文章来源。