diff options
author | Neale Ranns <nranns@cisco.com> | 2020-09-22 13:20:27 +0000 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2020-09-22 20:02:47 +0000 |
commit | ae0d46ee6f26ec0ce714720102dce37364d0dee7 (patch) | |
tree | 77639118a34f70987233ce0f252012f17b79fd84 /src/vnet | |
parent | bc31247c921d9bad94f2d4aeca9041aee518e7a6 (diff) |
ipip: Add option to tunnel create help string
Type: style
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: I3703b9a882b7577025f495d500daf08a916891b9
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/gre/interface.c | 3 | ||||
-rw-r--r-- | src/vnet/ipip/ipip_cli.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/vnet/gre/interface.c b/src/vnet/gre/interface.c index 48eec35d8ff..f0c289700fa 100644 --- a/src/vnet/gre/interface.c +++ b/src/vnet/gre/interface.c @@ -709,7 +709,8 @@ done: VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = { .path = "create gre tunnel", .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] " - "[outer-fib-id <fib>] [teb | erspan <session-id>] [del]", + "[outer-fib-id <fib>] [teb | erspan <session-id>] [del] " + "[multipoint]", .function = create_gre_tunnel_command_fn, }; /* *INDENT-ON* */ diff --git a/src/vnet/ipip/ipip_cli.c b/src/vnet/ipip/ipip_cli.c index d3410558271..510806b0c11 100644 --- a/src/vnet/ipip/ipip_cli.c +++ b/src/vnet/ipip/ipip_cli.c @@ -163,7 +163,7 @@ done: VLIB_CLI_COMMAND(create_ipip_tunnel_command, static) = { .path = "create ipip tunnel", .short_help = "create ipip tunnel src <addr> dst <addr> [instance <n>] " - "[outer-table-id <ID>]", + "[outer-table-id <ID>] [p2mp]", .function = create_ipip_tunnel_command_fn, }; VLIB_CLI_COMMAND(delete_ipip_tunnel_command, static) = { |