Overview¶
Fast Path Policy-Based Routing extends fast path routing by providing a subset of Linux PBR functionality.
PBR is a way to forward packets based on multiple criteria, not only the IP
destination. It is implemented in Linux using iproute2 commands ip rule and
ip route.
Features¶
- management of several routing tables
- management of PBR rules. The following subset of
ip ruleoptions are supported:- selector:
priority: priority of the rule (a.k.a.prefororder)from: source address or prefixto: destination address or prefixfwmark: fwmark of the packetiif: input interface (a.k.a.dev)not: flag that inverts the match result
- action:
lookup: LPM lookup in a routing table (a.k.a.table)
- selector:
- IPv4 and IPv6 support
- VRF support