diff options
author | Chris Luke <chrisy@flirble.org> | 2016-07-08 10:34:00 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-07-08 16:53:46 +0000 |
commit | 49a6963b1387bf7535f589f02ffc99de5b59192f (patch) | |
tree | 970b80e56fbe2f19ab6c0e59755955136afd2040 /vpp-api-test/vat/api_format.c | |
parent | 371e4e19d1db9ed0113d0db7b2f3651e4fce855f (diff) |
VPP-192 ip_neighbor_add_del incomplete vat help
Adds missing items to ip_neighbor_add_del help text
Change-Id: I1d74c7d31ec6d96f8de9bfb5bfc7872b9cbef682
Signed-off-by: Chris Luke <chrisy@flirble.org>
Diffstat (limited to 'vpp-api-test/vat/api_format.c')
-rw-r--r-- | vpp-api-test/vat/api_format.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vpp-api-test/vat/api_format.c b/vpp-api-test/vat/api_format.c index 5e2b3275..dd428966 100644 --- a/vpp-api-test/vat/api_format.c +++ b/vpp-api-test/vat/api_format.c @@ -4914,12 +4914,12 @@ static int api_ip_neighbor_add_del (vat_main_t * vam) /* Parse args required to build the message */ while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT) { - if (unformat (i, "mac %U", unformat_ethernet_address, mac_address)) { + if (unformat (i, "mac %U", unformat_ethernet_address, mac_address)) { mac_set = 1; } else if (unformat (i, "del")) is_add = 0; - else if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index)) + else if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index)) sw_if_index_set = 1; else if (unformat (i, "sw_if_index %d", &sw_if_index)) sw_if_index_set = 1; @@ -4948,7 +4948,7 @@ static int api_ip_neighbor_add_del (vat_main_t * vam) return -99; } if (!v4_address_set && !v6_address_set) { - errmsg ("no addresses set\n"); + errmsg ("no address set\n"); return -99; } @@ -12277,7 +12277,8 @@ _(mpls_gre_add_del_tunnel, \ _(sw_interface_set_unnumbered, \ "<intfc> | sw_if_index <id> unnum_if_index <id> [del]") \ _(ip_neighbor_add_del, \ - "<intfc> | sw_if_index <id> dst <ip46-address> mac <mac-addr>") \ + "(<intfc> | sw_if_index <id>) dst <ip46-address> " \ + "[mac <mac-addr>] [vrf <vrf-id>] [is_static] [del]") \ _(reset_vrf, "vrf <id> [ipv6]") \ _(create_vlan_subif, "<intfc> | sw_if_index <id> vlan <n>") \ _(create_subif, "<intfc> | sw_if_index <id> sub_id <n>\n" \ |