X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Flacp%2Flacp_doc.md;h=7df82b5689a2e76cdcbf1538ef6e820121d66634;hb=e5d34919b;hp=1f7fe4a449362b12dddad9b24afd4ef5bcfe1522;hpb=546ad855a63484fef46ecac61c52bb737a5764c9;p=vpp.git diff --git a/src/plugins/lacp/lacp_doc.md b/src/plugins/lacp/lacp_doc.md index 1f7fe4a4493..7df82b5689a 100644 --- a/src/plugins/lacp/lacp_doc.md +++ b/src/plugins/lacp/lacp_doc.md @@ -15,30 +15,30 @@ a high bandwidth transmission medium and create a fault-tolerant link. ### Configuration 1. Create the bond interface -create bond mode lacp [hw-addr ] [load-balance { l2 | l23 | l34 }] +create bond mode lacp [hw-addr ] [load-balance { l2 | l23 | l34 } [numa-only]] 2. Enslave the physical interface to the bond -enslave interface to [passive] [long-timeout]" +bond add [passive] [long-timeout]" 3. Delete the bond interface delete bond { | sw_if_index } 4. Detach the slave interface from the bond -detach interface +bond del ### Configuration example ``` create bond mode lacp set interface state BondEthernet0 up -enslave interface TenGigabitEthernet7/0/0 to BondEthernet1 -enslave interface TenGigabitEthernet7/0/1 to BondEthernet1 -enslave interface TenGigabitEthernet5/0/0 to BondEthernet1 -enslave interface TenGigabitEthernet5/0/1 to BondEthernet1 +bond add BondEthernet0 TenGigabitEthernet7/0/0 +bond add BondEthernet0 TenGigabitEthernet7/0/1 +bond add BondEthernet0 TenGigabitEthernet5/0/0 +bond add BondEthernet0 TenGigabitEthernet5/0/1 ``` ``` -detach interface TenGigabitEthernet5/0/1 +bond del TenGigabitEthernet5/0/1 ``` ```