[dpdk-dev] kni interface does not transmit anything

2021-02-14 Thread mirzaei.reza
Hello, I've recently migrated from dpdk-18.05 to dpdk-20.11. I built "kni" example according to this tutorial [1 [1]], every thing is fine except that it has no output packet (no tx). have I ignored something? I would be grateful if anyone could help me. It may also be helpful to mention that a

[dpdk-dev] kni interface does not transmit anything

2021-02-12 Thread mirzaei.reza
Hello, I've recently migrated from dpdk-18.05 to dpdk-20.11. I built "kni" example according to this tutorial [1], every thing is fine except that it has no output packet (no tx). have I ignored something? I would be grateful if anyone could help me. outputs: > ./BUILD/KNI -L 4-7 -N 4 -- -P -

Re: [dpdk-dev] Kni interface unable to receive ipv6 solicited node multicast addressed frames

2020-01-24 Thread Srinivasan J
Calling rte_eth_allmulticast_enable() in the DPDK KNI sample app solved the issue. Sharing the fix so that it will be helpful for others facing similar issue. Regards, Srini /dpdk-stable-18.08.1/examples/kni/main.c @@ -618,8 +619,10 @@ rte_exit(EXIT_FAILURE, "Could not start port

Re: [dpdk-dev] Kni interface unable to receive ipv6 solicited node multicast addressed frames

2020-01-23 Thread Srinivasan J
On further investigation, it' seen that the dvSwitch does not have any multicast MAC registered when using DPDK vmxnet3 poll mode driver along with the KNI sample app post configuring IPv6 address on the vEth0 KNI interface. The same interface when used with the kernel driver works fine. Any help o

[dpdk-dev] Kni interface unable to receive ipv6 solicited node multicast addressed frames

2020-01-17 Thread Srinivasan J
Hi, I observed that DPDK kni interface is not able to receive solicited node multicast addressed (derived from the IPv6 address configured on vEth0 interface) when the kni sample app is being run in Ubuntu VM on ESXI server. The only way to have the frames reach the kni interface is by setting t

[dpdk-dev] KNI interface vEtho flaps

2019-12-08 Thread Prashanth Fernando
Hi, I am running KNI example. Once I run KNI, a virtual interface is created and I assign an IP to it. After a few minutes the IP address is gone, ( I assume the interface would have flapped). This issue is seen in random. Can anyone help me out in debugging this issue further. Thanks, Prashan

[dpdk-dev] KNI interface is not coming up

2015-04-30 Thread Venkat Thummala
Hi Robert, Thanks a lot, it fixed the issue. Regards Venkat On 30 April 2015 at 20:11, Sanford, Robert wrote: > Hi Venkat, > > Perhaps your DPDK application needs to slow-poll KNI devices via > rte_kni_handle_request( ). > > http://dpdk.org/doc/api/rte__kni_8h.html > > -- > Regards, > Robert >

[dpdk-dev] KNI interface is not coming up

2015-04-30 Thread Venkat Thummala
Hi, I am testing DPDK 2.0 release. I am not able to bring the KNI interface up. It always gives the following error. SIOCSIFFLAGS: Timer expired This is on Ubuntu, Linux vthummala-PowerEdge-R720 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux Please

[dpdk-dev] KNI interface is not coming up

2015-04-30 Thread Sanford, Robert
Hi Venkat, Perhaps your DPDK application needs to slow-poll KNI devices via rte_kni_handle_request( ). http://dpdk.org/doc/api/rte__kni_8h.html -- Regards, Robert >Hi, > >I am testing DPDK 2.0 release. >I am not able to bring the KNI interface up. >It always gives the following error. > >SIOCS

[dpdk-dev] KNI interface operational state UP issue

2015-01-14 Thread Aziz Hajee
Yes, the DPDK reports port is UP. By the following change in the registered callback function to comment out stop/start the dpdk interface, I can bring the KNI vEthX interfaces up: (I guess, the reason is the ret value is now the default ret = 0, and no error from stop/start. ) kni_config_network_

[dpdk-dev] KNI interface operational state UP issue

2015-01-12 Thread Bruce Richardson
On Fri, Jan 09, 2015 at 05:20:26PM -0800, Aziz Hajee wrote: > I am using the dpdk1.6.0r1 > The rte_kni.lo is loaded: > lsmod | grep kni > rte_kni 279134 1 > > however, the ifconfig vEth0, and vEth1 does not show link up ? > How do i get the operational state up for these interfaces.

[dpdk-dev] KNI interface operational state UP issue

2015-01-09 Thread Aziz Hajee
I am using the dpdk1.6.0r1 The rte_kni.lo is loaded: lsmod | grep kni rte_kni 279134 1 however, the ifconfig vEth0, and vEth1 does not show link up ? How do i get the operational state up for these interfaces. $ sudo tcpdump -i vEth0 tcpdump: vEth0: That device is not up ifconfig v

[dpdk-dev] KNI interface

2014-07-20 Thread Zhou, Danny
rototype under development might fit whatever you requirement, or you can integrate commercial or open-sourced user space TCP/IP stack. > > > > >> -Original Message- > >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Harish Patil > >> Sent: Sat

[dpdk-dev] KNI interface

2014-07-19 Thread Harish Patil
modules, to achieve full networking stack functionality at least in a non-virtualized environment ? > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Harish Patil >> Sent: Saturday, July 19, 2014 8:09 AM >> To: dev at dpdk.org >> Subj

[dpdk-dev] KNI interface

2014-07-19 Thread Zhou, Danny
space still process fast path packets. > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Harish Patil > Sent: Saturday, July 19, 2014 8:09 AM > To: dev at dpdk.org > Subject: [dpdk-dev] KNI interface > > Hello dpdk-dev, > Went thru? cou

[dpdk-dev] KNI interface

2014-07-19 Thread Harish Patil
Hello dpdk-dev, Went thru? couple of documentation but not very clear to me. Does using KNI means handing over all the packets received/transmitted by the poll mode driver to the linux stack or can it be controlled for the control packets only ? What is the KNI use-case (besides ethtool) and what a

[dpdk-dev] KNI interface

2014-07-18 Thread Bruce Richardson
On Sat, Jul 19, 2014 at 12:08:35AM +, Harish Patil wrote: > Hello dpdk-dev, > Went thru? couple of documentation but not very clear to me. Does using > KNI means handing over all the packets received/transmitted by the poll > mode driver to the linux stack or can it be controlled for the contro