From 6382dc8c197a5f7693ad0e9a1f5e1cc9be9d383e Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 4 May 2026 16:39:20 -0600 Subject: [PATCH] Update deployments/automation/FOG Project/Deploy.md --- deployments/automation/FOG Project/Deploy.md | 31 +++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/deployments/automation/FOG Project/Deploy.md b/deployments/automation/FOG Project/Deploy.md index c1471d1..0aeb1c6 100644 --- a/deployments/automation/FOG Project/Deploy.md +++ b/deployments/automation/FOG Project/Deploy.md @@ -1,4 +1,4 @@ -## Purpose +## FOG Project Deployment If you want to deploy the FOG Project software in your homelab environment to remotely image devices via PXE boot, follow the instructions below to get through the process. !!! info "assumptions" @@ -6,3 +6,32 @@ If you want to deploy the FOG Project software in your homelab environment to re It is also assumed that you allocate at least 4-cores and 8GB of RAM with at least 256GB of storage for the OS and FOG images. +!!! warning "Potential Netplan Misconfiguration" + I observed an oddity with the networking stack of the Ubuntu Server VM, so just to be safe, run the following command to check that you have both the `nameservers` pointing to your DNS server(s) and `routes` pointing to your default gateway. + + ```sh + cd /etc/netplan + ls + + nano + ``` + + Ensure it looks something like this, and fix it if any fields are missing: + + ```yaml + network: + ethernets: + ens18: + addresses: + - 192.168.3.9/24 + routes: + - to: default + via: 192.168.3.1 + match: + macaddress: bc:24:11:5c:eb:c9 + nameservers: + addresses: [192.168.3.25, 192.168.3.26] + search: [] + set-name: ens18 + version: 2 + ```