From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 54AFF1BB0C for ; Sat, 23 Jun 2018 06:37:59 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id n5-v6so4571717wmc.5 for ; Fri, 22 Jun 2018 21:37:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=128technology.com; s=google; h=mime-version:from:date:message-id:subject:to; bh=Pd7m9MLY3tCTdaVey9rKlIUlZC+znWX7GumlatUiw5A=; b=JNTnra5P+E2CSw3/1AxOxGvwtLavhdEOdueIkXHoDL7XeEZkEiXUFbCddamgyvNQoe 6nExKopJTrjjv/NAFd3/Cb/B+2OEI7ynmOidxuRuZjI5u34pcvIoYYS1IgE05pK3mlgT lx5k/NQmPhvhZQJnNIqkdM4hr3XwGo2o2Yg/s= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=Pd7m9MLY3tCTdaVey9rKlIUlZC+znWX7GumlatUiw5A=; b=Q4tnk0XPwUtC8ZuB8ia4D/sM6aOdpOdKPcVrcTArrk3hAGtrhYGqhxYKWblbSjYvBO RlyixSB8AVGSYCXxdvm95Bu/OMY3yqYY0Y88dN4TcHwdmqv7dzMdURuEJ/0g0DRwqkII ol/y3C6x6olT23+HQ55jEAFyZjKAPJe39MvtI0XT2gIWpeT7hN1wiHJvyk87vrJwpMYl UFx1II8p2N/PdVuGeZrqOciiQErgNEhBFoUKgXrkq2uuf1djOdmqJnli2xCEVtWjuXoc 59TnAZvRktdoIoNclyEu7erBmfNF/fe9gKD6JeLL9U2UJTPQaB4WKlkbv0IQOz7RYZ67 qFSA== X-Gm-Message-State: APt69E1kFzriWP25N9UbA1g7F5Mm9KVt94g9TvZ16T7jTzkUpJiAcScy XPpzvdg5vSyU3jb02b/q3rVFO7xScW3P6FK7RL/6ew== X-Google-Smtp-Source: ADUXVKIgh+SUzoL/wXwpSC1AoAcL//nwpVz1BBVJ1NdN53ghMCmkIgicJtbe/pmLesr6nFBUtA64l8HSWKX0L4OaYw4= X-Received: by 2002:a1c:b5c7:: with SMTP id e190-v6mr283788wmf.118.1529682466711; Fri, 22 Jun 2018 08:47:46 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a1c:5451:0:0:0:0:0 with HTTP; Fri, 22 Jun 2018 08:47:46 -0700 (PDT) From: Jacob Dionne Date: Fri, 22 Jun 2018 11:47:46 -0400 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Directing *all* port traffic of mlx4 VF to application? 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: , X-List-Received-Date: Sat, 23 Jun 2018 04:37:59 -0000 Hi, I'm looking for some guidance. I'm working on a VM with a Mellanox ConnectX-3 VF that I want to use in my DPDK Application. IPv4 TCP and UDP unicast traffic is steered to my application, but ARP/ICMP are not. I want *all* traffic to be steered to my application. Should setting promiscuous achieve this? For me it didn't do the trick... do I need to use the flow library to add a catch-all? I'm using DPDK 17.08, OFED 4.1, Centos7.3 Thanks!