* Seeking help to configure DPDK 22 on Ubuntu 22.04.1 - "No probed ethernet devices"
@ 2025-06-05 17:53 Aniket singh
2025-06-05 21:24 ` Stephen Hemminger
0 siblings, 1 reply; 4+ messages in thread
From: Aniket singh @ 2025-06-05 17:53 UTC (permalink / raw)
To: users; +Cc: navaneetyvn.211cs234
[-- Attachment #1: Type: text/plain, Size: 822 bytes --]
Hi Everyone,
I'm trying to configure DPDK 22 on Ubuntu 22.04.3 LTS and I'm facing an
issue when running the testpmd application.
Whenever I execute:
sudo ./dpdk-testpmd
I get the following error:
testpmd: No probed ethernet devices
I've followed the setup steps from the DPDK documentation, including
hugepages allocation and binding NICs with vfio-pci, but still encountering
the same issue.
Could someone please help point out what might be missing or guide me on
how to properly configure DPDK on this version of Ubuntu?
I have tried on both these NICs:
0000:00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection
(17) I219-LM (rev 11)
0000:01:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network
Connection (rev 03)
Thanks in advance for your help!
Best regards,
Aniket Singh
[-- Attachment #2: Type: text/html, Size: 1037 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Seeking help to configure DPDK 22 on Ubuntu 22.04.1 - "No probed ethernet devices"
2025-06-05 17:53 Seeking help to configure DPDK 22 on Ubuntu 22.04.1 - "No probed ethernet devices" Aniket singh
@ 2025-06-05 21:24 ` Stephen Hemminger
2025-06-06 16:17 ` Aniket singh
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2025-06-05 21:24 UTC (permalink / raw)
To: Aniket singh; +Cc: users, navaneetyvn.211cs234
On Thu, 5 Jun 2025 23:23:39 +0530
Aniket singh <aniketsingh84646@gmail.com> wrote:
> Hi Everyone,
>
> I'm trying to configure DPDK 22 on Ubuntu 22.04.3 LTS and I'm facing an
> issue when running the testpmd application.
>
> Whenever I execute:
>
> sudo ./dpdk-testpmd
>
> I get the following error:
>
> testpmd: No probed ethernet devices
>
> I've followed the setup steps from the DPDK documentation, including
> hugepages allocation and binding NICs with vfio-pci, but still encountering
> the same issue.
>
> Could someone please help point out what might be missing or guide me on
> how to properly configure DPDK on this version of Ubuntu?
>
> I have tried on both these NICs:
> 0000:00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection
> (17) I219-LM (rev 11)
> 0000:01:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network
> Connection (rev 03)
>
You have to rebind the NIC's to vfio-pci to allow use by DPDK.
Did you look at dpdk-devbind.py script?
Also, some of the on board Ethernet controllers are not yet supported
by DPDK. They fall under the igb driver, but the PCI id's are not listed.
Needs backport from BSD or Linux driver for that.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Seeking help to configure DPDK 22 on Ubuntu 22.04.1 - "No probed ethernet devices"
2025-06-05 21:24 ` Stephen Hemminger
@ 2025-06-06 16:17 ` Aniket singh
2025-06-06 16:52 ` Nishant Verma
0 siblings, 1 reply; 4+ messages in thread
From: Aniket singh @ 2025-06-06 16:17 UTC (permalink / raw)
To: stephen; +Cc: users, navaneetyvn.211cs234
[-- Attachment #1: Type: text/plain, Size: 1585 bytes --]
Hi Stephen,
I did rebind the NIC's to vfio-pci using the
dpdk-devbind.py script.
Does that mean both the NICs (I219-LM and I1210) are not supported by DPDK?
Thanks,
Aniket Singh
On Fri, 6 Jun 2025 at 2:55 AM, Stephen Hemminger <stephen@networkplumber.org>
wrote:
> On Thu, 5 Jun 2025 23:23:39 +0530
> Aniket singh <aniketsingh84646@gmail.com> wrote:
>
> > Hi Everyone,
> >
> > I'm trying to configure DPDK 22 on Ubuntu 22.04.3 LTS and I'm facing an
> > issue when running the testpmd application.
> >
> > Whenever I execute:
> >
> > sudo ./dpdk-testpmd
> >
> > I get the following error:
> >
> > testpmd: No probed ethernet devices
> >
> > I've followed the setup steps from the DPDK documentation, including
> > hugepages allocation and binding NICs with vfio-pci, but still
> encountering
> > the same issue.
> >
> > Could someone please help point out what might be missing or guide me on
> > how to properly configure DPDK on this version of Ubuntu?
> >
> > I have tried on both these NICs:
> > 0000:00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection
> > (17) I219-LM (rev 11)
> > 0000:01:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network
> > Connection (rev 03)
> >
>
> You have to rebind the NIC's to vfio-pci to allow use by DPDK.
> Did you look at dpdk-devbind.py script?
>
> Also, some of the on board Ethernet controllers are not yet supported
> by DPDK. They fall under the igb driver, but the PCI id's are not listed.
> Needs backport from BSD or Linux driver for that.
>
>
[-- Attachment #2: Type: text/html, Size: 3208 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Seeking help to configure DPDK 22 on Ubuntu 22.04.1 - "No probed ethernet devices"
2025-06-06 16:17 ` Aniket singh
@ 2025-06-06 16:52 ` Nishant Verma
0 siblings, 0 replies; 4+ messages in thread
From: Nishant Verma @ 2025-06-06 16:52 UTC (permalink / raw)
To: Aniket singh; +Cc: stephen, users, navaneetyvn.211cs234
[-- Attachment #1: Type: text/plain, Size: 1870 bytes --]
If your NIC is not part of this, then yes it's NOT SUPPORTED officially.
https://core.dpdk.org/supported/
Regards,
Nishant
On Fri, Jun 6, 2025 at 12:27 PM Aniket singh <aniketsingh84646@gmail.com>
wrote:
> Hi Stephen,
>
> I did rebind the NIC's to vfio-pci using the
> dpdk-devbind.py script.
>
> Does that mean both the NICs (I219-LM and I1210) are not supported by DPDK?
>
> Thanks,
> Aniket Singh
>
> On Fri, 6 Jun 2025 at 2:55 AM, Stephen Hemminger <
> stephen@networkplumber.org> wrote:
>
>> On Thu, 5 Jun 2025 23:23:39 +0530
>> Aniket singh <aniketsingh84646@gmail.com> wrote:
>>
>> > Hi Everyone,
>> >
>> > I'm trying to configure DPDK 22 on Ubuntu 22.04.3 LTS and I'm facing an
>> > issue when running the testpmd application.
>> >
>> > Whenever I execute:
>> >
>> > sudo ./dpdk-testpmd
>> >
>> > I get the following error:
>> >
>> > testpmd: No probed ethernet devices
>> >
>> > I've followed the setup steps from the DPDK documentation, including
>> > hugepages allocation and binding NICs with vfio-pci, but still
>> encountering
>> > the same issue.
>> >
>> > Could someone please help point out what might be missing or guide me on
>> > how to properly configure DPDK on this version of Ubuntu?
>> >
>> > I have tried on both these NICs:
>> > 0000:00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection
>> > (17) I219-LM (rev 11)
>> > 0000:01:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network
>> > Connection (rev 03)
>> >
>>
>> You have to rebind the NIC's to vfio-pci to allow use by DPDK.
>> Did you look at dpdk-devbind.py script?
>>
>> Also, some of the on board Ethernet controllers are not yet supported
>> by DPDK. They fall under the igb driver, but the PCI id's are not listed.
>> Needs backport from BSD or Linux driver for that.
>>
>>
[-- Attachment #2: Type: text/html, Size: 4405 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-06-06 16:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-05 17:53 Seeking help to configure DPDK 22 on Ubuntu 22.04.1 - "No probed ethernet devices" Aniket singh
2025-06-05 21:24 ` Stephen Hemminger
2025-06-06 16:17 ` Aniket singh
2025-06-06 16:52 ` Nishant Verma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).