- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- LACP vs Trunk
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2017 11:43 PM
05-31-2017 11:43 PM
Hi
i am trying to interconnect 2 x 2920 Switches, i am a little bit confused about difference between trunk and (static) lacp config. Discussion LACP vs Trunk states that LACP does not tag the traffic, means the ports can only be on one VLAN.
My config looks like following:
trunk 1/45,1/46 trk1 lacp vlan 999 name "MGMT" untagged 1/1-1/44, 1/47-48, Trk1 no ip address exit vlan 2 name "PC" tagged Trk1 no ip address exit vlan 3 name "Printer" tagged Trk1 no ip address exit vlan 4 name "Multimedia" tagged Trk1 no ip address exit vlan 5 name "WLAN" tagged Trk1 no ip address exit
spanning-tree Trk1 priority 4
This configuration works fine so far, so LACP is tagging VLANs on the Trk1. So what is the difference between trunk 1/45,1/46 trk1 lacp and trunk 1/45,1/46 trk1 trunk
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2017 07:54 PM
06-05-2017 07:54 PM
SolutionIgnore that discussion, especially the first reply, which is nonsense.
"Trunk" in this context just means link aggregation and has nothing at all to do with 802.1q.
The difference between Trunk and LACP in this context is just that they use two different methods for create the aggregated link. I usually go with "Trunk" if I'm using Procurve switches, LACP otherwise.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2017 10:20 AM - edited 06-07-2017 10:21 AM
06-07-2017 10:20 AM - edited 06-07-2017 10:21 AM
Re: LACP vs Trunk
It has nothing to do with VLANs.
LACP uses the 802.3ad protocol to negotiate the interfaces with the remote device. It uses hash algorithms for load-balancing and can be increased or decreased in the number of interfaces without any impact to the logical link. It also detects if the other side of the interface is misconfigured and stops sending packets on misconfigured interfaces to prevent packet loss. You may know it from Cisco as an EtherChannel.
"trunk" just puts this interfaces together but does not negotiate anything with the other site. It is mandatory that the other site is also configured as a trunk for the link to be working.
I usually go with LACP as often as possible, since it is really easy to implement and brings only positives.
Some server (f.e. VMWware ESXi ) can not "speak" 802.3ad natively (or only with the biggest license), so I have to use static trunks or switch independent load-balancing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2017 08:38 AM
06-08-2017 08:38 AM
Re: LACP vs Trunk
thanks Linkk and Vince-Whirlwind for your help, really appreciate!!!