From 9a6e1e86cc6fa1353f3231fbc2783d237a520039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Thu, 4 Dec 2014 13:50:41 +0100 Subject: [PATCH] core: don't bounce disable_ipv6 when assuming connections (rh #1170530) Don't call set_nm_ipv6ll(self, TRUE) on any assumed connection since it would bounce disable_ipv6, which would break IPv6 connectivity. That is critical, for example, for installations via NFS. Fixes: d37b7bed305dbed7b5351038850ef6bbb7ed9c59 https://bugzilla.redhat.com/show_bug.cgi?id=1170530 Related: https://bugzilla.redhat.com/show_bug.cgi?id=1052157 --- src/devices/nm-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index f56cf2e52..169db19df 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -4390,7 +4390,7 @@ act_stage3_ip6_config_start (NMDevice *self, * IPv6LL if this is not an assumed connection, since assumed connections * will already have IPv6 set up. */ - if (!nm_device_uses_generated_assumed_connection (self)) + if (!nm_device_uses_assumed_connection (self)) set_nm_ipv6ll (self, TRUE); /* Re-enable IPv6 on the interface */