[vpp-dev] IPsec offload

2017-11-02 Thread Avi Cohen (A)
Does the VPP support HW IPsec offload ? can VPP configure the NIC/Network adapter to ipsec a specific flow ? Thank You Avi ___ vpp-dev mailing list vpp-dev@lists.fd.io https://lists.fd.io/mailman/listinfo/vpp-dev

Re: [vpp-dev] IPsec offload

2017-11-02 Thread Gonzalez Monroy, Sergio
Hi Avi, VPP currently supports Crypto HW offload (lookaside model, ie. Intel QuickAssist Techonology) through DPDK Cryptodev APIs. Neither full IPsec offload (dedicated HW), nor Crypto/IPsec inline offload (NICs) are currently supported. Thanks, Sergio On 02/11/2017 15:19, Avi Cohen (A)

[vpp-dev] FD.io CSIT rls1710 report published

2017-11-02 Thread Maciek Konstantynowicz (mkonstan)
Dear FD.io community, The CSIT rls1710 report is now published on FD.io docs site: https://docs.fd.io/csit/rls1710/report/ Many Thanks to All CSIT Contributors and Committers to make CSIT rls1710 happen ! Many Thanks to all folks that collaborated with CSIT

Re: [vpp-dev] IPsec offload

2017-11-02 Thread Francois Ozog
Avi, Sergio, There has been demonstration of an inline IPsec as well as lookaside acceleration through ODP4VPP plugin at Linaro Connect this past September. But there will be quite some work before this can be transformed in an upstreamable technology. I guess the VPP IPsec node may need a

Re: [vpp-dev] [discuss] FD.io CSIT rls1710 report published

2017-11-02 Thread Dave Wallace
Most Excellent! -daw- On 11/02/2017 01:32 PM, Maciek Konstantynowicz (mkonstan) wrote: Dear FD.io community, The CSIT rls1710 report is now published on FD.io docs site: https://docs.fd.io/csit/rls1710/report/ Many

[vpp-dev] How to get VPP core dump and run exec file in interactive mode

2017-11-02 Thread John Wei
I added an exec file into /etc/vpp/startup.conf. It seems that it is executed only when it is started by systemd (systemctl start vpp)? If I run "vpp unix interactive", it does not run the exec file, is this expected? I was running 17.10 debug build. My vpp crashed and I was not able to find core

Re: [vpp-dev] How to get VPP core dump and run exec file in interactive mode

2017-11-02 Thread Luke, Chris
/etc/vpp/startup.conf only loads if you tell it to. See https://wiki.fd.io/view/VPP/Command-line_Arguments#Configuration_file . I’m pretty sure the exec will occur whether interactive or not. You may have the generation of coredumps disabled. In any case, “make debug” will run VPP under gdb

Re: [vpp-dev] VPP low throughput

2017-11-02 Thread Avi Cohen
Thank you Steven I think it is because TCP offloading - which cannot be executed by HW (the traffic path traverse only virtual interfaces) I've tested UDP and get ~ 14Gbps throughput As you said - these mentioned optimization techniques won't solve my TCP throughput, also my CPU is quite

Re: [vpp-dev] gtpu tunneling decap-next ip4 issue

2017-11-02 Thread Ni, Hongjun
To Neale, Thank you for reminding. Have submitted a patch to fix it. https://gerrit.fd.io/r/#/c/9207/ To Ryota, Now below arp configuration for gtpu tunnel is not needed: set ip arp gtpu_tunnel0 192.168.50.70 90e2.ba48.7a70 -Hongjun -Original Message- From: Neale Ranns (nranns)

Re: [vpp-dev] gtpu tunneling decap-next ip4 issue

2017-11-02 Thread Ni, Hongjun
Hi Ryota, Below is my configuration to test GTP-U encapsulation for your reference: set int state TenGigabitEthernet5/0/0 up set int ip table TenGigabitEthernet5/0/0 0 set int ip address TenGigabitEthernet5/0/0 192.168.50.72/24 ip route add 192.168.50.71/24 via 192.168.50.72

Re: [vpp-dev] [SFC] Query regarding SFC classifier configuration for ip4 traffic

2017-11-02 Thread Ni, Hongjun
Hi Phaneendra, Please refer to below link to see how to configure it and packet trace: https://wiki.fd.io/view/File:NSH-Classifier-Output.png -Hongjun From: Phaneendra Manda [mailto:mphaneen...@gmail.com] Sent: Wednesday, November 1, 2017 4:39 PM To: Ni, Hongjun Cc:

Re: [vpp-dev] WHERE IS libpneum.so ???

2017-11-02 Thread Ole Troan
Hi, as Chris said it has been renamed to libvppapiclient.so First to update the wiki gets an ice cream in the mail! Best regards, Ole > On 2 Nov 2017, at 14:31, Holoo Gulakh wrote: > > Hi > I am installing VPP Python API > Here https://wiki.fd.io/view/VPP/Python_API >

Re: [vpp-dev] WHERE IS libpneum.so ???

2017-11-02 Thread Luke, Chris
Already on it :) > -Original Message- > From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On > Behalf Of Ole Troan > Sent: Thursday, November 2, 2017 10:13 > To: Holoo Gulakh > Cc: vpp-dev@lists.fd.io > Subject: Re: [vpp-dev] WHERE IS

Re: [vpp-dev] libpneum.so not exist, installing vpp python api

2017-11-02 Thread Luke, Chris
I believe libpneum is a historical artifact and no longer accurate. The Python binding module now uses libvppapiclient, built from src/vpp-api/client/client.c. By way of example, for development, I use these env vars: vppinst="$HOME/dev/fdio/vpp/build-root/install-vpp_debug-native/vpp" export

Re: [vpp-dev] WHERE IS libpneum.so ???

2017-11-02 Thread Luke, Chris
Hello, Please see the reply I sent just now to the same question asked by another person on this list. Short version: I believe libpneum was superceded; the wiki was not updated.  Details in other msg. Chris. From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf

Re: [vpp-dev] VPP low throughput

2017-11-02 Thread Avi Cohen (A)
Now I see that the cpu-usage in the VM's is negligible - so I guess it is not TCP offloading issue.. Thank you Steven I think it is because TCP offloading - which cannot be executed by HW (the traffic path traverse only virtual interfaces) I've tested UDP and get ~ 14Gbps throughput As you