参考
安装
# bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
可以看到生成的system
root@oracle:/home/cndaqiang# cat /etc/systemd/system/v2ray.service
[Unit]
Description=V2Ray Service
Documentation=https://www.v2fly.org/
After=network.target nss-lookup.target
[Service]
User=nobody
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
NoNewPrivileges=true
ExecStart=/usr/local/bin/v2ray run -config /usr/local/etc/v2ray/config.json
Restart=on-failure
RestartPreventExitStatus=23
[Install]
WantedBy=multi-user.target
我们只需要修改/usr/local/etc/v2ray/config.json
或者自定义config
文件即可
文件配置
参考官方说明配置inbound,outbound即可
PC->socks/http代理->Server(V2ray)
{
"inbounds": [
//可以配置多种协议
{
"port": 2090, // 服务器监听端口
"protocol": "socks",
"address" : "192.168.192.10" //地址,可选
},
{
"port": 2091, // 服务器监听端口,和socks使用相同端口,总是很卡
"protocol": "http",
"address" : "192.168.192.10" //地址,可选
}
],
"outbounds": [
//出口选择freedom就行
{
"protocol": "freedom"
}
]
}
PC无须配置,直接添加socks代理即可
本文首发于我的博客@cndaqiang.
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!