LACP Configuration

Link-Aggregation-Example

We have learned LACP and Link Aggregation before detailly and in this article we will focus LACP Cisco Configuration. We will make a link aggregation protocol with two ports in one bundle. You can use more port up to 8 ports in Cisco devices.

 

Link aggregation Example Topology on Cisco
Link Aggregation on Cisco Devices
In our LACP Cisco Configuration example, we will use the G1/0/0 and the G2/0/0 ports to configure link aggregation. The basic configuration steps are below.

 

Before our configuration steps, let’s remember LACP and PAgP channel group modes.

 

ipcisco-lacp-pagp-link-aggregation-modes

 

According to this information, if both ends are configured as Desirable, link aggregation is established. If at least one end is configured with Desirable mode, PAgP link aggregation is again established. But, if both end is configured as Auto, then link aggregation is not established.  

 

The similar thing isalso true for LACP with different mode names. If both ends are configured as Active, link aggregation is established. If at least one end is configured with Active mode, LACP link aggregation is again established. But, if both end is configured as Passive, then link aggregation is not established. 

 


 

On RouterA

RouterA> enable
RouterA# configure terminal
RouterA (config)# interface port-channel 1
RouterA (config-if)# lacp max-bundle 2
RouterA (config-if)# ip address 192.168.0.1 255.255.255.0
RouterA (config-if)# interface g1/0/0
RouterA (config-if)# no ip address
RouterA (config-if)# channel-group 1 mode active
RouterA (config-if)# exit
RouterA (config)# interface g2/0/0
RouterA (config-if)# no ip address
RouterA (config-if)# channel-group 1 mode active
RouterA (config-if)# end

 

lacp-cisco-configuration-example-ipcisco-1

 


 

On RouterB

RouterB > enable
RouterB # configure terminal
RouterB (config)# interface port-channel 1
RouterB (config-if)# lacp max-bundle 2
RouterB (config-if)# ip address 192.168.0.2 255.255.255.0
RouterB (config-if)# interface g1/0/0
RouterB (config-if)# no ip address
RouterB (config-if)# channel-group 1 mode passive
RouterB (config-if)# exit
RouterB (config)# interface g2/0/0
RouterB (config-if)# no ip address
RouterB (config-if)# channel-group 1 mode passive
RouterB (config-if)# end

 

lacp-cisco-configuration-example-ipcisco-2


 

Beside the basic steps, we can also configure a different parameter used with LACP in this LACP Cisco Configuration example. This parameter is LACP interface priority. When there are more member interfaces than the maximum allowed interface, master switch uses LACP interface priority to choose which member interfaces are Activein a port channel. Here, a port with a lower priority number is preferred.

cisco-etherchannel-lacp-example-ipcisco-1

 

Here we do it for only RouterA, you can also use this command on the other end.

 

RouterA > enable
RouterA # configure terminal
RouterA (config)# lacp system-priority 11111
RouterA (config)# interface g1/0/0
RouterA (config-if)# lacp port-priority 100
RouterA (config-if)# exit
RouterA (config)# interface g2/0/0
RouterA (config-if)# lacp port-priority 200
RouterA (config-if)# end

 

cisco-etherchannel-lacp-example-ipcisco-2


 

To remove a port channel from a port you can use the below configuration:

 

You can also view the below LACP Configuration Lessons for different vendors:

Lesson tags: LAG, Link Aggregation, LACP
Back to: CCIE Enterprise Infrastructure > Link Aggregation

Leave a Reply

Your email address will not be published. Required fields are marked *

CCIE Enterprise Infrastructure

Collapse
Expand
Latest Lessons

Latest Blog Posts