v2ray core
Go to file
whyou 7747bf7ebc Merge pull request #51 from whalechoi/master
[v1.0.11] Use new magisk module installer, fix bug in magisk 20.4 not running when starting up
2020-03-30 10:23:26 +08:00
META-INF/com/google/android [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
v2ray [v1.0.9] Bypass all BT steams. 2020-03-29 17:44:58 +08:00
.gitattributes Magisk Module Installer 2019-03-28 10:00:56 -04:00
customize.sh Update customize.sh 2020-03-27 02:11:24 +08:00
module_installer.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
module.prop [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
README.md [v1.0.3] Share transparent proxy to WiFi guest and disable UDP proxy. 2019-04-07 16:57:40 +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

V2ray Magisk Module

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

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.

  • 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 some Apps, just write down these App' 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 .

  • 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

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

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)