[vpp-dev] undefined symbol: ip4_reass_node

2019-06-06 Thread prashantog
I am trying to use ip4_reass_node for that static vlib_node_registration_t ip4_reass_node; changed to extern vlib_node_registration_t ip4_reass_node; Also VLIB_REGISTER_NODE (ip4_reass_node, static) = { to VLIB_REGISTER_NODE (ip4_reass_node) = { Also Enabled the feature on interface ret = vnet_fe

Re: [vpp-dev] undefined symbol: ip4_reass_node

2019-06-06 Thread prashantog
Thanks a lot Dave and Ole for your reply. I am new to VPP framework using VPP version 18.04, Yes I need to send all ip fragments to ip4 reassembly node. As you suggested. > for asking the framework for a static and/or dynamic graph arc from > to “ip4-reassembly”. Does that mean adding ip4_rea

Re: [vpp-dev] undefined symbol: ip4_reass_node

2019-06-07 Thread prashantog
On Thu, Jun 6, 2019 at 09:06 AM, Ole Troan wrote: > > And you might not want to enable reassembly in the input feature arc, > unless you want every fragment arriving on that interface to be > reassembled. Independently of packet being to your feature plugin or not. > > Hi Ole, yes we are check

Re: [vpp-dev] L2TP #vpp

2019-06-14 Thread prashantog
Hello Ken, Currently VPP supports Encapsulation/Decapsulation only for L2TPv3 not L2TPv2 and that is also only for IPv6 not for IPv4. So, its not possible to validate your gateway with VPP end point for L2TPv2/IPv4 based tunnel. Thanks, Prashant -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all me

[vpp-dev] node_funcs.h:61 (vlib_get_node) assertion `(i) < vec_len (vm->node_main.nodes)' fails #vpp

2019-07-24 Thread prashantog
I have just added a new plugin, getting below error while vpp loading. Any pointer would be helpful. *node_funcs.h:61 (vlib_get_node) assertion `(i) < vec_len (vm->node_main.nodes)' fails* -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13564): ht

[vpp-dev] #vapi #vpp #vppcapi

2019-08-11 Thread prashantog
Have written a test plugin on vpp and trying to write a program on Linux control plane to control this, referring vpp document created .api files and api.c file for my plugin back-end handlers for enable disable. Is there any test program for writing control plane application, found info about

[vpp-dev] #vapi #vpp #vppcapi

2019-08-11 Thread prashantog
[Edited Message Follows] Have written a test plugin on vpp and trying to write a program on Linux control plane to control this, referring vpp document created .api files and api.c file for my plugin back-end handlers for enable disable. Is there any test sample program for reference of writing