<div dir="ltr">Hello Experts,<br><br>I am trying to run the following scenario using l3fwd example in dpdk-stable-21.11.2 release .<br><br>The flow is :<div><br></div><div>         VM1                                                                                                 VM2</div><div>ns0->tap0<IPV4 IP>->DPDK       <--------------------->  DPDK-> bind a device  with IP <IPV4 IP ><br><br><br>The first question I have for VM2:<br>I assigned IP to the device and can see eth and static ip address via  'ip add ', then after binding it to dpdk, I can not see this information via ip add because it is not controlled by kernel module.<br>Is there any way to see ip and ethernet address after binding to DPDK?<br>Is this process correct to assign IP  and then device to DPDK?<br><br><br>on VM1:<br> After starting the DPDK application, I can see a tap0 device created in kernel mode via 'ip add show'.Then I attached this interface with network namespace via:<br><br>ip netns add ns0<br>ip link set tap0 netns ns0<br>ip netns exec ns0 ip addr add <IPV4 Address> dev tap0 <br>ip netns exec ns0 ip link set tap0 up<br>ip netns exec ns0 ip link set lo up<br><br>Still, I am not able to ping anything from this ns0.<br><br>Do I need any other configuration to ping via ns0 to VM2?<br><br>Sorry, in case I am asking any dumb questions, I am new to DPDK and trying to make the use case work.</div><div>Any help/pointer is really appreciated.<br><br><br></div></div>