diff options
author | 2024-12-31 12:43:37 +0800 | |
---|---|---|
committer | 2025-01-16 12:52:59 +0000 | |
commit | a0b1a06e0bd8f563f3ce5a23db90b23b7b5d341f (patch) | |
tree | 04b6076a884fccd17a496df287209e282bdacb46 | |
parent | 2f0061ba3f8206734637a80b52a7b20ceac8809b (diff) |
arp: fix command resolve and config filed exist differ
Type: fix
Change-Id: I2b2b65a6c12d50146f08b64b9a1603888652b462
Signed-off-by: fenglei <1579628578@qq.com>
-rw-r--r-- | src/vnet/arp/arp_proxy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/arp/arp_proxy.c b/src/vnet/arp/arp_proxy.c index 39f624d5a1d..16ed09bee14 100644 --- a/src/vnet/arp/arp_proxy.c +++ b/src/vnet/arp/arp_proxy.c @@ -251,7 +251,8 @@ VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = { VLIB_CLI_COMMAND (set_arp_proxy_command, static) = { .path = "set arp proxy", - .short_help = "set arp proxy [del] table-ID <table-ID> start <start-address> end <end-addres>", + .short_help = "set arp proxy [del] table-id <table-id> start " + "<start-address> end <end-addres>", .function = set_arp_proxy, }; |