From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CE931A034E for ; Fri, 21 Jan 2022 17:15:16 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 578A74276F; Fri, 21 Jan 2022 17:15:16 +0100 (CET) Received: from mail-pg1-f182.google.com (mail-pg1-f182.google.com [209.85.215.182]) by mails.dpdk.org (Postfix) with ESMTP id 3B6AA40040 for ; Fri, 21 Jan 2022 17:15:14 +0100 (CET) Received: by mail-pg1-f182.google.com with SMTP id g2so8532036pgo.9 for ; Fri, 21 Jan 2022 08:15:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=7PLaJSlc1rndEc6pgOvJIwcUeI7+hhhh1dHdazlTniA=; b=ll7N/WhBhqZYQbWFtKt06K7SfHxVbgF5Omm4dHaI/P37P7aeWMiBQGplasLrWQ+OK4 /z3gW2xDr0Dm/iORZ6h+stsZDWil2tfHnSjrRFZ3xY4vkoSnpU8kn4VKbfzmKPAEBTiT XB/UjqQBeu024MBMY0aMdBkx9oEIAG7Vv8DTPPw12UP1MhHcL3aSzJvJINh44IYqSm1e nAxlOabDmyp/Xjyet68YqP/QqNmwdcCWEP6V9cC89ff848zAuf0HwRCRha2fhUd3t032 67UOGCl0Jt8jYAIlq+sTZ+yAB6HfsY4AcIVGcRrR7DEIY4oD32+0Nqgg7e8mntq7WcLX 8EGA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=7PLaJSlc1rndEc6pgOvJIwcUeI7+hhhh1dHdazlTniA=; b=TRRc6oBdRrIbYpStakBGwymhk65UMdHQxs3RmuLLELBbe+HWUuHCAOxXUvKO78iwv3 iMEh131/+aSwM+ZKbGFsfAXstaK8UEaTf/V8tVFU7dIcwnH01RscAsHB3Fc1MaD8bhS1 f0kelEzIclSNj+eK7TsglpLp2YMxnkuz/hR0EYInCW6aCLhz1tbc7ti/QslavRtu/qBf j339qkKhAGhE+9mv0jzMMu+haHC15W8NTYMdcIwAC8nCSKLcL/G2yVGwrUs11uOF9fHx XXGUXaWgfJHEFxGrSVU/yOtgywT3PqhjUUKLXm5FpQlB9TPiVQYOsUp7Rq2Natkgbfwj qZDg== X-Gm-Message-State: AOAM5315HvJTQ+UjF99nsF46fa6dJQumq70wzqlnKK+lP9TKl6h4fHGc x/h4qBuSOhZ5qdbfm90VpD7oJA== X-Google-Smtp-Source: ABdhPJyIUXJk5olvlyww6hyH77OpNZkgmUkaXH+e8IqUYHx3zw/2bO58D458GEMCD0UFKTYYEXgghA== X-Received: by 2002:a63:4520:: with SMTP id s32mr3369879pga.120.1642781713266; Fri, 21 Jan 2022 08:15:13 -0800 (PST) Received: from hermes.local (204-195-112-199.wavecable.com. [204.195.112.199]) by smtp.gmail.com with ESMTPSA id v186sm5111069pgv.69.2022.01.21.08.15.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 21 Jan 2022 08:15:12 -0800 (PST) Date: Fri, 21 Jan 2022 08:15:10 -0800 From: Stephen Hemminger To: krishna bansal Cc: users@dpdk.org Subject: Re: How to add veth interfaces in dpdk Message-ID: <20220121081510.3545744b@hermes.local> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org On Fri, 21 Jan 2022 02:31:07 +0530 krishna bansal wrote: > Hi DPDK experts, > > I need to create a veth device for the slowpath for control packets. > > Is there any way we can add veth interfaces in dpdk. > > Regards, > Krishna Veth devices are usually created by command line flags passed to eal init. See examples for vdev type devices (null, ring, tap, packet, failsafe, ...) in the documentation.