Sign inSign up

amjiddader/tordns

By amjiddader

Updated over 2 years ago

TOR DNS RESOLVER. This docker image will work as a DNS Server to resolve all .onion domains.

Image
0

673

amjiddader/tordns repository overview

FAST BUT USING CLOUDFLARED So create 2 local IP as DNS servers to resolve all http and tor dns quries.

docker run -d -p 127.0.0.9:53:54/udp -p 127.0.0.8:53:54/udp --restart=always --name tor-dns amjiddader/tordns:beta

If you want to reolve .onion domain you can use this docker image.
It will resolve all tor (.onion) domains it has built in cache that helps to reduces server load and dns response time. You can change values while deploying like: we use

--dns 1.1.1.1 ( We use cloudflare DNS to resolve local network i.e surface web sites.)
-p xxxxx:53 ( port 53 is defaulr port you can change of you want and also IP you can either use INTERNAL or PUBLIC IP.

Using on locahost only
If you wan to use on your local system to resolve your quries using local ip .
docker run --name tordns --restart=always -dit -p 127.0.0.9:53:5353/udp --dns 1.1.1.1 - amjiddader/tordns
Now your local IP on your system i.e: 127.0.0.9 will act as a DNS server similar to google's 8.8.8.8

Run as Public DNS.
If you want to expose your IP and want to run on public IP
docker run --name tordns --restart=always -dit -p SERVER_IP:53:5353/udp --dns 1.1.1.1 amjiddader/tordns
Now your IP will act as a Tor (darkweb) DNS Resolver.
-------------
Note: its very light weight and similar to anycast (i call it TOR_CAST)
So if your server has about 8GB Ram - 4 Cores it will be fast.
But for heavy traffic make sure you get a server with atleast 1Gbps uplink.

https://github.com/amjiddader/tor

Tag summary

Content type

Image

Digest

sha256:8122f76e4

Size

17.8 MB

Last updated

over 2 years ago

docker pull amjiddader/tordns