From 258e991fcb8fe9c947c9217af3d0188bb790f774 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 10 Jun 2023 08:53:40 -0700 Subject: [PATCH] Fixing dhcp-boot filepath --- docs/booting/tftp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/booting/tftp.md b/docs/booting/tftp.md index 3377afd1..3b9e0948 100644 --- a/docs/booting/tftp.md +++ b/docs/booting/tftp.md @@ -15,7 +15,7 @@ You will have to tell your DHCP server to provide a "next-server", the address o Example: next-server "1.2.3.4" - filename "netboot.xyz.kpxe" + filename "./ipxe/netboot.xyz.kpxe" If you are using [dnsmasq as your DHCP server](https://wiki.archlinux.org/index.php/dnsmasq#DHCP_server) as well as your TFTP server then setting the next-server option is as simple as adding the following line to `/etc/dnsmasq.conf`: @@ -31,7 +31,7 @@ If you use dnsmasq you can add this configuration to `/etc/dnsmasq.conf`: enable-tftp tftp-root=/var/lib/tftp - dhcp-boot=netboot.xyz.kpxe + dhcp-boot=./ipxe/netboot.xyz.kpxe ### Fixing the dnsmasq service