INTERNET LABORATORY PROJECT. EIGRP Routing Protocol. Abhay Tambe Aniruddha Deshmukh Sahil Jaya

Size: px
Start display at page:

Download "INTERNET LABORATORY PROJECT. EIGRP Routing Protocol. Abhay Tambe Aniruddha Deshmukh Sahil Jaya"

Transcription

1 INTERNET LABORATORY PROJECT on EIGRP Routing Protocol by Abhay Tambe Aniruddha Deshmukh Sahil Jaya

2 INTRODUCTION TO EIGRP SETUP FOR LAB: This lab uses two different network topologies. The first network topology is shown in Figure 1and is used in parts 1 and 2 and another topology is shown in Figure 2 and used in parts 3 and 4. PART 1. CONFIGURING EIGRP ON A CISCO ROUTER Enhanced Interior Gateway Routing Protocol (EIGRP) is an interior gateway protocol suited for many different topologies and media. In a well-designed network, EIGRP scales well and provides extremely quick convergence times with minimal network traffic. Enhanced Interior Gateway Routing Protocol - (EIGRP) is an open routing protocol loosely based on their original IGRP created by Cisco. EIGRP is an advanced distance-vector routing protocol, with optimizations to minimize both the routing instability incurred after topology changes, as well as the use of bandwidth and processing power in the router. Routers that support EIGRP will automatically redistribute route information to IGRP neighbors by converting the 32 bit EIGRP metric to the 24 bit IGRP metric. Most of the routing optimizations are based on the Diffusing Update Algorithm (DUAL) work from SRI, which guarantees loop-free operation and provides a mechanism for fast convergence. Figure 1 and Table 1 describe the network configuration for this part of the lab. Contiguous network: A single classful network in which packets sent between every pair of subnets will pass only through subnets of that same classful network, without having to pass through subnets of any other classful network. For example: Discontiguous network: A single classful network in which packets sent between at least one pair of subnets must pass through subnets of a different classful network. For example:

3 Route Filtering: EIGRP support for route map filtering enables EIGRP to interoperate with other protocols by filtering inbound and outbound traffic based on route map options. Additional EIGRP-specific match choices are available to allow flexibility in fine-tuning EIGRP network operations. EIGRP supports the route map filtering capability that exists for other routing protocols to filter routes being redistributed into their protocol. For more details about understanding and configuring route maps. Match options allow EIGRP to filter internal and external routes based on source protocols, to match a metric against a range, and to match on an external protocol metric. EIGRP can be configured to filter traffic using a route map and the redistribute or distribute-list command. Using a route map with the redistribute command allows routes that are redistributed from the routing table to be filtered with a route map before being admitted into an EIGRP topology table. Routes that are dynamically received from, or advertised to, EIGRP peers can be filtered by adding a route map option to the distribute-list command. Authentication: The addition of authentication to your routers' EIGRP messages ensures that your routers only accept routing messages from other routers that know the same pre-shared key. Without this authentication configured, if someone introduces another router with different or conflicting route information on to the network, the routing tables on your routers could become corrupt and a denial of service attack could ensue. Thus, when you add authentication to the EIGRP messages sent between your routers, it prevents someone from purposely or accidentally adding another router to the network and causing a problem. The configuration of EIGRP message authentication consists of two steps: 1. The creation of a keychain and key. 2. The configuration of EIGRP authentication to use that keychain and key. Once you create a keychain and key, you must configure EIGRP to perform message authentication with the key. This configuration is completed on the interfaces that EIGRP is configured on. EIGRP Neighborship: EIGRP uses three major steps to achieve its goal of learning the best available loop-free routes: Step 1. Establish EIGRP neighbor relationships neighborships with other routers that share a common subnet. Step 2. Exchange EIGRP topology data with those neighbors. Step 3. Calculate the currently best IP route for each subnet, based on the known EIGRP topology data, and add those best routes to the IP routing table. This three-step process hinges on the first step the successful creation of neighbor relationships between EIGRP routers. The basic EIGRP configuration described earlier in this chapter, particularly the network command, most directly tells EIGRP on which interfaces to dynamically discover neighbors. After EIGRP neighborships have been formed with neighboring routers that are reachable through those interfaces, the final two steps occur without any additional direct configuration. EIGRP dynamically discovers neighbors by sending EIGRP Hello messages on each EIGRP-enabled interface. When two routers hear EIGRP Hello messages from each other, they check the EIGRP parameters listed in those messages and decide whether the two routers should or should not become neighbors. Hello interval: Interval at which a router sends EIGRP Hello messages on an interface. Hold Timer: Timer used to determine when a neighboring router has failed, based on a router not receiving any EIGRP messages, including Hellos, in this timer period. The basic operation of these two timers is relatively simple. EIGRP uses the Hello messages in part as a confirmation that the link between the neighbors still works. If a router does not receive a Hello from a neighbor for one entire Hold time, that router considers the neighbor to have failed. For example, with a default LAN setting of Hello of 5, and Hold of 15, the local router sends Hellos every 5 seconds. The neighbor resets its downward-counting Hold Timer to 15 upon receiving a Hello from that neighbor. Under normal

4 operation on a LAN, with defaults, the Hold Timer for a neighbor would vary from 15, down to 10, and then be reset to 15. However, if the Hellos were no longer received for 15 seconds, the neighborship would fail, driving convergence. Convergence: The word convergence defines the overall process by which routers notice internetwork topology changes, communicate about those changes, and change their routing tables to contain only the best currently working routes. EIGRP converges very quickly even with all default settings. EIGRP converges very quickly, but EIGRP does not achieve the most optimal fast convergence times in all conditions. One design goal might be to tune EIGRP configuration settings so that EIGRP uses the faster convergence methods for as many routes as possible, and when not possible, that EIGRP converge as quickly as it can without introducing routing loops. As a result, routers might converge in some cases in a second instead of tens of seconds (from the point of a router realizing that a route has failed). Default Routing: A router s default route matches the destination of all packets that are not matched by any other route in the IP routing table. In fact, a default route can be thought of as the ultimate summary route a route for the prefix that includes all IPv4 addresses, as represented by prefix/length /0. This section first examines the most common use of default routes inside an Enterprise: to draw Internet traffic toward the Internet-connected routers without having to put routes for all Internet destinations into the Enterprise routers routing tables Default Routing Configuration with EIGRP: 1. Advertising Static Default Routes with EIGRP To cause the advertisement of the default routes shown in Figure 4-9, Router I1 can follow these steps: Step 1. Create a static route default route using the ip route S0/0/0 command. Step 2. Inject this route into the EIGRP topology database, either using the network command or by redistributing the static route. 2. Configuring a Default Network The second option for creating a default route is to flag a route for a classful network for a prefix that will be advertised into the EIGRP domain as a route that can be used as a default route. Then each router can use the forwarding details in that route the outgoing interface and next-hop router as its default route. Step 1. On the router to which all traffic should be directed, identify a classful network that can be advertised into the EIGRP domain, and ensure that network is being advertised into EIGRP (typically using the EIGRP network command). Step 2. Configure that network as a default network using the global command ip default network networknumber. Load Balancing: IOS allows routing protocols to place multiple routes into the routing table for an individual prefix/length. IOS then balances traffic across those routes, by default balancing traffic on a per-destination IP address basis. Load balancing, sometimes called load sharing, provides a primary benefit of making use of the available bandwidth, rather than using some links as simply backup links. A useful secondary benefit faster convergence occurs when using load balancing. By placing multiple routes into the routing table for a single prefix, convergence happens essentially instantly. For example, if a branch router has two routes for each data center subnet one using each PVC that connects the branch to the core and one of the routes fails, the other route is already in the routing table. In this case, the router does not need to look for FS routes nor go active on the route. The router uses the usual EIGRP convergence tools only when all such routes are removed from the routing table. The load balancing configuration requires two commands, one of which already defaults to a reasonable setting. First, you need to define the number of allowed routes for each prefix/prefix length using the maximum-paths number EIGRP subcommand. The default setting of 4 is often big enough, because most internetworks do not have enough redundancy to have more than four possible routes. The second part of the load balancing configuration overcomes a challenge introduced by EIGRP s metric calculation. The EIGRP integer metric calculation often results in 8-to-10- digit integer metrics, so the metrics of competing routes are seldom the exact same value. Calculating the exact same metric for different routes for the same prefix is statistically unlikely. IOS includes the concept of EIGRP variance to overcome this problem. Variance lets you tell IOS that the EIGRP

5 metrics can be close in value and still be considered worthy of being added to the routing table and you can define how close. The variance multiplier EIGRP router subcommand defines an integer between 1 and 128. The router then multiplies the variance times the successor route s FD the metric of the best route to reach that subnet. Any FS routes whose metric is less than the product of the variance times the FD are considered to be equal routes and may be placed into the routing table, up to the number of routes defined by the maximum-paths command. Metric Calculations: EIGRP associates six (6) different vector metrics with each route and considers only four (4) of the vector metrics in computing the Composite metric: Bandwidth: Minimum Bandwidth (in kilobits per second) along the path from router to destination network Load: Load (number in range 1 to 255; 255 being saturated) Delay: Total Delay (in 10s of microseconds) along the path from router to destination network Reliability: Reliability (number in range 1 to 255; 255 being the most reliable) MTU: Minimum path Maximum Transmission Unit (MTU) (never used in the metric calculation) Hop Count: Number of routers a packet passes through when routing to a remote network, used to limit the EIGRP AS. The K Values There is five (5) K values used in the Composite metric calculation - K1 through K5. The K values only act as multipliers or modifiers in the composite metric calculation. K1 is not equal to Bandwidth, etc. By default, only total delay and minimum bandwidth are considered when EIGRP is started on a router, but an administrator can enable or disable all the K values as needed to consider the other Vector metrics. For the purposes of comparing routes, these are combined together in a weighted formula to produce a single overall metric: where the various constants ( through ) can be set by the user to produce varying behaviors. An important and unintuitive fact is that if is set to zero, the term is not used (i.e. taken as 1). The default is for and to be set to 1, and the rest to zero, effectively reducing the above formula to. Obviously, these constants must be set to the same value on all routers in an EIGRP system, or permanent routing loops will probably result. Cisco routers running EIGRP will not form an EIGRP adjacency and will complain about K- values mismatch until these values are identical on these routers. EIGRP scales the interface bandwidth and delay configuration values with following calculations: = 10 7 / Value of the bandwidth interface command = Value of the delay interface command

6 PRELAB QUESTIONS FOR EIGRP LAB Q1. What type of routing protocol is EIGRP. Give one advantage and disadvantage of EIGRP. Q2. What is the default method of calculating metrics for routes in EIGRP? Q3. Explain the tems Feasible Distance and Reported Distance Q4. Explain discontiguous networks. Q5. Explain neighborship in EIGRP Q6. Explain convergence in EIGRP. Q7. How does EIGRP perform load balancing. Q8. Explain what are access lists and what are their uses. Q9. Explain route filtering and route summarization. Q10. How are default routes added and distributed via EIGRP.

7 LAB EXERCISE 1 Configuration and Neighborship. Figure 1 : Topology for Lab Exercise 1 and 2 The topology for parts is shown in figure 1. CONFIGURATION OF EIGRP 1 (A): Setting Up The Network. Step 1. Set up the network as shown in the figure. Step 2. Make sure that the local interfaces can be pinged by the ping command. Step 3. Enter the following commands on both the routers: no ip routing ip routing 1 (B): Configuring EIGRP Step 1. Run the following commands on both the routers in global configuration mode. router eigrp 10 passive- interface eth 0 network network exit Step 2. Run the folowing commands: Ping from and vice versa. Ping from and vice versa. Ping from and vice versa.

8 Ping from and vice versa. QUESTIONS: 1. Which of the pings were successful and which were not? 2. Explain your reasoning. 3. What does the passive interface command do? Why is it necessary? 1 (C): Configuring EIGRP For Discontinuous Networks. Step 1: On both routers, enter the following commands in global configuration mode: router eigrp 10 no auto-summary exit Step 2. Try the same set of pings and observe the output. QUESTIONS: 1. Why did the pings work now? Explain what the no auto-summary command does. 2. Can you show how the metric was calculated for routing between the two routers? 1 (D): Observing neighborship formation. NEIGHBORSHIP Step 1. Run the follwing command on both routers in privilege mode and observe the output show ip eigrp interfaces detail serial 0 Step 2. Note down the Hello Interval of both the routers. Step 3. Run the following command on both routers in privilege and observe the output. show ip eigrp neighbors. Step 4. Repeat step 3 many times and try and estimate the hold time from the various outputs and from Hello Interval. QUESTIONS(1): 1. What was the configured Hello Interval? 2. What was the configured Hold Time? How could you tell? 3. Explain the first 6 columns in the output of Step 3. 1 (E): Changing The Neighborship Parameters. Step 1. On Router 1, enter the following commandsin global configuration mode: interface serial 0 ip hello-interval eigrp 10 2 ip hold-time eigrp 10 6

9 Step 2. Run show ip eigrp interfaces detail serial 0 and show ip eigrp neighbors command to confirm changes. QUESTIONS(2): 1. Explain one advantage of changing these configuration parameters.

10 LAB EXERCISE 2 ROUTE FILTERING via EIGRP The topology for this part is the same as the topology in Lab Exercise One. However, restart all PC s and Routers so that the previous EIGRP Configurations are no longer valid. 2(A): Configuring Loopback Addresses Step 1: On Router 2, enter the following commands in global configuration mode. interface loopback 5 ip address interface loopback 6 ip address interface loopback 7 ip address interface loopback 8 ip address interface loopback 9 ip address interface loopback 10 ip address interface loopback 11 ip address (B): Creating Access Lists Step 1. On Router 2, create an access list by entering the following commands: access-list 2 deny access-list 2 deny

11 access-list 2 deny access list 2 permit any. 2(C): Distributing Routes via EIGRP Step 1. On Router 2, enter the following commands in global configuration mode. router eigrp 10 network network distribute-list 2 out no auto-summary exit Step 2. Configure EIGRP on Router 1 as was done in Lab Exercise One. QUESTIONS(1): 1. What entries do you see in Router 1 s routing table? 2. Explain why certain routes are present and some are missing? Why is route filtering done? 3. Can you atleast ping the missing routes? 4. Explain the advantags and disadvantages of route filtering and suggest any alternatives to this.

12 LAB EXERCISE 3 Convergengce and Load Balancing Figure 2. Topology for Parts 3 and 4 CONVERGENCE 3(A1) : Convergence With Known Feasible Successor Step 1. Set up the topology as shown in Figure 2. Do remember to add a default gateway on PC1. Step 2. Enter the following steps on all routers: (config)# router eigrp 20 network no auto-summary. Step 3. Ping acorss all interfaces from every router to ensure connectivity across the entire network. Step 4. Run the command show ip eigrp topology. Notice the path Router 1 takes to reach network address It can be seen that it takes the path via Router 2 since it is the lower cost path. It can also be seen that the path lists a feasible successor. Step 5. Start ethereal on interface eth0 of PC1. Set up a continuous ping from PC1 to Disconnect interface eth0 on router 1. The ping should be unsuccessful for some moments. From ethereal, note down the time taken for the network to converge. Reconnect interface eth0 on router 1.

13 Step 6. Check if connecting the interface again leads to change in the path again. 3 (A2) : Convergence With No Feasible Successor Step 1. Run the command show ip eigrp topology Note down the path Router 1 takes to reach network address Note down if the path to has any successor. There shouldn t be any. Step 2. Start ethereal on interface eth0 of PC1. Step 3. Start a continuous ping from PC1 to network address Disconnect eth0 of Router 1. On ethereal, observe how long it takes for ping to be successful again. Reconnect eth0 on router 1. Run traceroute to the same network address and check the path. QUESTIONS(1): 1. In which case did convergence take more time 2. Explain why you observe the difference in convergence times. 3. Explain Feasible Distance and Reported Distance 3 (B1) : Load Balancing Across Equal Links. LOAD BALANCING Step 1. On Router 3 run the following command in global configuration mode. router eigrp 20 maximum-paths 4. variance 1. Step 2. Run the command sh ip route on Router 3 The path to network shoud list two routes. Observe that the routes are the exact same cost. Comfirm the load balancing by executing traceroute to from Router 3. Step 3. Repeat step 1, but this time change the variance to 50. Run sh ip route and see if there are any other changes. QUESTIONS(2): 1. What is the necessary condition for load balancing? 2. What do the maximum-paths 4 and variance 1 command do?

14 3. Explain your observation in step 3. 3 (B2) : Load Balancing Across Un-Equal Links. Step 1. On Router 1, run the command sh ip eigrp topology and save the output. Observe the entry for network lists two successors. Step 2. On Router 1, run the command sh ip route and save the output. Step 3. On Router 1, run the following commands in global configuration mode. router eigrp 20 maximum paths 4 variance 2. Step 4. On Router 1, run the command sh ip route and save the output. Step 5. repeat step 4 and this time and change the variance value to 50. Run sh ip route and observe the output. QUESTIONS(3): 1. What does the variance 2 command do? 2. Explain your observation in step 5.

15 LAB EXERCISE 4 Adding and Distributing Default Route with EIGRP We use the same topology as in part 2 for this experiment. 4(A): Step 1: On Router 4, add the following commands in global configuration mode: interface loopback 8 ip address exit router eigrp 1 network no auto-summary. exit ip default network Step 2. Run the command sh ip route on all routers and observe the output. QUESTIONS(1): 1. Explain the difference between this route entry and other routes in the table.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

cisco. Number: Passing Score: 800 Time Limit: 120 min.

cisco. Number: Passing Score: 800 Time Limit: 120 min. 300-101.cisco Number: 300-101 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 Examine the following output of the show ip ospf interface command. What would be the effect of executing the auto-cost

More information

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

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

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

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

Configuration and Management of Networks

Configuration and Management of Networks EIGRP Summarization and efault Network Advertisement The lab is built on the topology: Topology Objectives Review a basic EIGRP configuration. onfigure and verify EIGRP auto-summarization. onfigure and

More information

Configuring IGRP. The Cisco IGRP Implementation

Configuring IGRP. The Cisco IGRP Implementation Configuring IGRP This chapter describes how to configure the Interior Gateway Routing Protocol (IGRP). For a complete description of the IGRP commands in this chapter, refer to the IGRP s chapter of 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

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

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

Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two)

Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two) ICND1 OSPF Questions Question 1 Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two) A. It is locally significant. B. It is globally significant. C.

More information

F. Configure a distribute-list on router RTA that allows it to advertise all routes to the spoke routers.

F. Configure a distribute-list on router RTA that allows it to advertise all routes to the spoke routers. Refer to the exhibit. Router RTA is the hub router for routers RTB and RTC. The Frame Relay network is configured with EIGRP, and the entire network is in autonomous system 1. However, router RTB and RTC

More information

Chapter 4 Lab 4-2, Controlling Routing Updates. Topology. Objectives. CCNPv7 ROUTE

Chapter 4 Lab 4-2, Controlling Routing Updates. Topology. Objectives. CCNPv7 ROUTE Chapter 4 Lab 4-2, Controlling Routing Updates Topology Objectives Filter routes using a distribute list and ACL. Filter routes using a distribute list and prefix list. Filter redistributed routes using

More information

ASA 9.x EIGRP Configuration Example

ASA 9.x EIGRP Configuration Example ASA 9.x EIGRP Configuration Example Contents Introduction Prerequisites Requirements Components Used Background Information Guidelines and Limitations EIGRP and Failover Configure Network Diagram ASDM

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

What Does the EIGRP DUAL 3 SIA Error Message Mean?

What Does the EIGRP DUAL 3 SIA Error Message Mean? What Does the EIGRP DUAL 3 SIA Error Message Mean? Document ID: 13676 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information What Causes the EIGRP DUAL 3 SIA

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

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

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

IPv4 IGP Troubleshooting. IPv4 Routing Workflow. IPv4 routing can be subdivided into three discrete steps

IPv4 IGP Troubleshooting. IPv4 Routing Workflow. IPv4 routing can be subdivided into three discrete steps Internetwork Expert s CCNP Bootcamp IPv4 IGP Troubleshooting http:// IPv4 Routing Workflow IPv4 routing can be subdivided into three discrete steps Routing lookup Switching method Layer 2 encapsulation

More information

Operation Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents

Operation Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents Table of Contents Table of Contents Chapter 1 Static Routing Configuration... 1-1 1.1 Introduction... 1-1 1.1.1 Static Route... 1-1 1.1.2 Default Route... 1-1 1.1.3 Application Environment of Static Routing...

More information

Lab Configuring Advanced EIGRP for IPv4 Features Topology

Lab Configuring Advanced EIGRP for IPv4 Features Topology Topology 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 9 Addressing Table Device Interface IP Address Subnet Mask Default Gateway G0/0 192.168.1.1 255.255.255.0

More information

EIGRP Dynamic Metric Calculations

EIGRP Dynamic Metric Calculations The features enables the Enhanced Interior Gateway Routing Protocol (EIGRP) to use dynamic raw radio-link characteristics (current and maximum bandwidth, latency, and resources) to compute a composite

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

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

Chapter 4: Manipulating Routing

Chapter 4: Manipulating Routing : Manipulating Routing Updates CCNP ROUTE: Implementing IP Routing ROUTE v6 1 Objectives Describe network performance issues and ways to control routing updates and traffic (3). Describe the purpose of

More information

Ch. 5 Maintaining and Troubleshooting Routing Solutions. Net412- Network troubleshooting

Ch. 5 Maintaining and Troubleshooting Routing Solutions. Net412- Network troubleshooting Ch. 5 Maintaining and Troubleshooting Routing Solutions Net412- Network troubleshooting Troubleshooting Routing Network Layer Connectivity EIGRP OSPF 2 Network Connectivity Just like we did when we looked

More information

CCNP ROUTE Workbook - EIGRP

CCNP ROUTE Workbook - EIGRP CCNP ROUTE Workbook - EIGRP EIGRP Initial Configuration Load the task1-1 initial configurations before starting. Task Configure EIGRP on Routers-1, 2, and 4 using the following guidelines: Classic-mode

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

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

CCNP ROUTE Exam (http://www.digitaltut.com)

CCNP ROUTE Exam (http://www.digitaltut.com) CCNP ROUTE Exam (http://www.digitaltut.com) Number: 642-902 Passing Score: 790 Time Limit: 90 min File Version: 1.0 http://www.gratisexam.com/ 642-902 ROUTE Exam Topics Exam Description The Implementing

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

Exam Code : Version: Free Demo. IT Certification Guaranteed, The Easy Way!

Exam Code : Version: Free Demo. IT Certification Guaranteed, The Easy Way! Vendor : Cisco Exam Code : 642-832 Version: Free Demo IT Certification Guaranteed, The Easy Way Cheat-Test.us - The Worldwide Renowned IT Certification Material Provider The safer, easier way to help you

More information

CCNA EXPLORATION V4.0 ROUTING PROTOCOLS AND CONCEPTS

CCNA EXPLORATION V4.0 ROUTING PROTOCOLS AND CONCEPTS CCNA EXPLORATION V4.0 ACCESSIBLE INSTRUCTOR MATERIALS COMPARISON OF NEW CURRICULA WITH EXISTING CURRICULA Prepared by Cisco Learning Institute June 23, 2008 Routing Protocols and Concepts Summary New CCNA

More information

Lab 2-3 Summarization and Default Network Advertisement

Lab 2-3 Summarization and Default Network Advertisement Lab 2-3 Summarization and efault Network Advertisement Learning Objectives Review basic EIGRP configuration onfigure and verify EIGRP auto-summarization onfigure and verify EIGRP manual summarization Learn

More information

RIPv2. Routing Protocols and Concepts Chapter 7. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public

RIPv2. Routing Protocols and Concepts Chapter 7. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public RIPv2 Routing Protocols and Concepts Chapter 7 1 Objectives Encounter and describe the limitations of RIPv1 s limitations. Apply the basic Routing Information Protocol Version 2 (RIPv2) configuration commands

More information

Chapter 4 Lab 4-2, Redistribution Between EIGRP and OSPF

Chapter 4 Lab 4-2, Redistribution Between EIGRP and OSPF Chapter 4 Lab 4-2, Redistribution Between EIGRP and OSPF Topology Objectives Review EIGRP and OSPF configuration. Redistribute into EIGRP. Redistribute into OSPF. Summarize routes in EIGRP. Filter routes

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

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

Configuring BGP. Cisco s BGP Implementation

Configuring BGP. Cisco s BGP Implementation Configuring BGP This chapter describes how to configure Border Gateway Protocol (BGP). For a complete description of the BGP commands in this chapter, refer to the BGP s chapter of the Network Protocols

More information

Implementing cisco ip routing

Implementing cisco ip routing Cisco 642-902 Implementing cisco ip routing Version Demo Topic 1: Implement an EIGRP based solution, given a network design and a set of requirements QUESTION 1 Which three statements about the EIGRP routing

More information

Lab 9.6.1: Basic EIGRP Configuration Lab

Lab 9.6.1: Basic EIGRP Configuration Lab Lab 9.6.1: Basic EIGRP Configuration Lab Topology Diagram Address Table 1 Learning Objectives Upon completion of this lab, you will be able to: Cable a network according to the Topology Diagram. Erase

More information

Add Path Support in EIGRP

Add Path Support in EIGRP The feature enables hubs in a single Dynamic Multipoint VPN (DMVPN) domain to advertise multiple best paths to connected spokes when the Enhanced Interior Gateway Routing Protocol (EIGRP) is the routing

More information

RealCiscoLAB.com. Chapter 2 Lab 2-2, EIGRP Load Balancing. Topology. Objectives. Background. CCNPv6 ROUTE

RealCiscoLAB.com. Chapter 2 Lab 2-2, EIGRP Load Balancing. Topology. Objectives. Background. CCNPv6 ROUTE RealCiscoLAB.com CCNPv6 ROUTE Chapter 2 Lab 2-2, EIGRP Load Balancing Topology Objectives Background Review a basic EIGRP configuration. Explore the EIGRP topology table. Identify successors, feasible

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

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

EIGRP Support for Route Map Filtering

EIGRP Support for Route Map Filtering The feature enables Enhanced Interior Gateway Routing Protocol (EIGRP) to interoperate with other protocols to leverage additional routing functionality by filtering inbound and outbound traffic based

More information

Fast IP Convergence. Section 4. Period from when a topology change occurs, to the moment when all the routers have a consistent view of the network.

Fast IP Convergence. Section 4. Period from when a topology change occurs, to the moment when all the routers have a consistent view of the network. Fast IP Convergence Section 4 2899_05_2001_c1 2001, Cisco Systems, Inc. All rights reserved. 1 IP Convergence Convergence Time Period from when a topology change occurs, to the moment when all the routers

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

CCNA Routing and Switching Study Guide Chapters 3 & 17: Enhanced IGRP

CCNA Routing and Switching Study Guide Chapters 3 & 17: Enhanced IGRP CCNA Routing and Switching Study Guide Chapters 3 & 17: Enhanced IGRP Instructor & Todd Lammle Chapter 19 objectives The ICND2 topics covered in this chapter include: IP Routing Technologies Differentiate

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

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

Lecture (03) RIP. By: Dr. Ahmed ElShafee. Dr. Ahmed ElShafee, ACU : Fall 2016, Practical App. Networks II

Lecture (03) RIP. By: Dr. Ahmed ElShafee. Dr. Ahmed ElShafee, ACU : Fall 2016, Practical App. Networks II Lecture (03) RIP By: Dr. Ahmed ElShafee ١ Dr. Ahmed ElShafee, ACU : Fall 2016, Practical App. Networks II Dynamic Routing Protocol Overview Routing protocols are used between routers to determine paths

More information

Configuring RIP. Information About RIP CHAPTER

Configuring RIP. Information About RIP CHAPTER CHAPTER 23 This chapter describes how to configure the ASASM to route data, perform authentication, and redistribute routing information using the Routing Information Protocol (RIP). This chapter includes

More information

Lab 5-3 Redistribution Between EIGRP and IS-IS

Lab 5-3 Redistribution Between EIGRP and IS-IS Lab 5-3 Redistribution Between EIGRP and IS-IS Learning Objectives Review basic configuration of EIGRP and IS-IS Redistribute into EIGRP Redistribute into IS-IS Use a standard access list to select routes

More information

Claim desired outcome

Claim desired outcome Assessment Authoring - Table of Specification (TOS) The Table of Specification (TOS) is a high-level design template for a given assessment. It identifies the claims, components skills, targeted number

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

Cisco Interconnecting Cisco Networking Devices Part 2

Cisco Interconnecting Cisco Networking Devices Part 2 Cisco 200-105 Interconnecting Cisco Networking Devices Part 2 R1# show running-config description ***Loopback*** ip address 192.168.1.1 255.255.255.255 Question: 374 description **Connected to R1-LAN**

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

Basic IP Routing. Finding Feature Information. Information About Basic IP Routing. Variable-Length Subnet Masks

Basic IP Routing. Finding Feature Information. Information About Basic IP Routing. Variable-Length Subnet Masks This module describes how to configure basic IP routing. The Internet Protocol (IP) is a network layer (Layer 3) protocol that contains addressing information and some control information that enables

More information

Chapter 2 Lab 2-1, EIGRP Configuration, Bandwidth, and Adjacencies

Chapter 2 Lab 2-1, EIGRP Configuration, Bandwidth, and Adjacencies Chapter 2 Lab 2-1, EIGRP Configuration, Bandwidth, and Adjacencies Topology Objectives Background Configure EIGRP on multiple routers. Configure the bandwidth command to modify the EIGRP metric. Verify

More information

IP Routing: EIGRP Configuration Guide, Cisco IOS Release 15.1MT

IP Routing: EIGRP Configuration Guide, Cisco IOS Release 15.1MT IP Routing: EIGRP Configuration Guide, Cisco IOS Release 15.1MT Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

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

IP Routing: EIGRP Configuration Guide, Cisco IOS Release 15M&T

IP Routing: EIGRP Configuration Guide, Cisco IOS Release 15M&T Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 2018 Cisco Systems, Inc. All rights

More information

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

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

More information

Introduction to OSPF

Introduction to OSPF Introduction to OSPF ISP/IXP Workshops ISP/IXP Workshops 1999, Cisco Systems, Inc. 1 Agenda OSPF Primer OSPF in Service Provider Networks OSPF BCP - Adding Networks OSPF Command Summary 2 OSPF Primer 3

More information

Routing Overview. Information About Routing CHAPTER

Routing Overview. Information About Routing CHAPTER 21 CHAPTER This chapter describes underlying concepts of how routing behaves within the ASA, and the routing protocols that are supported. This chapter includes the following sections: Information About

More information

Interconnecting Cisco Networking Devices Part 2

Interconnecting Cisco Networking Devices Part 2 ICND2 Interconnecting Cisco Networking Devices Part 2 Volume 2 Version 1.0 Student Guide Editorial, Production, and Web Services (EPWS): 07.25.07 DISCLAIMER WARRANTY: THIS CONTENT IS BEING PROVIDED AS

More information

Chapter 4 Lab 4-1, Redistribution Between EIGRP and OSPF. Topology. Objectives. CCNPv7 ROUTE

Chapter 4 Lab 4-1, Redistribution Between EIGRP and OSPF. Topology. Objectives. CCNPv7 ROUTE hapter 4 Topology Objectives Review EIGRP and OSPF configuration. Summarize routes in EIGRP. Summarize in OSPF at an ABR. Redistribute into EIGRP. Redistribute into OSPF. Summarize in OSPF at an ASBR.

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

Chapter 5: Maintaining and Troubleshooting Routing Solutions

Chapter 5: Maintaining and Troubleshooting Routing Solutions Chapter 5: Maintaining and Troubleshooting Routing Solutions CCNP TSHOOT: Maintaining and Troubleshooting IP Networks Course v6 1 Troubleshooting Network Layer Connectivity 2 Routing and Routing Data Structures

More information

Implementing Cisco IP Routing

Implementing Cisco IP Routing ROUTE Implementing Cisco IP Routing Volume 3 Version 1.0 Student Guide Text Part Number: 97-2816-02 DISCLAIMER WARRANTY: THIS CONTENT IS BEING PROVIDED AS IS. CISCO MAKES AND YOU RECEIVE NO WARRANTIES

More information

FiberstoreOS IP Routing Configuration Guide

FiberstoreOS IP Routing Configuration Guide FiberstoreOS IP Routing Configuration Guide Contents 1 Configuring IP Unicast-Routing... 6 1.1 Overview...6 1.2 Topology... 6 1.3 Configuration... 6 1.4 Validation... 8 2 Configuring RIP... 10 2.1 Overview...10

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

Configuring IP Routing Protocols

Configuring IP Routing Protocols Configuring IP Routing Protocols This chapter describes how to configure the various Internet Protocol (IP) routing protocols. For a complete description of the commands listed in this chapter, refer to

More information

RIP Commands. output-delay, page 32 passive-interface (RIP), page 33 poison-reverse, page 35 receive version, page 37 redistribute (RIP), page 39

RIP Commands. output-delay, page 32 passive-interface (RIP), page 33 poison-reverse, page 35 receive version, page 37 redistribute (RIP), page 39 RIP Commands This module describes the commands used to configure and monitor the Routing Information Protocol (RIP). For detailed information about RIP concepts, configuration tasks, and examples, see

More information

Completed Planning Practice Tables

Completed Planning Practice Tables Appendix F Completed Planning Practice Tables Chapter 1 Table 1-3 Design Review Design Goal The design requires the number of entries in a router s routing table to be reduced. The design calls for the

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

Lab 4: Routing using OSPF

Lab 4: Routing using OSPF Network Topology:- Lab 4: Routing using OSPF Device Interface IP Address Subnet Mask Gateway/Clock Description Rate Fa 0/0 172.16.1.17 255.255.255.240 ----- R1 LAN R1 Se 0/0/0 192.168.10.1 255.255.255.252

More information

Basic IP Routing. Finding Feature Information. Information About Basic IP Routing. Variable-Length Subnet Masks

Basic IP Routing. Finding Feature Information. Information About Basic IP Routing. Variable-Length Subnet Masks This module describes how to configure basic IP routing. The Internet Protocol (IP) is a network layer (Layer 3) protocol that contains addressing information and some control information that enables

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

FiberstoreOS IP Routing Configuration Guide

FiberstoreOS IP Routing Configuration Guide FiberstoreOS IP Routing Configuration Guide Contents 1 Configuring IP Unicast-Routing... 1 1.1 Overview... 1 1.2 Topology...1 1.3 Configuration... 2 1.4 Validation... 3 2 Configuring RIP...5 2.1 Overview...

More information

D Commands. Send comments to

D Commands. Send comments to This chapter describes the Cisco NX-OS Enhanced Interior Gateway Routing Protocol (EIGRP) commands that begin with D. UCR-293 default-information originate (EIGRP) default-information originate (EIGRP)

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

Alcatel-lucent EXAM - 4A Alcatel-Lucent Interior Routing Protocols and High Availability. Buy Full Product.

Alcatel-lucent EXAM - 4A Alcatel-Lucent Interior Routing Protocols and High Availability. Buy Full Product. Alcatel-lucent EXAM - 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability Buy Full Product http://www.examskey.com/4a0-101.html Examskey Alcatel-lucent 4A0-101 exam demo product is

More information

FSOS IP Routing Configuration Guide

FSOS IP Routing Configuration Guide FSOS IP Routing Configuration Guide Contents 1 Configuring IP Unicast-Routing... 6 1.1 Overview... 6 1.2 Topology...6 1.3 Configuration... 7 1.4 Validation... 8 2 Configuring RIP...10 2.1 Overview... 10

More information