From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 60636C4332F for ; Tue, 12 Dec 2023 16:53:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1376361AbjLLQxv (ORCPT ); Tue, 12 Dec 2023 11:53:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48578 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232222AbjLLQxu (ORCPT ); Tue, 12 Dec 2023 11:53:50 -0500 Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ED7B6A8 for ; Tue, 12 Dec 2023 08:53:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=date:from:to:cc:subject:in-reply-to:message-id: references:mime-version; bh=4TvvdAmf8lZsnLy7wwjdJD7d/f29GblBUoW5N7xcxrs=; b=qJ9ZW1g51+3vVk2ej6VBI51CnnwiWgsSPJ9Jisa6Acsv9Xgwqi16e3mI gqN3UrMHIx5sGvO5bkbVE5fCsdnjNCKt3RT/+o8n+ADrHzRBSMon2p7cy uRS2B2J+ivxLbkMS1nFXelzpYn88zFwIPQzlrWRHyvO9YNpp20G95RPKE I=; Authentication-Results: mail2-relais-roc.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=julia.lawall@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="6.04,270,1695679200"; d="scan'208";a="141896330" Received: from dt-lawall.paris.inria.fr ([128.93.67.65]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Dec 2023 17:53:53 +0100 Date: Tue, 12 Dec 2023 17:53:53 +0100 (CET) From: Julia Lawall To: Ivan Vecera cc: "David S. Miller" , linux-kernel@vger.kernel.org Subject: Re: Failed to start Raise network interfaces error In-Reply-To: <88a7a623-ad80-406c-a63b-3136df963888@redhat.com> Message-ID: <54ad40e9-20ea-5de8-9dc-fb2eb8f4ccec@inria.fr> References: <21977757-3a63-4586-ae03-e6630c1f009d@redhat.com> <4c707e3e-a324-a5e6-dc21-833b6d40324d@inria.fr> <88a7a623-ad80-406c-a63b-3136df963888@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 12 Dec 2023, Ivan Vecera wrote: > > > On 12. 12. 23 17:33, Julia Lawall wrote: > > > Look at 'systemd.net-naming-scheme' man page for details how the interface > > > names are composed. > > After booting into 6.7.0-rc4, I have the following in > > /etc/network/interfaces: > > > > # This file describes the network interfaces available on your system > > # and how to activate them. For more information, see interfaces(5). > > > > source/etc/network/interfaces.d/* > > > > # The loopback network interface > > auto lo > > iface lo inet loopback > > > > auto enp24s0f0 > > iface enp24s0f0 inet dhcp > > Just change 'enp24s0f0' in /etc/network/interfaces to 'enp24s0f0np0' Indeed, if I make that change and then reboot, then I can access the machine from the outside world and the machine can see the network. But now if I try to boot an older kernel, the same problem happens again. julia