Re: [vpp-dev] network loop

2017-11-22 Thread yug...@telincn.com
Hi all, If I set down one of its interface and set up it, then everything is OK. Any ideas? Regards, Ewan yug...@telincn.com From: yug...@telincn.com Date: 2017-11-17 12:21 To: vpp-dev Subject: network loop Hi all, My version is 17.04, sometimes there will be a large number of packets t

[vpp-dev] Issue with MPLS local label CLI

2017-11-22 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Hi, mpls local-label add non-eos 102 mpls-lookup-in-table 0 is rejected by vppctl (unknown input ...) since https://gerrit.fd.io/r/#/c/9439/ Is it a bug, or such command is no longer valid? BTW. There is also some issue with docs for the command: https://docs.fd.io/vpp/18.01/clicmd_src_vnet_mpl

Re: [vpp-dev] MPLS LABEL problem

2017-11-22 Thread Neale Ranns (nranns)
Hi Xyxue, You need to create the default MPLS table before you enable an interface for MPLS. So in your sequence this command: set interface mpls host-eth1 enable should have returned an error. I’ve patched with https://gerrit.fd.io/r/#/c/9519/ so now one gets; DBGvpp# set int mpls loop0

Re: [vpp-dev] Issue with MPLS local label CLI

2017-11-22 Thread Neale Ranns (nranns)
Hi Marek, Accidental breakage on my part. Fixed in: https://gerrit.fd.io/r/#/c/9520/ /neale From: "Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)" Date: Wednesday, 22 November 2017 at 10:53 To: vpp-dev Cc: "Neale Ranns (nranns)" Subject: Issue with MPLS local label CLI Hi,

[vpp-dev] cmd buf length

2017-11-22 Thread yug...@telincn.com
Hi all, Does vppctl cmd can't show too characters, if we need to, how can I fix it. Regards, Ewan yug...@telincn.com ___ vpp-dev mailing list vpp-dev@lists.fd.io https://lists.fd.io/mailman/listinfo/vpp-dev

Re: [vpp-dev] cmd buf length

2017-11-22 Thread Luke, Chris
Ewan, I'm not sure what that means. Can you elaborate? Thanks, Chris From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of yug...@telincn.com Sent: Wednesday, November 22, 2017 6:40 To: vpp-dev Subject: [vpp-dev] cmd buf length Hi all, Does vppctl cmd can't show

Re: [vpp-dev] TCP Options: tcp_header_t and tcp_options_t

2017-11-22 Thread Justin Iurman
Florin, > For discarding options you’ll probably need to write your own function that > first recomputes them and then moves the payload closer to the header. Yep, that's what I had in mind. > tcp_buffer_discard_bytes just chops off payload bytes, as in moves the > buffer’s > current_data point

Re: [vpp-dev] IKE & IPsec configuration example

2017-11-22 Thread Yang, Xiaowen 1. (NSB - CN/Hangzhou)
Hi VPP experts I try to test VPP IPsec, but AUTHENTICATION_FAILED. Below is my configuration for VPP, can you help to check this ? Any ideas what I am doing wrong. thank you in advance . set int state GigabitEthernet0/5/0 up set int ip address GigabitEthernet0/5/0 25.12.61.7/8 ikev2 profile a

Re: [vpp-dev] Issue with MPLS local label CLI

2017-11-22 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Neal, thanks for quick answer! I’ve just pulled vpp code (HEAD @ 3ce7bcb), and now I get following error message: vpp# mpls local-label add 102 non-eos mpls-lookup-in-table 0 mpls local-label: unkown input: mpls-lookup-in-table 0 Regards, Marek From: Neale Ranns (nranns) Sent: 22 listopada 2017

Re: [vpp-dev] Issue with MPLS local label CLI

2017-11-22 Thread Neale Ranns (nranns)
Hi Marek, You need to add ‘via’ keyword before the path: DBGvpp# mpls local-label add non-eos 102 via mpls-lookup-in-table 0 DBGvpp# sh mpls fib 102 sh mpls fib 102 MPLS-VRF:0, fib_index 0 102:neos/21 fib:0 index:13 locks:2 src:CLI refs:1 index:17 locks:2 flags:shared, uPRF-list:13 len:0 itf

Re: [vpp-dev] Issue with MPLS local label CLI

2017-11-22 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Now everything works! Thanks, Marek From: Neale Ranns (nranns) Sent: 22 listopada 2017 15:42 To: Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco) ; vpp-dev Subject: Re: Issue with MPLS local label CLI Hi Marek, You need to add ‘via’ keyword before the path: DBGvpp# mpls local-lab

[vpp-dev] Can't run tests (ImportError: No module named bier)

2017-11-22 Thread Marco Varlese
Hi, I just took latest master and cannot run tests anymore... Adding tests from directory tree /home/mvarlese/repo/vpp/test Traceback (most recent call last): File "run_tests.py", line 146, in discover_tests(d, cb) File "/home/mvarlese/repo/vpp/test/discover_tests.py", line 27, in discov

Re: [vpp-dev] Can't run tests (ImportError: No module named bier)

2017-11-22 Thread Klement Sekera -X (ksekera - PANTHEON TECHNOLOGIES at Cisco)
Hi, `make test-wipe` should help Regards, Klement > -Original Message- > From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On > Behalf Of Marco Varlese > Sent: Wednesday, November 22, 2017 4:30 PM > To: vpp-dev > Subject: [vpp-dev] Can't run tests (ImportError: No m

Re: [vpp-dev] Can't run tests (ImportError: No module named bier)

2017-11-22 Thread Marco Varlese
On Wed, 2017-11-22 at 15:31 +, Klement Sekera -X (ksekera - PANTHEON TECHNOLOGIES at Cisco) wrote: > Hi, > > `make test-wipe` should help Interesting... I ran "make wipe" before. May I suggest to have test-wipe run as part of the more generic wipe ??? I'll submit a patch... > > Regards, > Kl

Re: [vpp-dev] Can't run tests (ImportError: No module named bier)

2017-11-22 Thread Luke, Chris
That caught me out last week, too, so yes please. Chris. > -Original Message- > From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On > Behalf Of Marco Varlese > Sent: Wednesday, November 22, 2017 10:43 > To: Klement Sekera -X (ksekera - PANTHEON TECHNOLOGIES at Cisco)

Re: [vpp-dev] Can't run tests (ImportError: No module named bier)

2017-11-22 Thread Klement Sekera -X (ksekera - PANTHEON TECHNOLOGIES at Cisco)
Sure, that's a good idea. I haven't noticed this issue really since I wipe via git clean ... Thanks, Klement > -Original Message- > From: Marco Varlese [mailto:mvarl...@suse.de] > Sent: Wednesday, November 22, 2017 4:43 PM > To: Klement Sekera -X (ksekera - PANTHEON TECHNOLOGIES at Cisco)

Re: [vpp-dev] [infra-wg] [releng] Proposal to redirect #opendaylight-releng to #lf-releng

2017-11-22 Thread Fatih Degirmenci
Hi, I believe this is beneficial for all of us. But before decide anything something, it would be good to have a quick discussion about it within OPNFV community. I added this as a topic to the Infra WG Meeting agenda on November 27th. https://wiki.opnfv.org/display/INF/Infra+Working+Group /Fa

[vpp-dev] vpp-api python error during vpp installation

2017-11-22 Thread Pradeep Patel (pradpate)
Team, I am seeing the same issue(https://lists.fd.io/pipermail/vpp-dev/2017-April/004608.html) as seen earlier while installing debian package. Do we know a workaround? Processing triggers for libc-bin (2.23-0ubuntu3) ... Errors were encountered while processing: vpp-api-python Please see, I a

Re: [vpp-dev] vpp-api python error during vpp installation

2017-11-22 Thread root1
I think it is waiting for dependencies. After failure, run 'sudo apt-get install -f' On Wednesday 22 November 2017 11:27 PM, Pradeep Patel (pradpate) wrote: Team, I am seeing the same issue(https://lists.fd.io/pipermail/vpp-dev/2017-April/004608.html) as seen earlier while installing debia

Re: [vpp-dev] vpp-api python error during vpp installation

2017-11-22 Thread Luke, Chris
Need the error in question, which would have been much earlier in the output. But as another commenter mentions, if you ‘dpkg -i’ packages with dependencies you don’t have, ‘apt install -f’ can usually resolve those for you. Chris. From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists

Re: [vpp-dev] vpp-api python error during vpp installation

2017-11-22 Thread Pradeep Patel (pradpate)
Thank you Chris and Team, I could install the package by running ‘sudo apt-get install -f' Regards, Pradeep From: "Luke, Chris" Date: Wednesday, November 22, 2017 at 10:09 AM To: "Pradeep Patel (pradpate)" , "vpp-dev@lists.fd.io" Subject: RE: vpp-api python error during vpp installation Need

[vpp-dev] Router plugin capability question (VRFs and MPLS)

2017-11-22 Thread Michael Borokhovich
Hi, Does router plugin support the following features? 1) Multiple VRFs 2) MPLS >From our initial experiments, the above features are not supported. Multiple VRFs do not work (I tried with namespaces). The MPLS information is not passed from Linux to VPP's FIBs. Please let me know what you thin

[vpp-dev] Maximum TCP session number

2017-11-22 Thread choonho . son
Hi, I got tcp servers warning like, 0: segment_manager_alloc_session_fifos:464: No space to allocate fifos! 0: tcp46_listen_inline:2788: session accept fail DBGvpp# show session Thread 0: 2031 active sessions What is tunning parameter or codes to increase number of tcp session? Thanks, Choonh

Re: [vpp-dev] Maximum TCP session number

2017-11-22 Thread Florin Coras
When apps attach to the session layer they request a given size for the shared memory segment out of which fifos are allocated and also the sizes of the rx/tx fifos for each connection. If the segment is filled, more shared memory segments are allocated. However, if you’re running the builtin te