EtherChannel Question
Hi.
Why does EtherChannel only support 8 ports ? ("An EtherChannel can be created from between two and eight active Fast Ethernet, Gigabit Ethernet or 10-Gigabit Ethernet ports, with an additional one to eight inactive (failover) ports which become active as the other active ports fail.")
Why not 16-20?
Why does EtherChannel only support 8 ports ? ("An EtherChannel can be created from between two and eight active Fast Ethernet, Gigabit Ethernet or 10-Gigabit Ethernet ports, with an additional one to eight inactive (failover) ports which become active as the other active ports fail.")
Why not 16-20?
Comments
-
chmorin Member Posts: 1,446 ■■■■■□□□□□Good question, but the why is not nearly as important at the what (in this case). Inside a Cisco switch the configurations will only let you do 8. Keep in mind that it is only per channel group. You could potentially have 64 etherchannels spread out through different channel groups.Currently PursuingWGU (BS in IT Network Administration) - 52%| CCIE:Voice Written - 0% (0/200 Hours)mikej412 wrote:Cisco Networking isn't just a job, it's a Lifestyle.
-
tiersten Member Posts: 4,505Hi.
Why does EtherChannel only support 8 ports ? ("An EtherChannel can be created from between two and eight active Fast Ethernet, Gigabit Ethernet or 10-Gigabit Ethernet ports, with an additional one to eight inactive (failover) ports which become active as the other active ports fail.")
Why not 16-20?
Why would you actually want more than 8 though? If you need more than 80Gbps then either you've got some really unusual configuration requirements or you need to design your network better. The number of ports on a switch isn't unlimited and using 20 ports for a single link is going to mean even with a chassis based switch you're going to be running low.
You'll get issues with oversubscription and having the EtherChannel split over cards anyway even if you could make a 20 link EtherChannel. -
NullCode Member Posts: 72 ■■□□□□□□□□Well maybe now, 80Gbps is enough, but i was wondering if there was a limitation of some sort(except of the "because it was made this way"), or a tehnical reason why only 8 ports.
-
tiersten Member Posts: 4,505Well maybe now, 80Gbps is enough
The other option would be to buy a big chassis switch. The Nexus 7018 has a fabric capable of 230Gbps per slot and a total of 7.8Tbps over the entire chassis.but i was wondering if there was a limitation of some sort(except of the "because it was made this way"), or a tehnical reason why only 8 ports. -
jason_lunde Member Posts: 567NullCode,
As Tiersten stated, it has to do with the cisco proprietary hashing algorithm, and how packets are load-balanced on the links. Their hashing algorithm will give a computed value from 0 to 7 (8 ). Based on how many links are configured, each link will accept "x" values. Note the chart at this link:
Understanding EtherChannel Load Balancing and Redundancy on Catalyst Switches - Cisco Systems
So using a cisco device, with cisco hashing algorithms, you can only utilize up to 8 links in the etherchannel, actively. That is why you can have some standby links, because when a link fails, another one will start carrying packets destined for that index (computed from the hash). hth's
Ahhh you beat me to the reply Tiersten! -
tiersten Member Posts: 4,505jason_lunde wrote: »Ahhh you beat me to the reply Tiersten!
-
chmorin Member Posts: 1,446 ■■■■■□□□□□Well maybe now, 80Gbps is enough, but i was wondering if there was a limitation of some sort(except of the "because it was made this way"), or a tehnical reason why only 8 ports.
If the need arises, I'm sure cisco will change their capabilities. If cisco kept its standards without upgrade we would still be using hubs and token rings.Currently PursuingWGU (BS in IT Network Administration) - 52%| CCIE:Voice Written - 0% (0/200 Hours)mikej412 wrote:Cisco Networking isn't just a job, it's a Lifestyle. -
NullCode Member Posts: 72 ■■□□□□□□□□Thank you chmorin, tiersten and jason_lunde for your replies. It helped.
I got a better grasp at EtherChannel.
Thx.