Re: [vpp-dev] vpp performnace measurement in sriov configuration.

2017-08-17 Thread Rahul Negi
Hi Folks, Gentle reminder.Can you please confirm the expected numbers in sriov configuration and please point out if something is happening wrong here. Thanks, Rahul On Wed, Aug 16, 2017 at 3:04 PM, Rahul Negi wrote: > sorry for the typo in the previous mail.Complete output of the show run > com

[vpp-dev] 答复: Re: vpp graph dump

2017-08-17 Thread wang.hui56
Hi luke: That will be usefull if someone realize Node graph visualization. Plugin and feature will be more and more in the future, to easily understand the feature graph is the first step before secondary plugin development. And we think that will be cool if users can rearrange node graph and

Re: [vpp-dev] IP4 checksum calculation error

2017-08-17 Thread Tomas Brännström
Hi The ip4_header_checksum function sets the checksum to 0 before calculating and it also uses the "ip_incremental_checksum" function internally. Is there another function I'm not aware of? If I change my remove_header function to copy the data rather than the headers I actually get a correct chec

[vpp-dev] Set up MPLS via jvpp

2017-08-17 Thread Andrej Mak
Hi all, I would like to set mpls via java api, but I have some problems with it. I want to do java calls equal to this ip route add 10.10.2.3/32 table 1 via 10.10.1.2 host-veth out-label 1003 which creates this entry in show ip fib index 1 10.10.2.3/32 unicast-ip4-chain [@0]: dpo-load-balan

Re: [vpp-dev] Set up MPLS via jvpp

2017-08-17 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Hi, I think it is a bug in the C handler of the ip_add_del_route message. Byte order for next_hop_n_out_labels is not flipped. Please check if this fixes the issue: https://gerrit.fd.io/r/#/c/8080/ Regards, Marek From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behal

[vpp-dev] how to use hc2vpp to call the xconnect command line

2017-08-17 Thread Li, Rujun
Hi all I want to use hc2vpp to invoke such a command set interface l2 xconnect vxlan_tunnel0 vxlan_tunnel1 but I haven't found an example in the json file, so I want to make sure can it be done through hc2vpp? thanks Best wishes, Rujun, Li ___ vpp

Re: [vpp-dev] What is "pneum_read filed"?

2017-08-17 Thread Ole Troan
At least I fixed the typo with https://gerrit.fd.io/r/8081 Cheers, Ole > On 25 Jul 2017, at 05:37, Luke, Chris wrote: > > Suspect it’s a typographical error; read it as “failed”. > > Do you open the API connection per thread? I suspect you will need to. It’s > based on shared memory that may

[vpp-dev] Flow classification

2017-08-17 Thread Eyal Lavee
I am trying to set up flow classification on an L3 interace. Commands used: classify table mask l3 ip4 dst buckets 2 classify session hit-next 0 table-index 0 match l3 ip4 dst 3.0.0.0 set flow classify interface FortyGigabitEthernet8/0/0 ip4-table 0 I can see that the feature is enabled on th

[vpp-dev] [FD.io Helpdesk #44397] Poor VPP Build Time

2017-08-17 Thread Vanessa Valderrama via RT
Root cause: There was a misconfigured flavor type which did not have proper shares/limits so it was consuming significantly more CPU power than it should be (unfairly). When the VMs landed on Hypervisor the CPU was severely limited On Wed Aug 16 17:51:37 2017, valderrv wrote: > I spoke with th

[vpp-dev] [FD.io Helpdesk #44395] jenkins build timeout

2017-08-17 Thread Vanessa Valderrama via RT
Root cause: There was a misconfigured flavor type which did not have proper shares/limits so it was consuming significantly more CPU power than it should be (unfairly). When the VMs landed on Hypervisor the CPU was severely limited On Wed Aug 16 17:50:49 2017, valderrv wrote: > I spoke with th

Re: [vpp-dev] VPP Performance drop from 17.04 to 17.07

2017-08-17 Thread Billy McFall
On Tue, Aug 15, 2017 at 8:05 AM, John Lo (loj) wrote: > Hi Billy, > > > > The output of “show l2fib” is showing how many MAC entries exist in the > L2FIB and is not relevant to the size of L2FIB table. The L2FIB table size > is not configurable. It is a bi-hash table with size set by the followin

[vpp-dev] VPP Communications library and LD_PRELOAD

2017-08-17 Thread Keith Burns
Folks, Happy to be able to share the latest on where we are at with the VPP communications library (VCL) and a matching POSIX Socket LD_PRELOAD library for container networking. On a Haswell 3.5GHz machine, running Brent Salisbury's "networkstatic/iperf3" Docker image: - running using default ker

[vpp-dev] Можно ли использовать VPP в качестве P/PE-роутера в крупных MPLS-сетях.

2017-08-17 Thread Алексей Болдырев
Меня интерисует слудующие: 1. Можно ли VPP использовать в качестве P/PE роутера в крупных MPLS-сетях, и какие при этом могут быть ограничения? 2. Сколько MPLS-меток можно надеть на один MPLS-пакет? 3. Можно ли использовать протокол ldpd из frrouting для обмена метками через tap-eject 4. Как рабо

Re: [vpp-dev] Set up MPLS via jvpp

2017-08-17 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Hi, So I was wrong. I haven't noticed next_hop_n_out_labels is u8... Neal: any idea why labels are not added? Regards, Marek From: Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco) Sent: 17 sierpnia 2017 12:17 To: 'Andrej Mak' ; vpp-dev@lists.fd.io Cc: Neale Ranns (nranns) Subject: R

Re: [vpp-dev] VPP Performance drop from 17.04 to 17.07

2017-08-17 Thread John Lo (loj)
Hi Billy, Thanks for the follow up information. VPP does have a MAC learn limit of around 1M for quite a while. It is controlled by 2 variables global_learn_limit and global_learn_count defined in l2_learn.h. At init time, global_learn_limit is set to about 1M in the function l2_learn_init() i