SeverinAlexB / pkdns

DNS server resolving pkarr self-sovereign domains

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pkdns

GitHub Release

DNS server resolving pkarr self-sovereign domains on the mainline DHT.

Getting Started

Hosted DNS

Use one of the hosted DNS servers to try out pkarr quickly.

Pre-Built Binaries

  1. Download the latest release for your plattform.
  2. Extract the tar file. Should be something like tar -xvf tarfile.tar.gz.
  3. Run pkdns -f 8.8.8.8.
  4. Verify the server is working. Your server ip is 127.0.0.1.
  5. Configure your system dns.
  6. Browse the self-sovereign web.

Build It Yourself

Make sure you have the Rust toolchain installed.

  1. Clone repository git clone https://github.com/SeverinAlexB/pkdns.git.
  2. Switch directory cd pkdns.
  3. Run cargo run -- -f 8.8.8.8.
  4. Verify the server is working. Your server ip is 127.0.0.1.
  5. Configure your system dns.
  6. Browse the self-sovereign web.

Guides

Change your System DNS

Follow one of the guides to change your DNS server on your system:

Verify your server with this domain http://7fmjpcuuzf54hw18bsgi3zihzyh4awseeuq5tmojefaezjbd64cy/.

Verify pkdns is working

Pkarr Domains

Verify the server resolves pkarr domains. Replace PKDNS_SERVER_IP with your pkdns server IP address.

nslookup 7fmjpcuuzf54hw18bsgi3zihzyh4awseeuq5tmojefaezjbd64cy PKDNS_SERVER_IP

Troubleshooting If this does not work then the pkdns server is likely not running.

ICANN Domains

Verify it resolves regular ICANN domains. Replace PKDNS_SERVER_IP with your pkdns server IP address.

nslookup example.com PKDNS_SERVER_IP

Troubleshooting If this does not work then you need to change your ICANN fallback server with pkdns -f REGULAR_DNS_SERVER_IP. Or use the Google DNS server: pkdns -f 8.8.8.8.

Browse the Self-Sovereign Web

Here are some example pkarr domains:

Hint: Always add a / to the end of a pkarr domain. Otherwise browsers will search instead of resolve the website.

Address already in use

Other services might occupy the port 53 already. For example, Docker Desktop uses the port 53 on MacOS. Make sure to free those.

Options

Usage: pkdns [OPTIONS]

Options:
  -f, --forward <forward>      ICANN fallback DNS server. IP:Port [default: 192.168.1.1:53]
  -s, --socket <socket>        Socket the server should listen on. IP:Port [default: 0.0.0.0:53]
  -v, --verbose                Show verbose output.
      --cache-ttl <cache-ttl>  Pkarr packet cache ttl in seconds.
      --threads <threads>      Number of threads to process dns queries. [default: 4]
  -d, --directory <directory>  pknames source directory. [default: ~/.pknames]
  -h, --help                   Print help
  -V, --version                Print version

Limitations

Lookups on pkarr DNS records are limited. These two approach are supported:

EASY - All in pkarr:

  • Direct record resolution (A, AAAA, TXT, ...).
  • CNAME pointing directly to another record in the same pkarr.
  • No recursion.

ADVANCED - Fully featured:

  • Delegate your zone to a fully fledged name server (bind9).
  • pkdns will forward the request the name server.

May the power ⚡ be with you.

About

DNS server resolving pkarr self-sovereign domains

License:MIT License


Languages

Language:Rust 96.6%Language:Shell 3.4%