Channels can also offer redundancy fault tolerance for physical connections. If one of the links involved in a channel loses connection, the channel will continue on with the existing ports and three quarters of the bandwidth.
Ports involved in a channel must be on the same blade in a modular switch like a Catalyst 4500 or 6500.
Configuring port channels has become much easier in recent IOS versions. First, designate the desired ports into a channel group.
My_Switch(config)# interface GigabitEthernet2/1
My_Switch(config-if)# description Core Connection
My_Switch(config-if)# channel-group 2 mode desirable
My_Switch(config)# interface GigabitEthernet2/2
My_Switch(config-if)# description Core Connection
My_Switch(config-if)# channel-group 2 mode desirable
The desirable option will create a channel to another Cisco switch in etherchannel format and drop a single channel if necessary. In contrast, using the on option would force a port channel, but would drop the entire channel if a single link.
Etherchannel is Cisco's proprietary channel protocol, sometimes called PAGP or Port Aggregation Protocol. In order to create channel with a server or non-Cisco switch, the channel will have to be configured in LACP (Link Aggregation Control Protocol) format, which is a multivendor standard.
My_Switch(config)# interface GigabitEthernet2/1
My_Switch(config-if)# description Core Connection
My_Switch(config-if)# channel-group 2 mode passive
My_Switch(config)# interface GigabitEthernet2/2
My_Switch(config-if)# description Core Connection
My_Switch(config-if)# channel-group 2 mode passive
Using the active option instead of the passive mode option will force the ports into a LACP channel without negotiation much like the on option for PAGP. The entire channel will go down if a single line is disconnected and will not be fault tolerant.
Next, create a virtual port channel interface.
My_Switch(config)# interface Port-channel4
My_Switch(config-if)# description Core Connection
My_Switch(config-if)# switchport
The virtual port channel configuration merely controls the aggregate port. For instance, if the port-channel interface is disabled, or shut down as Cisco calls it, then the channel will not work even though all four member ports are enabled.
Display active channels with the show neighbor command.
My_switch> show pagp neighbors
My_switch>show lacp neighbors
The output gives much detail about the channels and their state.
Disable channels
Channels are a handy tool, but most Cisco switches ship in auto mode by default and that can sometimes causes problems with workstations that do not understand how to disregard the channel auto-negotiation. The switchport mode access command disables channel negotiation as well as disabling vlan trunking negotiation. It prepares the port for use by workstations.
My_Switch(config)# interface gig6/5
My_Switch(config-if)# description My favorite PC
My_Switch(config-if)# switchport mode access
Channels are often a quick way to add bandwidth and add redundancy with existing hardware.
Published by Jinx
IT guy by day View profile
- Brit David Port Sentenced for Baywatch FraudDavid Port convinced investors to give him more than $350,000 to open "Baywatch" restaurants. He will be serving three years and eight months in prison for his scheme to defraud investors in PCG Media.
- The Destruction of Port Royal, Pirate HavenFeatured in Pirates of the Caribbean, Port Royal, Jamaica, was once the New York of the Caribbean. Then it was destroyed by all the fury of nature, leaving sunken ruins behind.
- Dish Network is Requiring an Additional Satellite for Locals, Other ChannelsTwo satellites on the roof to get all the channels you want or once had seem unnecessary, but that's what Dish Network seems to be making people do.
Paint the Port Comes Back to Kennebunkport, MaineIf you are an art lover, Paint The Port is a must see event. Bring your checkbook because you will likely see something that captures your interest.
- Configuring Authentication for Cisco Routers and Switches
- Configure Port Mirrors on Cisco Switches for Network Analysis
- Clear Channel Faces Class Action Lawsuits
- What You Can Teach Your Homeschoolers Using the Discovery Channel
- Flash Gordon is Back! (Sci Fi Channel)
- Port Wine Stains - Indentification & Treatment of the "Vascular" Birthmark
- Getting Fit in Port Orchard, Washington




1 Comments
Post a Comment"Using the active option instead of the passive mode option will force the ports into a LACP channel without negotiation much like the on option for PAGP. The entire channel will go down if a single line is disconnected and will not be fault tolerant."
This is actually incorrect.
When using the "active" argument on an LACP etherchannel bundle, the channel with continue to function with the reduced bandwidth until the disconnected interface comes back up. This is the entire focus of using etherchannel; aggregating and supplying additional bandwidth in addition to fault-tolerance and redundancy.
If a single link failure were to take the port-channel down in a two or four link bundle, it would be pointless to bundle them in the first place.