Re: [vpp-dev] tuntap interface in VPP

2019-11-25 Thread Dave Barach via Lists.Fd.Io
Try something like this: create tap host-if-name lstack host-ip4-addr 192.168.2.2/24 host-ip4-gw 192.168.2.1 set int ip address tap0 # vpp interface in L3 mode or set int l2 bridge tap0 1 # vpp interface in L2 mode. I use the latter setup in production on my vpp home gateway. HTH... Dave

[vpp-dev] tuntap interface in VPP

2019-11-25 Thread vyshakh krishnan
Hi, Our requirement was to redirect the telnet packets to host OS from VPP so that the kernel stack can reply to the telnet packet. And found that tuntap interface in VPP is perfect for this. I was able create tuntap interface using: vpp# tap connect newtap tapcli-0 vpp# show in inacl inter

Re: [vpp-dev] vpp19.08 ipsec vpp_papi

2019-11-25 Thread Vratko Polak -X (vrpolak - PANTHEON TECHNOLOGIES at Cisco) via Lists.Fd.Io
> This situation does not happen when I use CLI like this I think the difference is that CLI is restricted, it can only accept printable characters on input. Therefore it assumes it gets "hexlified" value, and applies "unhexlify" on its input. Contrary to that, PAPI (hopefully) can handle arbitra

[vpp-dev] Multi-Worker VPP Performance Issue

2019-11-25 Thread Satya Murthy
Hi, We are facing a strange problem when we moved from single worker to multi worker VPP. Our application plugin registers for a specific udp port and gets the packets from udp_local node. In Single Worker VPP: We see that our app-plugin-node is receiving frames of bigger

[vpp-dev] Coverity run FAILED as of 2019-11-25 14:00:16 UTC

2019-11-25 Thread Noreply Jenkins
Coverity run failed today. Current number of outstanding issues are 2 Newly detected: 0 Eliminated: 0 More details can be found at https://scan.coverity.com/projects/fd-io-vpp/view_defects -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14687): ht

Re: [vpp-dev] Support needed for ARM64 64k pagesize

2019-11-25 Thread Lijian Zhang
Hi Lei, We didn’t try running VPP on Arm64 with 16K or 64K page size before. From the error message and the below code, it’s probably because p->stack is not aligned to 64K boundary. It aligns to 4K by default. Could you try “#define PAGE_SIZE_MULTIPLE 0x1”? 614 #ifdef CLIB_UNIX 615 /