diff options
-rw-r--r-- | src/vnet/fib/fib_types.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vnet/fib/fib_types.c b/src/vnet/fib/fib_types.c index 035f70036eb..1046e45b2f7 100644 --- a/src/vnet/fib/fib_types.c +++ b/src/vnet/fib/fib_types.c @@ -495,6 +495,10 @@ unformat_fib_route_path (unformat_input_t * input, va_list * args) rpath->frp_proto = DPO_PROTO_MPLS; *payload_proto = DPO_PROTO_MPLS; } + else if (unformat (input, "src-lookup")) + { + rpath->frp_flags |= FIB_ROUTE_PATH_SOURCE_LOOKUP; + } else if (unformat (input, "l2-input-on %U", unformat_vnet_sw_interface, vnm, |