From 8fdf3a9abefddad47df2f7b773343784e5650970 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 24 Jun 2026 15:58:45 -0400 Subject: [PATCH] Do not set 0.0.0.0 gateway --- confluent_osdeploy/common/profile/scripts/confignet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_osdeploy/common/profile/scripts/confignet b/confluent_osdeploy/common/profile/scripts/confignet index 56d63114..d4adc8b4 100644 --- a/confluent_osdeploy/common/profile/scripts/confignet +++ b/confluent_osdeploy/common/profile/scripts/confignet @@ -208,7 +208,7 @@ class NetplanManager(object): gws.append(stgs.get('ipv4_gateway', None)) gws.append(stgs.get('ipv6_gateway', None)) for gwaddr in gws: - if gwaddr: + if gwaddr and gwaddr != '0.0.0.0': cfgroutes = self.getcfgarrpath([devname, 'routes']) for rinfo in cfgroutes: if rinfo.get('via', None) == gwaddr: