<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Going to Cisco World</title>
	<atom:link href="http://dreamccie.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dreamccie.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 16 Oct 2008 09:52:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dreamccie.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Going to Cisco World</title>
		<link>http://dreamccie.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dreamccie.wordpress.com/osd.xml" title="Going to Cisco World" />
	<atom:link rel='hub' href='http://dreamccie.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Virtual-Links and Tunnels</title>
		<link>http://dreamccie.wordpress.com/2008/10/16/virtual-links-and-tunnels/</link>
		<comments>http://dreamccie.wordpress.com/2008/10/16/virtual-links-and-tunnels/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 05:47:54 +0000</pubDate>
		<dc:creator>ensit</dc:creator>
				<category><![CDATA[OSPF]]></category>

		<guid isPermaLink="false">http://dreamccie.wordpress.com/?p=109</guid>
		<description><![CDATA[In my opinion, there are certain network topics we need to understand and be able to configure them without any trouble. Virtual-links are likely to be tested in the CCIE Lab because it helps to solve a problem which is a big thing in OSPF &#8211; ALL AREAS HAVE TO BE DIRECTLY CONNECTED TO THE [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=109&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my opinion, there are certain network topics we need to understand and be able to configure them without any trouble. Virtual-links are likely to be tested in the CCIE Lab because it helps to solve a problem which is a big thing in OSPF &#8211; ALL AREAS HAVE TO BE DIRECTLY CONNECTED TO THE BACKBONE AREA 0. Virtual-links are meant to be configured for a scenario where you have some area not connected to the backbone. It is important to mention that this is a bad design. You dont want to have ospf areas all over the place, virtual-links everywhere and confusion. The goal of a netwok is to keep it simple and functional.</p>
<p>To be honest, the point of this article is not so much the virtual-links because you probably have heard about it 100000 times but the interface tunnels. I would like to mention as well that I am more focus in in a small explanation and configuration than giving you a full boring description of the technology itself. You cal always get that sort of information in Cisco website.</p>
<p>As usual, we have a topology where I have already configured all the ip addresses and ospf.</p>
<p><img src="http://ciscoexpert.files.wordpress.com/2008/07/ospf1.jpg" alt="" /></p>
<p>The problem we run into is the routing table in R4. Because area 2 is not directly connected to the backbone, R4 is not receving any ospf routes installed.<br />
R4#sh ip route ospf</p>
<p>R4#</p>
<p>Once again, in the real world this would be a bad design, but if you have run into it during a lab or exam you need to configure a virtual-link between R2 and R3 through area 1 as such:</p>
<p>R2#sh run | s ospf<br />
router ospf 1<br />
router-id 2.2.2.2<br />
<strong>area 1 virtual-link 3.3.3.3</strong><br />
network 10.10.0.2 0.0.0.0 area 0<br />
network 10.10.1.2 0.0.0.0 area 1</p>
<p>R3#sh run | s ospf<br />
router ospf 1<br />
router-id 3.3.3.3<br />
<strong>area 1 virtual-link 2.2.2.2</strong><br />
network 10.10.1.3 0.0.0.0 area 1<br />
network 10.10.2.3 0.0.0.0 area 2</p>
<p>Now if we look again to the routing table of R4 we have received the ospf routes as expected. And when I say expected I have to mention something that Brian Dennis has said in a video that always stayed in my head which is something like this &#8211; At CCIE level you should be able to look into your topologies and be able to know how your routing tables should look like.<br />
Strong advice.</p>
<p>R4#sh ip route ospf<br />
10.0.0.0/24 is subnetted, 3 subnets<br />
O IA    10.10.0.0 [110/21] via 10.10.2.3, 00:01:04, FastEthernet0/0<br />
O IA    10.10.1.0 [110/11] via 10.10.2.3, 00:01:29, FastEthernet0/0</p>
<p>So far so good. Another scenario would be if they would tell to configure area 1 as stub area, totally stubby area, NSSA and so on…<br />
First, I will remove the virtual-links, configure the area as a stub and try to apply the virtual-link command once again, and let’s see what happens</p>
<p>R2(config)#router ospf 1<br />
R2(config-router)#area 1 stub<br />
R2(config-router)#no area 1 virtual-link 3.3.3.3<br />
% OSPF: Area 1 is a stub or nssa so virtual links are not allowed</p>
<p>Yes, virtual links are not allowed in stub or nssa areas. In order to solve this problem, instead of virtual-links we have to use GRE tunnels. Take a look in the configuration bellow.</p>
<p>R2#sh run int tu 0<br />
interface Tunnel0<br />
ip address 172.16.1.2 255.255.255.0<br />
tunnel source Ethernet0/1<br />
tunnel destination 10.10.1.3</p>
<p>R2#sh run | s ospf<br />
router ospf 1<br />
area 1 stub<br />
network 10.10.0.2 0.0.0.0 area 0<br />
network 10.10.1.2 0.0.0.0 area 1<br />
network 172.16.1.2 0.0.0.0 <strong>area 0</strong></p>
<p>R3#sh run int tu 0<br />
interface Tunnel0<br />
ip address 172.16.1.3 255.255.255.0<br />
tunnel source Ethernet0/1<br />
tunnel destination 10.10.1.2</p>
<p>R3#sh run | s ospf<br />
router ospf 1<br />
area 1 stub<br />
network 10.10.1.3 0.0.0.0 area 1<br />
network 10.10.2.3 0.0.0.0 area 2<br />
network 172.16.1.3 0.0.0.0 <strong>area 0</strong></p>
<p>It is actually very simple if you follow some simple steps. Create a tunnel interface, give it an ip address (or use ip unnumbered of a netwrok that is being advertised to area 0) and advertise it under ospf to <strong>AREA 0</strong>, then just apply the tunnel source and destination commands and you are good to go.</p>
<p>And once again, the routing table on R4</p>
<p>R4#sh ip route ospf<br />
172.16.0.0/24 is subnetted, 1 subnets<br />
O IA    172.16.1.0 [110/11112] via 10.10.2.3, 00:03:14, FastEthernet0/0<br />
10.0.0.0/24 is subnetted, 3 subnets<br />
O IA    10.10.0.0 [110/11122] via 10.10.2.3, 00:03:04, FastEthernet0/0<br />
O IA    10.10.1.0 [110/11] via 10.10.2.3, 00:03:14, FastEthernet0/0</p>
<p>We have received all the ospf routes.</p>
<p><strong>Authentication:</strong><br />
As a final note, if you get asked to authenticate area 0 either with md5 or clear-text, you need to authenticate the virtual-links or the interface tunnels if it is the case. Remember that R3 now believes it is directly connected to the backbone so it needs to be authenticated in order to receive all the routes.</p>
<p>If you have the possibility of trying this article in GNS3 or real equipment is a plus. Sometimes, we think we know just because we read about it but when it comes to configure it ourselves ups…besides it is good to try all different scenarios that work or not, at least we will know.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dreamccie.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dreamccie.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dreamccie.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dreamccie.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dreamccie.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dreamccie.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dreamccie.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dreamccie.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=109&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dreamccie.wordpress.com/2008/10/16/virtual-links-and-tunnels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca8811fd3ff5808071a278258d9578b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ensit</media:title>
		</media:content>

		<media:content url="http://ciscoexpert.files.wordpress.com/2008/07/ospf1.jpg" medium="image" />
	</item>
		<item>
		<title>BSCI Summary</title>
		<link>http://dreamccie.wordpress.com/2008/10/15/bsci-summary/</link>
		<comments>http://dreamccie.wordpress.com/2008/10/15/bsci-summary/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 13:20:09 +0000</pubDate>
		<dc:creator>ensit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dreamccie.wordpress.com/?p=6</guid>
		<description><![CDATA[Routing Principles Administrative Distance. Route Source Default Distance Connected Interface 0 Static Routes 1 EIGRP Summary route 5 External BGP 20 Internal IGRP 90 OSPF 110 IS-IS 115 RIP 120 EGP 140 External EIGRP 170 Internal BGP 200 Unknown 255 Routing Decision First check is the Administrative Distance for routing decision, in case of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=6&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="main">
<div class="snap_preview">
<h2>Routing Principles</h2>
<h2>Administrative Distance.</h2>
<p><strong><br />
</strong></p>
<table class="MsoNormalTable" style="margin-left:-.5pt;border-collapse:collapse;height:216px;" border="0" cellspacing="0" cellpadding="0" width="624">
<tbody>
<tr>
<td style="background:navy none repeat scroll 0 50%;width:275.4pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">Route Source</span></strong></p>
</td>
<td style="border:1pt solid black;background:navy none repeat scroll 0 50%;width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">Default Distance</span></strong></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Connected Interface<br />
</span></td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">0</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Static Routes</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">1</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">EIGRP Summary route</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">5</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">External BGP</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">20</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Internal IGRP</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">90</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">OSPF</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">110</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">IS-IS</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">115</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">RIP</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">120</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">EGP</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">140</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">External<span> </span>EIGRP</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">170</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Internal BGP</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">200</span></p>
</td>
</tr>
<tr>
<td style="width:275.4pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="367" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Unknown</span></p>
</td>
<td style="width:168.4pt;padding:0 5.4pt;" width="225" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">255</span></p>
</td>
</tr>
</tbody>
</table>
<h2>Routing Decision</h2>
<ul>
<li class="MsoNormal">First check is the Administrative Distance for routing decision, in case of the same protocol, the metrics will be the decision which will depend for each protocol how the metric is built.</li>
<li class="MsoNormal">Default, Cisco router supports up to 4 equal metric paths to a common destination. Maximum of 6 paths can be configured by the IOS. IP Load balancing is enable by default.</li>
<li class="MsoNormal">RIP metric is the hop count</li>
<li class="MsoNormal">IGRP metric is composite of Bandwidth, delay,<span> </span>reliability, load and MTU. Only      Bandwidth and Delay are enable by default.</li>
</ul>
<h2>Router Forward Traffic</h2>
<ul>
<li class="MsoNormal">Routing protocol maintain neighbor relationship with      adjacent routers</li>
<li class="MsoNormal">Router forwarding the traffic based on the next hop      logical device.</li>
</ul>
<h2>Classful</h2>
<ul>
<li class="MsoNormal">RIPv1 and IGRP</li>
<li class="MsoNormal">Routing table does not carry the routing MASK.</li>
<li class="MsoNormal">In the network, the class is assumed</li>
<li class="MsoNormal">The creation of classful summary route at major      network boundaries is handled automatically by classful</li>
<li class="MsoNormal">Classful requires all the routers interfaces with      the same subnetmask in case of use subnetting.</li>
</ul>
<h2>Classless</h2>
<ul>
<li class="MsoNormal">OSPF, EIGRP, RIPv2, IS-IS and BGP</li>
<li class="MsoNormal">RIPv2 and EIGRP are distance vector technologies, but they advertise mask, which is the characteristic of the classless routing. RIPv2 sends periodically updates and EIGRP send event-triggered updates</li>
<li class="MsoNormal">Classless can support different subnet masks (VLSM)</li>
</ul>
<h2>Distance Vector Operation</h2>
<ul>
<li class="MsoNormal">In a pure distance vector environment, the routing table update includes a complete routing table. Routing updates are only propagated to directly connected neighbors.</li>
<li class="MsoNormal">RIP use UDP (Protocol number 17, TCP is 6) with port      number 520</li>
</ul>
<table class="MsoNormalTable" style="margin-left:-.5pt;border-collapse:collapse;height:226px;" border="0" cellspacing="0" cellpadding="0" width="601">
<tbody>
<tr>
<td style="background:navy none repeat scroll 0 50%;width:228.2pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;"> Characteristic</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:44.45pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">RIPv1</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:44.45pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">RIPv2</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:62.85pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">IGRP</span></strong></p>
</td>
<td style="border:1pt solid black;background:navy none repeat scroll 0 50%;width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">EIGRP</span></strong></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Count to infinity</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Split horizon</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Hold-down timer</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Triggered updates with route poison</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Load balancing equal paths</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Load balancing unequal paths</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">VLSM support</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Routing algorithm </span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">B-F</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">B-F</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">B-F</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">DUAL</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Metric</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Hops</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Hops</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Composite</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Composite</span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Hop count limit</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">15</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">15</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">100<strong>*</strong></span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">100<strong>*</strong></span></p>
</td>
</tr>
<tr>
<td style="width:228.2pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="304" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Scalability</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Small</span></p>
</td>
<td style="width:44.45pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="59" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Small</span></p>
</td>
<td style="width:62.85pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="84" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Medim</span></p>
</td>
<td style="width:63.85pt;padding:0 5.4pt;" width="85" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Large</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">B-F : Bellman-Ford</span></p>
<h2>DUAL: Diffusing<span> </span>Update Algorithm</h2>
<p class="MsoNormal" style="line-height:150%;"><strong><span style="color:black;">*</span></strong><span style="color:black;"> Hop count limit is 100, but the maximum is 255</span></p>
<h2>Link State Routing</h2>
<ul>
<li class="MsoNormal">Link state generate a update only when has an change      in the network</li>
<li class="MsoNormal">When the Router detect the change, create a LSA      (Link State Advertisement) concerning<span> </span>that link<span> </span>. The LSA is propagate to all neighbors devices using a multicast address. Each router, make a copy of the LSA , update the database and forwards the LSA to all neighbors. This flooding of LSA is required to ensure that all routers update their databases.</li>
<li class="MsoNormal">Most Link State routing protocol require a hierarchical design, especially to support proper address summarization. The hierarchical creating multiples area, reduce the need of flood an LSA to all devices in the routing domain.</li>
</ul>
<p><span style="font-size:11pt;line-height:150%;font-family:Calibri,sans-serif;color:black;"><br />
</span></p>
<p class="MsoNormal" style="line-height:150%;margin:0 0 .0001pt .5in;"><span style="color:black;"> </span></p>
<p align="center">
<table class="MsoNormalTable" style="border-collapse:collapse;height:242px;" border="0" cellspacing="0" cellpadding="0" width="684">
<tbody>
<tr>
<td style="background:navy none repeat scroll 0 50%;width:165.75pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">Characteristic</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:67.5pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">OSPF</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:66pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">IS-IS</span></strong></p>
</td>
<td style="border:1pt solid black;background:navy none repeat scroll 0 50%;width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">EIGRP *</span></strong></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Hierarchical topology required</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Retain all possible routes</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Route summarization manual</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Route summarization automatic </span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Event Triggered announcements</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Load balancing equal paths</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Load balancing unequal paths</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">VLSM support</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Routing Algorithm</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">DIJKSTRA</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center">IS-IS</p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">DUAL</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Metric</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Cost</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Cost</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Composite</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Hop count limit</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Unlimited</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">1024</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">100**</span></p>
</td>
</tr>
<tr>
<td style="width:165.75pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="221" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Scalability</span></p>
</td>
<td style="width:67.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="90" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Large</span></p>
</td>
<td style="width:66pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="88" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Very Large</span></p>
</td>
<td style="width:64.25pt;padding:0 5.4pt;" width="86" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Large</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin-left:.25in;line-height:150%;"><span style="color:black;"> </span></p>
<p class="MsoNormal" style="margin-left:.25in;line-height:150%;"><span style="color:black;"><span> </span>EIGRP is an advanced distance vector protocol, but demonstrates some<span> </span>Link state feature</span></p>
<p class="MsoNormal" style="margin-left:.25in;line-height:150%;"><span style="color:black;"><span> </span>Default configuration is 100, but the maximum is 255.</span></p>
<h2>Convergence</h2>
<ul>
<li>
<ul>
<li class="MsoNormal">Convergence is the time it takes for all routers to agree on       the network topology after a change.</li>
<li class="MsoNormal">Convergence time affected by:</li>
</ul>
</li>
</ul>
<p><!--[if !supportLists]--></p>
<blockquote>
<blockquote>
<ol>
<li><span style="color:black;">update mechanism (hold down timers)</span></li>
<li><span style="color:black;">Size of topology table</span></li>
<li><span style="color:black;">Route calculation algorithm </span></li>
<li><span style="color:black;">Media type </span></li>
<li class="MsoNormal">Hold down time for RIP is 180 seconds</li>
<li class="MsoNormal">Hold down time for IGRP is 280 seconds</li>
<li class="MsoNormal">EIGRP convergence is very fast</li>
<li class="MsoNormal">OSPF convergence may vary between 6 to 40 seconds in a small       network</li>
</ol>
</blockquote>
</blockquote>
<p><!--[endif]--><!--[if !supportLists]--><!--[endif]--><!--[if !supportLists]--><!--[endif]--><!--[if !supportLists]--><!--[endif]--></p>
<ul>
<li>
<ul>
<li></li>
</ul>
</li>
</ul>
<h2>Routing updates</h2>
<ul>
<li>Distance vector send a full table</li>
<li>Link state send only a single entry (change), when the event       happen.</li>
<li>Classful does not send the subnet mask information</li>
<li>Classless does send the subnet mask information</li>
</ul>
<ul>
<li></li>
</ul>
<h2>Routing table</h2>
<ul>
<li> The entries are listed<span> </span>in a efficient<span> </span>search       order, which simplifies the search mechanism</li>
<li>Load balancing is enable by default</li>
<li>Commands: SHOW IP ROUTE or CLEAR IP ROUTE</li>
</ul>
<h1>Routing Protocol Comparison</h1>
<p class="MsoNormal" style="line-height:150%;"><strong><span style="color:black;"> </span></strong></p>
<table class="MsoNormalTable" style="margin-left:17.5pt;border-collapse:collapse;height:167px;" border="0" cellspacing="0" cellpadding="0" width="571">
<tbody>
<tr>
<td style="background:navy none repeat scroll 0 50%;width:137.8pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">Characteristic</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:41.5pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">RIPv1</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:41.5pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">RIPv2</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:51.5pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">IGRP</span></strong></p>
</td>
<td style="background:navy none repeat scroll 0 50%;width:45.5pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">EIGRP</span></strong></p>
</td>
<td style="border:1pt solid black;background:navy none repeat scroll 0 50%;width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><strong><span style="color:white;">OSPF</span></strong></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Distance Vector</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Link State</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Automatic Summarization</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">VLSM support</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Proprietary</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">X</span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;"> </span></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Scalability</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Small</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Small</span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Medium</span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Large</span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Large</span></p>
</td>
</tr>
<tr>
<td style="width:137.8pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="184" valign="top">
<p class="MsoNormal" style="line-height:150%;"><span style="color:black;">Convergence time</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Slow</span></p>
</td>
<td style="width:41.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="55" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Slow</span></p>
</td>
<td style="width:51.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="69" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Slow</span></p>
</td>
<td style="width:45.5pt;border-style:none none solid solid;border-width:medium medium 1pt 1pt;padding:0 5.4pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Fast</span></p>
</td>
<td style="width:40.5pt;padding:0 5.4pt;" width="54" valign="top">
<p class="MsoNormal" style="text-align:center;line-height:150%;" align="center"><span style="color:black;">Fast</span></p>
</td>
</tr>
</tbody>
</table>
<h1>IP Addressing Scheme</h1>
<h2>Subnetting</h2>
<ul>
<li> Moving the network boundary to the right creates additional<span> </span>subnetworks at the expense of fewer       hosts on each segment</li>
</ul>
<h2>IP Address Classes</h2>
<ul>
<li> 001 – 126 Class A</li>
<li>128 – 191 Class B</li>
<li>192 – 223 Class C</li>
<li> 224 – 239 Class D – Multicast use (OSPF 224.0.0.5, 224.0.0.6, RIPv2       224.0.0.9, EIGRP 224.0.0.10)</li>
<li> 240 – 254 Class E – Used for experimental purpose</li>
</ul>
<h2>Hierarchical Addressing</h2>
<ul>
<li> Reduce the number of route table entries by summarize multiple addresses into route summaries. Reduce the router requirements, like CPU, memory, fast convergence, easier troubleshooting.</li>
<li>Efficient allocation of addresses via contiguous addressing allow to use all possible addressing. Main in case of classful.</li>
</ul>
<h2>VLSM</h2>
<ul>
<li> Provide the ability to include more than one subnet mask within a       network and ability to subnet an already<span> </span>subnneted network address. Basically, we have to map all the subnet and check where we have a common subnet for all subnets.</li>
</ul>
<h2>Route Summarization</h2>
<ul>
<li class="MsoNormal">Routing protocols can summarize<span> </span>addresses of several networks into one      address.</li>
<li class="MsoNormal">Routing summarization is also called ROUTE      AGGREGATION and SUPERNETTING</li>
<li class="MsoNormal">Route summarization is more effective within a subnetted environment when the network addresses are in contiguous block in powers of two.</li>
<li class="MsoNormal">Classless routing protocols support route      summarization based on subnet addresses, including VLSM addressing.</li>
<li class="MsoNormal">Classful routing automatically summarize routes      based on the class network boundary.</li>
<li class="MsoNormal">To determine the summary route, the router determines the number of highest order bits match in all network addresses, to allow the router to aggregate the most number of IP addresses into a single route summary.</li>
<li class="MsoNormal">Implementations considerations:
<ol>
<li class="MsoNormal">Multiple IP Addresses<span> </span>must have the same highest order bits</li>
<li class="MsoNormal">Routing decisions are made based on the entire       address</li>
<li class="MsoNormal">Routing protocols must carry the prefix length       (Subnet mask)</li>
</ol>
</li>
</ul>
<h2>Route summarization at Cisco Routers</h2>
<ul>
<li class="MsoNormal">/32 <span> </span>Host</li>
<li class="MsoNormal">/27<span> </span>Subnet</li>
<li class="MsoNormal">/24 <span> </span>Network</li>
<li class="MsoNormal">/16<span> </span>Block      of networks</li>
<li class="MsoNormal">/0 <span> </span>Default</li>
</ul>
<h2>Summarizing Discontinuous Network</h2>
<ul>
<li class="MsoNormal">RIPv1 and IGRP do not support Discontinuous Network</li>
<li class="MsoNormal">OSPF, EIGRP and RIPv2 can advertise subnets and      therefore can support discontiguous subnets</li>
<li class="MsoNormal">This situation can be resolved by using RIPv2, OSPF or EIRGP and not using summarization, because the subnet routes would be advertised with their actual subnet mask. The Classless routing protocols use the longest prefix match when selecting a route<span> </span>from the routing table.</li>
<li class="MsoNormal">IP Unnumbered feature permits noncontiguous subnets      to be separated by an unnumbered link.</li>
</ul>
<h2>Classless Interdomain Routing (CIDR)</h2>
<ul>
<li class="MsoNormal">CIDR is a mechanism develops to help alleviate the problems of IP address exhaustion and routing table growth. The idea behind CIDR is that blocks of multiple Class C addresses can be combined or aggregated to create a larger classless set of IP addresses.</li>
<li class="MsoNormal">Blocks are summarized<span> </span>in routing tables</li>
</ul>
<h2>IP Unnumbered Interfaces</h2>
<ul>
<li class="MsoNormal">IP unnumbered interface enable IP processing on a      serial interface without assign an explicit address to the<span> </span>interface</li>
<li class="MsoNormal">Serial interface using HDLC, PPP, LAPB , FR and SLIP      can be unnumbered, but it is not possible with X.25 and SMDS</li>
<li class="MsoNormal">You cannot ping the interface, because has no      address, but you can use the SNMP to check the status of the interface.</li>
<li class="MsoNormal">Important: Using unnumbered serial interface line between two major networks requires a special care. If each end of the link there are different major networks assigned<span> </span>to the interfaces you specified as unnumbered then any routing protocol running across the serial line must not advertise subnet information.</li>
</ul>
<h3>Configuration example:</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>a.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Interface Ethernet 0</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>b.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Ip address 10.10.1.1 255.255.255.0</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>c.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Interface serial 0</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>d.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Ip unnumbered Ethernet 0</span></p>
<p class="MsoNormal" style="margin-left:1in;line-height:150%;"><span style="color:black;">Obs: Loopback is often used because is more stable interface because never goes down.</span></p>
<h2>Helper addresses</h2>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router do not forward broadcast by default, helper address provide selective connectivity to same broadcast.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Sometimes clients do not know the server address, helper address change local broadcast to unicast or directed broadcast to reach the server. By defaul the command IP DIRECTED BROADCAST is disable</span></p>
<h3>IP Helper commands:</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Under interface. Ip helper-address <em>ip address</em></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Under global. Ip forward-protocol UDP port/ND/SDNS</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">By default, when we enable the ip helper-address command, we forwarding the following UDP ports automatically :</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>a.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">TFTP – 69</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>b.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">DNS – 53</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>c.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Time – 37</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>d.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Netbios name service – 137</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>e.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Netbios datagram service – 138</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>f.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Bootp server – 67</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>g.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Bootp client – 68</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="color:black;"><span>h.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">TACACS – 49</span></p>
<p class="MsoNormal" style="margin-left:.25in;line-height:150%;"><span style="color:black;"> </span></p>
<p><strong><span style="font-size:13pt;line-height:115%;font-family:Cambria,serif;color:black;"><br />
</span></strong></p>
<h2>Configuring OSPF in a Single Area</h2>
<ul>
<li><!--[if !supportLists]--><span style="color:black;">OSPF is a link state technology, as oppose to a distance vector technology. The OSPF protocol performs the two basic primary functions of every routing algorithm : Path Selection and Path Switching.</span></li>
</ul>
<h2>Benefits of the OSPF</h2>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Fast convergence</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Supports VLSM</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Processes updates efficiently, only send updates when changes happen. Only send one update every 30 minutes to synchronize, but not every 30 seconds like RIP updates.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Selects path<span> </span>based on bandwidth is based on the cost which for the Cisco routers is based on the speed of the connection.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Supports equal-cost multipath</span></p>
<h2>OSPF in IP Packet</h2>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">OSPF is a link state routing protocol</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Relies on IP packet delivery routing information</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Use protocol number 89. ( Don’t use TCP or UDP)</span></p>
<h2>OSPF Terminology</h2>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Interface: The connection between the routers and the attached networks.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Link State: The status of the link between two routers, that is, a router interface and its relationship to its neighboring<span> </span>routers. The special packet used to advertise the link states is called LSA (Link State Advertisements)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Cost: The value assigned to a link . Rather than<span> </span>number of hops, link state protocol assign a cost to a link . For OSPF on Cisco router, the cost is based on the speed of the media, associated with the output side of each router interface, referred to as <em>Interface Output Cost</em>.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Autonomous System: A group of routers exchanging routing information using a common routing protocol</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Area: A collection of networks and routers that have the same area identification</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Neighbors: Two routers that have interfaces on a common network. A neighbor usually discovered and maintain by Hello protocol.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Hello: Protocol used by OSPF to establish and maintain neighbor relationships</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Neighborship database: A list of all the neighbors to which a router has established<span> </span>bi-directional communication. </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Link State Database: Also called topological database. Show the network topology</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Routing table: Also called forwarding database which is generated by the algorithm.</span></p>
<h2>OSPF Topologies</h2>
<h3>Broadcast Multiaccess Topology</h3>
<ul>
<li class="MsoNormal">Examples of operation in Broadcast environments are Ethernet or      Token Ring.</li>
<li class="MsoNormal">Hello packets are sent periodically using IP Multicast address      224.0.0.5</li>
<li class="MsoNormal"><em>Information in the hello packet</em>:</li>
<li class="MsoNormal">Router ID – 32 bits number that unique identifies the router within AS. The highest IP address on active interface is chosen by default. Also is used to decide the DR and BDR election processes if the priority values are equal.</li>
<li class="MsoNormal"><span>Hello</span> &#8211; Interval      for Broadcast Multiaccess networks is <span>10</span> seconds. <span>Dead      intervals is four times hello interval by default</span>.</li>
<li class="MsoNormal">Neighbors – Indicates when the router see itself<span> </span>listed in the neighbor hello packet</li>
<li class="MsoNormal"><span>Area ID</span> – Share      the common segment, should belong to the same are.</li>
<li class="MsoNormal">Router priority – An 8 bit number that indicates<span> </span>the priority<span> </span>of this router when selecting a      designated DR and BDR</li>
<li class="MsoNormal">DR and BDR IP Address – If known , will have the IP address of      the DR and BDR</li>
<li class="MsoNormal"><span>Authentication password</span> – If the authentication is enable, two routers must<span> </span>exchange the same password.      Authentication is not required, but if enable all peer must have the same      password.</li>
<li class="MsoNormal"><span>Stub area flag</span> –      Two routers must agree on the stub area flag in the hello packets.N</li>
</ul>
<p class="MsoBodyTextIndent" style="border:medium none;margin-left:0;line-height:150%;padding:0;"><span style="color:black;">All the parts of the Hello packet in bold must match in the neighboring.</span></p>
<ul>
<li class="MsoNormal">Hellos elect DR and BDR to represent segment</li>
<li class="MsoNormal">Each router then forms adjacency with DR and BDR</li>
<li class="MsoNormal">Priority to elect the DR and BDR</li>
</ul>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router with highest priority<span> </span>is the DR</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router with second highest priority is the BDR</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Default OSPF priority in the interface is 1. If all routers are using 1, the highest Router ID will become the DR. Usually the highest IP address on active interface is used as the router ID</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router set priority to Zero is ineligible to become the DR and BDR</span></p>
<ul>
<li class="MsoNormal">Exchange Process</li>
<li class="MsoNormal">Down state: Have not exchanged any route</li>
<li class="MsoNormal">Init state: When receive a hello packet and add the route of      the neighbor</li>
<li class="MsoNormal">Two-way state: At this point, all the router have the neighbor      in their list of neighbors.</li>
<li class="MsoNormal">Exstart state:</li>
<li class="MsoNormal">Exchange state:</li>
<li class="MsoNormal">Discovering Routes after DR and BDR have been elected start to      execute the EXCHANGE PROTOCOL:</li>
</ul>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Exstart state</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Exchange state</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Loading state</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Full state</span></p>
<h3>Maintain the routing information</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router use the flooding process</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router A notifies all OSPF DRs on 224.0.0.6</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">DR notifies others on 224.0.0.5</span></p>
<p class="MsoNormal" style="margin-left:1.75in;line-height:150%;"><span style="color:black;"> </span></p>
<h3>Point to point topology</h3>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router automatically detects its neighbor router using hello protocol</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">No election: Adjacency is automatic as soon as two routers can communicate </span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">OSPF packets are always sent multicast 224.0.0.5</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt .75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">The default OSPF hello and dead intervals on point to point topologies<span> </span>are 10 seconds and 40 seconds, respectively.</span></p>
<p class="MsoNormal" style="margin-left:.75in;line-height:150%;"><span style="color:black;"> </span></p>
<h3>Nonbroadcast Multiaccess Topology</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Single interface interconnects multiples sites</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">NBMA topologies support multiple routers but without broadcasting capabilities</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">The default OSPF hello and dead intervals on point to point topologies<span> </span>are 30 seconds and 120 seconds, respectively.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">By default , a frame relay network provides NBMA connectivity between remote sites. Routing updates have to be replicated by the routers</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">DR Selection in NBMA topology, OSPF considers NBMA to be like other broadcast media. DR and BDR need to have full physical connectivity with others routers. DR and BDR need a list of neighbors. </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">NBMA Modes:</span></p>
<p class="MsoNormal" style="margin-left:117pt;line-height:150%;"><span style="color:black;"> </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:150%;"><span class="Ttulo4Car">Nonbroadcast Multiaccess (NBMA)</span><span style="color:black;"> – <span>RFC</span> : Simulate OSPF in<span> </span>Broadcast Multiaccess . The routers exchange update traffic to identify their neighbors and elect DR ad BDR. This configuration seen in fully meshed networks. Some configuration, which will be described later in this lesson, is necessary on the router for this mode work properly. <span>( THE NEIGHBOR WILL HAVE TO BE CONFIGURED STATICALLY)</span> This process is CPU and Bandwidth intensive. </span></p>
<p class="MsoNormal" style="margin-left:.5in;line-height:150%;"><span style="color:black;"> </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:150%;"><span class="Ttulo4Car">Point to Multipoint</span><span style="color:black;"> – <span>RFC</span> : Treats the Nonbroadcast network as a collection of point to point links. In this environment, the routers identify their neighbors but not elect a DR and BDR. Subinterfaces, typically used in NBMA topologies can be point to point and point to multipoint. Subinterfaces were originally created to better handle issues caused by split horizon over NBMA and Distance vector protocols. Point to point subinterfaces has the properties of any physical point to point interface. Multipoint subinterfaces routing IP, all routers are in the same subnet. The default OSPF mode on a point to point subinterface is point to point mode; the default OSPF mode on a point to multipoint subinterface is NBMA mode.</span></p>
<h3>NBMA Mode Neighborship</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Usually full meshed </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">DR/BDR</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Neighbor must be statically configured</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">One IP subnet</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Stability of the network may be an issue</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Replicate LSA packets</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">RFC2328</span></p>
<p class="MsoNormal" style="margin-left:2.5in;line-height:150%;"><span style="color:black;"> </span></p>
<h3>Point to Multipoint</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Partially meshed or star topology</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">No DR/BDR</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Neighbors do not need to be statically configured, because the Point to Multipoint is threat as a collection of point to point.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">One IP Subnet</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Replicate LSA packets</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">RFC2328</span></p>
<p class="MsoNormal" style="margin-left:1.75in;line-height:150%;"><span style="color:black;"><span> </span></span></p>
<p class="MsoListParagraphCxSpFirst" style="margin-left:0;line-height:150%;"><span class="Ttulo4Car">Point to Multipoint NBMA – Cisco</span><span style="color:black;"><span> </span>It is an extension of the RFC and with this mode statically define neighbors , can modify, if necessary, the cost of the link to the neighbor to reflect the different bandwidth in each link. The RFC was develop to allow dynamic neighbor discovery, however some point to multipoint networks use non broadcast media (such as classic IP over ATM) and therefore cannot use the RFC mode because the router cannot dynamically discover its neighbors</span></p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:0;line-height:150%;"><span style="color:black;"> </span></p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:0;line-height:150%;"><span class="Ttulo4Car">Broadcast &#8211; Cisco</span> <span> </span>This approach is workaround for statically listing all existing neighbors. The interface will be logically set to broadcast and will behave as if router were connected to a LAN. DR and BDR election still be performed and a Static selection of the DR based on the interface priority.</p>
<p class="MsoListParagraphCxSpLast" style="margin-left:0;line-height:150%;"><span class="Ttulo4Car">Point to Point – Cisco</span><span> </span><span style="color:black;">The point to point mode is used when only two nodes exist on NBMA network. This mode is typically only used with point to point subinterfaces. Each point to point connection is one ip subnet. There is no DR and BDR.</span></p>
<h3>Configuring OSPF</h3>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router ospf<span> </span><em>ID-Process</em></span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Network <em>ip prefix wild mask</em><span> </span>area <em>number</em></span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Int level – IP ospf priority <em>(0-255) </em>Default is 1 and 0 define that cannot be elect as DR or BDR</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Int level – Ip ospf cost <em><span>cost (default is 1 for 100Mbps)</span></em></span></p>
<h3>Configurinf OSPF over NBMA</h3>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">(config-int) ip ospf network non-broadcast <span>(NBMA Mode)</span></span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">(config-int) ip ospf network point-to-multipoint <span>(Point to Multipoint mode)</span></span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">(config-int) ip ospf network broadcast <span>(Broadcast Mode)</span></span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">(config-int) ip ospf network point-to-point <span>(Point to Point mode)</span></span></p>
<h3>Verify OSPF Operation</h3>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ip route</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ip protocols</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ip ospf interface (Display area-id and adjacente)</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ip ospf (Display OSPF timers and statistics)</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ip ospf neighbor detail (Display DR, BDR and neighbor)</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Clear ip route *</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Debug ip ospf (options: events, flood, packet, retransmission, spf, tree)</span></p>
<p><strong><span style="font-size:13pt;line-height:150%;font-family:Cambria,serif;color:#4f81bd;"><br />
</span></strong></p>
<h2>Interconnecting Multiple OSPF Areas</h2>
<h3>OSPF Hierarchical Routing</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Consists of areas and autonomous systems</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Minimizes routing update traffic</span></p>
<h3>Type of Routers</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Internal Routers</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ABR – Area Border Routers</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ASBR – Autonomous Systems Boundary Router</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Backbone Routers</span></p>
<h3>Type of LSA</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Type 1: Router link entry – Only flooded within the particular area</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Type 2: Router network entry &#8211; Only flooded within the particular area generated by DRs</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Type 3 and 4: Summary link entry – Originated by ABRs. Type 3 LSA describe routes to networks within the local area and are sent to backbone area. Type 4 LSA describe reachability to ABSRs.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Type 5: External link entry – Originated by the ASBR. These entries are flooded throughout an OSPF<span> </span>autonomous system except for STUB, TOTALLY STUB and NOT SO STUBBY AREAS.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Type 6: Group membership entry</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Type 7: Not So Stub Area (NSSA). Similar to Type 5, but only flooded within the NSSA. </span></p>
<h3>Type of Areas</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Stub Area – Does not accept external LSAs</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Totally Stubby Area – Does not accept external or summary LSAs</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Backbone Area – Interconnect all areas, accept all LSAs</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Standard Area – Configuring as Single area</span></p>
<h3>Virtual Link</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Backbone is the center of communications</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Virtual link provide path to backbone</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Avoid configuring virtual link if possible</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Link discontiguous backbone: merge networks, redundancy, point to point</span></p>
<p><strong><span style="font-size:13pt;line-height:150%;font-family:Cambria,serif;color:#4f81bd;"><br />
</span></strong></p>
<h2>Configuring ISIS Protocol</h2>
<h2>OSI Protocols Terminology</h2>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ES (Host)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">IS (Router)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Area (former by contiguous hosts and routers)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Domain is a collection of connected areas</span></p>
<h3>There are two types of network layer are available to the OSI transport layer:</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">CLNS/CLNP </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">CMNS/CONP</span></p>
<h3>OSI Network Services Routing Protocols</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ES-IS discovery protocols: routing between ES<span> </span>and IS (level 0)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">IS-IS routing protocols: hierarchical routing between IS (Level 1, 2 and 3)</span></p>
<h3>OSI router in operation</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ESs discover the nearest IS by listening to ISH (hello) packets</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">If the destination address of the ES<span> </span>is another area,<span> </span>level 1 router send to the nearest Level 2 router</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Routing between different domain is level 3 routing</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Routing between different areas in the same domain is level 2 routing</span></p>
<h3>ISIS Routing</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ISIS is a dynamic link state routing protocol to routing CLNP</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Alternative to ISIS protocols is deploying CISCO ISO-IGRP and Static Routing</span></p>
<h3>Integrated ISIS vs OSPF</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Integrated ISIS is an extended version of the ISIS for mixed ISO CLNS and IP environments</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Integrated ISIS represents an alternative to OSPF in the IP world</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Integrated ISIS and OSPF both are Link State Protocol:</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Link state representation, aging, metrics</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Link state database</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Update, decision and flooding processes</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Area Design</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">OSPF is based on central backbone with other areas being attached to it</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Each link belongs to one area</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ISIS router belongs to exactly one level 2 area</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ISIS allows a more flexible approach to extending the backbone (at least 1000 routers can reside in a single area)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Resource usage</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">One link state packet<span> </span>per ISIS router in one area compared to many LSAs. ISIS needs less CPU</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Scalability</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Convergence capabilities are similar. Based on the default timers, ISIS is quicker than OSPF. ISIS tends to be less CPU intensive than OSPF.</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.75in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span>§<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">OSPF has more features</span></p>
<h3>Operation ISIS</h3>
<ul>
<li class="MsoNormal">The <span>OSI addressing</span> is      implemented with NSAP</li>
<li class="MsoNormal">ISIS-NSAP address is Area address, System ID and N-Selctor</li>
<li class="MsoNormal">Total length of NSAP from 8 up to 20, the area field from 1 to 13.</li>
<li class="MsoNormal">ISO-IGRP NSAP is Area Address, domain, System ID and N-selector</li>
<li class="MsoNormal">ISO-IGRP requires at least 10 bytes, domain from 1 to 11 and area 2 octes, 6 for System ID and 1 for N-Selector (is ignored by ISO IGRP)</li>
<li class="MsoNormal"><span>NET Addressing</span><span> </span>is a NSAP address with service identifier of 00, used in routers to identify themselves in the LSPs and used for route calculation since they implement network layer only (base for SPF calculation)</li>
<li class="MsoNormal"><span>AFI=49 is for private addresses      and AFI values from 39 to 47<span> </span>represent the ISO Data Country Code.</span></li>
<li class="MsoNormal"><span>AREA address uniquely<span> </span>identifies the routing area and the      System ID identifies each node.</span></li>
<li class="MsoNormal"><span>ES must be adjacency to      level 1 router.</span></li>
<li class="MsoNormal"><span>The System ID must be unique inside the area for level 1 router a unique for domain in level 2 routers. Usually is used MAC address for CLNS and IP for Integrated ISIS</span></li>
</ul>
<h3>ISO ISIS PDU (Protocol Data Unit)</h3>
<ul>
<li><!--[if !supportLists]--><!--[endif]--><span style="color:black;">ISIS header 0×83</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="color:black;">ESIS header 0×82</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="color:black;">CLNP header 0×81</span></li>
</ul>
<h3>The link state Packets Network representations are available in two modes:</h3>
<ul>
<li><!--[if !supportLists]--><span style="color:black;">Broadcast – LANs</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="color:black;">Nonbroadcast – Media type must be address ES and are typically WAN</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="color:black;">The representations are: Broadcast for LANs and Point to Point to all other medias</span></li>
</ul>
<h3>Link state packets</h3>
<ul>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router describe itself with Link State Packet (LSP)</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">LSP contains LSP header ( with PDU type, Length , LSP ID, Sequence number, remaining lifetime – default 1200) and TLV (IS neighbor, ES neighbor, authentication information) variable fields</span></li>
<li><!--[if !supportLists]--><span style="color:black;">The default sequence number is set initially to 1</span></li>
<li class="MsoNormal">For Broadcast Media, is required a virtual router (pseudonode) for broadcast media to build a direct graph. For this reason, DIS (Designated IS) is elected by priority and the highest MAC address.</li>
<li class="MsoNormal">There are four types of metrics associated with <strong>outgoing      interface</strong>, Delay, default, expense and error, but Cisco only implement      <strong>DEFAULT</strong></li>
</ul>
<h3>Structure of routers</h3>
<ul>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Level 1 – Responsible for intra area routing. Has only intra area information database.</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Level ½ &#8211; Perform intra and inter area routing. Has only inter area information</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Level 2 – Perform inter area only. Router keeps two separate copies of Link State databases.L1 and L2 databases and inform L1 about exit point.</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">L1 area is a collection of L1 and L1/L2 routers</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">L2 area is a collection of L2 and L1/L2 routers (backbone area and has to be contiguous)</span></li>
</ul>
<h3>L1, L2 and L1/L2 LSP features</h3>
<ul>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">LSP sent to unicast address on point to point and multicast address on broadcast networks.</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">L1 and L2 require a separate types of link state packets</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Designated IS is a representative of LAN and perform additional duties: Pseudo Level 1 and 2 LSPs and separate DIS for L1/L2. <strong>NO BACKUP DIS</strong></span></li>
<li class="MsoNormal">There are 3 types of hello messages: ESH (between ES and IS), ISH      (sent by IS to ES) and IIH (between ISs)</li>
</ul>
<h3>ISIS and ESIS communication</h3>
<ul>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ISIS exchange LSPs</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ES<span> </span>listen to IS Hellos to find their world</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Initially the ES picks a router randomly (whichever is heard)</span></li>
<li><span style="color:black;">HELLOS sent every 10 seconds, holdtime 30 seconds (default)</span></li>
</ul>
<h3>Link State Database Synchornization</h3>
<ul>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">SNP (Sequence Number PDU)</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">PSNP (partial) </span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">For ack of LSPs on point to point</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">To request missing pieces of link state database</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">CSNP (Complete)</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Sent periodically by DIS on LAN to ensure reliability</span></li>
<li><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">On point to point<span> </span>link when startup</span></li>
<li><!--[if !supportLists]--><span style="font-family:Symbol;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Integrated ISIS allow 3 types of<span> </span>routing domain : OSI, IP, DUAL.</li>
<li><!--[if !supportLists]--><span style="font-family:Symbol;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Integrated ISIS has all the features of any modern routing protocol, like VLSM, Redistribution and Summarization.</li>
<li><!--[if !supportLists]--><span style="font-family:Symbol;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Configuration, even if we are going to use only IP, still necessary configure the common CLNS parameters (NET), because routers still establish CLNS adjacencies and SPF calculation and use CLNS packets</li>
</ul>
<h3>Interconnecting ISIS domains:</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">In pure IP use BGP</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">In pure CLNS use ISO-IGRP or Static route</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">IDRP (Cisco does not support)</span></p>
<h3>Verify Commands:</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ISIS topology (Display the least cost path to the destination)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show CLNS route (Display de CLNS destinations)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show ISIS route (Display the level-1 routers to ISIS neighbors</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show CLNS</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show CLNS Protocol</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show CLNS Interface</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show CLNS neighbor</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show isis route</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show clns route</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Show isis database</span></p>
<h3>Basic Integrated route configuration</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Define areas, </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Command: router isis</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Command: clns routing</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Command: net <em>address</em></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Command: ip router isis</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:'Times New Roman',serif;color:black;"><span>-<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Command clns router isis</span></p>
<h3>Modeling WAN Networks</h3>
<ul>
<li class="MsoNormal">Integrated ISIS over WAN</li>
<li class="MsoNormal">3 types: Point to point circuits, Dialup (Avoid ISIS) and      Switched WAN (NBMA)</li>
<li class="MsoNormal">Configuring ISIS over Switched WAN</li>
</ul>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Don’t use<span> </span>the broadcast model on NBMA clouds</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ISIS can only work over NBMA clouds configured with a full mesh.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">You should avoid use point to multipoint, use point to point sub interface instead.</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Wingdings;color:black;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Alternatively, as Integrated IS-IS uses CLNS packets for its routes propagation, ip unnumbered can be used on point to point interfaces</span></p>
<ul>
<li class="MsoNormal">Configuration Steps in ISIS NBMA</li>
<li class="MsoNormal">Configure subinterfaces point to point</li>
<li class="MsoNormal">Assign appropriated VC and Address (CLNS and IP)</li>
<li class="MsoNormal">Define Mapping</li>
<li class="MsoNormal">Start ISIS on a subinterface</li>
</ul>
<p><strong><span style="font-size:13pt;line-height:115%;font-family:Cambria,serif;color:black;"><br />
</span></strong></p>
<h2>Configuring EIGRP</h2>
<h3>EIGRP Supports:</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Rapid convergence</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Reduced bandwidth usage</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Multiple network layer protocols</span></p>
<h3>EIGRP Features</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Advanced distance vector</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">100% loop free</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Fast convergence</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Easy configuration</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Less network design constraints than OSPF</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Incremental updates</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Support VLSM and discontiguous network</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Classless routing</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">VLSM </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Hierarchical design</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Compatible with existing IGRP networks</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Protocol independent (support IPX and Appletalk)</span></p>
<h3>Advantages of the EIGRP over Distance Vector Routing Protocol</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Use Multicast instead broadcast</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Utilizes bandwidth and delay</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">EIGRP = IGRP metric X 256</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Unequal cost path load balancing</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">More flexible than OSPF</span></p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Manual summarization can be done in any interface at any router within the network</span></p>
<h3>EIGRP is advanced distance vector routing protocol</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Protocol number is 88 (6-TCP, 17-UDP)</span></p>
<h3>EIGRP Topologies</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Multiaccess (LANs)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Point to point (HDLC)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">NBMA (Frame Relay)</span></p>
<h3>EIGRP Terminology</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Neighbor table (Next hop , interface)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Topology table (Successor and Feasible Successor)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Routing table</span></p>
<h3>EIGRP Operation</h3>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Hello packet</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Update packet</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Query packet (ask neighbor about routing information)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Reply packet (response to query)</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">ACK (acknowledgement of a reliable packet)</span></p>
<h3>EIGRP Neighbor Relationship</h3>
<p class="MsoListParagraphCxSpFirst" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Hello packet<span> </span>= 224.0.0.10</p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Hello packet sent every 5 seconds on the following links:</p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Broadcast media: Ethernet, Token Ring, FDDI</p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Point to point: PPP, HDLC, Frame Relay/ATM subinterfaces</p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Multipoint circuits with bandwidth greater than T1: ISDN PRI, SMDS, Frame Relay</p>
<p class="MsoListParagraphCxSpLast" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Hello sent every 60<span> </span>seconds on the following links:</p>
<p class="MsoNormal" style="text-indent:-9pt;line-height:150%;margin:0 0 .0001pt 1.5in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Mulitpoint with bandwidth less than or equal to T1: ISDN BRI, Frame Relay, SMDS, and so on</span></p>
<p class="MsoListParagraphCxSpFirst" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->Hold time by default is 3 times the hello time</p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->EIGRP will not form neighbor if K-values are mismatched</p>
<p class="MsoListParagraphCxSpMiddle" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->EIGRP will not form neighbor if AS numbers are mismatched</p>
<p class="MsoListParagraphCxSpLast" style="margin-left:.75in;text-indent:-.25in;line-height:150%;"><!--[if !supportLists]--><span style="font-family:Symbol;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]-->EIGRP will form even the hold down time and hello time are different.</p>
<p><strong><span style="font-size:13pt;line-height:150%;font-family:Cambria,serif;color:#4f81bd;"><br />
</span></strong></p>
<h2>Configuring Basic BGP</h2>
<h3>BGP Overview</h3>
<ol>
<li> AS is a collection of networks under a single technical       administration</li>
<li>IGPs operate within an AS</li>
<li>IGPs connect different Ass</li>
<li>AS is designated by 16 bits in range from 1 to 65535. A range       of private AS are from 64512 through 65535.</li>
<li>IGP is used between AS and guarantee exchange of loop free       routing information.</li>
<li>IGP is an Advanced Distance Vector with many enhancements</li>
<li>IGP use Path Vector or Attributes as Metric</li>
</ol>
<h3>When to use BGP</h3>
<ol>
<li> AS allow packets to transit through it reach other autonomous       systems</li>
<li>AS has multiple connections to other AS</li>
<li>The flow of traffic entering and leaving your AS must be       manipulated</li>
<li>And the effect of BGP are well understood. If the BGP not controlled and filtered properly, has the potential to allow an outside AS to affect your routing decisions.</li>
</ol>
<h3>How big is the Internet?</h3>
<ol>
<li>Over 100,000 BGP routes</li>
<li>Over 10,000 AS numbers</li>
<li>A routing table that uses more than 30Mb</li>
</ol>
<h3>When BGP is not appropriate</h3>
<ol>
<li> A single connection to Internet</li>
<li>Routing Policy and route selection are not<span> </span>a concern for your AS</li>
<li>Rack of memory or processor power on BGP routers to handle       constant updates</li>
<li>Limited understanding of route filtering and BGP path selection</li>
<li>Low bandwidth between AS</li>
<li>USE STATIC ROUTE INSTEAD</li>
<li>COMMAND: ip route <em>prefix mask address/interface [distance]</em></li>
</ol>
<h4>RIP Static Route Example:</h4>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Ip route 0.0.0.0 0.0.0.0 S0</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router rip </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;"><span> </span>Network 172.16.0.0</span></p>
<h4>OSPF example</h4>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Ip route 0.0.0.0 0.0.0.0 S0</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;">Router ospf 111</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;"><span> </span>Network 176.16.0.0 0.0.255.255<span> </span>area 0</span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 .0001pt 1.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;color:black;"><span>·<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span><!--[endif]--><span style="color:black;"><span> </span>default-information originate <strong>always</strong> – this command propagate a default route into OSPF routing domain. The <strong>always</strong> cause the default route to be always advertised whether or not the router has a the path up.</span></p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dreamccie.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dreamccie.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dreamccie.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dreamccie.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dreamccie.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dreamccie.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dreamccie.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dreamccie.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=6&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dreamccie.wordpress.com/2008/10/15/bsci-summary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca8811fd3ff5808071a278258d9578b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ensit</media:title>
		</media:content>
	</item>
		<item>
		<title>Nuggets EIGRP Configurations</title>
		<link>http://dreamccie.wordpress.com/2008/10/15/nuggets-eigrp-configurations/</link>
		<comments>http://dreamccie.wordpress.com/2008/10/15/nuggets-eigrp-configurations/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 12:46:42 +0000</pubDate>
		<dc:creator>ensit</dc:creator>
				<category><![CDATA[EIGRP]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[nuggets]]></category>

		<guid isPermaLink="false">http://dreamccie.wordpress.com/?p=3</guid>
		<description><![CDATA[Running Configuration of Router R2 R2#sh run Building configuration&#8230; Current configuration : 1262 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R2 ! boot-start-marker boot-end-marker ! enable secret 5 $1$zzdc$mGQ0gxF1iuSfVAvy35WiQ. ! no aaa new-model ip subnet-zero ! ! ip domain name dhakatel.com ! ip [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=3&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://3.bp.blogspot.com/_hgmcx8mikKw/SNJbJScV6LI/AAAAAAAAAJs/TiS2EarVkic/s1600-h/drawing1nc2.jpg"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://3.bp.blogspot.com/_hgmcx8mikKw/SNJbJScV6LI/AAAAAAAAAJs/TiS2EarVkic/s400/drawing1nc2.jpg" border="0" alt="" /></a><br />
<span style="font-size:large;"><strong></p>
<p>Running Configuration of Router R2</strong></span></p>
<p>R2#sh run<br />
Building configuration&#8230;</p>
<p>Current configuration : 1262 bytes<br />
!<br />
version 12.3<br />
service timestamps debug datetime msec<br />
service timestamps log datetime msec<br />
no service password-encryption<br />
!<br />
hostname R2<br />
!<br />
boot-start-marker<br />
boot-end-marker<br />
!<br />
enable secret 5 $1$zzdc$mGQ0gxF1iuSfVAvy35WiQ.<br />
!<br />
no aaa new-model<br />
ip subnet-zero<br />
!<br />
!<br />
ip domain name dhakatel.com<br />
!<br />
ip cef<br />
ip audit po max-events 100<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
username test password 0 ensit<br />
!<br />
!<br />
ip ssh time-out 10<br />
ip ssh authentication-retries 5<br />
!<br />
!<br />
!<br />
!<br />
!<br />
interface FastEthernet0/0<br />
bandwidth 200000<br />
ip address 10.1.2.2 255.255.255.0<br />
duplex auto<br />
speed auto<br />
!<br />
interface FastEthernet0/1<br />
ip address 10.1.3.2 255.255.255.0<br />
duplex auto<br />
speed auto<br />
!<br />
interface Serial1/0<br />
bandwidth 2000<br />
ip address 10.1.24.1 255.255.255.252<br />
serial restart-delay 0<br />
clock rate 64000<br />
!<br />
interface Serial1/1<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
interface Serial1/2<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
interface Serial1/3<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
router eigrp 1<br />
network 10.1.3.0 0.0.0.255<br />
network 10.1.24.0 0.0.0.3<br />
network 10.0.0.0<br />
no auto-summary<br />
!<br />
ip http server<br />
no ip http secure-server<br />
ip classless<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
alias exec siib show ip inter bri<br />
alias exec sip show ip proto<br />
alias exec sir show ip route<br />
!<br />
line con 0<br />
line aux 0<br />
line vty 0 4<br />
login local<br />
transport input ssh<br />
!<br />
!<br />
end</p>
<p><span style="font-size:large;"><strong>Running Configuration of Router R3</strong></span></p>
<p>R3#sh run<br />
Building configuration&#8230;</p>
<p>Current configuration : 1357 bytes<br />
!<br />
version 12.3<br />
service timestamps debug datetime msec<br />
service timestamps log datetime msec<br />
service password-encryption<br />
!<br />
hostname R3<br />
!<br />
boot-start-marker<br />
boot-end-marker<br />
!<br />
enable secret 5 $1$FBAb$aetsSzh6sHJdcldJ/zAec0<br />
!<br />
no aaa new-model<br />
ip subnet-zero<br />
!<br />
!<br />
ip domain name dhakatel.com<br />
!<br />
ip cef<br />
ip audit po max-events 100<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
username test password 7 030155180F1B<br />
!<br />
!<br />
ip ssh time-out 10<br />
!<br />
!<br />
!<br />
!<br />
!<br />
interface Loopback0<br />
ip address 172.30.0.1 255.255.255.0<br />
!<br />
interface Loopback1<br />
ip address 172.30.1.1 255.255.255.0<br />
!<br />
interface Loopback2<br />
ip address 172.30.2.1 255.255.255.0<br />
!<br />
interface FastEthernet0/0<br />
ip address 10.1.2.3 255.255.255.0<br />
duplex auto<br />
speed auto<br />
!<br />
interface FastEthernet0/1<br />
no ip address<br />
shutdown<br />
duplex auto<br />
speed auto<br />
!<br />
interface Serial1/0<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
interface Serial1/1<br />
ip address 10.1.34.1 255.255.255.252<br />
serial restart-delay 0<br />
!<br />
interface Serial1/2<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
interface Serial1/3<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
router eigrp 1<br />
network 10.1.34.0 0.0.0.7<br />
network 10.0.0.0<br />
no auto-summary<br />
!<br />
ip http server<br />
no ip http secure-server<br />
ip classless<br />
ip route 10.0.0.0 255.0.0.0 10.1.3.0<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
alias exec siib show ip inter bri<br />
alias exec sip show ip proto<br />
alias exec sir show ip route<br />
!<br />
line con 0<br />
line aux 0<br />
line vty 0 4<br />
login local<br />
transport input ssh<br />
!<br />
!<br />
end</p>
<p><span style="font-size:large;">[<strong>Running Configuration of Router BB</strong></span></p>
<p>BB#sh run<br />
Building configuration&#8230;</p>
<p>Current configuration : 1167 bytes<br />
!<br />
version 12.3<br />
service timestamps debug datetime msec<br />
service timestamps log datetime msec<br />
no service password-encryption<br />
!<br />
hostname BB<br />
!<br />
boot-start-marker<br />
boot-end-marker<br />
!<br />
enable secret 5 $1$ocJQ$0aRgwXPdjaizENXNCn710.<br />
!<br />
no aaa new-model<br />
ip subnet-zero<br />
!<br />
!<br />
ip domain name dhakatel.com<br />
!<br />
ip cef<br />
ip audit po max-events 100<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
username test password 0 ensit<br />
!<br />
!<br />
ip ssh time-out 10<br />
!<br />
!<br />
!<br />
!<br />
!<br />
interface FastEthernet0/0<br />
no ip address<br />
shutdown<br />
duplex auto<br />
speed auto<br />
!<br />
interface FastEthernet0/1<br />
no ip address<br />
shutdown<br />
duplex auto<br />
speed auto<br />
!<br />
interface Serial1/0<br />
ip address 10.1.24.2 255.255.255.252<br />
serial restart-delay 0<br />
!<br />
interface Serial1/1<br />
ip address 10.1.34.2 255.255.255.252<br />
serial restart-delay 0<br />
clock rate 64000<br />
!<br />
interface Serial1/2<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
interface Serial1/3<br />
no ip address<br />
shutdown<br />
serial restart-delay 0<br />
!<br />
router eigrp 1<br />
network 10.1.24.0 0.0.0.3<br />
network 10.1.34.0 0.0.0.7<br />
auto-summary<br />
!<br />
ip http server<br />
no ip http secure-server<br />
ip classless<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
!<br />
alias exec siib show ip inter bri<br />
alias exec sip show ip proto<br />
alias exec sir show ip route<br />
!<br />
line con 0<br />
line aux 0<br />
line vty 0 4<br />
login local<br />
transport input ssh<br />
!<br />
!<br />
end</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dreamccie.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dreamccie.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dreamccie.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dreamccie.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dreamccie.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dreamccie.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dreamccie.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dreamccie.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=3&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dreamccie.wordpress.com/2008/10/15/nuggets-eigrp-configurations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca8811fd3ff5808071a278258d9578b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ensit</media:title>
		</media:content>

		<media:content url="http://3.bp.blogspot.com/_hgmcx8mikKw/SNJbJScV6LI/AAAAAAAAAJs/TiS2EarVkic/s400/drawing1nc2.jpg" medium="image" />
	</item>
		<item>
		<title>OSPF Basics</title>
		<link>http://dreamccie.wordpress.com/2008/10/14/ospf-basics/</link>
		<comments>http://dreamccie.wordpress.com/2008/10/14/ospf-basics/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 09:20:11 +0000</pubDate>
		<dc:creator>ensit</dc:creator>
				<category><![CDATA[OSPF]]></category>

		<guid isPermaLink="false">http://dreamccie.wordpress.com/?p=111</guid>
		<description><![CDATA[The OSPF network command is used to activate OSPF on the specified interfaces. Specifying an interface with the command will include the interface into the OSPF routing process. On broadcast and point-to-point network types, the router will automatically start the neighbor discovery process by sending hello packets to the AllSPFRouters multicast address (224.0.0.5) after an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=111&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="snap_preview">
<p>The OSPF network command is used to activate OSPF on the specified interfaces. Specifying an interface with the command will include the interface into the OSPF routing process. On broadcast and point-to-point network types, the router will automatically start the neighbor discovery process by sending hello packets to the AllSPFRouters multicast address (224.0.0.5) after an interface has been integrated into the OSPF process.</p>
<p><a href="http://ccie20728.files.wordpress.com/2008/08/ospf-network-command.gif"><img class="alignnone size-full wp-image-120" src="http://ccie20728.files.wordpress.com/2008/08/ospf-network-command.gif?w=591&#038;h=231&#038;h=231" alt="" width="591" height="231" /></a></p>
<p>If there’s another OSPF router on that link and their Hello packets match, they will try to form an adjacency but that’s another story.</p>
<p>The OSPF network command uses the following syntax:</p>
<p style="padding-left:30px;"><span class="content"><strong class="cCN_CmdName">network </strong><em class="cArgument">ip-address wildcard-mask</em> <strong class="cCN_CmdName">area</strong> <em class="cArgument">area-id</em></span></p>
<p class="pNF_NumFirst">The usage of the ip address and the wildcard mask allows us to specify one or multiple interfaces with one statement and assign them to the specified OSPF area. The Cisco IOS software sequentially evaluates the <em class="cArgument">ip-addres</em>s <em class="cArgument">wildcard-mask</em> pair for each interface as follows: <span class="content"> <a name="wp1013409"></a></span></p>
<p style="padding-left:30px;"><strong>1. </strong>The <em class="cArgument">wildcard-mask </em>argument is logically ORed with the interface IP address.<strong><br />
2. </strong>The <em class="cArgument">wildcard-mask </em>argument is logically ORed with the <span style="font-style:italic;font-weight:normal;color:black;">ip-</span><em class="cArgument">address </em>argument<em class="cArgument"> </em>in the <strong class="cBold">network</strong> command. <strong><br />
3. </strong>The software compares the two resulting values. If they match, OSPF is enabled on the associated interface and this interface is attached to the OSPF area specified.<span class="content"><a name="wp1013410"></a> <a name="wp1013411"></a></span></p>
<p>When enabling OSPF on interfaces you got three different options to do so:</p>
<p style="padding-left:30px;"><strong>1. The definition of only one interface</strong><br />
Definitions of only one interface are done with a wildcard-mask of 0.0.0.0 and the exact IP address of the given interface. This will match exact on that interface and nothing else.</p>
<p style="padding-left:30px;"><strong>2. The definition of mutiple but not all interfaces into one area</strong><br />
If you have to specify multiple interfaces and the IP concept has been done nicely, you might be able to summarize them all into one network statement. So if we have an address range like 116.1.16.0/21 which belongs to area N we can use <strong>network</strong> 116.1.16.0 0.0.7.255 <strong>area</strong> N to define them in one network statement. Every new interface on that router with an IP in that range will automatically be added into the OSPF process and added to that area.</p>
<p style="padding-left:30px;"><strong>3. The definition of all interfaces into one area</strong><br />
If you want to specify all interfaces on the router, the network statement <strong>network</strong> 0.0.0.0 255.255.255 <strong>area</strong> N will do the trick. Every new interface with an IP address on the router will automatically join OSPF and this area.</p>
<p>In older IOS versions the order in which the OSPF network statements have been configured if the area definitions have been overlapping. Nowadays Cisco IOS still doesnt allow an interface to be in more then one area:</p>
<p style="padding-left:30px;"><em><span class="content">Any individual interface can only be attached to a single area. If the address ranges specified for different areas overlap, the software will adopt the first area in the <strong class="cBold">network</strong> command list and ignore the subsequent overlapping portions. In general, we recommend that you configure address ranges that do not overlap in order to avoid inadvertent conflicts.</span></em></p>
<p>but its not a problem any more in what order the statements got configured. The Cisco IOS will automatically reorder the network statements and places the most specific statements at the top and the least specific at the bottom. The following example will show this behavior:</p>
<div class="dp-highlighter">
<div class="bar">
<div class="tools"><a href="http://ccie20728.wordpress.com/2008/08/08/ospf-network-command/#">view plain</a><a href="http://ccie20728.wordpress.com/2008/08/08/ospf-network-command/#">copy to clipboard</a><a href="http://ccie20728.wordpress.com/2008/08/08/ospf-network-command/#">print</a></div>
</div>
<ol class="dp-css">
<li class="alt"><span><span>R</span><span class="value">6</span><span>(config)#do sh ip int brief | e una </span></span></li>
<li><span>Interface                  IP-Address      OK? Method Status                Protocol </span></li>
<li class="alt"><span>FastEthernet<span class="value">0/0</span><span> </span><span class="value">116.1</span><span>.</span><span class="value">100.6</span><span> YES manual up                    up </span></span></li>
<li><span>FastEthernet<span class="value">0/1</span><span> </span><span class="value">116.1</span><span>.</span><span class="value">99.6</span><span> YES manual up                    up </span></span></li>
<li class="alt"><span>Loopback<span class="value">0</span><span> </span><span class="value">99.99</span><span>.</span><span class="value">6.6</span><span> YES manual up                    up </span></span></li>
<li><span> </span></li>
<li class="alt"><span>R<span class="value">6</span><span>(config)</span><span class="value">#router</span><span> ospf </span><span class="value">1</span><span> </span></span></li>
<li><span>R<span class="value">6</span><span>(config-router)</span><span class="value">#networ</span><span>k </span><span class="value">0.0</span><span>.</span><span class="value">0.0</span><span> </span><span class="value">0.0</span><span>.</span><span class="value">0.0</span><span> area </span><span class="value">20</span><span> </span></span></li>
<li class="alt"><span>R<span class="value">6</span><span>(config-router)</span><span class="value">#networ</span><span>k </span><span class="value">116.1</span><span>.</span><span class="value">0.0</span><span> </span><span class="value">0.0</span><span>.</span><span class="value">255.255</span><span> area </span><span class="value">10</span><span> </span></span></li>
<li><span>R<span class="value">6</span><span>(config-router)</span><span class="value">#networ</span><span>k </span><span class="value">116.1</span><span>.</span><span class="value">99.6</span><span> </span><span class="value">0.0</span><span>.</span><span class="value">0.0</span><span> area </span><span class="value">0</span><span> </span></span></li>
<li class="alt"><span> </span></li>
<li><span>R<span class="value">6</span><span>#sh run | sec router ospf </span></span></li>
<li class="alt"><span>router ospf <span class="value">1</span><span> </span></span></li>
<li><span>log-adjacency-changes </span></li>
<li class="alt"><span>network <span class="value">116.1</span><span>.</span><span class="value">99.6</span><span> </span><span class="value">0.0</span><span>.</span><span class="value">0.0</span><span> area </span><span class="value">0</span><span> </span></span></li>
<li><span>network <span class="value">116.1</span><span>.</span><span class="value">0.0</span><span> </span><span class="value">0.0</span><span>.</span><span class="value">255.255</span><span> area </span><span class="value">10</span><span> </span></span></li>
<li class="alt"><span>network <span class="value">0.0</span><span>.</span><span class="value">0.0</span><span> </span><span class="value">255.255</span><span>.</span><span class="value">255.255</span><span> area </span><span class="value">20</span><span> </span></span></li>
<li><span> </span></li>
<li class="alt"><span>R<span class="value">6</span><span>#sh ip ospf int | i is up|Area </span></span></li>
<li><span>FastEthernet<span class="value">0/1</span><span> is up, line protocol is up </span></span></li>
<li class="alt"><span>Internet Address <span class="value">116.1</span><span>.</span><span class="value">99.6</span><span>/</span><span class="value">24</span><span>, Area </span><span class="value">0</span><span> </span></span></li>
<li><span>FastEthernet<span class="value">0/0</span><span> is up, line protocol is up </span></span></li>
<li class="alt"><span>Internet Address <span class="value">116.1</span><span>.</span><span class="value">100.6</span><span>/</span><span class="value">24</span><span>, Area </span><span class="value">10</span><span> </span></span></li>
<li><span>Loopback<span class="value">0</span><span> is up, line protocol is up </span></span></li>
<li class="alt"><span>Internet Address <span class="value">99.99</span><span>.</span><span class="value">6.6</span><span>/</span><span class="value">24</span><span>, Area </span><span class="value">20</span><span> </span></span></li>
</ol>
</div>
<pre class="css" style="display:none;">R6(config)#do sh ip int brief | e una
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            116.1.100.6     YES manual up                    up
FastEthernet0/1            116.1.99.6      YES manual up                    up
Loopback0                  99.99.6.6       YES manual up                    up

R6(config)#router ospf 1
R6(config-router)#network 0.0.0.0 0.0.0.0 area 20
R6(config-router)#network 116.1.0.0 0.0.255.255 area 10
R6(config-router)#network 116.1.99.6 0.0.0.0 area 0

R6#sh run | sec router ospf
router ospf 1
log-adjacency-changes
network 116.1.99.6 0.0.0.0 area 0
network 116.1.0.0 0.0.255.255 area 10
network 0.0.0.0 255.255.255.255 area 20

R6#sh ip ospf int | i is up|Area
FastEthernet0/1 is up, line protocol is up
Internet Address 116.1.99.6/24, Area 0
FastEthernet0/0 is up, line protocol is up
Internet Address 116.1.100.6/24, Area 10
Loopback0 is up, line protocol is up
Internet Address 99.99.6.6/24, Area 20</pre>
<p>So based on the above note from Cisco and the shown behavior it is possible to create overlapping network statements without the need to think about the network statement order, but also as Cisco says it should be avoided if possible.</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dreamccie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dreamccie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dreamccie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dreamccie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dreamccie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dreamccie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dreamccie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dreamccie.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=111&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dreamccie.wordpress.com/2008/10/14/ospf-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca8811fd3ff5808071a278258d9578b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ensit</media:title>
		</media:content>

		<media:content url="http://ccie20728.files.wordpress.com/2008/08/ospf-network-command.gif?w=591&#038;h=231" medium="image" />
	</item>
		<item>
		<title>Distance vector versus link-state</title>
		<link>http://dreamccie.wordpress.com/2008/10/12/distance-vector-versus-link-state/</link>
		<comments>http://dreamccie.wordpress.com/2008/10/12/distance-vector-versus-link-state/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 09:51:28 +0000</pubDate>
		<dc:creator>ensit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Routing]]></category>

		<guid isPermaLink="false">http://dreamccie.wordpress.com/?p=116</guid>
		<description><![CDATA[There are two major classes of routing protocol: distance vector and link-state. It&#8217;s easy to remember which protocols belong to either class, but comprehending their differences between the two classes takes a bit more effort. Distance vector routing is so named because it involves two factors: the distance, or metric, of a destination, and the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=116&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are two major classes of routing protocol: distance vector and link-state. It&#8217;s easy to remember which protocols belong to either class, but comprehending their differences between the two classes takes a bit more effort.</p>
<p><strong>Distance vector</strong> routing is so named because it involves two factors: the <em>distance</em>, or metric, of a destination, and the <em>vector</em>, or direction to take to get there. Routing information is only exchanged between directly connected neighbors. This means a router knows from which neighbor a route was learned, but it does not know where that neighbor learned the route; a router can&#8217;t see beyond its own neighbors. This aspect of distance vector routing is sometimes referred to as &#8220;routing by rumor.&#8221; Measures like split horizon and poison reverse are employed to avoid routing loops.</p>
<p><strong>Link-state</strong> routing, in contrast, requires that all routers know about the paths reachable by all other routers in the network. Link-state information is flooded throughout the link-state domain (an area in OSPF or IS-IS) to ensure all routers posess a synchronized copy of the area&#8217;s link-state database. From this common database, each router constructs its own relative shortest-path tree, with itself as the root, for all known routes.</p>
<p>Consider the following topology.</p>
<p><img src="http://packetlife.net/static/img/articles/135/lab_topology.png" alt="Lab topology" /></p>
<p>Both distance vector and link-state routing protocols are suitable for deployment on this network, but each will go about propagating routes in a different manner.</p>
<h4>Distance Vector</h4>
<p>If we were to run a distance vector routing protocol like RIP or EIGRP on this topology, here&#8217;s how R1 would see the network, assuming each link has a metric of 1 (locally connected routes have been omitted):</p>
<p><img src="http://packetlife.net/static/img/articles/135/R1_DV.png" alt="R1's view running distance vector" /></p>
<p>Notice that although R1 has connectivity to all subnets, it has no knowledge of the network&#8217;s structure beyond its own links. R4 has even less insight:</p>
<p><img src="http://packetlife.net/static/img/articles/135/R4_DV.png" alt="R4's view running distance vector" /></p>
<p>Because they do not require routers to maintain the state of all links in the network, distance vector protocols typically consume less overhead at the expense of limited visibility. Because routers have only a limited view of the network, tools like split horizon and poision reverse are needed to prevent routing loops.</p>
<h4>Link-State</h4>
<p>Now, let&#8217;s look at the same topology running a link-state routing protocol (in a single area). Because each router records the state of all links in the area, each router can construct a shortest-path tree from itself to all known destinations. Here&#8217;s what R1&#8242;s tree would look like:</p>
<p><img src="http://packetlife.net/static/img/articles/135/R1_LS.png" alt="R1's view running link-state" /></p>
<p>R4 has constructed its own shortest-path tree, different from that of R1:</p>
<p><img src="http://packetlife.net/static/img/articles/135/R4_LS.png" alt="R4's view running link-state" /></p>
<p>Although maintaining link-state information for the entire area typically requires more overhead than does processing advertisements only from direct neighbors, but provide more robust operation and scalability.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dreamccie.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dreamccie.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dreamccie.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dreamccie.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dreamccie.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dreamccie.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dreamccie.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dreamccie.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dreamccie.wordpress.com&amp;blog=5184070&amp;post=116&amp;subd=dreamccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dreamccie.wordpress.com/2008/10/12/distance-vector-versus-link-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca8811fd3ff5808071a278258d9578b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ensit</media:title>
		</media:content>

		<media:content url="http://packetlife.net/static/img/articles/135/lab_topology.png" medium="image">
			<media:title type="html">Lab topology</media:title>
		</media:content>

		<media:content url="http://packetlife.net/static/img/articles/135/R1_DV.png" medium="image">
			<media:title type="html">R1's view running distance vector</media:title>
		</media:content>

		<media:content url="http://packetlife.net/static/img/articles/135/R4_DV.png" medium="image">
			<media:title type="html">R4's view running distance vector</media:title>
		</media:content>

		<media:content url="http://packetlife.net/static/img/articles/135/R1_LS.png" medium="image">
			<media:title type="html">R1's view running link-state</media:title>
		</media:content>

		<media:content url="http://packetlife.net/static/img/articles/135/R4_LS.png" medium="image">
			<media:title type="html">R4's view running link-state</media:title>
		</media:content>
	</item>
	</channel>
</rss>
