Re: [vpp-dev] linux-cp TAP MTU show issue

2022-01-17 Thread Petr Boltík
Hello, did you notice this error message from systemctl? Message from systemctl status vpp-dataplane: vnet[2526]: interface: hw_add_del_mac_address: vnet_hw_interface_add_del_mac_address: Secondary MAC Addresses not supported for interface index 0 Jan 17 03:16:05 stredni vnet[2526]: interface:

Re: [vpp-dev] MPLS Tunnel Interface on Provider Router

2022-01-17 Thread Amit Mehra
Thanks Neale for the response. We are trying to simulate L3VPN usecase and want to maintain counters per FEC(on both PE and P nodes). Yes, we can achieve label swap/pop without tunnel interface too but that way we are not maintaining per FEC counters. As per my understanding, with tunnels, we

[vpp-dev]: Segmentation fault in mspace_is_heap_object

2022-01-17 Thread Rajith PR via lists.fd.io
Hi All, We are facing a random crash during the scale of MPLS tunnels(8000 mpls tunnels). The crash has been observed multiple times and the call stack is the same. During the worker thread crash the main thread has executed the following lines of code(between the barrier sync and release),

Re: [vpp-dev] linux-cp TAP MTU show issue

2022-01-17 Thread Pim van Pelt
Hoi, I have seen that message, but it is not related to the Linux CP plugin, and it seems benign -- that is to say, Linux CP and VPP work just fine even though the error is emitted. Without Linux CP enabled, the same message appears when adding an IP address to a sub-int. I didn't look in to it

Re: [vpp-dev] vlan tag rewrite failure on traffic (other side is a kernel vlan interface)

2022-01-17 Thread Laszlo Király
Hello, It turned out that the problem was caused by the checksum offload set on virtual interfaces on the sender side. The workaround is to set the following on host A: docker exec rvm-tester ethtool -K eth0 tx off So, it's definitely NOT a vpp fault. Sorry for bothering you with this issue.

Re: [vpp-dev] VPP IPSec Related Doubts

2022-01-17 Thread Juraj Linkeš
Hi Hrishikesh, The API has changed, try without the hyphen: ipsec sa add 10 spi 1000 esp tunnel src 192.168.1.1 tunnel dst 192.168.1.2 crypto-key 4339314b55523947594d6d3547666b45 crypto-alg aes-cbc-128 integ-key 4339314b55523947594d6d3547666b45 integ-alg sha1-96 Regards, Juraj From:

Re: [vpp-dev] linux-cp TAP MTU show issue

2022-01-17 Thread Pim van Pelt
Hoi Petr, others, Petr, in case you were interested to take a look -- I became a bit less lazy and started VPP in a debugger, and added a breakpoint in the vnet_hw_interface_add_del_mac_address function. DBGvpp# create sub HundredGigabitEthernet15/0/0 10 HundredGigabitEthernet15/0/0.10

Re: [vpp-dev] linux-cp TAP MTU show issue

2022-01-17 Thread Petr Boltík
Thank you, Your idea is the same as mine, all commands are executed for if_index 0. I have already tried to go deeper, but this is out of my knowledge. Regards Petr po 17. 1. 2022 v 14:50 odesílatel Pim van Pelt napsal: > Hoi Petr, others, > > Petr, in case you were interested to take a look

[vpp-dev] linux-cp + nat44 possible?

2022-01-17 Thread René Weiss
Hi Is it possible to use linux-cp and nat44 together? I'm currently playing with VPP to see if I would be able to use it on my Linux home gateway (mostly as an iptables/nftables replacement). And because there I have an external and (at least) one internal interface I tried (unsuccessfully)

Re: [vpp-dev] VPP IPSec Related Doubts

2022-01-17 Thread Hrishikesh Karanjikar
Hi Juraj, Thanks for your reply. I was able to get the things working with new commands. Thanks, Hrishikesh On Mon, Jan 17, 2022 at 7:02 PM Juraj Linkeš wrote: > Hi Hrishikesh, > > > > The API has changed, try without the hyphen: > > ipsec sa add 10 spi 1000 esp tunnel src 192.168.1.1 tunnel

Re: [vpp-dev] linux-cp + nat44 possible?

2022-01-17 Thread Dave Barach
https://s3-docs.fd.io/vpp/22.02/usecases/home_gateway.html - I've used vpp as a home gateway for years. HTH... Dave -Original Message- From: vpp-dev@lists.fd.io On Behalf Of René Weiss Sent: Monday, January 17, 2022 12:47 PM To: vpp-dev Subject: [vpp-dev] linux-cp + nat44 possible?

Re: [vpp-dev] linux-cp + nat44 possible?

2022-01-17 Thread René Weiss
Hi Dave Thanks, this looks like an extended version of https://fd.io/docs/vpp/v2009/usecases/homegateway.html I will take a closer look, especially at the ipv6 section because I was already wondering how to do the things I'm currently doing with radvd/wide-dhcpv6-client with VPP. Another

Re: [vpp-dev] linux-cp + nat44 possible?

2022-01-17 Thread René Weiss
Am 17.01.22 um 21:53 schrieb René Weiss: Hi Dave Thanks, this looks like an extended version of https://fd.io/docs/vpp/v2009/usecases/homegateway.html I will take a closer look, especially at the ipv6 section because I was already wondering how to do the things I'm currently doing with