Posts – Page 3

Local DNS for local people

I have a local DNS server running at home that serves my computers, phones, tablets etc running in the house. This is running on Unbound, the DNS server that comes with OpenBSD. If you have used Bind before, you will find Unbound to be a refreshing change. Like most of the services in OpenBSD they do a simple job well.

I have my main DNS for my domain name quernus.co.uk hosted with my domain name registrar (name.com). This has records for things like www.quernus.co.uk and mail.quernus.co.uk. But I also run some services at home and in my office that I want to set up DNS records for. I don't necessarily want to put those on name.com as 1) they are not needed for those externally, and in most cases resolve to private IP addresses (192.168.0.0/16 or fc::/7).

So I'd like to have entries set up for them in my local DNS server, so that devices at home can look them up. But I don't want to have to replicate the public records at name.com as then I have to update them in two places (e.g. if the public address of www.quernus.co.uk moved).

Unbound has a nice feature that allows you to define local records that it will use, but then can still look up the result elsewhere if not found. So in unbound.conf I have records like:

# my local entries
local-zone: "quernus.co.uk" typetransparent
local-data: "topsecret.quernus.co.uk AAAA fd60::1"
local-data: "ultrasecret.quernus.co.uk AAAA fd60::2"

forward-zone:
        name: "."                               # use for ALL queries
        forward-addr: 8.8.8.8                   # google.com

The key is the typetransparent keyword which mean that Unbound will attempt to look the query up with local data and if it can't find a match will transparently pass it on to a forwarding server.

and so now, I can look up both the private addresses at home:

Matts-iMac:~ matt$ nslookup
> set type=AAAA
> topsecret.quernus.co.uk
Server:     192.168.1.1
Address:    192.168.1.1#53

Non-authoritative answer:
topsecret.quernus.co.uk has AAAA address fd60::1

Authoritative answers can be found from:
> www.quernus.co.uk
Server:     192.168.1.1
Address:    192.168.1.1#53

Non-authoritative answer:
www.quernus.co.uk   has AAAA address 2001:41c8:11a:5::1

Authoritative answers can be found from:

But not from the outside world:

Matts-Air:~ matt$ nslookup
> set type=AAAA
> topsecret.quernus.co.uk
Server:     10.250.108.1
Address:    10.250.108.1#53

** server can't find topsecret.quernus.co.uk: NXDOMAIN
> www.quernus.co.uk
Server:     10.250.108.1
Address:    10.250.108.1#53

Non-authoritative answer:
www.quernus.co.uk   has AAAA address 2001:41c8:11a:5::1

Authoritative answers can be found from:

Explaining Proof-of-Work, and how it compares to consensus

I was asked to explain how Proof of Work on a blockchain worked, here is a transcript. And how it compares to Ripple's consensus algorithm.

Multi-currency exchange on Ripple, Pathfinding and Bridging with XRP

Ripple has a built in distributed exchange. This is how XRP is used as a bridge currency in payments

Ripple and Bitcoin, a use-case for collaboration

There is a lot of hate out there for Ripple and XRP by some bitcoin fanatics, but they are solving different problems, and here is a use-case of how they compliment each other.

My Last Three Years in Numbers

A look at the last three years of my work in numbers.

Intro to Ripple and XRP

I've recently started playing about with the cryptocurrency XRP and the Ripple network, here is a quick introduction to it.

My University Thesis - Full Text Indexing

I found my university thesis from 17 years ago, along with the code for the full text indexer I wrote back then.

Automating Feature Branch Builds on iOS and Android

This is a talk given at Codemobile 2017 conference in Chester, UK. It was a 5 minute lightning talk detailing how to automate the building of apps for each and every feature branch created as part of a git-flow workflow.

How To Make Better Coffee Without Breaking the Bank

With about £60 of equipment and a bit of knowhow you can produce far better coffee at home than your cup of instant.

Testing Randomness in Python

I needed to be able to unit test some python code that had a random element to it. Here's how I made it deterministic.