<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RouterNotes.com &#187; Port Channel</title>
	<atom:link href="http://routernotes.com/tag/port-channel/feed/" rel="self" type="application/rss+xml" />
	<link>http://routernotes.com</link>
	<description>Networking and Mac OS X lessons learned in a Campus LAN environment</description>
	<lastBuildDate>Mon, 15 Sep 2008 18:01:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configure Port Channels in IOS</title>
		<link>http://routernotes.com/2008/02/25/configure-port-channels-in-ios/</link>
		<comments>http://routernotes.com/2008/02/25/configure-port-channels-in-ios/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 14:02:28 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Cisco Routers/Switches]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[IOS Fundamentals]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Port Channel]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/02/25/configure-port-channels-in-ios/</guid>
		<description><![CDATA[Port Channels are a quick way to get more bandwidth by aggregating multiple connections in one virtual pipe. For instance, tie four gigabit ports together into a channel and it becomes a four gigabit connection.
Channels can also offer redundancy fault tolerance for physical connections. If one of the links involved in a channel loses connection, [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/02/19/configure-port-mirrors-on-cisco-switches/' rel='bookmark' title='Permanent Link: Configure Port Mirrors on Cisco Switches'>Configure Port Mirrors on Cisco Switches</a> <small>Switches make network troubleshooting a bit more difficult because not...</small></li><li><a href='http://routernotes.com/2008/05/27/working-with-vlans-on-cisco-switches/' rel='bookmark' title='Permanent Link: Working with VLANS on Cisco Switches'>Working with VLANS on Cisco Switches</a> <small>Historically, creating multiple networks required multiple switches, but VLANs (Virtual...</small></li><li><a href='http://routernotes.com/2007/11/29/showing-the-configuration-at-the-interface-level/' rel='bookmark' title='Permanent Link: Showing the configuration at the interface level'>Showing the configuration at the interface level</a> <small>One of the pains about Cisco is that once you...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Port Channels are a quick way to get more bandwidth by aggregating multiple connections in one virtual pipe. For instance, tie four gigabit ports together into a channel and it becomes a four gigabit connection.</p>
<p>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.</p>
<p>Ports involved in a channel must be on the same blade in a modular switch like a Catalyst 4500 or 6500.</p>
<p>Configuring port channels has become much easier in recent IOS versions. First, designate the desired ports into a channel group.<br />
<!-- START CUSTOM WIDGETBUCKS CODE -->
<div><script src="http://api.widgetbucks.com/script/ads.js?uid=MnJa8QMcIcC0vVsZ"></script></div>
<p><!-- END CUSTOM WIDGETBUCKS CODE --><br />
My_Switch(config)#<strong>interface GigabitEthernet2/1</strong><br />
My_Switch(config-if)#<strong>description Core Connection</strong><br />
My_Switch(config-if)#<strong>channel-group 2 mode desirable</strong></p>
<p>My_Switch(config)#<strong>interface GigabitEthernet2/2</strong><br />
My_Switch(config-if)#<strong>description Core Connection</strong><br />
My_Switch(config-if)#<strong>channel-group 2 mode desirable</strong></p>
<p><span id="more-44"></span>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.</p>
<p class="MsoNormal">Etherchannel is Cisco&#8217;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.</p>
<p class="MsoNormal">My_Switch(config)#interface GigabitEthernet2/1<br />
My_Switch(config-if)#description Core Connection<br />
My_Switch(config-if)#channel-group 2 mode passive</p>
<p class="MsoNormal">My_Switch(config)#interface GigabitEthernet2/2<br />
My_Switch(config-if)#description Core Connection<br />
My_Switch(config-if)#channel-group 2 mode passive</p>
<p class="MsoNormal">Using the active flag 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.</p>
<p>Next, create a virtual port channel interface.</p>
<p>My_Switch(config)#i<strong>nterface Port-channel4</strong><br />
My_Switch(config-if)#<strong>description Core Connection</strong><br />
My_Switch(config-if)#<strong>switchport</strong></p>
<p>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.</p>
<p>Display active channels with the show neighbor command.</p>
<p>My_switch&gt; <strong>show pagp neighbors</strong><br />
<em> &lt;output ommitted&gt;</em></p>
<p>My_switch&gt; <strong>show lacp neighbors</strong><br />
<em> &lt;output ommitted&gt;</em></p>
<p>The output gives much detail about the channels and their state.</p>
<p><strong>Disable channels</strong><br />
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 a single workstation.</p>
<p>My_Switch(config)#<strong>interface gig6/5</strong><br />
My_Switch(config-if)#<strong>description My favorite PC</strong><br />
My_Switch(config-if)#<strong>switchport mode access</strong></p>
<p>Channels are often a quick way to add bandwidth and add redundancy with existing hardware.<br />
<strong>Related Posts:</strong><br />
<a href="ttp://routernotes.com/2007/10/01/configuring-ssh-on-cisco-routersswitches-how-to/" title="SSH access in IOS">Configuring Secure Shell (SSH) in IOS </a><br />
<script type="text/javascript"><!-- google_ad_client = "pub-9512234219429601"; /* 468x60, created 2/4/08 */ google_ad_slot = "5860377475"; google_ad_width = 468; google_ad_height = 60; //--> </script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script></p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/02/19/configure-port-mirrors-on-cisco-switches/' rel='bookmark' title='Permanent Link: Configure Port Mirrors on Cisco Switches'>Configure Port Mirrors on Cisco Switches</a> <small>Switches make network troubleshooting a bit more difficult because not...</small></li><li><a href='http://routernotes.com/2008/05/27/working-with-vlans-on-cisco-switches/' rel='bookmark' title='Permanent Link: Working with VLANS on Cisco Switches'>Working with VLANS on Cisco Switches</a> <small>Historically, creating multiple networks required multiple switches, but VLANs (Virtual...</small></li><li><a href='http://routernotes.com/2007/11/29/showing-the-configuration-at-the-interface-level/' rel='bookmark' title='Permanent Link: Showing the configuration at the interface level'>Showing the configuration at the interface level</a> <small>One of the pains about Cisco is that once you...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/02/25/configure-port-channels-in-ios/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
