Received: from relay10.mail.gandi.net (relay10.mail.gandi.net [217.70.178.230]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 96A84780FFE for <~alpine/users@lists.alpinelinux.org>; Mon, 11 Jul 2022 07:11:07 +0000 (UTC) Received: (Authenticated sender: michel.piquemal@ipik.org) by mail.gandi.net (Postfix) with ESMTPSA id 40450240011; Mon, 11 Jul 2022 07:11:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipik.org; s=gm1; t=1657523466; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=x4pejlQ9aVkt/6WFooTsQPOf3dlXDRv8eOpr4ASd5A8=; b=jIT3yZVShfbkob8C+hjzqtLcWTKOwg8d18vTwZQYaqULLCWfJrT8V08egtBjcYQmc4nXSI 95+q9FzamP96Tf4fjn2AAfm79wosY9MVfy+RqiVk8ySSRSzDBQzkMVvzCp16ZRNycKbWSB ixgO59w3WSWp9tDVuo81ikaHsI4R48Auc6B1ttJQ9c8eCyQTzn96qq884Reqq/Yj4Vp6t7 BtN06arbpmEdOp22tZGpYSOFJNi0MAMAe7vcNRraQo3kc/gHh82at+xviUUusADD8KlkJy E4uzyZzYt6bZ259neS/j9eTKzQMpbQ9wI6ddOoh5TQV8ZpBTlJSSfP+oSD8+GA== Message-ID: <56193d41-c974-cca5-3391-7e0e68c25467@ipik.org> Date: Mon, 11 Jul 2022 09:11:03 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: IPv6 firewall blocking router advertisements Content-Language: en-US To: "W. Michael Petullo" , Jakub Jirutka Cc: ~alpine/users@lists.alpinelinux.org References: <7a1d4e10-02c8-7e48-9e6f-31979f28ed69@jirutka.cz> From: macmpi In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit > I hope to experiment tomorrow to reach a stronger conclusion. Until then, > I would appreciate any input as to why dhcpcd seems to have fixed things > without turning off forwarding. Actually, there seem to be some issues with dhcpcd and IPv6. In default situations where only IPv4 interfaces are declared on /etc/network/interfaces, with no IPv6 stances: auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp auto wlan0 iface wlan0 inet dhcp One can note IPv6 addresses are still being acquired as ip a shows, and IPv4 networking gets into troubles (lots of erratic interruptions, particularly noticeable in streaming applications on wifi). It seems like IPv6 (probably failing if not supported by router or sth) takes some precedence and keeps altering IPv4 networking. Disabling IPv6: sysctl -w net.ipv6.conf.eth0.disable_ipv6=1 sysctl -w net.ipv6.conf.wlan0.disable_ipv6=1 fixes the problem. This might probably plead for some issues in default IPv6 routing priorities & fallback. One could also argue IPv6 addressing should not be started altogether unless explicitly specified in /etc/network/interfaces stances [1]. Last, setup-interfaces could ask if IPv6 shall be enabled and set relevant stances in /etc/network/interfaces accordingly. Thoughts? [1] https://wiki.alpinelinux.org/wiki/Configure_Networking#IPv6_Stateless_Autoconfiguration