From 655896f75b03243f86f226e2e3bf2b1525e9b503 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Tue, 9 Nov 2021 19:45:07 +0100 Subject: [PATCH] device: set ipv6 privacy in the the ipmanual l3cd In this way, the ipv6 privacy setting is committed as soon as the connection goes up. Fixes-test: @ipv6_ip6-default_privacy --- src/core/devices/nm-device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/devices/nm-device.c b/src/core/devices/nm-device.c index 204cb5c407..159f2abd6e 100644 --- a/src/core/devices/nm-device.c +++ b/src/core/devices/nm-device.c @@ -2636,6 +2636,7 @@ nm_device_create_l3_config_data_from_connection(NMDevice *self, NMConnection *co nm_l3_config_data_set_mdns(l3cd, _prop_get_connection_mdns(self)); nm_l3_config_data_set_llmnr(l3cd, _prop_get_connection_llmnr(self)); nm_l3_config_data_set_dns_over_tls(l3cd, _prop_get_connection_dns_over_tls(self)); + nm_l3_config_data_set_ip6_privacy(l3cd, _prop_get_ipv6_ip6_privacy(self)); return l3cd; }