diff options
-rw-r--r-- | src/plugins/lacp/lacp_doc.md | 2 | ||||
-rw-r--r-- | src/vnet/bonding/cli.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lacp/lacp_doc.md b/src/plugins/lacp/lacp_doc.md index fb2bede278c..7df82b5689a 100644 --- a/src/plugins/lacp/lacp_doc.md +++ b/src/plugins/lacp/lacp_doc.md @@ -15,7 +15,7 @@ a high bandwidth transmission medium and create a fault-tolerant link. ### Configuration 1. Create the bond interface -create bond mode lacp [hw-addr <mac-address>] [load-balance { l2 | l23 | l34 }] +create bond mode lacp [hw-addr <mac-address>] [load-balance { l2 | l23 | l34 } [numa-only]] 2. Enslave the physical interface to the bond bond add <bond-interface-name> <slave-interface> [passive] [long-timeout]" diff --git a/src/vnet/bonding/cli.c b/src/vnet/bonding/cli.c index 371e3c1012c..ec779e263a8 100644 --- a/src/vnet/bonding/cli.c +++ b/src/vnet/bonding/cli.c @@ -478,7 +478,7 @@ bond_create_command_fn (vlib_main_t * vm, unformat_input_t * input, VLIB_CLI_COMMAND (bond_create_command, static) = { .path = "create bond", .short_help = "create bond mode {round-robin | active-backup | broadcast | " - "{lacp | xor} [load-balance { l2 | l23 | l34 } {numa-only}]} [hw-addr <mac-address>] " + "{lacp | xor} [load-balance { l2 | l23 | l34 } [numa-only]]} [hw-addr <mac-address>] " "[id <if-id>]", .function = bond_create_command_fn, }; |