<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>OSPF Archives -</title>
	<atom:link href="https://zymitry.com/tag/ospf/feed/" rel="self" type="application/rss+xml" />
	<link>https://zymitry.com/tag/ospf/</link>
	<description>Tech &#38; Other Stuff</description>
	<lastBuildDate>Fri, 15 Mar 2024 16:20:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://i0.wp.com/zymitry.com/wp-content/uploads/2016/11/favicon.png?fit=32%2C32&#038;ssl=1</url>
	<title>OSPF Archives -</title>
	<link>https://zymitry.com/tag/ospf/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">120106411</site>	<item>
		<title>Routing Protocols. RIP, EIGRP, OSPF, IS-IS</title>
		<link>https://zymitry.com/routing-protocols/</link>
					<comments>https://zymitry.com/routing-protocols/#respond</comments>
		
		<dc:creator><![CDATA[Greg Palmer]]></dc:creator>
		<pubDate>Mon, 03 Apr 2017 20:05:13 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[EIGRP]]></category>
		<category><![CDATA[IS-IS]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[OSPF]]></category>
		<category><![CDATA[protocols]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[routing]]></category>
		<guid isPermaLink="false">http://zymitry.com/?p=484</guid>

					<description><![CDATA[<p>Routing protocols are used to establish a path between routers. The most common routing protocols used are: Routing Information Protocol (RIP), Enhanced Interior Gateway Routing Protocol (EIGRP), Open Shortest Path First (OSPF), and Intermediate System to Intermediate System (IS-IS). Which protocol to use with a Local Area Network (LAN) depends on the following Factors: Administrative cost… <span class="read-more"><a href="https://zymitry.com/routing-protocols/">Read More: Routing Protocols. RIP, EIGRP, OSPF, IS-IS &#187;</a></span></p>
<p>The post <a href="https://zymitry.com/routing-protocols/">Routing Protocols. RIP, EIGRP, OSPF, IS-IS</a> appeared first on <a href="https://zymitry.com"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Routing protocols are used to establish a path between routers. The most common routing protocols used are: <strong>Routing Information Protocol (RIP)</strong>, <strong>Enhanced Interior Gateway Routing Protocol (EIGRP)</strong>, <strong>Open Shortest Path First (OSPF)</strong>, and <strong>Intermediate System to Intermediate System (IS-IS)</strong>. Which protocol to use with a Local Area Network (LAN) depends on the following Factors:</p>
<ul>
<li>Administrative cost of management.</li>
<li>Administrative cost of management.</li>
<li>Bandwidth usage for both baseline and during networks events.</li>
<li>Frequency of network failures.</li>
<li>Network recover time.</li>
<li>Convergence time.</li>
<li>Network topology.</li>
</ul>
<p>The protocol used usually involves a trade-off between these factors, gaining one of these factors often means accepting deficiencies in others. Topology of a network is important because it affects convergence times of different protocols. Network topology is a primary consideration when selecting a routing protocol (Weaver et al., 2012).</p>
<p>There  are  two  versions  of  <strong>RIP</strong>.  RIPv1  uses  classful  routing  and  does  not  include subnet  information  while sending  out routing table  updates.  RIPv2  is  classless and  includes subnet  information  supporting Classless Inter Domain Routing (CIDR). RIPv2 multicasts routing updates to other adjacent routers using the address 224.0.0.9. Network convergence happens much faster in RIPv2. <strong>RIP</strong> has the following advantages in small networks, It is easy to understand, it is easy to configure, and it is widely used and is supported  by almost all routers. The primary disadvantage of <strong>RIP</strong> is that it is limited to 15 hops. Any router beyond that distance is unreachable making it unsuitable for large networks. RIP can create a traffic bottleneck by  multicasting  all  the  routing tables every 30 seconds which is bandwidth intensive. <strong> RIP </strong> has  very slow network convergence in large networks. Additionally,  <strong>RIP</strong> doesn’t support multiple paths on the same route resulting in a higher chance of routing loops causing a higher loss of transferred data (Solarwinds Routing Protocols, 2014, pg. 4-5).</p>
<p><strong>EIGRP</strong> is a distance vector routing protocol that exchanges routing table information with  neighboring routers in an autonomous system.  Unlike RIP,  <strong>EIGRP</strong> shares routing table  information that  is not available in neighboring routers which reduces  traffic transmitted through routers. <strong>EIGRP</strong> uses a Diffusing  Update  Algorithm (DUAL) which reduces the time  taken for network convergence thereby improving operational efficiency. <strong>EIGRP</strong> was a proprietary protocol from Cisco that was made an open standard in 2013. The primary advantages of <strong>EIGRP</strong> is fast network convergence, low CPU utilization, and easy configuration. <strong>EIGRP</strong>  has more adaptability and versatility in large complex networks. <strong>EIGRP</strong> combines many features of both link state and distance vector. Since <strong>EIGRP</strong> is mostly deployed in large  networks, routers have a tendency to delay sending routing information at scheduled times  which can cause neighboring routers to query the information repeatedly increasing network traffic (Solarwinds Routing Protocols, 2014, pg. 5-7).</p>
<p><strong>OSPF</strong> is a link state routing protocol used in large Autonomous System (AS) networks. <strong>OSPF</strong> gathers link state information from available routers and determines the routing table information to forward packets to based on the destination IP address. This is done by the router when it creates a topology map of the network. Any change in the link is immediately detected and the information is forwarded to all other routers ensuring that all the network routers have same routing table information. Unlike RIP, OSPF only multicasts routing information when there is a change in the network. <strong>OSPF</strong> has a complete knowledge of the network topology which allows routers to calculate routes based on incoming requests. Additionally, <strong>OSPF</strong> has no limitations in hop count, has faster convergence than RIP, and  does a better job of load balancing. The primary disadvantage of <strong>OSPF</strong> is that it does not scale well if more routers are added to a  network. This is due to the router maintaining multiple copies of  routing information. An <strong>OSPF</strong> network with intermittent links can increase traffic every time a router sends information. This lack of scalability in <strong>OSPF</strong> makes it unsuitable for routing across the Internet (Solarwinds Routing Protocols, 2014, pg. 3-4 ).</p>
<p><strong>IS-IS</strong> was originally devised as a routing protocol for CLNP, but has been extended to include IP routing.  <strong>IS-IS</strong> is an Interior Gateway Protocol (IGP) used on the Internet to distribute IP routing information throughout a single AS in an IP network. <strong>IS-IS</strong> is a link-state routing protocol meaning routers exchange topology information with their nearest neighbors. The topology information is distributed throughout the AS so that every router within the AS has a complete picture of the topology of the AS. This is then used to calculate end-to-end paths through the AS usually using a variant of the Dijkstra algorithm. The main advantage of a link state routing protocol is that the complete knowledge of topology  which allows routers to calculate the best route in an AS. The primary disadvantage of IT-IT like other link state protocols is that it does not scale well as more routers are added to the routing domain. Increasing the number of routers increases the size and frequency of the topology updates (<a href="https://web.archive.org/web/20171107014229/https://www.metaswitch.com/resources/what-is-intermediate-system-to-intermediate-system-isis" target="_blank" rel="noopener">Metaswitch IS-IS, n.d</a>.).</p>
<p>References</p>
<p>Metaswitch IS-IS. (n.d.). <em>What is Intermediate System &#8211; Intermediate System (IS-IS)?</em> Retrieved March 16, 2017, from <a href="https://web.archive.org/web/20171107014229/https://www.metaswitch.com/resources/what-is-intermediate-system-to-intermediate-system-isis" target="_blank" rel="noopener">http://www.metaswitch.com/resources/what-is-intermediate-system-to-intermediate-system-isis</a>.</p>
<p>Solarwinds Routing Protocols. (2014). <em>Network Routing Protocols – Back to Basics</em>. Retrieved March 16, 2017, from http://web.swcdn.net/creative/pdf/Whitepapers/Network_Routing_Protocols_Back_to_Basics_SS.pdf.</p>
<p>Weaver, R., Weaver, D., Farwood, D., &amp; Weaver, R. (2012). <em>Guide to Network Defense and Countermeasures (3rd ed.). </em>Boston, MA: Course Technology, Cengage Learning.</p>
<p>The post <a href="https://zymitry.com/routing-protocols/">Routing Protocols. RIP, EIGRP, OSPF, IS-IS</a> appeared first on <a href="https://zymitry.com"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://zymitry.com/routing-protocols/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">484</post-id>	</item>
	</channel>
</rss>
