Since mid 2023 I have been running a Docker ISC Kea Image using base Docker Alpine Linux images, with S6 init system. (ISC Kea is a modern replacement for their DHCP.) The main DHCP server runs on my main server and I have an automatic fall over back up on my separate Linux router. I basically followed the Kea template Home Network of a Power User. I was never quite sure I had the automatic fall over back-up working. On 2023-01-02 I modified a configuration file on the primary server with a syntax error, 8 days later I notice millions of lines of errors on my log files. Sure enough the backup had simply been working. I fixed up the simple syntax error and the primary server took back over. Everything basically worked as expected.
ISC also has a project for a simple GUI interface primarily for Kea and basic for Bind9. There is apparently no Alpine package yet for Stork.
The article by Lee Hutchinson Finally upgrading from isc-dhcp-server to isc-kea for my homelab was written after I made my upgrade to Kea. He wrote an a much earlier article on running BIND9 and ISC_DHCP in his blog, which I found referenced in The Ars guide to building a Linux router from scratch. It looks like he updated this Doing DNS and DHCP for your LAN the old way—the way that works with a semi related part 2 Banish OEM self-signed certs forever and roll your own private LetsEncrypt. In my earlier implementation of my router DHCP and DNS that was written on “bare metal I did follow Lee's notes on DDNS between ISC-DHCP and BIND9. I never particularly like the DDNS between ISC DHCP and BIND9 for the following reasons:
There are more references on building a home router and related here: Main references used, sadly some of these already suffer from link rot even though the information was still relevant.
ISC-Kea seems to be provided in a number of packages
Package | Use | Descriptiion | Comment |
---|---|---|---|
isc-kea | ISC Kea metapackage | This installs everything | |
isc-kea-admin | This package provides backend database initialization and migration scripts and a DHCP benchmark tool. If you are not using a database backend, you may not need this. | Not using a database backend at this time | |
isc-kea-common | X | Common libraries for the ISC Kea DHCP server. Install this. | Need this. |
isc-kea-ctrl-agent | X | This package provides the REST API service agent for Kea DHCP. | ? |
isc-kea-dev | Development headers for ISC Kea DHCP server. Install if you plan to create any custom Kea hooks. | Probably do not need. | |
isc-kea-dhcp4-server | X | DHCPv4 server. (isc-kea-dhcp4 for Alpine) | Need this. |
isc-kea-dhcp6-server | DHCPv6 server. (isc-kea-dhcp6 for Alpine) | Do not need at this time. | |
isc-kea-dhcp-ddns | DDNS server. | Need this. | |
isc-kea-doc | Kea documentation. Highly recommended. Example documents are located here /usr/share/doc/kea/examples/ | On a Docker container? | |
isc-kea-hook-flex-option | Flexible Options hook. | What is this? | |
isc-kea-hook-ha | X | High Availability hook. | What is this? |
isc-kea-hook-lease-cmds | X | Lease Commands hook. | What is this? |
isc-kea-hook-mysql-cb | MySQL Configuration Backend. | Dont need this at this time. | |
isc-kea-hook-pgsql-cb | PostgreSQL Configuration Backend. | Dont need this. | |
isc-kea-hook-stat-cmds | Statistics Commands hook. | ? | |
isc-kea-http | This package is essential, install it. | It is essential… | |
isc-kea-perfdhcp | Optional. Includes a DHCP performance testing tool from ISC. | ? | |
isc-kea-shell | X | Text client for Kea DHCP Control Agent. | ? |
See 16.4. Available Hook Libraries for the available hook libraries. I have removed the hook reference from the above table that I do not use.
From IANA Service Name and Transport Protocol Port online Number Registry:
bootps 67 {tcp, udp} Bootstrap Protocol Server (DHCP) bootpc 68 {tcp, udp} Bootstrap Protocol Client (DHCP)
The Kea Control Agent uses port 8000 by default, but that value can be manually defined in its configuration file. (Usually located at /etc/kea/kea-ctrl-agent.conf.) This port needs to be open and accessible on every server that hosts a Kea DHCP service and a Kea Control Agent.
This is a good case where the Docker network type needs to be set to host. The DHCP server needs to be directly on the host to function.
sudo nmap --script broadcast-dhcp-discover
will test for DHCP servers on the same network. It will only report the first DHCP server discovered.
kea-dhcp4 -t /app/dhcpv4.conf
to test the kea-dhcp4 configuration files /app/dhcpv4.conf
kea-dhcp4 -c /app/dhcpv4.conf
to start kea dhcp4 using configuration file /app/dhcpv4.conf
kea-dhcp4 -c /app/dhcpv4_plus.conf
to start kea dhcp4 using configuration file /app/dhcpv4_plus.conf
. This configuration file is designed to work with the kea control agent setup. Where as the basic configuration /app/dhcpv4_basic.conf
is not.Upgrade problem to 2.6.0 with dhcp4 parameter id in subnet configuration, TL;DR;
kea-ctrl-agent -t /app/kea-ctrl-agent.conf
to test the kea-cont-agent configuration file /app/kea-ctrl-agent.conf
kea-ctrl-agent -c /app/kea-ctrl-agent.conf
to start the kea-cont-agent configuration file /app/kea-ctrl-agent.conf
I have stored log files in the .config directory that is a Docker mounted volume for persistence and easy external viewing outside container. The following logs files can be seen.
.config/log/kea-dhcp4-commands.log
.config/log/kea-dhcp4-dhcpsrv.log
.config/log/kea-dhcp4-leases.log
.config/log/kea-dhcp4.log
.config/log/kea-dhcp4-ha-hooks.log
docker attach kptr-kea-1
to attach to running containerkea-dhcp4 -v
To check running version
Kea read the docs Intro give the latest docs and the into states which version this is. A specific version can be found by changing the latest
in the html path to the Kea version required, e.g. as of writing the current verion I am using is 2.6.1, so 'https://kea.readthedocs.io/en/2.6.1/arm/intro.html'' Intro