From 6fd3366320ab2d23953e1e1ce0ecd5c8d7e792d9 Mon Sep 17 00:00:00 2001 From: zezinho42 Date: Sat, 23 May 2020 11:06:30 +0200 Subject: Enable IPv6 by default Nowadays, IPv6 connections are very common, and other OS enable it by default. Until now, we only enabled IPv6 is user asked for a tunnel. Mageia 8 will now be IPv6 ready ;-) --- lib/network/connection/ethernet.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm index 87c4e69..0450149 100644 --- a/lib/network/connection/ethernet.pm +++ b/lib/network/connection/ethernet.pm @@ -274,7 +274,7 @@ sub build_ifcfg_settings { DHCP_HOSTNAME => $self->{address}{dhcp_hostname}, DHCP_TIMEOUT => $self->{address}{dhcp_timeout}, MII_NOT_SUPPORTED => bool2yesno(!$self->{control}{use_ifplugd}), - IPV6INIT => bool2yesno($self->{control}{ipv6_tunnel}), + IPV6INIT => 'yes', IPV6TO4INIT => bool2yesno($self->{control}{ipv6_tunnel}), DNS1 => $self->{address}{dns1}, DNS2 => $self->{address}{dns2}, -- cgit v1.2.1