Re: [vpp-dev] VPP & UDP Traffic

2017-05-30 Thread Florin Coras
Hi Alessio, Take a look at udp_register_dst_port () and at how it is used in other places (e.g., lisp/vxlan). Cheers, Florin > On May 30, 2017, at 1:01 AM, Alessio Silvestro > wrote: > > Dear all, > > I am currently working on VPP and I am interested in receiving

Re: [vpp-dev] Is there TCP performance test report?

2017-05-25 Thread Florin Coras
Hi, Parts of the code critical to performance are still under heavy development. Thereby, until we finish optimizing the fast path and extending the congestion control code, performance numbers will not be that relevant. Once things somewhat stabilize, and hopefully that will happen within

Re: [vpp-dev] Is the TCP implementation multi-instance capable?

2017-05-25 Thread Florin Coras
Hi Nagp, No, the current implementation is not multi-fib capable, i.e., all connections go through the main fib. Transport endpoint structs used in the session api and the application interface already carry vrfs but we’re not yet using them in tcp and for session lookup. We do however plan

Re: [vpp-dev] VPP now has basic tab completion

2017-05-23 Thread Florin Coras
Awesome! Florin > On May 23, 2017, at 12:00 PM, Luke, Chris wrote: > > Thanks to the work of Yoann we now have some tab-completion goodness in the > debug CLI! I know it has been a long-desired feature for many people here. > > It works pretty much as you’d expect

Re: [vpp-dev] [csit-dev] vpp-verify-master-centos7 failure (was: Change in vpp[master]: Build uri_udp_test app)

2017-05-17 Thread Florin Coras
uild uri_udp_test app > Date: Wed, 17 May 2017 23:21:15 + > From: fd.io JJB (Code Review) <ger...@fd.io> <mailto:ger...@fd.io> > Reply-To: jobbuil...@projectrotterdam.info > <mailto:jobbuil...@projectrotterdam.info> > To: shrinivasan ganapathy <shrinivasanga

Re: [vpp-dev] vpp for packet prepending / trimming

2017-04-18 Thread Florin Coras
Hi Hongbin, See the functions here: https://git.fd.io/vpp/tree/src/vlib/buffer.h#n259 If they’re not enough, feel free to add more. Florin > On Apr 18, 2017, at 3:33 PM, Hongbin Li wrote: > > Hello, > > I am evaluating vpp as a tool to conduct packet prepending /

Re: [vpp-dev] vpp-packet generator can not send tcp packets

2017-04-11 Thread Florin Coras
Hi, Try “session enable” before programming the stream. Note however that the generator is not stateful so probably not what you’re looking for. Florin > On Apr 10, 2017, at 8:18 PM, 王鹏 <15803846...@163.com> wrote: > > Hello, everyone > when we use vpp-packet generator to send udp

Re: [vpp-dev] VPP build issue on Ubuntu 16.04.2 LTS

2017-03-28 Thread Florin Coras
started getting this error. > > We are potentially considering some leftover files from previous installation > somewhere in the file system, if there is such possibility for VPP? > > Regards, > Cristian >   <> > <>From: Florin Coras [mailto:fcoras.li...@gmail.

Re: [vpp-dev] VPP build issue on Ubuntu 16.04.2 LTS

2017-03-28 Thread Florin Coras
Hi Cristian, Did you try cleaning everything up? git clean -fdx make bootstrap .. HTH, Florin > On Mar 28, 2017, at 1:28 PM, Dumitrescu, Cristian > wrote: > > Hi Burt, > > No network connectivity issues I am afraid. I pasted the output of my last >

Re: [vpp-dev] VPP project committer nomination: Sergio Gonzales Monroy

2017-03-27 Thread Florin Coras
+1 Florin > On Mar 27, 2017, at 4:12 AM, Damjan Marion (damarion) > wrote: > > > Hello VPP committers, > > I would like to nominate Sergio Gonzales Monroy as a VPP project committer. > > History of Sergio’s merged contributions to the VPP project: > >

Re: [vpp-dev] Missing session.api.h file

2017-03-03 Thread Florin Coras
Hi Jon, Apologies about that. Alexander was kind enough to provide a quick solution here [1]. Will merge as soon as it passes verify. Florin [1] https://gerrit.fd.io/r/#/c/5621/ > On Mar 3, 2017, at 4:38 PM, Jon Loeliger wrote: > >

Re: [vpp-dev] TCP stack in master

2017-03-02 Thread Florin Coras
Hi Alec, The code is still very much under development. We pushed it out early to make the API freeze window but our goal is to have something stable for the 17.04 release (due in about a month or so). We’ll try to have some decent documentation by then, but in the mean time, running the code

Re: [vpp-dev] "TCP Shortcuts" for containers

2017-02-23 Thread Florin Coras
Hi Vadim, Code is still under development. We plan to merge the TCP stack and the shared memory FIFO code prior to 17.04 FC0. In the mean time, you can check a draft of what’s been done until now here [1]. Note however that most of the code is still in a state of flux. HTH, Florin [1]

Re: [vpp-dev] vpp make test is not working

2017-02-22 Thread Florin Coras
Jan, Could you try with master again? For reference, the patch is here [1] Thanks, Florin [1] https://gerrit.fd.io/r/#/c/5477/ > On Feb 22, 2017, at 11:11 AM, Klement Sekera -X (ksekera - PANTHEON > TECHNOLOGIES at Cisco) wrote: > >

Re: [vpp-dev] TCP Connection Failed Between two veth interfaces switched via VPP

2017-02-21 Thread Florin Coras
Hi Hang, A common problem when working with tcp/udp in these sort of setups is offloading. Have you tried doing something like: ethtool --offload vpp0 rx off tx off ip netns exec ns0 ethtool --offload vethns0 rx off tx off HTH, Florin > On Feb 21, 2017, at 10:19 PM, Hang Shi

Re: [vpp-dev] [csit-dev] VPP 17.01 Released

2017-01-20 Thread Florin Coras
Awesome! Thank you for the hard work Damjan and congratulations to the entire community! Florin > On Jan 20, 2017, at 2:51 PM, Damjan Marion (damarion) > wrote: > > > The VPP 17.01 release i up. Many thanks to all contributors and testers > and specially Ed for helping

Re: [vpp-dev] Committer / Maintainer model.

2016-12-21 Thread Florin Coras
Wouldn’t it be better to have separate projects for each plugin (or maybe groups of them) and thereby have maintainers automatically become committers within their respective projects? As far as I can see this diminishes load on VPP committers and gives the required ‘power' to the interested

Re: [vpp-dev] [csit-dev] CSIT encapsulation test are failing

2016-12-05 Thread Florin Coras
Hi Peter, I just pushed [1] to address this issue. Let me know if the problem persists. Florin [1] https://gerrit.fd.io/r/#/c/4115/1 > On Dec 5, 2016, at 8:08 AM, Peter Mikus -X (pmikus - PANTHEON TECHNOLOGIES at > Cisco) wrote: > >

Re: [vpp-dev] VPP project committer nomination: Neale Ranns

2016-10-26 Thread Florin Coras
+1 Florin > On Oct 26, 2016, at 7:30 PM, Dave Barach (dbarach) wrote: > > I would like to nominate Neale Ranns as a vpp project committer. Neale > designed and built the vpp FIB 2.0, a massive contribution. > > History of Neale’s merged contributions to the vpp project:

<    3   4   5   6   7   8