<div dir="ltr">Hi Stephen,<br><br>I checked with the above mentioned method and it seems like the I210 NIC is supported by dpdk. Still I'm getting the same problem with this NIC as well.<br>FYI, DPDK-19.11.1 was working with the same NIC.  <div><br></div><div>Thanks,<br>Aniket Singh</div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Sat, Jun 7, 2025 at 2:01 AM Stephen Hemminger <<a href="mailto:stephen@networkplumber.org">stephen@networkplumber.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, 6 Jun 2025 12:52:28 -0400<br>
Nishant Verma <<a href="mailto:vnish11@gmail.com" target="_blank">vnish11@gmail.com</a>> wrote:<br>
<br>
> If your NIC is not part of this, then yes it's NOT SUPPORTED officially.<br>
> <br>
> <a href="https://core.dpdk.org/supported/" rel="noreferrer" target="_blank">https://core.dpdk.org/supported/</a><br>
> <br>
> <br>
> Regards,<br>
> Nishant<br>
> <br>
> <br>
> On Fri, Jun 6, 2025 at 12:27 PM Aniket singh <<a href="mailto:aniketsingh84646@gmail.com" target="_blank">aniketsingh84646@gmail.com</a>><br>
> wrote:<br>
> <br>
> > Hi  Stephen,<br>
> ><br>
> > I did rebind the NIC's to vfio-pci using the<br>
> > dpdk-devbind.py script.<br>
> ><br>
> > Does that mean both the NICs (I219-LM and I1210) are not supported by DPDK?<br>
> ><br>
> > Thanks,<br>
> > Aniket Singh<br>
> ><br>
> > On Fri, 6 Jun 2025 at 2:55 AM, Stephen Hemminger <  <br>
> > <a href="mailto:stephen@networkplumber.org" target="_blank">stephen@networkplumber.org</a>> wrote:  <br>
> >  <br>
> >> On Thu, 5 Jun 2025 23:23:39 +0530<br>
> >> Aniket singh <<a href="mailto:aniketsingh84646@gmail.com" target="_blank">aniketsingh84646@gmail.com</a>> wrote:<br>
> >>  <br>
> >> > Hi Everyone,<br>
> >> ><br>
> >> > I'm trying to configure DPDK 22 on Ubuntu 22.04.3 LTS and I'm facing an<br>
> >> > issue when running the testpmd application.<br>
> >> ><br>
> >> > Whenever I execute:<br>
> >> ><br>
> >> >     sudo ./dpdk-testpmd<br>
> >> ><br>
> >> > I get the following error:<br>
> >> ><br>
> >> >     testpmd: No probed ethernet devices<br>
> >> ><br>
> >> > I've followed the setup steps from the DPDK documentation, including<br>
> >> > hugepages allocation and binding NICs with vfio-pci, but still  <br>
> >> encountering  <br>
> >> > the same issue.<br>
> >> ><br>
> >> > Could someone please help point out what might be missing or guide me on<br>
> >> > how to properly configure DPDK on this version of Ubuntu?<br>
> >> ><br>
> >> > I have tried on both these NICs:<br>
> >> > 0000:00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection<br>
> >> > (17) I219-LM (rev 11)<br>
> >> > 0000:01:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network<br>
> >> > Connection (rev 03)<br>
> >> >  <br>
> >><br>
> >> You have to rebind the NIC's to vfio-pci to allow use by DPDK.<br>
> >> Did you look at dpdk-devbind.py script?<br>
> >><br>
> >> Also, some of the on board Ethernet controllers are not yet supported<br>
> >> by DPDK. They fall under the igb driver, but the PCI id's are not listed.<br>
> >> Needs backport from BSD or Linux driver for that.<br>
> >><br>
> >>  <br>
<br>
Use lspci to find the PCI id vendor then look at the source is the<br>
definitive answer.<br>
$ sudo ethtool -i enp87s0<br>
...<br>
bus-info: 0000:57:00.0<br>
<br>
$ lspci -s 0000:57:00 -n<br>
57:00.0 0200: 8086:125c (rev 04)<br>
<br>
drivers/net $ git grep 125C<br>
intel/e1000/base/e1000_hw.h:#define E1000_DEV_ID_I226_V                 0x125C<br>
 $ git grep ID_I226_V<br>
intel/e1000/base/e1000_api.c:   case E1000_DEV_ID_I226_V:<br>
intel/e1000/base/e1000_hw.h:#define E1000_DEV_ID_I226_V                 0x125C<br>
intel/e1000/igc_ethdev.c:       { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_V)  },   <<< yes<br>
<br>
<br>
</blockquote></div>