vrrp: fix cli functions according to short_help 69/37069/3
authorluoyaozu <luoyaozu@foxmail.com>
Fri, 2 Sep 2022 12:32:13 +0000 (20:32 +0800)
committerMatthew Smith <mgsmith@netgate.com>
Tue, 6 Sep 2022 19:31:15 +0000 (19:31 +0000)
test output before fix:
  DBGvpp# vrrp proto start sw_if_index 1 vr_id 1
  vrrp proto: unknown input `sw_if_index 1 vr_id 1'
  DBGvpp# vrrp vr track-if add sw_if_index 1 vr_id 1 track-index 1
priority 30
  vrrp vr track-if: Please specify an interface

Type: fix

Signed-off-by: luoyaozu <luoyaozu@foxmail.com>
Change-Id: Ib8ba67e920b23008d9246318ec8f8f17bf0bea95

src/plugins/vrrp/vrrp_cli.c

index 437b896..4496bbb 100644 (file)
@@ -242,6 +242,8 @@ vrrp_proto_start_stop_command_fn (vlib_main_t * vm,
       if (unformat (input, "%U", unformat_vnet_sw_interface, vmp->vnet_main,
                    &sw_if_index))
        ;
+      else if (unformat (input, "sw_if_index %u", &sw_if_index))
+       ;
       else if (unformat (input, "vr_id %u", &vr_id))
        ;
       else if (unformat (input, "ipv6"))
@@ -311,6 +313,8 @@ vrrp_peers_command_fn (vlib_main_t * vm, unformat_input_t * input,
       if (unformat (input, "%U", unformat_vnet_sw_interface, vmp->vnet_main,
                    &sw_if_index))
        ;
+      else if (unformat (input, "sw_if_index %u", &sw_if_index))
+       ;
       else if (unformat (input, "vr_id %u", &vr_id))
        ;
       else if (unformat (input, "ipv6"))
@@ -418,6 +422,8 @@ vrrp_vr_track_if_command_fn (vlib_main_t * vm,
       if (unformat (input, "%U", unformat_vnet_sw_interface, vmp->vnet_main,
                    &sw_if_index))
        ;
+      else if (unformat (input, "sw_if_index %u", &sw_if_index))
+       ;
       else if (unformat (input, "add"))
        is_add = 1;
       else if (unformat (input, "del"))