@rogerbrowntdl Ok so it seems that tftpd might still be running.
First stop and disable the tftpd service
sudo systemctl stop tftpd.service && sudo systemctl disable tftpd.service
Make sure dnsmasq isn’t running
sudo systemctl stop dnsmasq.service
Edit/Create a file called ltsp.conf in the /etc/dnsmasq.d directory
sudo nano /etc/dnsmasq.d/ltsp.conf
Paste the following code and replace <fog_server_IP> with your FOG server’s IP address
# Don't function as a DNS server:
port=0
# Log lots of extra information about DHCP transactions.
log-dhcp
# Enable TFTP
enable-tftp
# Set the root directory for files available via FTP.
tftp-root=/tftpboot
# The boot filename, Server name, Server Ip Address
dhcp-boot=undionly.kpxe,,<fog_server_IP>
# Disable re-use of the DHCP servername and filename fields as extra
# option space. That's to avoid confusing some old or broken DHCP clients.
dhcp-no-override
# inspect the vendor class string and match the text to set the tag
dhcp-vendorclass=BIOS,PXEClient:Arch:00000
Then start dnsmasq
sudo systemctl start dnsmasq.service
Let me know how that works out for you.