From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: bug#37309: [PATCH] services: openssh: Restrict to IPv4. Date: Wed, 4 Dec 2019 08:41:35 -0500 Message-ID: <20191204134135.GA7375@jasmine.lan> References: <87ef0u2867.fsf@roquette.mug.biscuolo.net> <180aa2dee4e1da7fe915c85b90b1f60edd04f23d.1575403967.git.leo@famulari.name> <9AF0F57B-ED38-4A4F-9D34-B0A083DBBB3C@lepiller.eu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:34212) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1icUup-00062d-Sz for bug-guix@gnu.org; Wed, 04 Dec 2019 08:42:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1icUuo-0007D8-SA for bug-guix@gnu.org; Wed, 04 Dec 2019 08:42:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:35598) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1icUuo-0007D1-Kq for bug-guix@gnu.org; Wed, 04 Dec 2019 08:42:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1icUuo-0001Mc-HT for bug-guix@gnu.org; Wed, 04 Dec 2019 08:42:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <9AF0F57B-ED38-4A4F-9D34-B0A083DBBB3C@lepiller.eu> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Julien Lepiller Cc: 37309@debbugs.gnu.org On Tue, Dec 03, 2019 at 10:53:11PM +0100, Julien Lepiller wrote: > Le 3 décembre 2019 21:12:51 GMT+01:00, Leo Famulari a écrit : > >+@item @code{address-family} (default: @code{'inet}) > >+This is a symbol specifying which type of internet addresses should be > >+handled by @command{sshd}. The options are @code{inet} (IPv4), > >+@code{inet6} (IPv6), or @code{any}, which selects both @code{inet} and > >+@code{inet6}. The upstream default in @code{any}. However, we > default *is* Thanks! This patch did make sshd work for me again. However, as part of trying to debug this issue, I changed my system configuration so that it uses dhcp-client-service and wpa-supplicant-service instead of using Wicd. And now I can't reproduce the bug anymore. I guess that either 1) wpa_supplicant brings the network interfaces up faster or 2) the state of the network interfaces is more accurately captured with these services (in the sense of, is the network up?). Tricky... Does the patch help anybody else?