<?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>CCIE Lab &#187; Frame Relay Switch</title>
	<atom:link href="http://ccielab.ro/tag/frame-relay-switch/feed/" rel="self" type="application/rss+xml" />
	<link>http://ccielab.ro</link>
	<description>Cry in the Lab, Laugh in the Datacenter</description>
	<lastBuildDate>Mon, 02 Jan 2012 00:15:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Frame Relay Switching</title>
		<link>http://ccielab.ro/2010/07/frame-relay-switching/</link>
		<comments>http://ccielab.ro/2010/07/frame-relay-switching/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 08:32:46 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[DLCI]]></category>
		<category><![CDATA[Frame Relay]]></category>
		<category><![CDATA[Frame Relay Switch]]></category>
		<category><![CDATA[Inverse ARP]]></category>
		<category><![CDATA[LMI]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=119</guid>
		<description><![CDATA[Frame Relay is still very much a popular subject in exams, labs and in the real networks.
Any lab with topologies that run different protocols over FR must start with the layer 2 configuration of the Frame Relay switched network. FR Topologies like full mesh or hub and spoke require a Frame Relay Switch. A FR [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify"><strong>Frame Relay</strong> is still very much a popular subject in exams, labs and in the real networks.</p>
<p style="text-align: justify">Any lab with topologies that run different protocols over FR must start with the layer 2 configuration of the Frame Relay switched network. FR Topologies like full mesh or hub and spoke require a <strong>Frame Relay Switch. </strong>A FR Switch is a normal router but specifically configured to do Frame Relay switching.<strong><br />
</strong></p>
<p style="text-align: justify">First of all, we need to tell the router to start switching Frame Relay traffic. From global configuration mode we need to issue the <strong>frame-relay switching </strong>command.</p>
<p style="text-align: justify">Then, on the interfaces to Frame Relay clients, we need to start sending keepalives (LMIs) by configuring the interface as DCE with the <strong>frame-relay intf-type dce</strong> command.</p>
<p style="text-align: justify">The last thing that the FR Switch needs to do is to route DLCI on the virtual cicuits. This is done to tell an interface where to put a received frame with a DLCI. The frame will be put on another interface with another DLCI.  The configuration is done per interface with the <strong>frame-relay route</strong> command. The command requires that you specify the incoming  DLCI, on which the switching decision will be maide, the outgoing interface, and the DLCI with which the frame will be sent (&#8221;freame-relay route IN_DLCI OUT_INT OUT_DLCI&#8221;).</p>
<p style="text-align: justify">If Inverse ARP is not disabled on the FR Switch, no DLCI-IP mappings will be required.</p>
<p><strong>Topology:</strong></p>
<p><img class="alignnone size-full wp-image-127" src="http://ccielab.ro/wp-content/uploads/2010/07/fr_sw.png" alt="fr_sw" width="392" height="85" /></p>
<p><strong>Configuration:</strong></p>
<p>R1(config)#int s0/0<br />
R1(config-if)#no shut<br />
R1(config-if)#encapsulation frame-relay<br />
R1(config-if)#clock rate 128000<br />
R1(config-if)#ip address 10.1.2.1 255.255.255.0</p>
<p>R2(config)#int s0/0<br />
R2(config-if)#no shut<br />
R2(config-if)#encapsulation frame-relay<br />
R2(config-if)#clock rate 128000<br />
R2(config-if)#ip address 10.1.2.2 255.255.255.0</p>
<p>FR-Sw(config)#frame-relay switching<br />
FR-Sw(config)#int s0/1<br />
FR-Sw(config-if)#no shut<br />
FR-Sw(config-if)#clock rate 128000<br />
FR-Sw(config-if)#encapsulation frame-relay<br />
FR-Sw(config-if)#frame-relay intf-type dce<br />
FR-Sw(config-if)#frame-relay route 102 interface s0/0 201<br />
FR-Sw(config-if)#int s0/0<br />
FR-Sw(config-if)#no shut<br />
FR-Sw(config-if)#clock rate 128000<br />
FR-Sw(config-if)#encapsulation frame-relay<br />
FR-Sw(config-if)#frame-relay intf-type dce<br />
FR-Sw(config-if)#frame-relay route 201 interface s0/1 102</p>
<p><strong><br />
</strong></p>
<p><strong>Running Configurations:</strong></p>
<p><strong>R1:</strong></p>
<p>interface Serial0/0<br />
ip address 10.1.2.1 255.255.255.0<br />
encapsulation frame-relay<br />
clockrate 128000<br />
no fair-queue<br />
end</p>
<p><strong>R2:</strong></p>
<p>interface Serial0/0<br />
ip address 10.1.2.2 255.255.255.0<br />
encapsulation frame-relay<br />
clockrate 128000<br />
no fair-queue<br />
end</p>
<p><strong>FR-Sw:</strong></p>
<p>interface Serial0/0<br />
no ip address<br />
encapsulation frame-relay<br />
no fair-queue<br />
frame-relay intf-type dce<br />
frame-relay route 201 interface Serial0/1 102<br />
end</p>
<p>interface Serial0/1<br />
no ip address<br />
encapsulation frame-relay<br />
frame-relay intf-type dce<br />
frame-relay route 102 interface Serial0/0 201<br />
end</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/07/frame-relay-switching/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

