Tues Sep 28, 2021
Wireguard is probably one of the coolest technologies I've encountered in a long time. The simplicity of public key auth (ssh-style where the protocol doesn't care how you get the public key on the server) all in the kernel? Sign me up!
On our tilde, we want to set up wireguard so that we can provide vpn-only services (for security reasons such as not allowing brute-force password attempts).
The very first of these services is IRC--we want people to be able to connect from mobile devices and personal computers, but our network is currently not password protected and has no services like NickServ, etc.
The solution? Have it listen on a wireguard IP and distribute wg keys to trusted tilde members :)
I'll start with the obligatory RTFM -- wg(8) and ifconfig(8) are both really well documented. However, there was a bit of fun hackery that went down on our tuesday pair-admining call that's worth documenting!
~anthony and I needed a simple tool to manage wireguard keys and IPs. When a new device is to be given access we want to:
To do this, we used a small sh(1) script that has a catalog of names in a flat file like so:
host1 10.6.6.1
host2 10.6.6.2
...
And then each host has a directory:
host1/
private.key
public.key
client.conf
The tool is called wggen(1), and it ends up effectively:
I'll leave the exact details as an exercise for the reader to go look at the git repo :)
Needless to say, this was a lot of fun to write!