From 00baa75e963334fc3946490e554641891614c255 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 17 Nov 2022 10:33:02 -0600 Subject: [PATCH] netconfig: Enable IPV6 support by default --- src/iwd.config.rst | 2 +- src/netconfig.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/iwd.config.rst b/src/iwd.config.rst index d77ed077..b525a2cc 100644 --- a/src/iwd.config.rst +++ b/src/iwd.config.rst @@ -228,7 +228,7 @@ The group ``[Network]`` contains network configuration related settings. :align: left * - EnableIPv6 - - Values: true, **false** + - Values: **true**, false Sets the global default that tells **iwd** whether it should configure IPv6 addresses and routes (either provided via static settings, diff --git a/src/netconfig.c b/src/netconfig.c index 6e82add3..b7a52971 100644 --- a/src/netconfig.c +++ b/src/netconfig.c @@ -769,7 +769,7 @@ static int netconfig_init(void) if (!l_settings_get_bool(iwd_get_config(), "Network", "EnableIPv6", &ipv6_enabled)) - ipv6_enabled = false; + ipv6_enabled = true; mdns_global = l_settings_get_string(iwd_get_config(), "Network", "MulticastDNS");