From 58d1164cf38689d34b312cafcc03cc96608eaea3 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Mon, 2 Oct 2023 22:05:33 +0200 Subject: [PATCH] Fix IPv4 netmask Running dhclient on eth0 gives a /16, and this is necessary anyway to reach the gateway. Signed-off-by: Denis 'GNUtoo' Carikli --- guix-installer-vm-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix-installer-vm-system.scm b/guix-installer-vm-system.scm index 2e5f4a1..7846237 100644 --- a/guix-installer-vm-system.scm +++ b/guix-installer-vm-system.scm @@ -125,7 +125,7 @@ needed for unattended upgrades to work.") (static-networking (addresses (list (network-address (device "eth0") - (value "192.168.1.118/24")) + (value "192.168.1.118/16")) (network-address (device "eth0") (value "2001:910:1021::118/64"))))