Re: [vpp-dev] TCP connection using VPP

2021-03-02 Thread Florin Coras
Hi Chetan, Interesting. As far as I know, there haven’t been any new updates in that area. It would be great if somebody ported the code to use vcl as opposed to the session layer directly. That would ensure compatibility going forward … Regards, Florin > On Mar 2, 2021, at 12:18 PM,

Re: [vpp-dev] TCP connection using VPP

2021-03-02 Thread Chethan Seshadri via lists.fd.io
Thanks Florin. I was able to figure out using the vcl.conf.  I am using that version because that seems like the last version compatible with SPDK. Is there a later version of it that can still work with SPDK?  Thanks,Chethan On Tuesday, March 2, 2021, 09:38:34 PM GMT+5:30, Florin Coras

Re: [vpp-dev] TCP connection using VPP

2021-03-02 Thread Florin Coras
Hi Chetan, That is a pretty old version of vpp, so I would first recommend updating to something newer. Regarding the specific issue you are hitting, it’s hard to tell what’s causing it from your description. Maybe also try iperf3 like here [1] and see if that works. If that’s still not

[vpp-dev] TCP connection using VPP

2021-03-02 Thread Chethan Seshadri via lists.fd.io
Hi, I am using VPP 19.04.2. I was able to establish "ping" connectivity between 2 VPP instances running on 2 VMs. I am not able to establish TCP socket level connectivity. When I use sock_test_(server|client), the server just sits there waiting for the client and the client hangs as well.

[vpp-dev] tcp connection

2018-07-25 Thread Vladislav Romanov
please tell me how to update the value of the tcp-flags in each new packets? For example, to make a tcp-session break. -- с уважением, Владислав /* * Copyright (c) 2015 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file

Re: [vpp-dev] tcp connection

2018-06-20 Thread Gulakh
I found the problem. I was using the loopback interface of linux as loopback of VPP which is not correct, since it is not recognized in VPP. So packet are dropped in ip4-lookup node. I thought that it is the problem in tcp because I was sending tcp SYN without VPP's awareness of this sending. But

Re: [vpp-dev] tcp connection

2018-06-17 Thread Damjan Marion
are you aware that vpp doesn’t do LDP? VPP is dataplame, and expect that external control plane is present and takes care for programming mpls fib. — Damjan > On 17 Jun 2018, at 15:11, Gulakh wrote: > > Hi, > I am having a problem when LDP attempts to setup a session. > According to

Re: [vpp-dev] tcp connection

2018-06-17 Thread Gulakh
My VPP commit number : d05b926dc2971552edca2ad510fb7437698c4aad My VPPSB commit number : 042a782c530ceb58507d697726e68ad7fe4fe023 On Sun, Jun 17, 2018 at 5:41 PM, Holoo Gulakh wrote: > Hi, > I am having a problem when LDP attempts to setup a session. > According to Wikipedia's LDP page >

[vpp-dev] tcp connection

2018-06-17 Thread Gulakh
Hi, I am having a problem when LDP attempts to setup a session. According to Wikipedia's LDP page , LDP first exchanges packets on UDP and then start a session by setting up TCP connection. UDP packets from control plane to data plane are

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

2017-02-22 Thread Hang Shi
:vpp-dev-boun...@lists.fd.io] *On > Behalf Of *Hang Shi > *Sent:* Wednesday, February 22, 2017 1:20 AM > *To:* vpp-dev@lists.fd.io > *Subject:* [vpp-dev] TCP Connection Failed Between two veth interfaces > switched via VPP > > > > Hi, > > I am trying to do tc

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

2017-02-22 Thread Dave Barach (dbarach)
-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of Hang Shi Sent: Wednesday, February 22, 2017 1:20 AM To: vpp-dev@lists.fd.io Subject: [vpp-dev] TCP Connection Failed Between two veth interfaces switched via VPP Hi, I am trying to do tcp connection between two veth

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

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

2017-02-21 Thread Hang Shi
Hi, I am trying to do tcp connection between two veth interfaces via switching in VPP, as done in below wiki. The ping is successful, however, the TCP connection failed for a TCP connection from a veth interface in one namespace to another namespace. Tried on http and netcat server. Using latest