From 8c09af074b766582acd74aaa3ca7d0d7cd9029d7 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Tue, 3 Oct 2023 14:11:45 +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 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2211909..d62e0c8 100644 --- a/configure.ac +++ b/configure.ac @@ -61,9 +61,9 @@ AC_ARG_WITH([letsencrypt-email], AC_ARG_WITH([vm-ipv4-address], [AS_HELP_STRING([--with-vm-ipv4-address=VM_IPV4_ADDRESS], [Use custom VM - IPv4 address. (default=192.168.1.117/24)])], + IPv4 address. (default=192.168.1.117/16)])], [VM_IPV4_ADDRESS=$withval], - [VM_IPV4_ADDRESS="192.168.1.117/24"]) + [VM_IPV4_ADDRESS="192.168.1.117/16"]) AC_ARG_WITH([vm-ipv6-address], [AS_HELP_STRING([--with-vm-ipv6-address=VM_IPV6_ADDRESS], [Use custom VM