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
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
> 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
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
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
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 /