diff --git a/doc/guide/Makefile.am b/doc/guide/Makefile.am
index 24cf170e2f..46945c4176 100644
--- a/doc/guide/Makefile.am
+++ b/doc/guide/Makefile.am
@@ -8,7 +8,7 @@ dist_html_DATA = $(HTMLDOCS) kea-guide.css kea-logo-100x70.png
DOCBOOK = kea-guide.xml intro.xml quickstart.xml install.xml admin.xml config.xml
DOCBOOK += keactrl.xml dhcp4-srv.xml dhcp6-srv.xml lease-expiration.xml logging.xml
DOCBOOK += ddns.xml hooks.xml hooks-class-cmds.xml hooks-ha.xml hooks-host-cache.xml
-DOCBOOK += hooks-lease-cmds.xml hooks-radius.xml hooks-stat-cmds.xml libdhcp.xml
+DOCBOOK += hooks-lease-cmds.xml hooks-radius.xml hooks-stat-cmds.xml
DOCBOOK += lfc.xml stats.xml ctrl-channel.xml classify.xml shell.xml agent.xml
DOCBOOK += netconf.xml api.xml congestion-handling.xml hammer.xml
diff --git a/doc/guide/kea-guide.xml b/doc/guide/kea-guide.xml
index 75ee86b945..73e689fc65 100644
--- a/doc/guide/kea-guide.xml
+++ b/doc/guide/kea-guide.xml
@@ -86,8 +86,6 @@
-
-
diff --git a/doc/guide/libdhcp.xml b/doc/guide/libdhcp.xml
deleted file mode 100644
index 5809156af9..0000000000
--- a/doc/guide/libdhcp.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
- The libdhcp++ Library
-
- libdhcp++ is a library written in C++ that handles
- many DHCP-related tasks, including:
-
-
- DHCPv4 and DHCPv6 packet parsing, manipulation, and assembly
-
-
- Option parsing, manipulation, and assembly
-
-
- Network interface detection
-
-
- Socket operations such as creation, data transmission and reception, and socket closing
-
-
-
-
-
- While this library is currently used by Kea, it is designed to
- be a portable, universal library, useful for any DHCP-related software.
-
-
-
-
-
- Interface Detection and Socket Handling
- Both the DHCPv4 and DHCPv6 components share network
- interface detection routines. Interface detection is
- currently supported on Linux, all BSD family (FreeBSD, NetBSD,
- OpenBSD), Mac OS X, and Solaris 11 systems.
-
- DHCPv4 requires special raw-socket processing to send and receive
- packets from hosts that do not have an IPv4 address assigned. Support
- for this operation is implemented on Linux, FreeBSD, NetBSD, and OpenBSD.
- It is likely that the DHCPv4 component will not work in certain cases on
- other systems.
-
-
-
-
-