<?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>#SH RUN &#187; config</title>
	<atom:link href="http://sh-run.com/tag/config/feed/" rel="self" type="application/rss+xml" />
	<link>http://sh-run.com</link>
	<description></description>
	<lastBuildDate>Mon, 25 Oct 2010 20:41:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Configuring T1 WICs for a Home lab</title>
		<link>http://sh-run.com/2009/06/03/configuring-t1-wics-for-a-home-lab/</link>
		<comments>http://sh-run.com/2009/06/03/configuring-t1-wics-for-a-home-lab/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 14:20:27 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Home Lab]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[t1]]></category>
		<category><![CDATA[wic]]></category>

		<guid isPermaLink="false">http://sh-run.com/?p=15</guid>
		<description><![CDATA[I have a couple of routers as part of my home lab that I am using for my Cisco certification studies.  One thing that I wanted to do was connect two routers together via their T1 WICs.  There are two things you need to do: create a T1 crossover to connect the routers set the&#8230;]]></description>
			<content:encoded><![CDATA[<p>I have a couple of routers as part of my home lab that I am using for my Cisco certification studies.  One thing that I wanted to do was connect two routers together via their T1 WICs.  There are two things you need to do:</p>
<ul>
<li>create a T1 crossover to connect the routers</li>
<li>set the clock settings on each routers&#8217; serial interface to simulate the T1</li>
</ul>
<p>In another post I will put the details of making a T1 crossover cable, here is a simple example of the configuration you need to apply to each routers&#8217; T1 serial interface.</p>
<blockquote><p>**apply this to router #1**<br />
 <br />
ip address 192.168.1.1 255.255.255.248<br />
 encapsulation ppp<br />
 fair-queue<br />
 service-module t1 clock source internal<br />
 service-module t1 timeslots 1-24 speed 64<br />
 service-module t1 framing esf<br />
 service-module t1 linecode b8zs<br />
 no shut<br />
**apply this to router #2**<br />
 <br />
ip address 192.168.1.2 255.255.255.248<br />
 encapsulation ppp<br />
 fair-queue<br />
 service-module t1 clock source internal<br />
 service-module t1 timeslots 1-24 speed 64<br />
 service-module t1 framing esf<br />
 service-module t1 linecode b8zs<br />
 no shut</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sh-run.com/2009/06/03/configuring-t1-wics-for-a-home-lab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to find the port a device is plugged into</title>
		<link>http://sh-run.com/2009/06/03/how-to-find-the-port-a-device-is-plugged-into/</link>
		<comments>http://sh-run.com/2009/06/03/how-to-find-the-port-a-device-is-plugged-into/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 13:34:45 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://sh-run.com/?p=8</guid>
		<description><![CDATA[Have you ever needed to quickly find out which switch port a network device is plugged into and you only know the IP address of the device?  You could always trace the cables in your data closet and drive yourself crazy or you could use a few simple commands on your switch and quickly find&#8230;]]></description>
			<content:encoded><![CDATA[<p>Have you ever needed to quickly find out which switch port a network device is plugged into and you only know the IP address of the device?  You could always trace the cables in your data closet and drive yourself crazy or you could use a few simple commands on your switch and quickly find it.</p>
<p><strong>sh ip arp | inc &lt;ip address&gt;</strong><br />
<em>This will return the mac address<br />
</em><strong>sh mac-address-table | inc &lt;mac address&gt;</strong><br />
<em>This will return the switch port<br />
If the IP address is on another switch, the port that is returned in the output will be for the trunked port that goes to the next &#8220;hop&#8221;.  Go to the next switch and repeat.</em><br />
<strong>sh run int &lt;switch port&gt;<br />
</strong><em>This will return the config for that interface</em></p>
<p><em>Here is an example:</em></p>
<blockquote><p>switch01#sh ip arp | inc 172.16.11.200<br />
Internet  172.16.11.200           0   0080.a38a.10dc  ARPA   Vlan11<br />
switch01#sh mac-address-table | inc 0080.a38a.10dc<br />
  11    0080.a38a.10dc   dynamic ip                     GigabitEthernet3/3 <br />
switch01#sh run int gi3/3<br />
Building configuration&#8230;<br />
Current configuration : 152 bytes<br />
!<br />
interface GigabitEthernet3/3<br />
 description IBM APPLICATION SERVER<br />
 switchport access vlan 11<br />
 switchport mode access<br />
 qos trust dscp<br />
 spanning-tree portfast<br />
end<br />
switch01#</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sh-run.com/2009/06/03/how-to-find-the-port-a-device-is-plugged-into/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

