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 X-Spam-Level: X-Spam-Status: No, score=-1.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 05455C43381 for ; Sun, 24 Mar 2019 17:02:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 96F1620870 for ; Sun, 24 Mar 2019 17:02:58 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=tutanota.com header.i=@tutanota.com header.b="ZizdHMUH" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728834AbfCXRC5 (ORCPT ); Sun, 24 Mar 2019 13:02:57 -0400 Received: from w1.tutanota.de ([81.3.6.162]:23424 "EHLO w1.tutanota.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726317AbfCXRC5 (ORCPT ); Sun, 24 Mar 2019 13:02:57 -0400 Received: from w2.tutanota.de (unknown [192.168.1.163]) by w1.tutanota.de (Postfix) with ESMTP id 3F961FA0335; Sun, 24 Mar 2019 17:02:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tutanota.com; s=20161216; t=1553446975; bh=y/DcPZl8xwgRODx9WV0ALY0fGvYbQn7bjHSphqADEVg=; h=Date:From:To:Cc:In-Reply-To:References:Subject:From; b=ZizdHMUHV9n1R1cu+tfaJF4eehiVGWTgzDJeZmPN/6b+XTfQ7Hg3UX3DyRLOGepiQ pSgxh57wSgH181/QfbVqlkonndYlEVfm1biShUdvskuqv/M2GRelQRJA9XPEXobP0p 65g7Bof5ZE9klWwD25HB1WJBVTljaqGXz+Wlzetp12gKnI5JzZxvh+sns2kA3t/19I xELbRgbUjLnAhWGJmuI4W1ZcgeyGUqh+FrZzEA8/Pq5TcyLuYfgAzfjfLB0HeNwBhD cbSPBJnTgpM1zGKX4mxR0UsAKPO1uFtzDbAtTSdbL0BwyH2Btr4OElWZYr5mRzxaDa LCmGz4OWPXMUg== Date: Sun, 24 Mar 2019 18:02:54 +0100 (CET) From: To: David Ahern Cc: Netdev , Stephen , Kuznet , Jason , Davem Message-ID: In-Reply-To: References: Subject: Re: [BUG][iproute2][5.0] ip route show table default: "Error: ipv4: FIB table does not exist." MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Mar 24, 2019, 2:17 PM by dsahern@gmail.com: > On 3/23/19 7:00 AM, > emersonbernier@tutanota.com > wrote: > >> After upgrading iproute2 from 4.20 to 5.0 the following error occurs: >> >> $ ip route show table default >> Error: ipv4: FIB table does not exist. >> Dump terminated >> >> The command works for all tables other than 'default' one. It seems related to this commit[1] >> > > > 'default' maps to table 253, and the table has not been created in the > kernel. Local (255) and main (254) do exist. > Ok but previous versions of iproute2 didn't treat this as error and didn't exited with non-zero status. Is non existing default route a system error which needs fixing?