v2ray core
Go to file
Xu Tianliang fc53008d32
feat:根据第一个可用管理APP整理功能
- 删除V2Ray下载,发布时将附带一份最新的可执行文件
 - 增加管理APP,可进行简单的管理
 - 整理代码
2022-01-18 03:37:00 +08:00
META-INF/com/google/android [v1.0.12] Only proxy assignation DNS to improve China DNS resolution speed. 2020-06-11 11:26:06 +08:00
app@0908cc917d feat:根据第一个可用管理APP整理功能 2022-01-18 03:37:00 +08:00
v2ray feat:根据第一个可用管理APP整理功能 2022-01-18 03:37:00 +08:00
.gitattributes Magisk Module Installer 2019-03-28 10:00:56 -04:00
.gitmodules feat:新增管理App 2022-01-16 13:18:04 +08:00
README.md Clean up repository, Delete history binary files 2022-01-01 22:54:11 +08:00
customize.sh feat:根据第一个可用管理APP整理功能 2022-01-18 03:37:00 +08:00
module.prop feat:根据第一个可用管理APP整理功能 2022-01-18 03:37:00 +08:00
service.sh [v1.0.11] Use new magisk module installer, fix bug in magisk 20.4 NOT auto run service.sh. 2020-03-26 05:23:33 +08:00
uninstall.sh [v1.0.1] Add Transparent proxy iptables script. 2019-03-30 17:22:11 +08:00

README.md

V2ray Magisk Module

This is a v2ray module for Magisk, and includes binaries for arm, arm64, x86, x64.

2022-01-01 Update

  • Clean up repository,Delete history binary files.

2021-08-01 Update

  • Delete dnscrypt-proxy
  • Fix Illegal instruction on android-arm64(change the binary to android build version)

Included

  • V2Ray service script and Android transparent proxy iptables script

Install

You can download the release installer zip file and install it via the Magisk Manager App.

Config

  • V2ray config file is store in /data/v2ray/config.json .

  • Please make sure the config is correct. You can check it by running a command :

    export V2RAY_LOCATION_ASSET=/data/v2ray; v2ray -test -config /data/v2ray/config.json in android terminal or ssh.

  • dnscrypt-proxy config file is store in /data/v2ray/dnscrypt-proxy/ folder, you can update cn domains list via running the shell script update-rules.sh or if you dislike the default rules, you can edit them by yourself. ( If you want to disable dnscrypt-proxy, just delete the config file /data/v2ray/dnscrypt-proxy/dnscrypt-proxy.toml )

  • Tips: Please notice that the default configuration has already set inbounds section to cooperate work with transparent proxy script. It is recommended that you only edit the first element of outbounds section to your proxy server and edit file /data/v2ray/appid.list to select which App to proxy.

Usage

Manage service start / stop

  • V2Ray service is auto-run after system boot up by default.
  • You can start or stop v2ray service by simply turn on or turn off the module via Magisk Manager App. Start service may wait about 10 second and stop service may take effect immediately.

Select which App to proxy

  • If you expect transparent proxy ( read Transparent proxy section for more detail ) for specific Apps, just write down these Apps' uid in file /data/v2ray/appid.list .

    Each App's uid should separate by space or just one App's uid per line. ( for Android App's uid , you can search App's package name in file /data/system/packages.list , or you can look into some App like Shadowsocks. )

  • If you expect all Apps proxy by V2Ray with transparent proxy, just write a single number 0 in file /data/v2ray/appid.list .

  • If you expect all Apps proxy by V2Ray with transparent proxy EXCEPT specific Apps, write down #bypass at the first line then these Apps' uid separated as above in file /data/v2ray/appid.list.

  • Transparent proxy won't take effect until the V2Ray service start normally and file /data/v2ray/appid.list is not empty.

Share transparent proxy to WiFi guest or USB guest

  • Transparent proxy is share to WiFi guest by default.
  • If you don't want to share proxy to WiFi guest or USB guest, delete the file /data/v2ray/softap.list or empty it.
  • For most situation, Android WiFi hotspot subnet is 192.168.43.0/24, and USB subnet is 192.168.42.0/24. If your device is not conform to it , please write down the subnet you want proxy in /data/v2ray/softap.list. ( You can run command ip addr to search the subnet )

Advanced usage ( for Debug and Develop only )

Enter manual mode

If you want to control V2Ray by running command totally, just add a file /data/v2ray/manual. In this situation, V2Ray service won't start on boot automatically and you cann't manage service start/stop via Magisk Manager App.

Manage service start / stop

  • V2Ray service script is $MODDIR/scripts/v2ray.service.

  • For example, in my environment ( Magisk version: 18100 ; Magisk Manager version v7.1.1 )

    • Start service :

      /sbin/.magisk/img/v2ray/scripts/v2ray.service start

    • Stop service :

      /sbin/.magisk/img/v2ray/scripts/v2ray.service stop

Manage transparent proxy enable / disable

  • Transparent proxy script is $MODDIR/scripts/v2ray.tproxy.

  • For example, in my environment ( Magisk version: 18100 ; Magisk Manager version v7.1.1 )

    • Enable Transparent proxy :

      /sbin/.magisk/img/v2ray/scripts/v2ray.tproxy enable

    • Disable Transparent proxy :

      /sbin/.magisk/img/v2ray/scripts/v2ray.tproxy disable

Transparent proxy

What is "Transparent proxy"

"A 'transparent proxy' is a proxy that does not modify the request or response beyond what is required for proxy authentication and identification". "A 'non-transparent proxy' is a proxy that modifies the request or response in order to provide some added service to the user agent, such as group annotation services, media type transformation, protocol reduction, or anonymity filtering".

-- Transparent proxy explanation in Wikipedia

Working principle

This module also contains a simple script that helping you to make transparent proxy via iptables. In fact , the script is just make some REDIRECT and TPROXY rules to redirect app's network into 65535 port in localhost. And 65535 port is listen by v2ray inbond with dokodemo-door protocol. In summarize, the App proxy network path is looks like :

Android App ( Google, Facebook, Twitter ... )

⇕ ( TCP & UDP network protocol )

Android system iptables [ localhost inside ]

⇕ ( REDIRECT & TPROXY iptables rules )

[ 127.0.0.1:65535 Inbond ] -- V2Ray -- [ Outbond ]

⇕ ( Shadowsocks, Vmess )

Proxy Server ( SS, V2Ray) [ Internet outside ]

⇕ ( HTTP, TCP, ... other application protocol )

App Server ( Google, Facebook, Twitter ... )

Uninstall

  1. Uninstall the module via Magisk Manager App.
  2. You can clean v2ray data dir by running command rm -rf /data/v2ray .

Project V

Project V is a set of network tools that help you to build your own computer network. It secures your network connections and thus protects your privacy. See ProjectV website for more information.

License

The MIT License (MIT)