<?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>Fnode Networks &#187; framerelay</title>
	<atom:link href="http://www.fnode.com/tag/framerelay/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fnode.com</link>
	<description>A Network Systems &#38; Technology Blog</description>
	<lastBuildDate>Mon, 16 Aug 2010 11:27:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to Configure Frame-Relay</title>
		<link>http://www.fnode.com/2009/09/frame-relay-config/</link>
		<comments>http://www.fnode.com/2009/09/frame-relay-config/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 23:48:42 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[frame-relay]]></category>
		<category><![CDATA[framerelay]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=493</guid>
		<description><![CDATA[Frame-Relay is one of the core concept of networking and nowadays it is one of the under appreciated part on modern networking. I am just going to go over how to configure it using 4 Routers and one will act as a Frame-Relay cloud. Before I go ahead and explain the configuration, You can see [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Frame-Relay is one of the core concept of networking and nowadays it is one of the under appreciated part on modern networking.</p>
<p>I am just going to go over how to configure it using 4 Routers and one will act as a Frame-Relay cloud.</p>
<p>Before I go ahead and explain the configuration, You can see the below diagram which represents the physical topology.</p>
<p style="text-align: center;"><img class="size-full wp-image-495 aligncenter" title="FRS1" src="http://www.fnode.com/wp-content/uploads/FRS1.png" alt="FRS1" width="511" height="544" /></p>
<p>As you can see, FRS is connected via&#8230;</p>
<p>Serial 1/1 to R1 Serial 1/0<br />
Serial 1/2 to R2 Serial 1/0<br />
Serial 1/3 to R3 Serial 1/0</p>
<p><span id="more-493"></span></p>
<p>Now we have got the physical topology clear, we will move onto Frame-Relay configuration and the DLCI assignment.</p>
<p style="text-align: center;"><img class="size-full wp-image-496 aligncenter" title="FRS2" src="http://www.fnode.com/wp-content/uploads/FRS2.png" alt="FRS2" width="511" height="534" /></p>
<p>As you can see the DLCI configuration&#8230;</p>
<p>On R1 : DLCI 122 is connected to R2 and DLCI 123 is connected to R3<br />
On R2 : DLCI 221 is connected to R1<br />
On R3: DLCI 321 is connected to R3.</p>
<p>If you are configuring the DLCI then I would suggest you follow this method of numbering, Because from the DLCI Number, I can simply distinguish where the DLCI is connecting to&#8230;</p>
<p><!--more--></p>
<p>For Example, we will take DLCI 122 (One Two Two ) I remember it as; From Router <strong>One</strong> 2 <strong>Two</strong> and the same goes for DLCI 321 (Three Two One) Router<strong> Three</strong> 2 <strong>One</strong>.</p>
<p>Here are the configuration on the <strong>FRS</strong> (Please see the first diagram for interface info&#8230;)</p>
<p><strong>Serial 1/1</strong></p>
<pre>interface Serial1/1
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
clock rate 64000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 122 interface Serial1/2 221
frame-relay route 123 interface Serial1/3 321</pre>
<p><strong>Serial 1/2</strong></p>
<pre>interface Serial1/2
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
clock rate 64000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 221 interface Serial1/1 122</pre>
<p><strong>Serial 1/3</strong></p>
<pre>interface Serial1/3
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
clock rate 64000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 321 interface Serial1/1 123</pre>
<p>As you can see, if you are configuring Frame-Relay you should understand what every command does and I will be writing a more detailed post on Frame-Relay switching where all of these commands will be covered.</p>
<p>Now the FRS is set, we will go ahead and configure each interface of the routers R1, R2 and R3.</p>
<p><strong>R1</strong></p>
<pre>interface Serial1/0
ip address 172.16.10.1 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.16.10.2 122 broadcast
frame-relay map ip 172.16.10.3 123 broadcast
no frame-relay inverse-arp</pre>
<p><strong>R2</strong></p>
<pre>interface Serial1/0
ip address 172.16.10.2 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.16.10.1 221 broadcast
frame-relay map ip 172.16.10.3 221 broadcast
no frame-relay inverse-arp</pre>
<p><strong>R3</strong></p>
<pre>interface Serial1/0
ip address 172.16.10.3 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.16.10.1 321 broadcast
frame-relay map ip 172.16.10.2 321 broadcast
no frame-relay inverse-arp</pre>
<p>The most important commands are &#8220;Frame-Relay Map&#8221; on the Routers and the &#8220;Frame-Relay Route&#8221; command on the Frame switching router.</p>
<p>As you can see, I have the <strong>Broadcast</strong> option at the end of the &#8220;frame-relay map&#8221; command; It is there to allow routing packets such as RIP to be passed through the Frame network. Without this option, it will not allow IP traffic to be switch through frame network.</p>
<p>If you don&#8217;t get the DLCI mapping correct, you will not get the circuit to come &#8220;active&#8221;</p>
<p>You can check the Frame route by issuing the &#8220;show frame-relay route&#8221; command on FRS.</p>
<pre>FRS#sh fr ro
Input Intf   Input Dlci   Output Intf   Output Dlci   Status
Serial1/1    122          Serial1/2     221           active
Serial1/1    123          Serial1/3     321           active
Serial1/2    221          Serial1/1     122           active
Serial1/3    321          Serial1/1     123           active
FRS#</pre>
<p>And &#8220;show frame-relay map&#8221; on the Routers (R1, R2, R3)</p>
<pre>R1#sh frame map
Serial1/0 (up): ip 172.16.10.2 dlci 122(0x7A,0x1CA0), static,
broadcast,
CISCO, status defined, active
Serial1/0 (up): ip 172.16.10.3 dlci 123(0x7B,0x1CB0), static,
broadcast,
CISCO, status defined, active

R2#sh frame map
Serial1/0 (up): ip 172.16.10.1 dlci 221(0xDD,0x34D0), static,
broadcast,
CISCO, status defined, active
Serial1/0 (up): ip 172.16.10.3 dlci 221(0xDD,0x34D0), static,
broadcast,
CISCO, status defined, active

R3#sh frame map
Serial1/0 (up): ip 172.16.10.1 dlci 321(0x141,0x5010), static,
broadcast,
CISCO, status defined, active
Serial1/0 (up): ip 172.16.10.2 dlci 321(0x141,0x5010), static,
broadcast,
CISCO, status defined, active
</pre>
<p>If it says &#8220;inactive&#8221; or &#8220;deleted&#8221;, I would first check the DLCI assignment and encapsulation and so forth&#8230;</p>
<p>And it is always nice to see the following message&#8230;</p>
<pre>*Mar  1 00:00:21.005: %FR-5-DLCICHANGE: Interface Serial1/1 - DLCI 122 state changed to ACTIVE
*Mar  1 00:00:21.005: %FR-5-DLCICHANGE: Interface Serial1/1 - DLCI 123 state changed to ACTIVE
*Mar  1 00:00:21.098: %FR-5-DLCICHANGE: Interface Serial1/2 - DLCI 221 state changed to ACTIVE
*Mar  1 00:00:21.146: %FR-5-DLCICHANGE: Interface Serial1/3 - DLCI 321 state changed to ACTIVE</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/09/frame-relay-config/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
