From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A3AC1A0471 for ; Thu, 18 Jul 2019 00:17:20 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ECB522BAB; Thu, 18 Jul 2019 00:17:19 +0200 (CEST) Received: from mail-pg1-f172.google.com (mail-pg1-f172.google.com [209.85.215.172]) by dpdk.org (Postfix) with ESMTP id E6F9E1D9E for ; Thu, 18 Jul 2019 00:17:17 +0200 (CEST) Received: by mail-pg1-f172.google.com with SMTP id i70so1083255pgd.4 for ; Wed, 17 Jul 2019 15:17:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=LhHfQ/CS8AV/lEUR6vARzTIfeOMOXoW49KUhZRnjCqM=; b=j3bcjJ4hip13TvybMHHlpnQ04/NRgQerNWnzwyDnj+2bNFXuc1nJchYOllGccCrhlq dgG5gEV5tNjMwxruAKW3m5CszfVCkaL5zj+5PLITDp/4CTnEySwJDqIaurOiY2o7d6qJ s9K+RPRvaEBnkb0MObf1dWYiD7C/VtCgmeQAfRcLhrsyzTiI1WCHN94UMYYSHZsHRFkM OgjtZ+I5cg1bi+zrJD9m/+fwra9Tpy/Nw5ZR40S/cdLgrYXmg2bk9R6Nl1By8zrD751P ACxxp7UJeIZOwxhHlgZz16nfiWfkqK0g4s1+6vM/GN6nHhMDvp91tFs0GLv9c+1WWPrN KFJQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=LhHfQ/CS8AV/lEUR6vARzTIfeOMOXoW49KUhZRnjCqM=; b=aIAiRWMul9d5kQjEXQZxamIoCWqs0s0ZbyfHVbJhWmjUi0mY8R/vAZP/j+c0E3h0zr /Aa04PYyqYIfwX3Y0JP9TitWFHiT+t6ULNy2rb/tGWGHvkNacgfFz0MZsr4jHE5MYzrr 7kKm8rQCHXAW7nlSWWvdP3T21bloDWQ0B8KoeiES2s0CPE98i+Xjqm42zWU/rNobzlo7 dQHYvG4T+ri3FgLw1lz0bYTo2wJCfFcGa0urIfznK8QJoCtm/fu9+bSNJYzSnKFZYBPy ja2C3cWQ2tWe5qQuxa9keeuRFXqaCKFpJ4enCAWvkFUo+k2tLJugxzdjcSvmwoi/5eAj ewZA== X-Gm-Message-State: APjAAAWmovGd3s3whn6O5sd8O6/r8c7wJ6fdYxOJqHgxXKs4yFFugCt2 GZhLp/PX6jg4TU645cyNO+hnRtWV X-Google-Smtp-Source: APXvYqxNXoHLZ9cqscNhGxFc5Q63VIhPA4XXwD+KTzgw+k9mErru8qgdS0vLm6nYeZpY7E0sq4kpaQ== X-Received: by 2002:a65:6406:: with SMTP id a6mr7926988pgv.393.1563401835679; Wed, 17 Jul 2019 15:17:15 -0700 (PDT) Received: from xps13 ([67.23.203.6]) by smtp.gmail.com with ESMTPSA id g2sm3122310pfi.26.2019.07.17.15.17.15 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 17 Jul 2019 15:17:15 -0700 (PDT) Date: Wed, 17 Jul 2019 15:17:14 -0700 From: Stephen Hemminger To: Antoine POLLENUS Cc: "users@dpdk.org" Message-ID: <20190717151714.779770aa@xps13> In-Reply-To: <8995646e9b894982b9c88f79bc7d99bd@deltacast.tv> References: <8995646e9b894982b9c88f79bc7d99bd@deltacast.tv> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-users] [rte_flow]How to redirect all non matching traffic to a specific queue X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org Sender: "users" On Wed, 17 Jul 2019 11:46:17 +0000 Antoine POLLENUS wrote: > Hello, > > I have a problem in my DPDK implementation, > > I'm redirecting/filtering ingress traffic to a specific queue depending on the udp port using rte_flow. > > Now that I have that I would like to redirect all non-matching packets to a specific queue. > > How can I do that with RTE_FLOW ? > > Thank you in advance for your answer. > > Regards, > > Antoine Pollenus rte_flow supports INVERT as a pattern match. That is what you want. Not all hardware supports it.