Why EIGRP Is Considered As the Best Routing Protocol

Size: px
Start display at page:

Download "Why EIGRP Is Considered As the Best Routing Protocol"

Transcription

1 Why EIGRP Is Considered As the Best Routing Protocol Anurag Misra Training Specialist Higher Institute of Plastic Fabrication Riyadh, Saudi Arabia ABSTRACT This paper concentrates upon one of the most popular routing protocol, which is Enhanced Interior Gateway Routing Protocol (EIGRP). In this paper we will provide a detailed introduction of EIGRP and its functions as well as features. We will see how EIGRP works to provide best routes and how it converges at the time of selected route failure. After collecting all the details about EIGRP, we will make a comparison of EIGRP with some other routing protocols and will try to establish a firm foundation to show why and how EIGRP is best routing protocol. General Terms Distance, Vector, Packet Delivery, Delay, Route Update, Routing, Transmission Units. Keywords EIGRP, RIP, Successor, Metrics, Frame Relay, IP Address, Topology, Feasible Successor, Path Discovery 1. INTRODUCTION When we talk about computer networks, first and most important thing which comes to our mind is routing. Biggest challenges in data transfer are, how to find loop free shortest path from source to destination, how to handle route failure and how to reduce convergence time at the time of failure. To address all of these problems, we have various routing protocols. Each and every routing protocol tries to provide answers to above mentioned problems in its own way. Some of the available routing protocols are EIGRP, IGRP, OSPF and RIP etc. For this paper we study about EIGRP in detail. Although some of the features and function of other protocols will also be covered but that will be very limited. Its only will be used to make comparison with EIGRP. So, we can see that where EIGRP stands performance wise. 2. Enhanced Interior Gateway Routing Protocol (EIGRP) Enhanced Interior Gateway Routing Protocol is an advanced distance vector routing protocol. Although basically EIGRP is a Distance Vector Protocol but some properties shown in EIGRP are quite like Link State protocols. The main reason for the development of EIGRP is to provide support for classless IPv4 addresses which was not available in its predecessor IGRP and to have a protocol which can be used with any type of media or network topology. EIGRP is designed to use network resources efficiently and can provide very fast convergence. EIGRP is developed using Diffusing Update Algorithm (DUAL). EIGRP is completely depends upon neighbour relationship. A router in EIGRP trusts its neighbours completely for any information on topology changes or failures. In EIGRP two devices are called neighbours if both of them can exchange hello packets. To establish neighbour relationship and to maintain its tables EIGRP uses five types of packets: Hello Packets Acknowledgement Packets, Query Packets > RJSITM: Volume: 06, Number: 05, March 2017 Page 17

2 Update Packets and Reply Packets EIGRP not only have 5 types of messages but it also maintains three different tables to support routing. Neighbour Table Topology Table and Routing Table To understand these tables structure and how these tables are maintained we have to look in to Figure 1 which has three routers 0, 1 and 2. We will make tables in reference with router / 24 Figure 1 First table is neighbour table. In EIGRP every router keeps record of its neighbour in neighbour tables. This table contains neighbour routers and the interface to which those neighbours are connected. In figure 1, Router 1 has two neighbour routers. So, neighbour table of router 1 will have 2 entries which are shown in table 1. Table 1 Neighbour table of Router 1 Neighbour Interface Router 0 S0 / 0 / 0 Router 2 S0 / 0 / 1 The command used to view the content of EIGRP neighbour table of router is show ip eigrp neighbor Next table is Topology Table. In this table router stores all available routes for destined network. Topology table has four entries for each path. Network Address of destined network. Neighbour Neighbour router through which that network can be reached. Advertised distance this is the distance from neighbouring router to the destination network. Feasible distance this is the distance from current router to destined network. For example in figure 1, if we send data from router 1 to network / 24. Router 1 has two possible paths to send the data, one via router 0 and another via router 2. So Topology table entries will be like Table 2: Table 2 Topology table of Router 1 to reach network / 24 Network Neighbour Advertised distance Feasible distance / 24 Router / 24 Router > RJSITM: Volume: 06, Number: 05, March 2017 Page 18

3 The command used to view the content of EIGRP topology table of router is show ip eigrp topology Best route will be the one which has lowest feasible distance. In our example that will be route via Router 0 because it has the lowest feasible distance 2500 better than 3000 of Router 2. This path will be called Successor and this will go to the third and very last table maintained by EIGRP which is called Routing table. Routing table has the same structure as the topology table but unlike topology table it doesn t store all possible paths for a route but only the best one. Table 3 Routing table of Router 1 to reach network / 24 Network Neighbour Advertised distance Feasible distance / 24 Router The command used to view the content of EIGRP routing table of router is show ip route Only successor is stored in routing table but rest of the paths also not discarded. Instead of discarding all remaining paths EIGRP first checks if other paths can be stored as feasible successor to be used at the time of failure. A criterion to select a path as a feasible successor is that the advertised distance of feasible successor has to be less than the feasible distance of successor. In our example path through Router 2 has the cost of 2000 for its advertised distance which is less than feasible distance of 2500 for the path through Router 0. So, the path through Router 2 can be a feasible successor. Metric shown in advertised distance and feasible distance is calculated by a composite formula which includes almost all the parameters which can affect the data transmission like Bandwidth, Delay, Load and reliability. Apart from these parameters in this formula we also have 5 constant values, which are called K 1, K 2, K 3, K 4 and K 5. The formula to calculate metrics is: K! Bandwidth! + K! Bandwidth! + K 256 Load! Dealy! Metrics = Formula 1 Composite Metrics formula with all 5 parameters K! K! + Reliability 256 Formula has 5 K values and each of them is related with a parameter. Out of this five EIGRP uses 4 components to calculate metrics. Still to understand this formula clearly, we have to look into some details about its components and the K values related to them. We will show this in Table 4. > RJSITM: Volume: 06, Number: 05, March 2017 Page 19

4 Table 4 Components of Metric Formula of EIGRP and Related K Values Component Description K Value Default Value Bandwidth E This is the minimum scaled bandwidth of the route using following formula: Scaled Bandwidth = (10 7 / minimum K 1 1 bandwidth in kbps) It s always >= 0. Load Worst effective load on route, values lies between and based on packet rate K 2 0 Delay E Cumulative interface delay, in tens of microseconds. K 3 1 Scaled Delay = Delay / 10 Reliability Successful packet transmission shown in number between means No Reliability K means 100% Reliability MTU Size of minimum maximum transmission unit of the route. It s always >= 0. K 5 0 Mostly MTU doesn t actively take part in metrics Calculation, so value of defined as 1.!!!!!!"#$%&$#$'( is If values of all the K values are set to their defaults the composite formula becomes: Metrics = Bandwidth! + Dealy! 256 Formula 2 Composite metrics formula with only Bandwidth and Delay as parameter It is very clear by the formula that EIGRP considers almost all the parameters important for routing. This ensures reliability of the selected route. Values of all K values can be configured to produce different routing behaviours. But most of configurations by default use only bandwidth and delay metrics, in that too bandwidth takes precedence. 3. Comparative Study As we have seen EIGRP metrics calculation is quite different than other routing protocols. EIGRP s protocol type is also somewhat different than other protocols. This affects the performance of EIGRP to a great extent but when you talk about routing protocols there are lots of things needed to be considered. So, we would like to take some of the parameters to compare EIGRP with OSPF, IS-IS and RIP and instead of going in detailed version, we represent this comparison in tabular form. Table 4 is there to show the comparison of EIGRP with above mentioned protocols for more than 20 different parameters. This will be easy to understand and evaluate when we have everything arranged in a table. > RJSITM: Volume: 06, Number: 05, March 2017 Page 20

5 Table 4 Comparative analysis of EIGRP with other routing protocols OSPF, IS-IS AND RIP Protocol Property EIGRP OSPF IS - IS RIP Type Hybrid (Advance Distance Vector) Link State Link State Distance Vector Algorithm DUAL Dijkstra Dijkstra Bellmon - Ford Table Driven / On Demand Hybrid of both Table Driven Table Driven On Demand Convergance Very Fast Fast Fast Slow Need of Hello Message Yes Yes Yes Yes Route Selection Shortest Path First Shortest Path First Shortest Path First Shortest Path First Route Update Triggered Triggered Triggered Periodic 30 Sec Transport Type IP / Port 88 IP / Port 89 Layer 2 UDP / Port 52 Route Update Method / IP Multicast / Multicast / Multicast / Route Mechanism / Maintenance in Routing Table Routing Table Forwarding Information Base Routing Table Updates Sent Only Changes Only Changes Only Changes Full Table Log Neighbor State Administrative Distance Yes Yes Yes Yes Summary - 5, Intenal - 90, External Classless Yes Yes Yes V1-No, V2-Yes Support VLSM Yes Yes Yes V1-No, V2-Yes Hop Count Limit 224 (Default 100) None None 15 Authentication Yes Yes Yes V1-No, V2-Yes Location Supported Metrics Interior or Exterior Interior or Exterior Interior Interior Composite Metric Calculation Cost Cost Hop Count Supported Protocols IP, IPX, DECNet, Appletalk IP IP, CLNS IP Loop Free Yes Yes Yes Yes > RJSITM: Volume: 06, Number: 05, March 2017 Page 21

6 Load Balancing Network Overheads Across 6 equal or unequal cost paths Across 4 equal cost paths Across 6 equal cost paths Less Medium Medium High Across 6 equal cost paths All the features shown in table 4 shows that when it comes to routing protocol EIGRP is better choice. Some highlights for EIGRP features are that it provides more protocols support, load balancing for unequal cost paths and convergence in EIGRP is way faster than others. Still if have some practical data for convergence that will make it far more concrete than just mentioning the fact that convergence in EIGRP is not only faster but lot more secure than other protocols. 4. Comparison for Packet Loss at the time of failure for EIGRP, OSPF and RIP In this scenario five routers and two end station are used to collect the data. Both the end stations are connected with router 1 and router 3 respectively. Two paths are available to reach from router 1 to router 3. Path 1 is through router 2 and Path 2 is though router 4 and router 5. Obviously the best route or the successor will be the path 1. Table 5 shows the convergence and re-convergence time for all three protocols. Table 5 Convergence time in seconds for EIGRP, OSPF and RIP Protocol Initial Convergence Re-convergence EIGRP OSPF RIP Now if we look for packet loss following charts will make it more clear that which protocol is more secure than others. To collect the data a packet generator software is used to generate packets at the rate of 5 packets/sec, 10 packets/sec, 15 packets/sec, 20 packets/sec and 25 packets/sec. All these packets are collected with packet capture software. After analysing these captured packets, the packet loss is calculated. Each of three charts represents the packet loss data for one of the selected protocol. > RJSITM: Volume: 06, Number: 05, March 2017 Page 22

7 5. Conclusion Comparative data in Table 5 shows it that for the initial convergence EIGRP is a bit better that OSPF and RIP. RIP comes as worst in all three of them. But when we talk about re-convergence still RIP is worst one but EIGRP is a clear winner in re-convergence, managing to re-route the traffic within few milliseconds. Even for the packet loss EIGRP comes as the best routing protocol in all three selected protocols. While packet loss goes till more than 300 packets in RIP even more than 100 in OSPF, in EIGRP its still in fifties. This clearly makes EIGRP the best choice among its competitors and to add more EIGRP is the only protocol which can scale in a Dynamic Multipoint Virtual Private Network (DMVPN). > RJSITM: Volume: 06, Number: 05, March 2017 Page 23

8 6. REFERENCES [1] Routing Protocol Convergence Comparison using Simulation and Real Equipment, D. Sankar and D. Lancaster, Advances in Communications, Computing, Networks and Security 10. [2] Performance Comparison of Mixed Protocols Based on EIGRP, IS-IS and OSPF for Real-time Applications, S. Farhangi, A. Rostami and S. Golmohammadi, Middle-East Journal of Scientific Research 12 (11): , 2012 ISSN [3] "AN EMPIRICAL COMPARATIVE ANALYSIS ON ASSORTED ROUTING PROTOCOLS", Er. Simranjeet Sandhu and Deepinder Singh Wadhwa, International Journal or Electrical, Electronics and Mechanical Controls, Volume 2 Issue 1 January [4] "Comparison of RIP, EIGRP, OSPF, IGRP Routing Protocols in Wireless Local Area Network (WLAN) by using OPNET Simulator tool - A Practical Approach", P. Kalamani, M. Venkatesh Kumar, M. Chithambarathanu, Reji Thomas, IOSR Journal of Computer Engineering (IOSR-JCE) ISSN: , Volume 16, Issue 4, Ver. VI, Jul Aug. 2014, Page [5] Classification of Routing Protocol in Mobile Ad Hoc Networks: A Review, Vishal Pahal,* Amit Verma, Payal Gupta, IJCSET, November 2011, Vol 1, Issue 10, [6] AN EMPIRICAL COMPARATIVE ANALYSIS ON ASSORTED ROUTING PROTOCOLS, Er. Simranjeet Sandhu, Deepinder Singh Wadhwa, International Journal of Electrical, Electronics and Mechanical Controls, Volume 2 Issue 1 January 2013 [7] Comparison of RIP, EIGRP, OSPF, IGRP Routing Protocols in Wireless Local Area Network (WLAN) by using OPNET Simulator tool - A Practical Approach, P. Kalamani1, M. Venkatesh Kumar2, M. Chithambarathanu3, Reji Thomas, IOSR Journal of Computer Engineering (IOSR- JCE) e-issn: ,p-ISSN: , Volume 16, Issue 4, Ver. VI (Jul Aug. 2014), PP [8] On the Performance comparison of RIP, OSPF, IS-IS and EIGRP routing protocols, Vasos Hadjioannou " [9] Performance Analysis of RIP, EIGRP, and OSPF using OPNET Don Xu and Ljiljana Trajković " [10] EIGRP Metric K values Explained with Example, Computer Networking Basic Tutorials and Study Guides, > RJSITM: Volume: 06, Number: 05, March 2017 Page 24

Section 6. Implementing EIGRP ICND2

Section 6. Implementing EIGRP ICND2 ICND2 Section 6 Implementing EIGRP Enhanced Interior Gateway Routing Protocol (EIGRP) was introduced in Cisco IOS Release 9.21 as an enhancement to the limitations of IGRP. IGRP was developed by Cisco

More information

Routing with a distance vector protocol - EIGRP

Routing with a distance vector protocol - EIGRP Routing with a distance vector protocol - EIGRP Introducing Routing and Switching in the Enterprise Chapter 5.2 Copyleft 2012 Vincenzo Bruno (www.vincenzobruno.it) Released under Crative Commons License

More information

CHAPTER 4: ROUTING DYNAMIC. Routing & Switching

CHAPTER 4: ROUTING DYNAMIC. Routing & Switching CHAPTER 4: ROUTING DYNAMIC Routing & Switching CHAPTER4 4.1 Dynamic Routing Protocols 4.2 Distance Vector Dynamic Routing 4.3 RIP and RIPng Routing 4.4 Link-State Dynamic Routing 4.5 The Routing Table

More information

Configuring EIGRP. 2001, Cisco Systems, Inc.

Configuring EIGRP. 2001, Cisco Systems, Inc. Configuring EIGRP 4-1 EIGRP Overview 4-2 What Is EIGRP? IPX Routing Protocols IP Routing Protocols AppleTalk Routing Protocol Enhanced IGRP IP Routing Protocols AppleTalk Routing Protocol IPX Routing Protocols

More information

BTEC Level 3 Extended Diploma

BTEC Level 3 Extended Diploma BTEC Level 3 Extended Diploma Unit 9 Computer Network Routing and Routing Protocols BTEC Level 3 Extended Diploma Introduction to Routing Routing is the process that a router uses to forward packets toward

More information

Routing Protocol comparison

Routing Protocol comparison Routing Protocol comparison Introduction to routing Networks allow people to communicate, collaborate, and interact in many ways. Networks are used to access web pages, talk using IP telephones, participate

More information

Chapter 7: Routing Dynamically. Routing & Switching

Chapter 7: Routing Dynamically. Routing & Switching Chapter 7: Routing Dynamically Routing & Switching The Evolution of Dynamic Routing Protocols Dynamic routing protocols used in networks since the late 1980s Newer versions support the communication based

More information

BEHAVIOUR OF OSPFV3 AND RIPng ON THE BASIS OF DIFFERENT PERFORMANCE METRICS

BEHAVIOUR OF OSPFV3 AND RIPng ON THE BASIS OF DIFFERENT PERFORMANCE METRICS BEHAVIOUR OF OSPFV3 AND RIPng ON THE BASIS OF DIFFERENT PERFORMANCE METRICS AMARJEET KAUR, PRABHDEEP SINGH M-TECH STUDENT,CSE DEPARTMENT,GIMET,PUNJAB,INDIA ASSISTANT PROFESSOR,CSE DEPARTMENT,GIMET,PUNJAB,INDIA

More information

Advanced Networking: Routing & Switching 2 Chapter 7

Advanced Networking: Routing & Switching 2 Chapter 7 EIGRP Advanced Networking: Routing & Switching 2 Chapter 7 Copyleft 2014 Hacklab Cosenza (http://hlcs.it) Released under Creative Commons License 3.0 By-Sa Cisco name, logo and materials are Copyright

More information

ENSC- 894 Communication Network FINAL PROJECT PRESENTATIONS Spring 2015

ENSC- 894 Communication Network FINAL PROJECT PRESENTATIONS Spring 2015 ENSC- 894 Communication Network FINAL PROJECT PRESENTATIONS Spring 2015 Simulation of Routing Protocols Using Riverbed 18.0 (RIP, OSPF, IS-IS, EIGRP, IGRP) Graduate Team #2 http://www.sfu.ca/~vgupta/ Varun

More information

A study of WAN design, routing protocols and connectivity between Head office to Branch office

A study of WAN design, routing protocols and connectivity between Head office to Branch office A study of WAN design, routing protocols and connectivity between Head office to Branch office Dr. Anil Kumar Singh ABSTRACT Jagran Institute of Management, 620-W Block Saket Nagar, Kanpur 3.LAB SETUP

More information

Chapter 3. Introduction to Dynamic Routing Protocols. CCNA2-1 Chapter 3

Chapter 3. Introduction to Dynamic Routing Protocols. CCNA2-1 Chapter 3 Chapter 3 Introduction to Dynamic Routing Protocols CCNA2-1 Chapter 3 Introduction to Dynamic Routing Protocols Introduction to Dynamic Routing Protocols CCNA2-2 Chapter 3 Perspective and Background Dynamic

More information

EIGRP. Routing Protocols and Concepts Chapter 9. Video Frank Schneemann, MS EdTech

EIGRP. Routing Protocols and Concepts Chapter 9. Video Frank Schneemann, MS EdTech Video Frank Schneemann, MS EdTech EIGRP Routing Protocols and Concepts Chapter 9 ITE PC v4.0 Chapter 1 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 1 9.0.1 Introduction Enhanced Interior

More information

Comprehensive Analysis of Dynamic Routing Protocols in Computer Networks

Comprehensive Analysis of Dynamic Routing Protocols in Computer Networks Comprehensive Analysis of Dynamic Routing Protocols in Computer Networks Priya Asher Department of Electronics and Telecommunication, K. J. Somaiya College of Engineering, University of Mumbai, India Abstract

More information

EIGRP 04/01/2008. Routing Protocols and Concepts Chapter 9 Modified by Tony Chen

EIGRP 04/01/2008. Routing Protocols and Concepts Chapter 9 Modified by Tony Chen EIGRP Routing Protocols and Concepts Chapter 9 Modified by Tony Chen 04/01/2008 1 Introduction 2 EIGRP Roots of EIGRP: IGRP -Developed in 1985 to overcome RIPv1 s limited hop count -Distance vector routing

More information

SEMESTER 2 Chapter 4 Distance Vector Routing Protocols V 4.0 RIP, IGRP, EIGRP

SEMESTER 2 Chapter 4 Distance Vector Routing Protocols V 4.0 RIP, IGRP, EIGRP SEMESTER 2 Chapter 4 Distance Vector Routing Protocols V 4.0 4.1.1 What are the three distance vector routing protocols? What are the key characteristics of RIP? What are the key characteristics of IGRP?

More information

SEMESTER 2 Chapter 3 Introduction to Dynamic Routing Protocols V 4.0

SEMESTER 2 Chapter 3 Introduction to Dynamic Routing Protocols V 4.0 SEMESTER 2 Chapter 3 Introduction to Dynamic Routing Protocols V 4.0 3.1.1 What are the four routing RIP, RIPv2, EIGRP, OSPFv2 protocols that are the focus of this course? 3.1.1.2 What are routing protocols?

More information

COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS

COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS S.Kokila, Assistant Professor, Department of Computer Science, A.V.P College of Arts and Science, Tiruppur, Tamilnadu, India. G.Pramela, Assistant Professor, Department

More information

Configuring EIGRP. Finding Feature Information

Configuring EIGRP. Finding Feature Information The Enhanced Interior Gateway Routing Protocol (EIGRP) is an enhanced version of the Interior Gateway Routing Protocol (IGRP) developed by Cisco. The convergence properties and the operating efficiency

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 4 Issue 5, Sep - Oct 2016

International Journal of Computer Science Trends and Technology (IJCST) Volume 4 Issue 5, Sep - Oct 2016 RESEARCH ARTICLE OPEN ACCESS Investigating the Impact of Simulation Time on Convergence Activity & Duration of EIGRP, OSPF Routing Protocols under Link Failure and Link Recovery in WAN Using OPNET Modeler

More information

shortcut Tap into learning NOW! Visit for a complete list of Short Cuts. Your Short Cut to Knowledge

shortcut Tap into learning NOW! Visit  for a complete list of Short Cuts. Your Short Cut to Knowledge shortcut Your Short Cut to Knowledge The following is an excerpt from a Short Cut published by one of the Pearson Education imprints. Short Cuts are short, concise, PDF documents designed specifically

More information

ITE PC v4.0. Chapter Cisco Systems, Inc. All rights reserved. Cisco Public

ITE PC v4.0. Chapter Cisco Systems, Inc. All rights reserved. Cisco Public EIGRP Routing Protocols and Concepts Chapter 9 1 Objectives Describe the background and history of Enhanced Interior Gateway Routing Protocol (EIGRP). Examine the basic EIGRP configuration commands and

More information

Optimizing Wireless Network Using Combination of Auto Summarization and EIGRP Protocol

Optimizing Wireless Network Using Combination of Auto Summarization and EIGRP Protocol Optimizing Wireless Network Using Combination of Auto Summarization and EIGRP Protocol Ravjot Singh Syal, Kamaljit Kaur M.Tech Student, Dept. of CSE, Sri Guru Granth Sahib World University, Punjab, India

More information

EIGRP. About EIGRP. CLI Book 1: Cisco ASA Series General Operations CLI Configuration Guide, 9.7 1

EIGRP. About EIGRP. CLI Book 1: Cisco ASA Series General Operations CLI Configuration Guide, 9.7 1 This chapter describes how to configure the Cisco ASA to route data, perform authentication, and redistribute routing information using the Enhanced Interior Gateway Routing Protocol (). About, page 1

More information

Routing Information Protocol. A simple distance vector scheme

Routing Information Protocol. A simple distance vector scheme Routing Information Protocol A simple distance vector scheme RIP version 1 RFC 1058 Charles Hedrick, Rutgers University, 1988 Based on Bellman-Ford distance vector Also used as ARPANET routing protocol

More information

Configuring EIGRP. Overview CHAPTER

Configuring EIGRP. Overview CHAPTER CHAPTER 24 This chapter describes how to configure the adaptive security appliance to route data, perform authentication, and redistribute routing information, using the Enhanced Interior Gateway Routing

More information

Why dynamic route? (1)

Why dynamic route? (1) Routing Why dynamic route? (1) Static route is ok only when Network is small There is a single connection point to other network No redundant route 2 Why dynamic route? (2) Dynamic Routing Routers update

More information

IP Enhanced IGRP Commands

IP Enhanced IGRP Commands IP Enhanced IGRP Commands Use the commands in this chapter to configure and monitor IP Enhanced IGRP. For configuration information and examples, refer to the Configuring IP Enhanced IGRP chapter of the

More information

9.1. Routing Protocols

9.1. Routing Protocols 9.1. Routing Protocols Each organization that has been assigned a network address from an ISP is considered an autonomous system (AS). That organization is free to create one large network, or divide the

More information

Part II. Chapter 3. Determining IP Routes

Part II. Chapter 3. Determining IP Routes Part II Chapter 3 Routers perform two main functions: switching and routing. The switching function is the process of moving packets from an inbound interface to an outbound interface. The switching function

More information

Redesde Computadores(RCOMP)

Redesde Computadores(RCOMP) Redesde Computadores(RCOMP) Lecture 06 2016/2017 IPv4 routeing. Static routeing and dynamic routeing. Routeing protocols: RIP, RIPv2, EIGRP and OSPF. Autonomous systems and route redistribution Instituto

More information

Top-Down Network Design, Ch. 7: Selecting Switching and Routing Protocols. Top-Down Network Design. Selecting Switching and Routing Protocols

Top-Down Network Design, Ch. 7: Selecting Switching and Routing Protocols. Top-Down Network Design. Selecting Switching and Routing Protocols Top-Down Network Design Chapter Seven Selecting Switching and Routing Protocols Copyright 2010 Cisco Press & Priscilla Oppenheimer 1 Switching 2 Page 1 Objectives MAC address table Describe the features

More information

Table of Contents. Cisco Introduction to EIGRP

Table of Contents. Cisco Introduction to EIGRP Table of Contents Introduction to EIGRP...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1 Components Used...1 What is IGRP?...2 What is EIGRP?...2 How Does EIGRP Work?...2 EIGRP

More information

Comparison of EIGRP, RIP and OSPF Routing Protocols based on OPNET

Comparison of EIGRP, RIP and OSPF Routing Protocols based on OPNET ENSC 427: COMMUNICATION NETWORKS Final Project Presentation Comparison of EIGRP, RIP and OSPF Routing Protocols based on OPNET http://www.sfu.ca/~sihengw/ensc427_group9/ Siheng Wu 301153928 (sihengw@sfu.ca)

More information

Planning for Information Network

Planning for Information Network Planning for Information Network Lecture 8: Network Routing Protocols Assistant Teacher Samraa Adnan Al-Asadi 1 Routing protocol features There are many ways to characterize routing protocols, including

More information

Introduction to Routing

Introduction to Routing 1 Introduction to Routing Session 2 Presentation_ID.scr 1 Agenda Addressing Concepts Routing Protocols Statics and Defaults 3 ISO OSI Reference Model Routing Information Protocol (RIP and RIPv2) L7 L6

More information

Chapter 7 Routing Protocols

Chapter 7 Routing Protocols Chapter 7 Routing Protocols Nonroutable Protocols In the early days of networking, networks were small collections of computers linked together For the purposes of sharing information and expensive peripherals

More information

EIGRP Features and Operation

EIGRP Features and Operation EIGRP Features and Operation Enhanced IGRP (EIGRP) is a classless, enhanced distance-vector protocol. EIGRP is a Cisco proprietary protocol. EIGRP includes the subnet mask in its route updates. And as

More information

2008 NDP Lectures 7 th Semester

2008 NDP Lectures 7 th Semester 2008 NDP Lectures 7 th Semester Neeli R. Prasad, Associate Professor Head of Wireless Security and Sensor Networks Group Networking and Security Aalborg University Niels Jernes Vej 12, 9220 Aalborg East,

More information

Routing Information Protocol. RIP application. RIP version 1

Routing Information Protocol. RIP application. RIP version 1 Routing Information Protocol A simple distance vector scheme dr. C. P. J. Koymans Informatics Institute University of Amsterdam (version 1.1, 2010/02/19 12:38:50) Wednesday, February 24, 2010 RIP version

More information

Two types of routing protocols are used in internetworks: interior gateway protocols (IGPs) and exterior gateway protocols (EGPs).

Two types of routing protocols are used in internetworks: interior gateway protocols (IGPs) and exterior gateway protocols (EGPs). Introduction Dynamic routing is when protocols are used to find networks and update routing tables on routers. True, this is easier than using static or default routing, but it ll cost you in terms of

More information

Keywords: EIGRP, Metric, K Values, IPv4, IPv6, Routing Protocols

Keywords: EIGRP, Metric, K Values, IPv4, IPv6, Routing Protocols Volume 6, Issue 7, July 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Operation and Comparative

More information

CIS 83 Midterm Spring 2004 Answer Sheet Name Score Grade Question Answer Question Answer

CIS 83 Midterm Spring 2004 Answer Sheet Name Score Grade Question Answer Question Answer CIS 83 Midterm Spring 2004 Answer Sheet Name: Score: Grade: Question Answer Question Answer 1 A B C D E F 51 A B C D E F 2 A B C D E F 52 A B C D E F 3 A B C D E F 53 A B C D E F 4 A B C D E F 54 A B C

More information

Enhanced IGRP. Chapter Goals. Enhanced IGRP Capabilities and Attributes CHAPTER

Enhanced IGRP. Chapter Goals. Enhanced IGRP Capabilities and Attributes CHAPTER 40 CHAPTER Chapter Goals Identify the four key technologies employed by (EIGRP). Understand the Diffusing Update Algorithm (DUAL), and describe how it improves the operational efficiency of EIGRP. Learn

More information

Routing Information Protocol. RIP application. RIP version 1

Routing Information Protocol. RIP application. RIP version 1 Routing Information Protocol A simple distance vector scheme Karst Koymans Informatics Institute University of Amsterdam (version 16.3, 2017/03/01 13:00:45) Friday, March 3, 2017 RIP version 1 Origin and

More information

Unit 3: Dynamic Routing

Unit 3: Dynamic Routing Unit 3: Dynamic Routing Basic Routing The term routing refers to taking a packet from one device and sending it through the network to another device on a different network. Routers don t really care about

More information

NAT Internetworking Standards and Technologies, Computer Engineering, KMITL 2

NAT Internetworking Standards and Technologies, Computer Engineering, KMITL 2 EIGRP & NAT Jirasak Sittigorn Internetworking Standards & Technologies Department of Computer Engineering, Faculty of Engineering King Mongkut's Institute of Technology Ladkrabang EIGRP Characteristics

More information

Implementing Hub and Spoke topologies in Virtual Private Network using Enhanced Interior Gateway Routing Protocol

Implementing Hub and Spoke topologies in Virtual Private Network using Enhanced Interior Gateway Routing Protocol Implementing Hub and Spoke topologies in Virtual Private Network using Enhanced Interior Gateway Routing Protocol Sree Vidya T R 1, Vasanthadev Suryakala S 2, Swarnalatha M 3 ECE Department, Valliammai

More information

ICS 351: Today's plan. distance-vector routing game link-state routing OSPF

ICS 351: Today's plan. distance-vector routing game link-state routing OSPF ICS 351: Today's plan distance-vector routing game link-state routing OSPF distance-vector routing game 1. prepare a list of all neighbors and the links to them, and the metric for each link 2. create

More information

Routing Information Protocol

Routing Information Protocol Routing Information Protocol A simple distance vector scheme dr. C. P. J. Koymans Informatics Institute University of Amsterdam February 24, 2008 dr. C. P. J. Koymans (UvA) Routing Information Protocol

More information

Cisco CCNA 2 Exploration - Routing

Cisco CCNA 2 Exploration - Routing Cisco CCNA 2 Exploration - Routing Chapter 9 EIGRP João José jjose@ualg.pt http://w3.ualg.pt/~jjose/cisco/ Based on: Graziani, R. (2008) CIS 82 Routing Theory and Concepts Introduction to EIGRP EIGRP:

More information

Performance Evaluation of Link State Routing Protocol in an Enterprise Network

Performance Evaluation of Link State Routing Protocol in an Enterprise Network Performance Evaluation of Link State Routing Protocol in an Enterprise Network M. Nawaz Lakhmir, Ayaz Ahmed Qureshi, M. Ibrahim Channa, Fareed Ahmed Jokhio, and Shahzaman Nizamani. Abstract - A link-state

More information

Introduction to Dynamic Routing Protocols

Introduction to Dynamic Routing Protocols Introduction to Dynamic Routing Protocols 1 Objectives Describe the role of dynamic routing protocols and place these protocols in the context of modern network design. Identify several ways to classify

More information

Routing Information Protocol

Routing Information Protocol Routing Information Protocol A simple distance vector scheme Karst Koymans Informatics Institute University of Amsterdam (version 18.2, 2018/11/21 13:11:09) Friday, November 23, 2018 Karst Koymans (UvA)

More information

Introduction to Local and Wide Area Networks

Introduction to Local and Wide Area Networks Introduction to Local and Wide Area Networks Lecturers Amnach Khawne Jirasak Sittigorn Chapter 1 1 Routing Protocols and Concepts Chapter 8 : The Routing Table: A Closer Look Chapter 9 : EIGRP Chapter

More information

Internet Routing Protocols Tuba Saltürk

Internet Routing Protocols Tuba Saltürk Internet Routing Protocols 15505068 Tuba Saltürk Outline Internet Routers Routing Protocol Interior Gateway Protocol (IGP) Distance- Vector Routing Protocol Routing Information Protocol (RIP) Interior

More information

Chapter 9. Enhanced Interior Gateway Routing Protocol (EIGRP) Part I

Chapter 9. Enhanced Interior Gateway Routing Protocol (EIGRP) Part I Chapter 9 Enhanced Interior Gateway Routing Protocol (EIGRP) Part I CCNA2-1 Chapter 9-2 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College

More information

Routing Protocol. Seiya Tsubone. Apr The University of Tokyo. Seiya Tsubone (The University of Tokyo) Routing Protocol Apr. 25.

Routing Protocol. Seiya Tsubone. Apr The University of Tokyo. Seiya Tsubone (The University of Tokyo) Routing Protocol Apr. 25. Routing Protocol Seiya Tsubone The University of Tokyo Apr. 25. 2013 Seiya Tsubone (The University of Tokyo) Routing Protocol Apr. 25. 2013 1 / 60 Table of Contents 1 The Concept of Routing 2 RIP 3 OSPF

More information

Routing Protocols and

Routing Protocols and Introduction to Dynamic Routing Protocol Routing Protocols and Concepts Chapter 3 1 Objectives Describe the role of dynamic routing protocols and place these protocols in the context of modern network

More information

Distance Vector Routing Protocols

Distance Vector Routing Protocols Distance Vector Routing Protocols Routing Protocols and Concepts Chapter 4 Version 4.0 1 Objectives Identify the characteristics of distance vector routing protocols. Describe the network discovery process

More information

Routing Protocols of IGP. Koji OKAMURA Kyushu University, Japan

Routing Protocols of IGP. Koji OKAMURA Kyushu University, Japan Routing Protocols of IGP Koji OKAMURA Kyushu University, Japan Routing Protocol AS (Autonomous System) Is operated autonomous in the organization. 6bit IGP (Interior Gateway Protocol) Routing Control inside

More information

Research Paper Available online at: Survey of Ip Routing Protocols

Research Paper Available online at:  Survey of Ip Routing Protocols Prachi Thakur Computer Science and Enginerring Baddi University. Himachal Pradesh, India Volume 4, Issue 7, July 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and

More information

Allows IGRP or Enhanced IGRP exterior routes to be advertised in updates.

Allows IGRP or Enhanced IGRP exterior routes to be advertised in updates. IGRP Commands Use the commands in this chapter to configure and monitor Internet Gateway Routing Protocol (IGRP). For IGRP configuration information and examples, refer to the Configuring IGRP chapter

More information

A comprehensive study of Routing Protocols Performance with Topological Changes in the Networks

A comprehensive study of Routing Protocols Performance with Topological Changes in the Networks A comprehensive study of Routing Protocols Performance with Topological Changes in the Networks Mohsin Masood Electronics & Electrical Engineering Department University of Strathclyde Glasgow, Scotland,

More information

material. For more information on how to get additional questions, please see a.

material. For more information on how to get additional questions, please see   a. Review Questions The following questions are designed to test your understanding of this chapter s material. For more information on how to get additional questions, please see www.lammle.com/ccn a. You

More information

Final exam study Guide

Final exam study Guide Final exam study Guide K-1A * In relationship to the OSI layer model and encapsulation/decapsulation process, what happen to a packet that travels through multiple hops of routers? - What happen to the

More information

EIGRP. Finding Feature Information

EIGRP. Finding Feature Information The Enhanced Interior Gateway Routing Protocol () is an enhanced version of the Interior Gateway Routing Protocol (IGRP) developed by Cisco. The convergence properties and the operating efficiency of have

More information

TDC 363 Introduction to LANs

TDC 363 Introduction to LANs TDC 363 Introduction to LANs Routing Protocols and RIP Greg Brewster DePaul University TDC 363 1 Dynamic Routing Routing Protocols Distance Vector vs. Link State Protocols RIPv1 & RIPv2 RIP Problems Slow

More information

Chapter 6 Reading Organizer

Chapter 6 Reading Organizer Name Date Chapter 6 Reading Organizer After completion of this chapter, you should be able to: Describe and plan a network using OSPF Design and configure a network using single-area OSPF Work with multi-protocol

More information

Routing Protocols. Autonomous System (AS)

Routing Protocols. Autonomous System (AS) Routing Protocols Two classes of protocols: 1. Interior Routing Information Protocol (RIP) Open Shortest Path First (OSPF) 2. Exterior Border Gateway Protocol (BGP) Autonomous System (AS) What is an AS?

More information

IP Routing. Bharat S. Chaudhari International Institute of Information Technology Pune, India

IP Routing. Bharat S. Chaudhari International Institute of Information Technology Pune, India IP Routing Bharat S. Chaudhari International Institute of Information Technology Pune, India June 21, 2005 Network Devices: Ø The networking and internetworking devices are divided in the following categories:

More information

Building the Routing Table. Introducing the Routing Table Directly Connected Networks Static Routing Dynamic Routing Routing Table Principles

Building the Routing Table. Introducing the Routing Table Directly Connected Networks Static Routing Dynamic Routing Routing Table Principles Building the Routing Table Introducing the Routing Table Directly Connected Networks Static Routing Dynamic Routing Routing Table Principles Introducing the Routing Table R1# show ip route Codes: C - connected,

More information

Basic Idea. Routing. Example. Routing by the Network

Basic Idea. Routing. Example. Routing by the Network Basic Idea Routing Routing table at each router/gateway When IP packet comes, destination address checked with routing table to find next hop address Questions: Route by host or by network? Routing table:

More information

CCNA 3 (v v6.0) Chapter 7 Exam Answers % Full

CCNA 3 (v v6.0) Chapter 7 Exam Answers % Full CCNA 3 (v5.0.3 + v6.0) Chapter 7 Exam Answers 2017 100% Full ccnav6.com /ccna-3-v5-0-3-v6-0-chapter-7-exam-answers-2017-100-full.html CCNA Exam Answers 2017 CCNA 3 (v5.0.3 + v6.0) Chapter 7 Exam Answers

More information

Routing by the Network

Routing by the Network Routing Basic Idea Routing table at each router/gateway When IP packet comes, destination address checked with routing table to find next hop address Questions: Route by host or by network? Routing table:

More information

INTERNET PROTOCOLS NETWORK ASSIGNEMENT. Alexander Havbo Steen ITT 2015 ERHVERVSAKADEMI DANIA

INTERNET PROTOCOLS NETWORK ASSIGNEMENT. Alexander Havbo Steen ITT 2015 ERHVERVSAKADEMI DANIA INTERNET PROTOCOLS NETWORK ASSIGNEMENT Alexander Havbo Steen ERHVERVSAKADEMI DANIA Table of contents Introduction to routing... 2 Sooo Which router should I get?... 2 Introduction to routing protocols...

More information

CIS 83 LAB 3 - EIGRP Rich Simms September 23, Objective. Scenario. Topology

CIS 83 LAB 3 - EIGRP Rich Simms September 23, Objective. Scenario. Topology CIS 83 LAB 3 - EIGRP Rich Simms September 23, 2006 Objective The objective of this lab is to become familiar setting up and configuring EIGRP on three routers. EIGRP is a Cisco proprietary distance-vector

More information

Comparative Analysis of Two Prominent Routing Protocols in IPv6 Network: OSPFv3 & EIGRPv6

Comparative Analysis of Two Prominent Routing Protocols in IPv6 Network: OSPFv3 & EIGRPv6 International Journal of Computer (IJC) ISSN 2307-4523 (Print & Online) Global Society of Scientific Research and Researchers http://ijcjournal.org/ Comparative Analysis of Two Prominent Routing Protocols

More information

THE OSI MODEL. Application Presentation Session Transport Network Data-Link Physical. OSI Model. Chapter 1 Review.

THE OSI MODEL. Application Presentation Session Transport Network Data-Link Physical. OSI Model. Chapter 1 Review. THE OSI MODEL Application Presentation Session Transport Network Data-Link Physical OSI Model Chapter 1 Review By: Allan Johnson Table of Contents Go There! Go There! Go There! Go There! Go There! Go There!

More information

CCNA 3 (v v6.0) Chapter 5 Exam Answers % Full

CCNA 3 (v v6.0) Chapter 5 Exam Answers % Full CCNA 3 (v5.0.3 + v6.0) Chapter 5 Exam Answers 2017 100% Full ccnav6.com /ccna-3-v5-0-3-v6-0-chapter-5-exam-answers-2017-100-full.html CCNA Exam Answers 2017 CCNA 3 (v5.0.3 + v6.0) Chapter 5 Exam Answers

More information

Exam : : Building Scalable Cisco Internetworks (BSCI) Title. Ver :

Exam : : Building Scalable Cisco Internetworks (BSCI) Title. Ver : Exam : 642-801 Title : Building Scalable Cisco Internetworks (BSCI) Ver : 03-22-05 QUESTION 1 A packet that needs to be forwarded arrives on an interface of a router. In order for a router to route data,

More information

Cisco Exam Implementing Cisco IP Routing (ROUTE) Version: 15.0 [ Total Questions: 375 ]

Cisco Exam Implementing Cisco IP Routing (ROUTE) Version: 15.0 [ Total Questions: 375 ] s@lm@n Cisco Exam 642-902 Implementing Cisco IP Routing (ROUTE) Version: 15.0 [ Total Questions: 375 ] Topic 1, Implement an EIGRP based solution, given a network design and a set of requirements Cisco

More information

Unit 6 Routing and Layers 3 and 4 Protocols. Chapter 6: Layers 3 and 4 Protocols

Unit 6 Routing and Layers 3 and 4 Protocols. Chapter 6: Layers 3 and 4 Protocols Unit 6 Routing and Layers 3 and 4 Protocols Chapter 6 from each textbook Chapter 6: Layers 3 and 4 Protocols 2008 ITT Educational Services Inc. IT-320 Wan Technologies : Unit 6: Slide 1 Objectives 6: Describe

More information

CCNA IP ROUTING. Revision no.: PPT/2K605/03

CCNA IP ROUTING. Revision no.: PPT/2K605/03 CCNA 640-801 IP ROUTING Revision no.: PPT/2K605/03 Routing Basics The term routing is used for taking a packet from one device and sending it through the network to another device on a different network.

More information

Implementing an EIGRP Solution

Implementing an EIGRP Solution Chapter 3 Implementing an EIGRP Solution This chapter contains the following sections: Dynamic Routing Review EIGRP Features and Function Troubleshooting EIGRP Implementing EIGRP for IPv6 Chapter Summary

More information

ABR (Area Border Router), 206, 216 access, dedicated networks, 23 access layer, three-layer hierarchical design model, 6

ABR (Area Border Router), 206, 216 access, dedicated networks, 23 access layer, three-layer hierarchical design model, 6 1358_fmi.book Page 460 Thursday, May 27, 2004 2:21 PM A ABR (Area Border Router), 206, 216 access, dedicated networks, 23 access layer, three-layer hierarchical design model, 6 access lists, scalable networks,

More information

Configuring EIGRP. Finding Feature Information. Contents

Configuring EIGRP. Finding Feature Information. Contents Configuring EIGRP First Published: 2005 Last Updated: September 10, 2010 Enhanced Interior Gateway Routing Protocol (EIGRP) is an enhanced version of the IGRP developed by Cisco. The convergence properties

More information

EXAM TOPICS COVERED IN THIS CHAPTER INCLUDE:

EXAM TOPICS COVERED IN THIS CHAPTER INCLUDE: 4293book.fm Page 1 Tuesday, October 7, 2003 5:59 PM Chapter 1 Routing Principles EXAM TOPICS COVERED IN THIS CHAPTER INCLUDE: Understand how routers route data Know the difference between classful and

More information

Symbols. Numerics I N D E X

Symbols. Numerics I N D E X I N D E X Symbols? (question mark), CLI help system, 126 Numerics A 2-router BGP topology, configuring, 279 284 4-router BGP topology, configuring, 266, 276 279 ABRs (area border routers), 9, 87, 95, 141

More information

Chapter 2: Configuring the Enhanced Interior Gateway Routing Protocol

Chapter 2: Configuring the Enhanced Interior Gateway Routing Protocol : Configuring the Enhanced Interior Gateway Routing Protocol CCNP ROUTE: Implementing IP Routing ROUTE v6 1 Objectives Describe the basic operation of EIGRP. Plan and implement EIGRP routing. Configure

More information

Internetwork Expert s CCNP Bootcamp. Enhanced Interior Gateway Routing Protocol (EIGRP) What is EIGRP? Enhanced Interior Gateway Routing Protocol

Internetwork Expert s CCNP Bootcamp. Enhanced Interior Gateway Routing Protocol (EIGRP) What is EIGRP? Enhanced Interior Gateway Routing Protocol Internetwork Expert s CCNP Bootcamp Enhanced Interior Gateway Routing Protocol (EIGRP) http:// What is EIGRP? Enhanced Interior Gateway Routing Protocol Successor to Interior Gateway Routing Protocol (IGRP)

More information

Routing Protocol Type Primarily IGP or EGP RIP Distance-Vector IGP EIGRP OSPF IS-IS BGP

Routing Protocol Type Primarily IGP or EGP RIP Distance-Vector IGP EIGRP OSPF IS-IS BGP Appendix D Memory Tables Chapter 1 Table 1-2 Routing Protocol Characteristics Routing Protocol Type Primarily IGP or EGP RIP Distance-Vector IGP EIGRP OSPF IS-IS BGP Chapter 3 Table 3-2 Hexadecimal/Binary

More information

Routing Protocol. RIPv1

Routing Protocol. RIPv1 Outline Routing Protocol RIPv1, RIPv2, EIGRP OSPF o RIPv1, RIPv2 o EIGRP o OSPF 2 3 RIPv1 RIP Characteristics A classful, Distance Vector (DV) routing protocol Metric = hop count Routes with a hop count

More information

Routing Basics ISP/IXP Workshops

Routing Basics ISP/IXP Workshops Routing Basics ISP/IXP Workshops 1 Routing Concepts IPv4 Routing Forwarding Some definitions Policy options Routing Protocols 2 IPv4 Internet uses IPv4 addresses are 32 bits long range from 1.0.0.0 to

More information

Finding Support Information for Platforms and Cisco IOS and Catalyst OS Software Images

Finding Support Information for Platforms and Cisco IOS and Catalyst OS Software Images Configuring EIGRP This chapter describes how to configure Enhanced Interior Gateway Routing Protocol (EIGRP). For a complete description of the EIGRP commands listed in this chapter, refer to the EIGRP

More information

Chapter 5 RIP version 1

Chapter 5 RIP version 1 Cisco CCNA 2 Exploration - Routing Chapter 5 RIP version 1 João José jjose@ualg.pt http://w3.ualg.pt/~jjose/cisco/ Based on: Graziani, R. (2008) CIS 82 Routing Theory and Concepts RIPv1: A Distance Vector,

More information

CCNP IPSOFTWARE EIGRP ROUTE Lab Manual.

CCNP IPSOFTWARE EIGRP ROUTE Lab Manual. Lab Manual CCNP ROUTE 300-101 EIGRP Lab - 1 : EIGRP-Basic Configuration Lab - 2 : EIGRP-Metric and Variance Load Sharing Lab - 3 : EIGRP-Summarization Lab - 4 : EIGRP-Query Control Lab - 5 : EIGRP-Authentication

More information

CCNA-A Scope and Sequence (March 2007-Draft)

CCNA-A Scope and Sequence (March 2007-Draft) CCNA-A Scope and Sequence (March 2007-Draft) This document is a preliminary overview of the new CCNA-A curriculum and is subject to change since the courses are still under development. The English versions

More information

Internal and External Components p. 213 Modularity p. 217 Cabling p. 219 Summary p. 222 Basic Switch Terminology p. 223 Cisco Switching Fundamentals

Internal and External Components p. 213 Modularity p. 217 Cabling p. 219 Summary p. 222 Basic Switch Terminology p. 223 Cisco Switching Fundamentals Acknowledgments p. xxv Introduction p. xxvii Networking Basics The OSI Model p. 3 What Is a Packet? p. 4 OSI Model Basics p. 6 Other Network Models p. 16 Summary p. 20 Ethernet and Wireless LANs p. 21

More information

Top-Down Network Design

Top-Down Network Design Top-Down Network Design Chapter Seven Selecting Switching and Routing Protocols Original slides by Cisco Press & Priscilla Oppenheimer Selection Criteria for Switching and Routing Protocols Network traffic

More information