From 0e37820da3d84ee69573ac9a8e7c7733d8023248 Mon Sep 17 00:00:00 2001 From: Emmanuel Seyman Date: May 04 2022 17:05:35 +0000 Subject: [PATCH 1/2] Update modules/install-guide/pages/advanced/Network_based_Installations.adoc Either enable dhcpd on boot or do not enable tftp.socket. The former seems the better option. --- diff --git a/modules/install-guide/pages/advanced/Network_based_Installations.adoc b/modules/install-guide/pages/advanced/Network_based_Installations.adoc index 8d60d10..77ed771 100644 --- a/modules/install-guide/pages/advanced/Network_based_Installations.adoc +++ b/modules/install-guide/pages/advanced/Network_based_Installations.adoc @@ -71,6 +71,7 @@ option routers 192.168.1.1; ---- [command]#systemctl start dhcpd# +[command]#systemctl enable dhcpd# [command]#journalctl --unit dhcpd --since -2m --follow# ---- From f26bb4f4731b298481b7df9f159433d5886c7619 Mon Sep 17 00:00:00 2001 From: Emmanuel Seyman Date: May 04 2022 17:05:35 +0000 Subject: [PATCH 2/2] Update modules/install-guide/pages/advanced/Network_based_Installations.adoc Running "dnf install dhcp" as root will yield the error message "Error: Unable to find a match: dhcp" in F35+. The package to install is actually dhcp-server. --- diff --git a/modules/install-guide/pages/advanced/Network_based_Installations.adoc b/modules/install-guide/pages/advanced/Network_based_Installations.adoc index 77ed771..bf719e5 100644 --- a/modules/install-guide/pages/advanced/Network_based_Installations.adoc +++ b/modules/install-guide/pages/advanced/Network_based_Installations.adoc @@ -46,7 +46,7 @@ A Fedora repository must be available for the installation. The example in this + [subs="macros"] ---- -# dnf install dhcp +# dnf install dhcp-server ---- . Create a simple configuration for the dhcp server at `/etc/dhcp/dhcpd.conf`