最新流程会发布(github.com)上,这里只是做个记录,以备不时之需。

查看最新的流程请移步 https://github.com/felix-fly/v2ray-openwrt

本文为在路由器openwrt中使用v2ray的简单流程,相关的配置请参考官方文档。

下载路由器硬件对应平台的压缩包到电脑并解压。

上传软件

1
2
3
4
mkdir /usr/bin/v2ray
cd /usr/bin/v2ray
# 上传v2ray相关文件到该目录下,配置文件自行百度
chmod +x v2ray v2ctl

添加服务

1
vi /etc/init.d/v2ray

贴入以下内容保存退出

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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=/usr/bin/v2ray
SERVICE_WRITE_PID=1
SERVICE_DAEMONIZE=1
start() {
  service_start $ROOT/v2ray
#   Only use v2ray via pb config without v2ctl on low flash machine
#   service_start $ROOT/v2ray -config=$ROOT/config.pb -format=pb
}
stop() {
  service_stop $ROOT/v2ray
}

服务自启动

1
2
chmod +x /etc/init.d/v2ray
/etc/init.d/v2ray enable

开启

1
/etc/init.d/v2ray start

关闭

1
/etc/init.d/v2ray stop

生成pb文件(可选)

主要针对小内存设备,v2ray + v2ctl原始程序体积较大,比较占内存(路由的内存相当于电脑的硬盘,并非运存)。使用pb文件可以不依赖v2ctl,同时可以使用upx进一步压缩v2ray程序的体积。使用pd的缺点是不能在路由中直接修改配置文件了。

1
2
# 在电脑(这里是linux系统)上使用v2ctl转换json配置文件
./v2ctl config < ./config.json > ./config.pb

透明代理(可选)

使用iptables实现,当前系统是否支持请先自行验证。

以下为iptables规则,直接在ssh中运行可以工作,但是路由重启后会失效,可以在

luci-网络-防火墙-自定义规则

下添加,如果当前系统没有该配置,可以使用开机自定义脚本实现,详情请咨询度娘。

```bash
iptables -t nat -N V2RAY
iptables -t nat -A V2RAY -d 0.0.0.0/8 -j RETURN
iptables -t nat -A V2RAY -d 127.0.0.0/8 -j RETURN
iptables -t nat -A V2RAY -d 192.168.1.0/24 -j RETURN

From lans redirect to Dokodemo-door’s local port

iptables -t nat -A V2RAY -s 192.168.1.0/24 -p tcp -j REDIRECT –to-ports 12345
iptables -t nat -A PREROUTING -p tcp -j V2RAY
iptables -t nat -A OUTPUT -p tcp -j V2RAY```