<?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</title>
	<atom:link href="http://ccielab.ro/tag/frame-relay/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>
		<item>
		<title>Back-to-back Frame Relay</title>
		<link>http://ccielab.ro/2010/07/back-to-back-frame-relay/</link>
		<comments>http://ccielab.ro/2010/07/back-to-back-frame-relay/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 07:52:09 +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[back-to-back]]></category>
		<category><![CDATA[DCE]]></category>
		<category><![CDATA[DLCI]]></category>
		<category><![CDATA[FR Switch]]></category>
		<category><![CDATA[Frame Relay]]></category>
		<category><![CDATA[Inverse ARP]]></category>
		<category><![CDATA[keepalive]]></category>
		<category><![CDATA[serial]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=123</guid>
		<description><![CDATA[This is the simplest use of a Frame Relay encapsulation and it&#8217;s  between two routers, without a Frame Relay Switch. PPP or HDLC  would make more sense to use in these types of links, but it is useful  in labs.
In a back-to-back scenario is important to remember what the FR  Switch [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">This is the simplest use of a Frame Relay encapsulation and it&#8217;s  between two routers, <strong>without a Frame Relay Switch</strong>. PPP or HDLC  would make more sense to use in these types of links, but it is useful  in labs.</p>
<p style="text-align: justify">In a back-to-back scenario is important to remember what the FR  Switch should be doing: being the DCE and sending the keepalives to  maintain the layer 2 link to the client router. Because of the fact that  no FR Switch is present, the lack of keepalives being sent must be ignored using the &#8220;<strong>no  keepalive</strong>&#8221; command. Also, Inverse ARP won&#8217;t work, so manual IP-DLCI  mapping will be needed.</p>
<p style="text-align: justify">The FR Switch should be the one doing swapping of DLCIs on the network so the frames arrive at their destination with the correctly mapped DLCIs. In this case, we will need to have the same DLCI set in the manual mapping so the routers match entries in the mappings.</p>
<p><strong>The topology:</strong></p>
<p><img class="alignnone size-full wp-image-124" src="http://ccielab.ro/wp-content/uploads/2010/07/fr_b2b.png" alt="fr_b2b" width="375" height="126" /></p>
<p><strong>Configuration:</strong></p>
<p>R1(config)#int s0/1<br />
R1(config-if)#no shut<br />
R1(config-if)#clock rate 128000<br />
R1(config-if)#ip address 10.1.2.1 255.255.255.0<br />
R1(config-if)#encapsulation frame-relay<br />
R1(config-if)#frame-relay map ip 10.1.2.2 42<br />
R1(config-if)#no keepalive</p>
<p>R2(config)#int s0/1<br />
R2(config-if)#no shut<br />
R2(config-if)#clock rate 128000<br />
R2(config-if)#ip address 10.1.2.2 255.255.255.0<br />
R2(config-if)#encapsulation frame-relay<br />
R2(config-if)#frame-relay map ip 10.1.2.1 42<br />
R2(config-if)#no keepalive</p>
<p><strong>Running configurations:</strong></p>
<p><strong>R1:</strong></p>
<p>interface Serial0/1<br />
ip address 10.1.2.1 255.255.255.0<br />
encapsulation frame-relay<br />
no keepalive<br />
clockrate 128000<br />
frame-relay map ip 10.1.2.2 42<br />
end</p>
<p><strong>R2:</strong></p>
<p>interface Serial0/1<br />
ip address 10.1.2.2 255.255.255.0<br />
encapsulation frame-relay<br />
no keepalive<br />
frame-relay map ip 10.1.2.1 42<br />
end</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/07/back-to-back-frame-relay/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

