Skip to main content

Pure Python DNS server for developers

Project description

https://travis-ci.org/daveisadork/PyDevNS.svg?branch=master https://codecov.io/gh/daveisadork/PyDevNS/branch/master/graph/badge.svg

PyDevNS is a pure Python DNS server for developers. You know how you need a domain name to use for interacting with your app locally? Well, this is the tool for you.


I know what you’re thinking

Dude, what? I just put local.dev in my /etc/hosts file.

Well, that’s all well and good, but what about when you need local.dev and *.local.co?

There’s like a million things out there that do this. I could use dnsmasq, or one of the other 40 random Python “dev DNS” servers you probably stole your implementation from.

OK, dnsmasq kind of seems like overkill, but what about when you need local.dev or reallycoolprogrammer.local.dev to work from inside a docker container?

Well then I just make dnsmasq resolve it to my real IP instead of 127.0.0.1.

So you edit the config and restart dnsmasq every time you move from home, to the coffee shop, to the office, wherever…

That is kind of a pain, now that you mention it…

Thought so.

Default Behavior

If you run devns with no arguments, the server will start, bind to 0.0.0.0 with a random port and try to discover a suitable IP address to use for resolving any incoming DNS requests. It literally does not care what domain you ask for, it always responds and always with the same IP, hopefully the IP address of your actual network interface (e.g. 192.168.1.52 or whatever). It tries to figure that out on its own, and I think it does a pretty good job of it.

But then how do I make DNS queries go to it, especially if it’s using a random port every time it runs?

Glad you asked. It’ll also try to write a file to /etc/resolver/dev, which if your OS supports such things, would tell it to send any DNS queries for domains ending it .dev to devns.

But wouldn’t I need to…

Run it with sudo to do that? Yeah probably, unless your system is insane and just lets anybody write to /etc all willy nilly, in which case you have bigger problems than getting local.dev to resolve to something sensible.

Examples

Run the server with a random port and auto-configured resolver for .dev resolving to a sensible, auto-detected IP address:

sudo devns

Listen on port 53535 without writing any resolver files:

devns --port 53535 --no-resolver

Respond with a specific IP every time instead of an auto discovered one:

sudo devns --address 172.24.3.1

Listen on port 53535, write config files for .dev and .local.co:

sudo devns --port 53535 --domains dev local.co

Bind to a random port on 127.0.0.1, and make a lot of noise:

sudo devns --host 127.0.0.1 -vvv


Here’s what devns --help gets you:

usage: devns [-h] [--verbose | --quiet] [--address ADDRESS] [--host HOST]
             [--port PORT] [--domains [DOMAIN [DOMAIN ...]]]
             [--resolver-dir DIRECTORY] [--no-resolver]

optional arguments:
  -h, --help            show this help message and exit
  --verbose, -v         verbose output
  --quiet, -q           quiet mode

General:
  --address ADDRESS     IP address to respond with

Network:
  --host HOST           address to listen on
  --port PORT           port to listen on

Resolver:
  --domains [DOMAIN [DOMAIN ...]]
                        domains to create resolver files for
  --resolver-dir DIRECTORY
                        where to put resolver files
  --no-resolver, -nr    disable creating resolver files

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

devns-0.3.7.tar.gz (10.0 kB view details)

Uploaded Source

File details

Details for the file devns-0.3.7.tar.gz.

File metadata

  • Download URL: devns-0.3.7.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for devns-0.3.7.tar.gz
Algorithm Hash digest
SHA256 826213886af0a8c0ace4ccb20f9ee4fb0e5c2cbb6d210de3ce9702018a37cfaa
MD5 efeb2e127e0dc6862e6185c93d2b1f9f
BLAKE2b-256 39ba2fcf141ef807db8088b138c0364928aad12908fd29fa67f67117904d618b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page