From f8366a50efd9748319e28f91b494da3e8c2d05ad 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 20ee612c..02cb8c7a 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: