diff options
author | Benoît Ganne <bganne@cisco.com> | 2019-04-19 10:12:42 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-04-19 18:24:31 +0000 |
commit | 1b52ca965c907812f8279dfeeee95341f15b3439 (patch) | |
tree | 14c2d66a525260e528cc7bb78aa270048a8be8bb /src/vnet/ipip/ipip_cli.c | |
parent | f682facb272ba7a1adc08c9c464df140d4f4b714 (diff) |
6rd: fix debug cli short-help
Debug cli short help for 6rd tunnel creation was out-of-date.
Change-Id: I06e4d28481470825bf225ba0fd371a3aebd889fa
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vnet/ipip/ipip_cli.c')
-rw-r--r-- | src/vnet/ipip/ipip_cli.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/ipip/ipip_cli.c b/src/vnet/ipip/ipip_cli.c index 5c7dfec8e05..444b383975b 100644 --- a/src/vnet/ipip/ipip_cli.c +++ b/src/vnet/ipip/ipip_cli.c @@ -345,7 +345,8 @@ done: VLIB_CLI_COMMAND(create_sixrd_tunnel_command, static) = { .path = "create 6rd tunnel", .short_help = "create 6rd tunnel ip6-pfx <ip6-pfx> ip4-pfx <ip4-pfx> " - "ip4-src <ip4-addr> table-id <ID> [del]", + "ip4-src <ip4-addr> ip4-table-id <ID> ip6-table-id <ID>" + "[security-check]", .function = create_sixrd_tunnel_command_fn, }; VLIB_CLI_COMMAND(delete_sixrd_tunnel_command, static) = { |