Wireless Access

last person joined: 21 hours ago 

Access network design for branch, remote, outdoor, and campus locations with HPE Aruba Networking access points and mobility controllers.
Expand all | Collapse all

Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

This thread has been viewed 64 times
  • 1.  Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Jan 06, 2014 07:49 AM

    Hi All

     

    In a lot of instances your single 1Gb or even 10Gb (if your lucky) uplink from your Controller to your switching infrastructure would be sufficient, but as you grow and you add more APs and users this single link can become a problem regarding Bandwidth availability and reliability. Fortunately with LACP you can aggregate multiple links to act as a single uplink to provide you redundancy and greater bandwidth.

     

    In the below example I will show you how to configure LACP from your controller and what will be required from your switching side.

     

    Please note that during LACP configuration if BOTH the Switch and the Controllers Ports aren't configured with the same LACP config you will loose connectivity to the Controller - hence we 1st Configure the Controller, as and when the controller is configured with LACP and your switch is not the controller will disconnect. On the switch we will continue to configure the LACP which will complete the LACP configuration and the controller will become accessible. Of course if you have redundant Controllers setup you shouldn't experience any problems from the AP or User perspective as failover should occur on the controllers.

     

    So lets Begin

     

    1. Login to your Controller, then select the "Configuration Tab" and select "Ports"
      Conf-Ports.jpg

    2. With your relevant port selected (remember to repeat these steps on all ports who should belong to the aggregated link), scroll down to the LACP section and set the following options:
      Group: 1                  <This is the ID of the Port Channel -- must be same for all ports in the same group>
      Mode: Active            <You can set the mode Active or Passive for the receiving and sending of LACPDU to and from the switch>
      Priority: 2                  <Priority of Port within the Group>
      Timeout: Short        <Period before the port will be disabled in the Group>
      LACP.JPG

      NOTE: With Mode I prefer to set all Links to Active (getting and making use of all available Link Bandwidth), however this largely depends on the switching infrastructure if it supports Active/Active links.

      Hit Apply for Changes to be saved

    3. Next select the "Port-Channel" tab at the top and Highlight all the ports that need to be included in the Group.
      PortChannel.jpg

    4. Ensure the Port-Channel ID is selected and set to the correct number - the same as you configured in step 2 under Group.
    5. Set all required VLAN, SPT and FW policies - this will override what is on the individual ports
    6. Hit Apply - you would likely have lost connectivity due to the switch not being configured.

    Below are a few short examples of possible switch configurations you can consider

     

    CISCO

    interface Port-channel1
    switchport
    switchport access vlan 100
    switchport mode access
    no ip address
    !
    interface GigabitEthernet1/1
    switchport
    switchport access vlan 100
    switchport mode access
    no ip address
    channel-group 1 mode on
    !

    VERIFY THAT IT WORKS

    Switch# show etherchannel load-balance
    EtherChannel Load-Balancing Configuration:
    src-dst-ip
    mpls label-ip
    EtherChannel Load-Balancing Addresses Used Per-Protocol:
    Non-IP: Source XOR Destination MAC address
    IPv4: Source XOR Destination IP address
    IPv6: Source XOR Destination IP address
    MPLS: Label or IP

    Switch# show etherchannel summary
    Flags: D - down P - bundled in port-channel
    I - stand-alone s - suspended
    H - Hot-standby (LACP only)
    R - Layer3 S - Layer2
    U - in use f - failed to allocate aggregator
    M - not in use, minimum links not met
    u - unsuitable for bundling
    w - waiting to be aggregated
    Number of channel-groups in use: 2
    Number of aggregators: 2
    Group Port-channel Protocol Ports
    ------+-------------+-----------+--------------------------
    1 Po1(SU) - Gi1/15(P) Gi1/16(P)
    2 Po2(SU) - Gi1/1(P) Gi1/2(P)

    Switch# show etherchannel protocol
    Channel-group listing:
    -----------------------
    Group: 1
    ----------
    Protocol: - (Mode ON)
    Group: 2
    ----------
    Protocol: - (Mode ON)

     

    HP

    ProCurve# conf
    ProCurve# trunk 10-13 Trk1 Trunk
    
    VERIFY THAT IT WORKED
    
    ProCurve# show trunk
    Load Balancing
    Port | Name Type | Group Type
    ---- + --------- + ----- -----
    10 | 100/1000T | Trk1 Trunk
    11 | 100/1000T | Trk1 Trunk
    12 | 100/1000T | Trk1 Trunk
    13 | 100/1000T | Trk1 Trunk

     

     ARISTA

    Arista#
    Arista#configure terminal
    Arista(config)#interface port-Channel 50
    Arista(config-if-Po50)#exit
    Arista(config)#interface ethernet 50 - 51
    Arista(config-if-Et50-51)#channel-group 50 mode active
    Arista(config-if-Et50-51)#exit
    
    VERIFY THAT IT WORKED
    
    Arista#show port-channel detailed
    Port Channel Port-Channel50:
    Active Ports:
    Port            Time became active      Protocol      Mode
    --------------- ---------------------- -------------- ------
    Ethernet50      16:46:00                LACP          Active
    Ethernet51      16:46:00                LACP          Active

     



  • 2.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Jan 16, 2014 01:04 AM

    Thanks for the post. 

     

    Question about your Cisco config example -- should we not be using 'channel-group mode active' as this forces LACP unconditioanlly, whereas 'mode on' forced etherchannel (PAgP)? Is there a reason you are using 'mode on'? (I see that most other examples on the forum are using mode on as well, could you explain why?)



  • 3.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Jan 16, 2014 07:39 AM

    Active means that the interface initiates the LACP conversation

    Passive means the interface listens, only responds to LACP messages.

     

    On means bring up the port-channel unconditionally. (not best practice)

     

    LACP will come up in the following combinations:

         Active/Active

         Active/Passive

         On/On


    Cisco devices will default to PAgP when no protocol is specified AND it is connected to another Cisco device. If no channel protocol is defined, it will fall back to LACP for non-Cisco devices.

     

     

    Here's a sample from Cisco - Cisco (distribution to core) and Cisco - Aruba (distribution to edge)

     

    Notice that no channel protocol is explicitly configured

    lacp-pagp-cisco_core.png

     

     

     

    show etherchannel protocol

     

    lacp-pagp-cisco.png

     

     

    lacp-pagp-cisco_swxports.png



  • 4.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Aug 15, 2019 01:58 PM

    Hi All,

     

    Just a follow up on this.

    If your interconnecting Cisco and Aruba Switches, use "mode active". (LACP). With Cisco, f you don't use LACP mode active, you will get LINK FLAP loops all over. Especially with AP's when users are roaming. LACP fixes this issue.

     

    NOTE: When connecting Cisco WLC to Cisco Switches, the LAG configurations should be "mode on" by default.

     

     



  • 5.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Jan 16, 2014 03:30 PM

    Question on your HP config. 

     

    After running   trunk 10-13 Trk1 Trunk

     

    Would it be necessary to run interface 10-13 lacp active to make it an "active" connection on the HP side?

     

    Thanks!



  • 6.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Jan 17, 2014 02:43 AM

    @bbelew wrote:

    Question on your HP config. 

     

    After running   trunk 10-13 Trk1 Trunk

     

    Would it be necessary to run interface 10-13 lacp active to make it an "active" connection on the HP side?

     

    Thanks!


    It isn't a must to run it unless you distinctly want to specify which ports are Active and which are Passive (if you have specified a passive port on the Controller then the switch trunk port must be Active) - this is Dynamic LACP

    With "trunk 10-13 trk1 Trunk" it is considered Static LACP. 



  • 7.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Jan 17, 2014 07:43 AM

    Keep in mind that if a port-channel is "static", no dynamic protocols are being used.

     

    Static (mode on)

    LACP (dynamic, mode active/passive)

    PAgP (dynamic, mode desirable, Cisco proprietary)



  • 8.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Apr 20, 2016 06:19 PM

    Hi, 

     

    something similar:

    In this moment i have just one 10G port configured "like trunk" connected directly to one Extreme brand (like Core) Switch.

     

    I want to do make something similar but not to the same switch so:

     

    What about (remember: Just one controller) with 2 10G ports to 2 switches (Extreme Core Switches and by the way: I´m not the admin of that so...) that are "in Active-Paasive mode using VRRP (layer 3 i guesss) and EAPS (STP propietary for layer 2 i guess)" what configuration do i have to do in the switches (to tell to the extreme guys) and in "my" 7200 controller? 

     

    My actual config:

    !

    interface gigabitethernet 0/0/2
    description "GE0/0/2"
    trusted
    trusted vlan 1-4094
    jumbo
    switchport mode trunk
    switchport trunk native vlan 5
    switchport trunk allowed vlan 5,14,16,19,36-37,39,93,97,112,128,135-138,140-144,152,201,207-208,213,216,220-229,234,237-238,248,1038,1128,1192
    !

    interface gigabitethernet 0/0/3
    description "GE0/0/3"
    trusted
    trusted vlan 1-4094
    !

    ----------

     

    My failed test:

    !
    interface gigabitethernet 0/0/2
    description "GE0/0/2"
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk native vlan 5
    switchport trunk allowed vlan 5,14,16,19,36,37,39,93,97,128,136,144,152,201,207,208,213,216,224,225,226,227,228,229,234,237,238,248,1038,1128,1192
    !
    interface gigabitethernet 0/0/3
    description "GE0/0/3"
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk native vlan 5
    switchport trunk allowed vlan 5,14,16,19,36,37,39,93,97,128,136,144,152,201,207,208,213,216,224,225,226,227,228,229,234,237,238,248,1038,1128,1192
    !
    interface port-channel 1
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk allowed vlan 5,14,16,19,36,37,39,93,97,128,136,144,152,201,207,208,213,216,224,225,226,227,228,229,234,237,238,248,1038,1128,1192
    !
    interface gigabitethernet 0/0/2
    description "LACP for 0/0/2 and 0/0/3"
    lacp timeout short
    lacp group 1 mode active
    !
    interface gigabitethernet 0/0/3
    description "LACP for 0/0/2 and 0/0/3"
    lacp timeout short
    lacp group 1 mode active
    !

     

     

    Best regards.

     



  • 9.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Apr 20, 2016 07:11 PM

    I'd say that your failed test configuration in the aruba controller side is correct.

     

    Are you running MLAG and the corresponding ISC link between the Extreme routers? 

    Are you running MLAG and EAPS in the Extreme routers? If so the ISC link can not be on an EAPS blocked port which means that neither switch in the MLAG can be a master with that link as secondary port. I think it won't allow you anyways but worthy double checking it.

     

    Also if you run lacp timeout short, you should configure the same way on the Extreme routers.

     

    Hope it helps.

    Borja

     



  • 10.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Apr 20, 2016 07:21 PM

    Actually double checking your config you are missing your native vlan on the port channel.

     

    switchport trunk native vlan 5



  • 11.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Apr 21, 2016 01:07 PM

    Hi,

     

    First: Thank you by the fast response.

     

    As I´m not the LAN Extreme Switched Network Manager where "my" Aruba Controller (i´m the admin) is connected so I don´t know the config about nothing... but i will ask... what lines of config do i have to ask for?

     

    Now, please check the new try config (Native VLAN in the Trunk of the port-channel interface) that i will apply:

     


    !
    interface gigabitethernet 0/0/2
    description "GE0/0/2"
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk native vlan 5
    switchport trunk allowed vlan 5,14,16,19,36,37,39,93,97,128,136,144,152,201,207,208,213,216,224,225,226,227,228,229,234,237,238,248,1038,1128,1192
    !
    interface gigabitethernet 0/0/3
    description "GE0/0/3"
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk native vlan 5
    switchport trunk allowed vlan 5,14,16,19,36,37,39,93,97,128,136,144,152,201,207,208,213,216,224,225,226,227,228,229,234,237,238,248,1038,1128,1192
    !
    interface port-channel 1
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk native vlan 5
    switchport trunk allowed vlan 5,14,16,19,36,37,39,93,97,128,136,144,152,201,207,208,213,216,224,225,226,227,228,229,234,237,238,248,1038,1128,1192
    !
    interface gigabitethernet 0/0/2
    description "LACP for 0/0/2 and 0/0/3"
    lacp timeout short
    lacp group 1 mode active
    !
    interface gigabitethernet 0/0/3
    description "LACP for 0/0/2 and 0/0/3"
    lacp timeout short
    lacp group 1 mode active
    !

     

    Could you tell me the rigth config on the Extreme Switches (like you did it in the Cisco, HP and Arista early) to verify vs the own config please?

     

    Best Regards.



  • 12.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Apr 21, 2016 05:50 PM

    Hi Homero,

     

    you said you have one port from the Aruba controller connected to one Extreme router and another port from the Aruba controller to a different Extreme router, right?

     

    The config could vary as it depends on how the Extreme engineer configured the ISC VLAN (same Virtual Router or different VRs) However, you need to tell them that you want to do a MLAG between the two switches and the Aruba controller and ask whether the current configuration will allow you to do it or not.

     

    I will send you tomorrow a config example.

     

    Regards,

    Borja



  • 13.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Apr 22, 2016 05:57 AM

    Hi Homero,

     

    This is an example with Extreme switches. Two ports from Aruba controller to Extreme DS1 and two ports from Aruba controller to Extreme DS2.

     

    Aruba controller

     

    interface gigabitethernet 0/0/2

    description "interface to port 1:18 DS1"

    trusted

    trusted vlan 160,3094

    switchport mode trunk

    switchport trunk native vlan 3094

    switchport trunk allowed vlan 160,3094

    lacp group 1 mode active

    !

     

    interface gigabitethernet 0/0/3

    description "interface to port 2:18 DS1"

    trusted

    trusted vlan 160,3094

    switchport mode trunk

    switchport trunk native vlan 3094

    switchport trunk allowed vlan 160,3094

    lacp group 1 mode active

    !

     

    interface gigabitethernet 0/0/4

    description "interface to port 1:18 DS2”

    trusted

    trusted vlan 160,3094

    switchport mode trunk

    switchport trunk native vlan 3094

    switchport trunk allowed vlan 160,3094

    lacp group 1 mode active

    !

     

    interface gigabitethernet 0/0/5

    description "interface to port 2:18 DS2”

    trusted

    trusted vlan 160,3094

    switchport mode trunk

    switchport trunk native vlan 3094

    switchport trunk allowed vlan 160,3094

    lacp group 1 mode active

    !

     

    interface port-channel 1

    trusted

    trusted vlan 1-4094

    switchport mode trunk

    switchport trunk native vlan 3094

    switchport trunk allowed vlan 160,3094

    !

     

     

    Extreme switch DS1

     

    create vlan "SERVER-ISC-MLAG"

    configure vlan SERVER-ISC-MLAG tag 3033

    configure vlan SERVER-ISC-MLAG add ports 1:1 tagged 

    create vlan example tag 160

    conf vlan example add ports 1:1, 1:18 tagged

    create vlan "WLAN-ADMIN-3094"

    configure vlan WLAN-ADMIN-3094 tag 3094

    configure vlan WLAN-ADMIN-3094 add ports 1:1 tagged  

    configure vlan WLAN-ADMIN-3094 add ports 1:18 untagged  

    configure vlan SERVER-ISC-MLAG ipaddress 192.168.33.1 255.255.255.252

     

    enable sharing 1:18 grouping 1:18, 2:18 algorithm address-based L3_L4 lacp

     

    create mlag peer "DS-2” 

    configure mlag peer “DS-2” ipaddress 192.168.33.2 vr VR-Default 

    enable mlag port 1:18 peer "DS-2” id 9 

     

     

    Extreme switch DS2

     

    create vlan "SERVER-ISC-MLAG"

    configure vlan SERVER-ISC-MLAG tag 3033

    configure vlan SERVER-ISC-MLAG add ports 1:1 tagged 

    configure vlan SERVER-ISC-MLAG ipaddress 192.168.33.2 255.255.255.252

    create vlan example tag 160

    conf vlan example add ports 1:1, 1:18 tagged

    create vlan "WLAN-ADMIN-3094"

    configure vlan WLAN-ADMIN-3094 tag 3094

    configure vlan WLAN-ADMIN-3094 add ports 1:1 tagged  

    configure vlan WLAN-ADMIN-3094 add ports 1:18 untagged  

     

    enable sharing 1:18 grouping 1:18, 2:18 algorithm address-based L3_L4 lacp

     

    create mlag peer "DS-1" 

    configure mlag peer "DS-1" ipaddress 192.168.33.1 vr VR-Default 

    enable mlag port 1:18 peer "DS-1" id 9

     

     

    Hope it helps,

    Regards

    Borja



  • 14.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Apr 25, 2016 01:59 PM

    Hi, 

     

    Thank you for the config from 4 ports from aruba to 2 switches (that´s is a good ideal config! ... but we need the config from just :( two ports of aruba (0/0/2 and 0/0/3 only) to one port in each extreme switch... (i don´t have more ports and gbic to use more ports in aruba and extremes so is like the "ISC basic survival/redundancy").

     

    I try to upload the diagram in a quick .jpg file here where i can´t detail the config of the Extreme switches how they are interconected so isn´t the diagram... :P

     

    Could you type what do the LAN Extreme Switch Manager needs to write in the Extreme switches?

    Redundancia Basica del Controlador Aruba.png

    Regards.



  • 15.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Apr 25, 2016 03:33 PM

    Hi Homero,

     

    No problem, just remove the second port from the sharing command.

     

    So instead of "enable sharing 1:18 grouping 1:18, 2:18 algorithm address-based L3_L4 lacp" (this means that you create an aggregation of two ports 1:18 and 2:18) you should have

    "enable sharing 1:18 grouping 1:18 algorithm address-based L3_L4 lacp" (only one port).

     

    But please note that in your diagram there is a link missing between both switches. You must have a ISC VLAN running between both switches to carry the MLAG (Multi Switch Agreggation Traffic) traffic.

     

    Ask your extreme engineer to also have a look into the Extreme Concepts Guide page 300 (MLAG) so he can understand it as well.

     

    Configuration for Extreme switches below.

     

    Extreme switch DS1

     

    create vlan "SERVER-ISC-MLAG"

    configure vlan SERVER-ISC-MLAG tag 3033

    configure vlan SERVER-ISC-MLAG add ports 1:1 tagged 

    create vlan example tag 160

    conf vlan example add ports 1:1, 1:18 tagged

    create vlan "WLAN-ADMIN-3094"

    configure vlan WLAN-ADMIN-3094 tag 3094

    configure vlan WLAN-ADMIN-3094 add ports 1:1 tagged  

    configure vlan WLAN-ADMIN-3094 add ports 1:18 untagged  

    configure vlan SERVER-ISC-MLAG ipaddress 192.168.33.1 255.255.255.252

     

    enable sharing 1:18 grouping 1:18 algorithm address-based L3_L4 lacp

     

    create mlag peer "DS-2” 

    configure mlag peer “DS-2” ipaddress 192.168.33.2 vr VR-Default 

    enable mlag port 1:18 peer "DS-2” id 9 

     

     

    Extreme switch DS2

     

    create vlan "SERVER-ISC-MLAG"

    configure vlan SERVER-ISC-MLAG tag 3033

    configure vlan SERVER-ISC-MLAG add ports 1:1 tagged 

    configure vlan SERVER-ISC-MLAG ipaddress 192.168.33.2 255.255.255.252

    create vlan example tag 160

    conf vlan example add ports 1:1, 1:18 tagged

    create vlan "WLAN-ADMIN-3094"

    configure vlan WLAN-ADMIN-3094 tag 3094

    configure vlan WLAN-ADMIN-3094 add ports 1:1 tagged  

    configure vlan WLAN-ADMIN-3094 add ports 1:18 untagged  

     

    enable sharing 1:18 grouping 1:18 algorithm address-based L3_L4 lacp

     

    create mlag peer "DS-1" 

    configure mlag peer "DS-1" ipaddress 192.168.33.1 vr VR-Default 

    enable mlag port 1:18 peer "DS-1" id 9

     

     

     

    Regards

    Borja



  • 16.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted May 11, 2016 11:04 PM

    Hi, we will test it.

     

    meanwhile another comments maybe make more sense:

    • The fast diagram is updated here :)
    • The extreme guys tell me about EAPS and VRRP in the ISC between extreme switches.
    • I looked for "mlag" or "MLAG" word in the configuration file and does not appeared it (So no MLAG configured in the ISC between extreme switches and is confirmed).

    I will update this when we test, any comment is welcome.

    Best Regards.



  • 17.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted May 12, 2016 04:50 AM

    Homero,

     

    If you don't have MLAG configured on the extreme switches, they won't understand your LACP (as you are connecting one interface to one switch and another one to a different switch). 

     

     

    I'll suggest you to test this scenario in the lab if you have a couple of Extreme Switches and one aruba controller or any other device capable to do LACP, as your main problem resides on the Extreme side.

     

    Regards

    Borja

     

     

     

     



  • 18.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted May 19, 2016 06:28 PM

    Hi,

     

    We did some tests in a LAB simulating the SITE (Big extreme switches with L3), IDFs (extreme switches with EAPs rings), and the controller 7005 (green). Something is missing the test fial l.  Redundancia Basica del Controlador Aruba Lab.png

     

    By the way:

    • The port channel was up (admin and protocol) but no again something is missing.
    • In the production enviroment the blue lSC link will be the new config that extreme switches manager don´t have when we did it in production as i check in the COR switches config.
    • The extreme admin saw something in the config diferent of the extreme guide but he did the both ways (extreme guide to do the MLAG/portsharing/etc..) and doesnt works.

    I have a open a case in TAC already and ill wait for the call...

     

    Best regards.

     



  • 19.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Sep 01, 2016 06:15 PM

    Has anyone attempted this configuration between an Aruba 70xx controller and Juniper EX4200 series switch?



  • 20.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Sep 01, 2016 06:18 PM
    Are you having issues?


  • 21.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Sep 01, 2016 06:20 PM

    Yes, I'm testing this in the lab and seem to lose connectivity to the 7010 controller.

     



  • 22.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    EMPLOYEE
    Posted Sep 01, 2016 06:28 PM
    Can you post both sides of the port configuration?


  • 23.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Sep 01, 2016 06:32 PM

    7010 Controller Config:

     

    interface gigabitethernet 0/0/16
    description "GE0/0/16"
    trusted
    trusted vlan 1-4094
    lacp group 1 mode active
    !

    interface gigabitethernet 0/0/17
    description "GE0/0/17"
    trusted
    trusted vlan 1-4094
    lacp group 1 mode active
    !

    interface port-channel 1
    trusted
    trusted vlan 1-4094
    switchport mode trunk
    switchport trunk native vlan 2170
    switchport trunk allowed vlan 1-4094

     

    ==============================

    ==============================

     

    Juniper EX4200 Config:

     

    @tst1-cr-sr1> show configuration interfaces ge-0/1/3 | display set interfaces ge-0/1/3 ether-options 802.3ad ae1

    {master:0}

     

    @tst1-cr-sr1> show configuration interfaces ge-1/1/3 | display set interfaces ge-1/1/3 ether-options 802.3ad ae1

    {master:0}

     

    @tst1-cr-sr1> show configuration interfaces ae1 | display set
    set interfaces ae1 aggregated-ether-options minimum-links 1
    set interfaces ae1 aggregated-ether-options link-speed 1g
    set interfaces ae1 aggregated-ether-options lacp active
    set interfaces ae1 unit 0 family ethernet-switching port-mode trunk
    set interfaces ae1 unit 0 family ethernet-switching vlan members Aruba-7010-MGMT
    set interfaces ae1 unit 0 family ethernet-switching native-vlan-id 2170

     



  • 24.  RE: Link Aggregation (LACP) on Aruba Controller Jan06-Tutorial

    Posted Sep 02, 2016 02:52 AM

    Hi

    It seams that you have both the Aruba and Juniper set to active - normally that doesn't work. Dynamic aggregation (LACP) one end must be set as Active and the other Passive - this is related to the sending and recieving of PDUs between them.

    Try setting the Juniper to passive and test: #"set interfaces ae1 aggregated-ether-options lacp passive"