<?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>subinterfaces &#8211; Fredrik Holmberg</title>
	<atom:link href="/tag/subinterfaces/feed/" rel="self" type="application/rss+xml" />
	<link>/</link>
	<description>Network Consultant</description>
	<lastBuildDate>Thu, 10 Nov 2016 19:39:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.7.3</generator>

<image>
	<url>/wp-content/uploads/2016/04/cropped-2601-32x32.png</url>
	<title>subinterfaces &#8211; Fredrik Holmberg</title>
	<link>/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Frame Relay switching and point-to-point subinterfaces</title>
		<link>/2012/03/frame-relay-switching-and-point-to-point-subinterfaces/</link>
		<comments>/2012/03/frame-relay-switching-and-point-to-point-subinterfaces/#respond</comments>
		<pubDate>Sun, 25 Mar 2012 15:41:00 +0000</pubDate>
		<dc:creator><![CDATA[Fredrik Holmberg]]></dc:creator>
				<category><![CDATA[ccnp]]></category>
		<category><![CDATA[frame relay]]></category>
		<category><![CDATA[subinterfaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Having browsed through half the Internet without finding any decent documentation on how to do this, I gave up on Google and put together something myself. Hopefully it can be useful for other networking students. I&#8217;m doing a lab for Cisco CCNP ROUTE where you&#8217;re supposed to set up OSPF over a Frame Relay (NBMA) [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Having browsed through half the Internet without finding any decent documentation on how to do this, I gave up on Google and put together something myself. Hopefully it can be useful for other networking students.</p>
<p>I&#8217;m doing a lab for Cisco CCNP ROUTE where you&#8217;re supposed to set up OSPF over a Frame Relay (NBMA) hub-and-spoke topology with a headquarter and two remote sites. All subinterfaces must be configured as point-to-point. This is how you configure the Frame Relay part.</p>
<p><span id="more-16"></span></p>
<p><b>Topology:</b></p>
<p><img class="alignnone size-full wp-image-44" src="/wp-content/uploads/2012/03/ajhefbj23lrkjn.png" alt="fr_cloud" width="560" height="304" srcset="/wp-content/uploads/2012/03/ajhefbj23lrkjn.png 560w, /wp-content/uploads/2012/03/ajhefbj23lrkjn-300x163.png 300w" sizes="(max-width: 560px) 100vw, 560px" /></p>
<ul>
<li style="text-align: left;">DLCI 102 and 201 connecting R1_HQ and R2_EAST.</li>
<li style="text-align: left;"><span style="text-align: center;">DLCI 103 and 301 connecting R1_HQ and R4_WEST.</span></li>
<li style="text-align: left;"><span style="text-align: center;">R3_FR provides clocking signals (DCE) to the connected Frame Relay routers (DTE).</span></li>
</ul>
<p><b>Configuration of the Frame Relay switch, R3_FR:</b></p>
<blockquote><p><code><span style="color: #000000;">frame-relay switching</span><br />
<span style="color: #000000;"> interface Serial0/0</span><br />
<span style="color: #000000;"> bandwidth 64</span><br />
<span style="color: #000000;"> no ip address</span><br />
<span style="color: #000000;"> encapsulation frame-relay IETF</span><br />
<span style="color: #000000;"> no ip route-cache</span><br />
<span style="color: #000000;"> clock rate 64000</span><br />
<span style="color: #000000;"> frame-relay intf-type dce</span><br />
<span style="color: #000000;"> frame-relay route 102 interface Serial0/1 201</span><br />
<span style="color: #000000;"> frame-relay route 103 interface Serial0/2 301</span><br />
<span style="color: #000000;"> interface Serial0/1</span><br />
<span style="color: #000000;"> bandwidth 64</span><br />
<span style="color: #000000;"> no ip address</span><br />
<span style="color: #000000;"> encapsulation frame-relay IETF</span><br />
<span style="color: #000000;"> no ip route-cache</span><br />
<span style="color: #000000;"> clock rate 64000</span><br />
<span style="color: #000000;"> frame-relay intf-type dce</span><br />
<span style="color: #000000;"> frame-relay route 201 interface Serial0/0 102</span><br />
<span style="color: #000000;"> interface Serial0/2</span><br />
<span style="color: #000000;"> bandwidth 64</span><br />
<span style="color: #000000;"> no ip address</span><br />
<span style="color: #000000;"> encapsulation frame-relay IETF</span><br />
<span style="color: #000000;"> no ip route-cache</span><br />
<span style="color: #000000;"> clock rate 64000</span><br />
<span style="color: #000000;"> frame-relay intf-type dce</span><br />
<span style="color: #000000;"> frame-relay route 301 interface Serial0/0 103</span><br />
</code></p></blockquote>
<p><b>Configuring the R1_HQ router:</b></p>
<blockquote><p><span style="color: #000000;"><code>interface Serial0/0<br />
bandwidth 64<br />
no ip address<br />
encapsulation frame-relay IETF<br />
interface Serial0/0.102 point-to-point<br />
ip address 10.1.1.1 255.255.255.252<br />
frame-relay interface-dlci 102<br />
interface Serial0/0.103 point-to-point<br />
ip address 10.1.1.5 255.255.255.252<br />
frame-relay interface-dlci 103</code></span></p></blockquote>
<p><b>Configuring the R2_EAST router:</b></p>
<blockquote><p><span style="color: #000000;"><code>interface Serial0/0<br />
bandwidth 64<br />
no ip address<br />
encapsulation frame-relay IETF<br />
interface Serial0/0.201 point-to-point<br />
ip address 10.1.1.2 255.255.255.252<br />
frame-relay interface-dlci 201</code></span></p></blockquote>
<p><b>Configuring the R4_WEST router:</b></p>
<blockquote><p><code><span style="color: #000000;">interface Serial0/0</span><br />
<span style="color: #000000;"> bandwidth 64</span><br />
<span style="color: #000000;"> no ip address</span><br />
<span style="color: #000000;"> encapsulation frame-relay IETF</span><br />
<span style="color: #000000;"> interface Serial0/0.301 point-to-point</span><br />
<span style="color: #000000;"> ip address 10.1.1.6 255.255.255.252</span><br />
<span style="color: #000000;"> frame-relay interface-dlci 301</span><br />
</code></p></blockquote>
<p>HQ router can now ping both the EAST and WEST router.</p>
<p>Here&#8217;s how the Frame Relay switch see the topology:</p>
<blockquote>
<pre><span style="color: #000000;">R3_FR#show frame-relay route
Input Intf      Input Dlci      Output Intf     Output Dlci     Status
Serial0/0       102             Serial0/1       201             active
Serial0/0       103             Serial0/2       301             active
Serial0/1       201             Serial0/0       102             active
Serial0/2       301             Serial0/0       103             active
</span></pre>
</blockquote>
<p>For more information check out &#8220;Comprehensive Guide to Configuring and Troubleshooting Frame Relay&#8221;:<br />
<a href="http://www.cisco.com/en/US/tech/tk713/tk237/technologies_tech_note09186a008014f8a7.shtml">http://www.cisco.com/en/US/tech/tk713/tk237/technologies_tech_note09186a008014f8a7.shtml</a></p>
<p>Similar services are also provided professionally through my <a href="/consulting/">Consulting Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>/2012/03/frame-relay-switching-and-point-to-point-subinterfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
