Wired Intelligent Edge

last person joined: 9 hours ago 

Bring performance and reliability to your network with the HPE Aruba Networking Core, Aggregation, and Access layer switches. Discuss the latest features and functionality of your switching devices, and find ways to improve security across your network to bring together a mobile-first solution
Expand all | Collapse all

Can someone show me how to setup LACP and add a switching-profile to that group%3F

This thread has been viewed 0 times
  • 1.  Can someone show me how to setup LACP and add a switching-profile to that group%3F

    Posted Dec 06, 2013 02:34 PM

    I set up a port channel with success and am trying to setup LACP and assign a switching profile to it for trunking but can't seem to figure it out. Is LACP nessisary and what is the benefit to that over regular port channel?

    Thanks



  • 2.  RE: Can someone show me how to setup LACP and add a switching-profile to that group%3F
    Best Answer

    EMPLOYEE
    Posted Dec 06, 2013 02:42 PM

    Using LACP over static port-channels is definitely recommended. Static port channels can be dangerous if one side is not configured correctly. LACP uses negotation to bring up the port-channel.

     

    1) Create an LACP profile

     

    interface-profile lacp-profile "LACP-PROFILE-1"
       group-id 0
       mode active
    timeout short !

     

     

    2) Create a port-channel interface that matches the LACP group-id number.

     

    interface port-channel "0"
       ip access-group in "INBOUND-ACL-B"
       qos trust auto
       description "CORE1-PC"
       switching-profile "VLAN100-PROFILE-B"
       enet-link-profile pc_default
    !

     

     

    3) Assign the LACP profile to port(s)

     

    interface gigabitethernet "7/1/0"
       lacp-profile "LACP-PROFILE-1"
       description "Uplink to Core"
    !