]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2050] Description added
authorTomek Mrugalski <tomek@isc.org>
Wed, 22 Sep 2021 09:07:43 +0000 (11:07 +0200)
committerTomek Mrugalski <tomek@isc.org>
Fri, 24 Sep 2021 15:24:33 +0000 (17:24 +0200)
doc/examples/template-power-user-home/info.md [new file with mode: 0644]

diff --git a/doc/examples/template-power-user-home/info.md b/doc/examples/template-power-user-home/info.md
new file mode 100644 (file)
index 0000000..4c289ac
--- /dev/null
@@ -0,0 +1,33 @@
+
+Kea Configuration Template: Home network of a power user
+========================================================
+
+This directory contains template configurations for home network of a power user.
+It may also be appropriate for a small office. It makes the following assumptions:
+
+- you want to use a single /24 class of IPv4 addresses
+- you want High Availability, so there are 2 DHCP servers
+- you have a handful of devices, and some of them (e.g. a printer or NAS) require
+  static addresses or extra options
+- you do not want to be bothered with database management
+- the setup is optimized for minimal-to-zero maintenance
+- performance is not an issue. You do not expect to see 100s of queries per second
+- you do not use IPv6
+- you do not want to update your DNS
+
+The logical set-up consists of two hosts, each running Kea DHCPv4 server and a Control
+Agent (CA). The server connects with the CA using UNIX sockets. Each DHCPv4+CA acts
+as one partner of the HA pair.
+
+```mermaid
+CA-1 ====== CA-2
+
+subgraph host1
+CA-1 ------ DHCPv4-1
+
+subgraph host2
+CA-2 ------ DHCPv4-2
+```
+
+Deployment Considerations
+-------------------------