Re: [vpp-dev] How to direct traffic destined to a given subnet to a specific node of my choice? #vpp

2020-03-06 Thread Neale Ranns via Lists.Fd.Io
Indeed DPOs are the way forward, you define your own that add a route to the FIB pointing to an instance of your DPO. There are lots of examples in the code base. The function to add to the FIB is: fib_table_entry_special_dpo_add() that will help guide your search, /neale From: on behalf

[vpp-dev] How to direct traffic destined to a given subnet to a specific node of my choice? #vpp

2020-03-06 Thread pashinho1990
Hi all, would there be anyone kind enough to illustrate how and what to do in order to forward a given subnet traffic (e.g. IPv4 traffic destined to 192.168.0.0/24) to a specific node of my choice, rather than the predefined "ip[4|6]-rewrite"? I know it may have something to do with DPOs, as