[vpp-dev] FW: how to redirect specific UDP port data to a new node?

2017-12-04 Thread lin huang
From: lin huang Sent: Monday, December 04, 2017 2:53 PM To: vpp-dev-boun...@lists.fd.io Subject: how to redirect specific UDP port data to a new node? Hi, all. I want to know how to redirect specific UDP port data to a new node? Dose udp_register_dst_port make effecet? Or using the arc

Re: [vpp-dev] FW: how to redirect specific UDP port data to a new node?

2017-12-04 Thread lin huang
om] >>Sent: Monday, December 04, 2017 4:12 PM >>To: lin huang ; vpp-dev@lists.fd.io >>Subject: RE: [vpp-dev] FW: how to redirect specific UDP port data to a new >>node? >> >>Hi Lin Huang, >> >>You can take a look at bfd_udp_init() in bfd_udp.c t

[vpp-dev] why i can not build the new plugin?

2017-12-04 Thread lin huang
Hi all, Recently, I want to build a new plugin for my work. I follow the guild here: https://docs.fd.io/vpp/17.07/sample_plugin_doc.html How to create a new plugin To create a new plugin based on the sample plugin, copy and rename the sample plugin directory and automake config. cp

[vpp-dev] how to redirect data?

2017-12-08 Thread lin huang
Hi, all I want the data received by host-vpp1_inside port to redirect to port host-vpp2_inside. How can do it? Do I need to modify the code or adding a simple route rule?? Show int host-vpp2_inside 2 up host-vpp1_inside 1 up rx packets

[vpp-dev] how to punt a specific TCP flow into linux kernel?

2017-12-20 Thread lin huang
Hi all I want to punt a specific TCP flow into linux kernel. and there will be an application which receive the packets. So, how can I solve this problem?? Is there a demo for me??? ___ vpp-dev mailing list vpp-dev@lists.fd.io https://lists.fd.i

Re: [vpp-dev] how to punt a specific TCP flow into linux kernel?

2017-12-20 Thread lin huang
1:46 AM To: lin huang ; vpp-dev@lists.fd.io Subject: Re: [vpp-dev] how to punt a specific TCP flow into linux kernel? Hi One of the way I see as follows: With the recent changes I rolled up, all the TCP Packets not handled in VPP’s TCP stack would be punted via IP4/6_punt path. In the punt path

Re: [vpp-dev] get mpls info from kernel

2017-12-24 Thread lin huang
Hi holoo, If I want to redirect the data from the controller which send the Packet Out message to OVS, do I need to add a flow rules like “in_port=controller,action=output:xxx” ??? Thank for you help! From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of

Re: [vpp-dev] bond

2018-01-03 Thread lin huang
Hi yugang, It seems that vpp doesn’t support that features. Refer to: https://wiki.fd.io/view/VPP/Features From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of yug...@telincn.com Sent: Wednesday, January 3, 2018 4:52 PM To: vpp-dev Subject: [vpp-dev] bond

[vpp-dev] how to add a library to plugin?

2018-03-15 Thread lin huang
Hi there, I want to know how to add a new static library to compile with a specific plugin source code into a .so file? Is there a guidance? xxx_plugin/good.c xxx_plugin/bana.c comlile ==> xxx_plugin.so xxx_plugin/app.a Thank you!!!