From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from MARSHAL4.ul.ie (marshal4.ul.ie [193.1.100.137]) by dpdk.org (Postfix) with ESMTP id 1A302293B for ; Mon, 11 Dec 2017 12:21:20 +0100 (CET) Received: from exCas2.ul.campus (Not Verified[193.1.97.102]) by MARSHAL4.ul.ie with Trustwave SEG (v7, 5, 8, 10121) id ; Mon, 11 Dec 2017 11:21:20 +0000 Received: from EXMBX1.ul.campus ([fe80::a4c7:3a87:d355:1b0d]) by exCas2.ul.campus ([2002:c101:6166::c101:6166]) with mapi id 14.03.0361.001; Mon, 11 Dec 2017 11:21:20 +0000 From: Hristo.Trifonov To: "users@dpdk.org" Thread-Topic: Re: [dpdk-users] port 0 not present on board error Thread-Index: AdNyb3RGqz1d+q0zSxanhYIG/WCRfw== Date: Mon, 11 Dec 2017 11:21:20 +0000 Message-ID: Accept-Language: en-IE, en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.50.18.45] MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-users] port 0 not present on board error 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: Mon, 11 Dec 2017 11:21:21 -0000 Not showing "Active" status is perfectly normal. The problem here is that you will probably need to supply extra parameters. This is from your previous posts: pragash at revvit:~/dpdk-stable-17.05.2/= examples/l3fwd/build$ ./l3fwd -l 0-4 --no-huge -- -p 0x1 Try changing to: pragash at revvit:~/dpdk-stable-17.05.2/= examples/l3fwd/build$ ./l3fwd -l 1-4(core 0 is usually master lcore) --no-h= uge -- -p 0x3 -L(optional) -config=3D"(0,0,1),(1,0,2)" --parse-type This worked for me. You can check the docs here http://dpdk.org/doc/guides/= sample_app_ug/l3_forward.html for all options. If you don't specify the "config" option the app won't even start returning= the "check port config" error. You must also supply the "-parse-type" cmd = parameter otherwise app complaints and fails to start with the following er= ror "port 0 cannot parse packet type, please add -parse-type" Hristo T.