Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yarrick/iodine
Official git repo for iodine dns tunnel
https://github.com/yarrick/iodine
dns dns-tunnel hacktoberfest iodine tunnel vpn
Last synced: 19 days ago
JSON representation
Official git repo for iodine dns tunnel
- Host: GitHub
- URL: https://github.com/yarrick/iodine
- Owner: yarrick
- License: isc
- Created: 2012-02-04T19:51:39.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T09:13:34.000Z (4 months ago)
- Last Synced: 2024-10-22T22:46:57.489Z (26 days ago)
- Topics: dns, dns-tunnel, hacktoberfest, iodine, tunnel, vpn
- Language: C
- Homepage: https://code.kryo.se/iodine
- Size: 1.21 MB
- Stars: 6,202
- Watchers: 130
- Forks: 499
- Open Issues: 14
-
Metadata Files:
- Readme: README-android.txt
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - yarrick/iodine - Official git repo for iodine dns tunnel (C)
- awesome-hacking-lists - yarrick/iodine - Official git repo for iodine dns tunnel (C)
- awesome-network-stuff - **3227**星
- awesome-homelab - iodine
README
iodine - https://code.kryo.se/iodine
***********************************
Extra README file for Android
== Running iodine on Android:
1. Get root access on your android device2. Find/build a compatible tun.ko for your specific Android kernel
3. Copy tun.ko and the iodine binary to your device:
(Almost all devices need the armeabi binary. Only Intel powered
ones need the x86 build.)adb push tun.ko /data/local/tmp
adb push iodine /data/local/tmp
adb shell
su
cd /data/local/tmp
chmod 777 iodine4. Run iodine (see the man page for parameters)
./iodine ...
For more information: http://blog.bokhorst.biz/5123
== Building iodine for Android:
1. Download and install the Android SDK and NDK2. Download and unpack the iodine sources
3. Build:
cd src
make base64u.h base64u.c
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=Android.16.mk APP_PLATFORM=android-16or run "make cross-android" in the iodine root directory.
To build for other archs, specify TARGET_ARCH_ABI:
"make cross-android TARGET_ARCH_ABI=x86"For older android versions (pre-kitkat), build with "make cross-android-old" in the
root directory, or manually like above but with APP_PLATFORM=android-3 and with
APP_BUILD_SCRIPT=Android.mkThe iodine binary ends up in src/libs//iodine