dnscrypt-proxy-android/README.md

41 lines
2.1 KiB
Markdown
Raw Normal View History

# dnscrypt-proxy for Android
2018-02-27 14:42:14 +00:00
2018-02-27 14:59:15 +00:00
A flexible DNS proxy, with support for modern encrypted DNS protocols such as [DNSCrypt v2](https://github.com/DNSCrypt/dnscrypt-protocol/blob/master/DNSCRYPT-V2-PROTOCOL.txt) and [DNS-over-HTTP/2](https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-03).
2018-02-27 14:42:14 +00:00
2018-04-17 09:12:54 +00:00
## Features
2018-03-18 04:39:03 +00:00
- arm, arm64, x86 and x86_64 are supported.
2018-04-17 09:12:54 +00:00
- ipv4 and ipv6 are supported.
2018-02-27 14:59:15 +00:00
- All binary files are downloaded from [https://github.com/jedisct1/dnscrypt-proxy/releases](https://github.com/jedisct1/dnscrypt-proxy/releases)
2018-02-27 14:42:14 +00:00
2018-04-17 09:12:54 +00:00
## Installation
2019-09-30 16:16:22 +00:00
- Download [.zip module](https://t.me/dnscrypt_proxy), flash it in Magisk Manager App or in Recovery and follow the instructions.
2019-06-13 08:04:40 +00:00
2018-04-17 09:28:36 +00:00
### Set DNS server manually with 3rd-party app (not included in this module)
2019-06-13 08:04:40 +00:00
- DNS server address is 127.0.0.1:5354 for ipv4 and [::1]:5354 for ipv6
2018-04-17 09:12:54 +00:00
- If you use AfWall, you can write this enter custom script
```
2019-06-13 08:04:40 +00:00
iptables -t nat -A OUTPUT -p tcp ! -d 9.9.9.9 --dport 53 -j DNAT --to-destination 127.0.0.1:5354
iptables -t nat -A OUTPUT -p udp ! -d 9.9.9.9 --dport 53 -j DNAT --to-destination 127.0.0.1:5354
2019-09-30 16:16:56 +00:00
```
2018-04-17 09:12:54 +00:00
and this shutdown script
```
2019-06-13 08:04:40 +00:00
iptables -t nat -D OUTPUT -p tcp ! -d 9.9.9.9 --dport 53 -j DNAT --to-destination 127.0.0.1:5354
iptables -t nat -D OUTPUT -p udp ! -d 9.9.9.9 --dport 53 -j DNAT --to-destination 127.0.0.1:5354
2019-09-30 16:16:56 +00:00
```
## Configuration (post-installing)
2019-06-13 08:04:40 +00:00
- Configuration located on `/sdcard/dnscrypt-proxy/dnscrypt-proxy.toml` [or /data/media/0/dnscrypt-proxy/dnscrypt-proxy.toml]
2019-04-24 03:04:58 +00:00
- For more detailed configuration please refer to [official documentation](https://github.com/jedisct1/dnscrypt-proxy/wiki/Configuration)
2018-02-27 14:59:15 +00:00
## Changelog
### v1.0.0
2019-09-13 13:28:23 +00:00
- updated binary & configuration files to 2.0.27
- updated configuration file [dnscrypt.toml] according to the revision https://github.com/DNSCrypt/dnscrypt-proxy/releases/tag/2.0.27
2018-04-17 09:12:54 +00:00
2019-04-30 06:40:41 +00:00
[Full changelog](changelog.md)
2018-02-27 14:42:14 +00:00
2018-02-27 14:59:15 +00:00
## Credit
2018-04-17 09:12:54 +00:00
- DNSCrypt-Proxy2 upstream | [jedisct1](https://github.com/jedisct1/dnscrypt-proxy)
2019-09-17 15:23:38 +00:00
- [bluemeda](https://github.com/bluemeda) for the original module
2019-05-01 04:38:17 +00:00
- [All contributor](https://github.com/Magisk-Modules-Repo/dnscrypt-proxy/graphs/contributors)