diff options
author | Neale Ranns <nranns@cisco.com> | 2017-08-08 13:07:16 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-08-09 02:04:32 +0000 |
commit | f73d0e2ea6bf4e0dc9c69ec4f1d0c7b9b41d2fa3 (patch) | |
tree | 9837612f6ee19e88e73a6e87163e55f44f1aead7 /src/vnet/ip | |
parent | a3a3a9dedd6af147a310fa5830a52f771e1448bb (diff) |
Allow multiple MPLS output labels to be passed on the CLI
Change-Id: Ib5af105e32b6b0df86923e189ab6bf6ee59de5b9
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/ip')
-rwxr-xr-x | src/vnet/ip/lookup.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 41e46070267..4506ae14019 100755 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -408,15 +408,22 @@ vnet_ip_route_cmd (vlib_main_t * vm, rpaths[vec_len (rpaths) - 1].frp_flags |= FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED; } - else if (unformat (line_input, "out-label %U", - unformat_mpls_unicast_label, &out_label)) + else if (unformat (line_input, "out-labels")) { if (vec_len (rpaths) == 0) { error = clib_error_return (0, "Paths then labels"); goto done; } - vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, out_label); + else + { + while (unformat (line_input, "%U", + unformat_mpls_unicast_label, &out_label)) + { + vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, + out_label); + } + } } else if (unformat (line_input, "via-label %U", unformat_mpls_unicast_label, &rpath.frp_local_label)) |