Lab 4: Routing using OSPF

Size: px
Start display at page:

Download "Lab 4: Routing using OSPF"

Transcription

1 Network Topology:- Lab 4: Routing using OSPF Device Interface IP Address Subnet Mask Gateway/Clock Description Rate Fa 0/ R1 LAN R1 Se 0/0/ Link to R2 Se 0/0/ Link to R3 Fa 0/ R2 LAN R2 Se 0/0/ Link to R1 Se 0/0/ Link to R3 Fa 0/ R3 LAN R3 Se 0/0/ Link to R2 Se 0/0/ Link to R1 PC1 NIC PC2 NIC PC3 NIC Objective: This lab configures routers using Open Shortest Path First Protocol (OSPF) so that all devices can ping any other device. Upon Completion You will learn: 1. Configure OSPF routing on all routers. 2. Learn OSPF router IDs. 3. Loopback addressing. 4. Verify OSPF routing using show commands. Theory: 1

2 OSPF is an interior gateway protocol that routes Internet Protocol (IP) packets solely within a single routing domain (autonomous system). It gathers link state information from available routers and constructs a topology map of the network. The topology determines the routing table presented to the Internet Layer which makes routing decisions based solely on the destination IP address found in IP packets. OSPF was designed to support variable-length subnet masking (VLSM) or Classless Inter- Domain Routing (CIDR) addressing models. OSPF detects changes in the topology, such as link failures, very quickly and converges on a new loop-free routing structure within seconds. It computes the shortest path tree for each route using a method based on Dijkstra's algorithm, a shortest path first algorithm. The link-state information is maintained on each router as a link-state database (LSDB) which is a tree-image of the entire network topology. Identical copies of the LSDB are periodically updated through flooding on all OSPF routers. The OSPF routing policies to construct a route table are governed by link cost factors (external metrics) associated with each routing interface. Cost factors may be the distance of a router (roundtrip time), network throughput of a link, or link availability and reliability, expressed as simple unitless numbers. This provides a dynamic process of traffic load balancing between routes of equal cost. An OSPF network may be structured, or subdivided, into routing areas to simplify administration and optimize traffic and resource utilization. Areas are identified by 32-bit numbers, expressed either simply in decimal, or often in octet-based dot-decimal notation, familiar from IPv4 address notation. By convention, Area 0 (zero) or represents the core or backbone region of an OSPF network. The identifications of other areas may be chosen at will; often, administrators select the IP address of a main router in an area as the area's identification. Each additional area must have a direct or virtual connection to the backbone OSPF area. Such connections are maintained by an interconnecting router, known as Area Border Router (ABR). An ABR maintains separate link state databases for each area it serves and maintains summarized routes for all areas in the network. OSPF does not use a TCP/IP transport protocol (UDP, TCP), but is encapsulated directly in IP datagrams with protocol number 89. This is in contrast to other routing protocols, such as the Routing Information Protocol (RIP), or the Border Gateway Protocol (BGP). OSPF handles its own error detection and correction functions. Routers in the same broadcast domain or at each end of a point-to-point telecommunications link form adjacencies when they have detected each other. This detection occurs when a router identifies itself in a hello OSPF protocol packet. This is called a two-way state and is the most basic relationship. The routers in an Ethernet or frame relay network select a designated router (DR) and a backup designated router (BDR) which act as a hub to reduce traffic between routers. OSPF uses both unicast and multicast to send "hello packets" and link state updates. As a link state routing protocol, OSPF establishes and maintains neighbor relationships in order to exchange routing updates with other routers. The neighbor relationship table is called an adjacency database in OSPF. Provided that OSPF is configured correctly, OSPF forms neighbor relationships only with the routers directly connected to it. In order to form a neighbor relationship between two routers, the interfaces used to form the relationship must be in the same area. An interface can only belong to a single area. Router Identities: Each router in an OSPF network needs a unique ID that is used to provide a unique identity to the OSPF router. The router ID is chosen according to one of the two following criteria: 2

3 The highest IP address on its loop back interfaces (this is a logical interface on a router(. The highest IP address on its active interfaces. OSPF learns about its neighbors and builds its adjacency and topology tables by sharing LSAs OSPF routers will generate hello LSAs every 10 seconds. If a neighbor is not seen within the dead interval time, which defaults to 40 seconds, the neighbor is declared dead. First before a router will accept any routing information from another OSPF router, they have to build an adjacency with each other on their connected interfaces. When this adjacency is built, the two routers (on the connected interfaces) are called a neighbor, which indicates a special relationship between the two. In order for two routers to become neighbors, the following must match on each router: The area number and its type. The hello and dead interval timers. The OSPF password (optional), if it is configured. The area stub flag (used to contain OSPF messages and routing information). Thus, OSPF routers will go through three states called the exchange process: 1. Down state: The new router has not exchanged any OSPF information with any other router. 2. Init state: A destination router has received a new router's hello and adds it to its neighbor list (assuming that certain values match). Note that communication is only unidirectional at this point. 3. Two-Way state: The new router receives a unidirectional reply to its initial hello packet and adds destination router to its neighbor database. Once the routers have entered a two-way state, they are considered neighbors. For each network multi-access segment, there is a DR and a BDR as well as other routers. This process is true for multi-access segments, (an example, if you have ten VLANs in your switched area, you ll have ten DRs and ten BDRs.) but not point-to-point links, where DRs are not necessary. The router with the highest priority (or highest router ID) becomes the DR. Loop back Interfaces: A loop back interface is a logical, virtual interface on a router that always remains up. By default, the router doesn't have any loop back interfaces, but they can easily be created. OSPF routers use Link State Advertisements (LSAs) to communicate with each other. One type of LSA is a hello, which is used to form neighbor relationships and as a keep-alive function. Hellos are generated every ten seconds. Area types: An OSPF domain is divided into areas that are labeled with 32-bit area identifiers. The area identifiers are commonly, but not always, written in the dot-decimal notation of an IPv4 address. However, they are not IP addresses and may duplicate, without conflict, any IPv4 address. Areas are logical groupings of hosts and networks, including their routers having interfaces connected to any of the included networks. Each area maintains a separate link state database whose information may be summarized towards the rest of the network by the connecting router. Thus, the topology of an area is unknown outside of the area. This reduces the amount of routing traffic between parts of an autonomous system. (An ABR simulation shows how an ABR lets areas know each other's network addresses by flooding Summary LSA). Several special area types are defined:- 1. Backbone area: The backbone area (also known as area 0 or area ) forms the core of an OSPF network. All other areas are connected to it, and inter-area routing happens via 3

4 routers connected to the backbone area and to their own associated areas. It is the logical and physical structure for the "OSPF domain" and is attached to all nonzero areas in the OSPF domain. The backbone area is responsible for distributing routing information between nonbackbone areas. The backbone must be contiguous, but it does not need to be physically contiguous; backbone connectivity can be established and maintained through the configuration of virtual links. 2. Stub area: A stub area is an area which does not receive route advertisements external to the autonomous system (AS) and routing from within the area is based entirely on a default route. Sharing Routing Information After electing the DR/BDR pair, the routers continue to generate hellos to maintain communication. This is considered an EXStart state, in which the OSPF routers are ready to share link state information. The process the routers go through is called an exchange protocol 1. EXStart state: The DR and BDR form adjacencies with the other OSPF routers on the segment, and then within each adjacency, the router with the highest router ID becomes the master and starts the exchange process first (shares its link state information) note that the DR is not necessarily the master for the exchange process. The remaining router in the adjacency will be the slave. 2. Exchange state: The master starts sharing link state information first, with the slave. These are called DBDs (database description packets), also referred to as DDPs. The DBDs contain the link-state type, the ID of the advertising router, the cost of the advertised link, and the sequence number of the link. The slave responds back with an LSACK an acknowledgment to the DBD from the master. The slave then compares the DBD's information with its own. 3. Loading state: If the master has more up-to-date information than the slave, the slave will respond to the master's original DBD with an LSR (Link State Request). The master will then send a LSU (Link State Update) with the detailed information of the links to the slave. The slave will then incorporate this into its local link state database. Again, the slave will generate an LSACK to the master to acknowledge the fact that it received the LSU. If a slave has more up-to-date information, it will repeat the "exchange" and "loading" states. 4. Full state: Once the master and the slave are synchronized, they are considered to be in a full state. To summarize these four steps, OSPF routers share a type of LSA message in order to disclose information about available routes. Basically, an LSA update message contains a link and a state, as well as other information. Cost metric is the inverse of the accumulated bandwidth values of routers interfaces. The default measurement that Cisco uses in calculating the cost metric is: cost = the inverse of interface bandwidth. Scenario: You have built a lab network that had the configurations above. After which you have to configure the routers and the PCs with IP addresses, then configure the routers to actually route the packets between the networks. In this lab practice, you will use OSPF routing protocol to construct the routing tables. So you have to configure the routers with OSPF and define the networks and areas, so that all devices can ping any other device. 4

5 Practice1:- Now you are ready to use Packet Tracer to build your network and apply your lab network routing schemes. Task 1: Configure The Interfaces and PCs Step 1. Configure the routers' interfaces and the PCs to have the IP addresses in the table above. Step 2. Save the running configurations into NVRam. Task 2: Configure The OSPF Routing on R1, R2 & R3 Step 1. Turn on the OSPF routing on R1 using router ospf 1 command in the configuration mode. R1(config)#router ospf 1 R1(config-router)# Step 2. Add the networks connected to the router to be used in the update process. The command goes as follows: network <network_address> <number_of_ips> area <area_id> R1(config-router)#network area 0 R1(config-router)#network area 0 R1(config-router)#network area 0 R1(config-router)#exit R1(config)# Step 3. Repeat those steps on R2. R2(config)#router ospf 1 R2(config-router)#network area 0 R2(config-router)#network area 0 R2(config-router)#network area 0 R2(config-router)#exit R2(config)# Step 4. Repeat those steps on R3. R3(config)#router ospf 1 R3(config-router)#network area 0 R3(config-router)#network area 0 R3(config-router)#network area 0 R3(config-router)#exit R3(config)# Task 3: Verify OSPF Operation Step 2 Use the show ip protocol command to view information about the routing protocol The show ip protocols command displays the routing protocol that is currently configured on the router. This output can be used to verify most RIP parameters to confirm that:- RIP routing is configured. The correct interfaces send and receive RIP updates. The router advertises the correct networks. RIP neighbors are sending updates. Step 1. Use the show ip ospf neighbor command to information about other routers are learned. R1#show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface FULL/ - 00:00: Serial0/0/ FULL/ - 00:00: Serial0/0/1 5

6 Step 2. Use the show ip protocol command to view information about the routing protocol. Routing Protocol is "ospf 1" Outgoing update filter list for all interfaces is not set Incoming update filter list for all interfaces is not set Router ID Number of areas in this router is 1. 1 normal 0 stub 0 nssa Maximum path: 4 Routing for Networks: area area area 0 Routing Information Sources: Gateway Distance Last Update :03: :03:10 Distance: (default is 110) Step 3. Try also the following command: show ip route, show ip ospf interface, and show ip ospf. R1#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area - * candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set 42/ is subnetted, 1 subnets O [110/65] via , 00:11:40, Serial0/0/0 42/ is subnetted, 2 subnets C is directly connected, FastEthernet0/0 O [110/65] via , 00:05:31, Serial0/0/1 01/ is subnetted, 3 subnets C is directly connected, Serial0/0/0 C is directly connected, Serial0/0/1 O [110/128] via , 00:11:24, Serial0/0/0 [110/128] via , 00:05:31, Serial0/0/1 O Identifies the source of the route as OSPF Indicates the address of the remote network. [110/65] Indicates the administrative distance (110) and the cost (65). via Specifies the address of the next-hop router (R2) to send traffic to for the remote network. Serial0/0/0 Specifies the local interface through which the remote network can be reached. R1#show ip ospf interface FastEthernet0/0 is up, line protocol is up Internet address is /28, Area 0 Process ID 1, Router ID , Network Type BROADCAST, Cost: 1 Transmit Delay is 1 sec, State DR, Priority 1 Designated Router (ID) , Interface address No backup designated router on this network Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5 Hello due in 00:00:09 Index 1/1, flood queue length 0 Next 0x0(0)/0x0(0) Last flood scan length is 1, maximum is 1 Last flood scan time is 0 msec, maximum is 0 msec Neighbor Count is 0, Adjacent neighbor count is 0 Suppress hello for 0 neighbor(s) 6

7 Serial0/0/0 is up, line protocol is up Internet address is /30, Area 0 Process ID 1, Router ID , Network Type POINT-TO-POINT, Cost: 64 Transmit Delay is 1 sec, State POINT-TO-POINT, Priority 0 No designated router on this network No backup designated router on this network Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5 Hello due in 00:00:03 Index 2/2, flood queue length 0 Next 0x0(0)/0x0(0) Last flood scan length is 1, maximum is 1 Last flood scan time is 0 msec, maximum is 0 msec Neighbor Count is 1, Adjacent neighbor count is 1 Adjacent with neighbor Suppress hello for 0 neighbor(s) Serial0/0/1 is up, line protocol is up Internet address is /30, Area 0 Process ID 1, Router ID , Network Type POINT-TO-POINT, Cost: 64 Transmit Delay is 1 sec, State POINT-TO-POINT, Priority 0 No designated router on this network No backup designated router on this network Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5 Hello due in 00:00:02 Index 3/3, flood queue length 0 Next 0x0(0)/0x0(0) Last flood scan length is 1, maximum is 1 Last flood scan time is 0 msec, maximum is 0 msec Neighbor Count is 1, Adjacent neighbor count is 1 Adjacent with neighbor Suppress hello for 0 neighbor(s) R1#show ip ospf Routing Process "ospf 1" with ID Supports only single TOS(TOS0) routes Supports opaque LSA SPF schedule delay 5 secs, Hold time between two SPFs 10 secs Minimum LSA interval 5 secs. Minimum LSA arrival 1 secs Number of external LSA 0. Checksum Sum 0x Number of opaque AS LSA 0. Checksum Sum 0x Number of DCbitless external and opaque AS LSA 0 Number of DoNotAge external and opaque AS LSA 0 Number of areas in this router is 1. 1 normal 0 stub 0 nssa External flood list length 0 Area BACKBONE(0) Number of interfaces in this area is 3 Area has no authentication SPF algorithm executed 7 times Area ranges are Number of LSA 3. Checksum Sum 0x01e35c Number of opaque link LSA 0. Checksum Sum 0x Number of DCbitless LSA 0 Number of indication LSA 0 Number of DoNotAge LSA 0 Flood list length 0 Task 4: Configure OSPF Router IDs The OSPF router ID is used to uniquely identify the router in the OSPF routing domain. A router ID is usually an IP address. Cisco routers derive the router ID in one of three ways and with the following precedence:- 1. IP address configured with the OSPF router-id command. 2. Highest IP address of any of the router s loopback addresses. 3. Highest active IP address on any of the router s physical interfaces. 7

8 Step 1. Examine the current router IDs in the topology. (The router ID can also be seen in the output of the show ip protocols, show ip ospf, and show ip ospf interfaces commands):- What is the router ID for R1? What is the router ID for R2? What is the router ID for R3? Step 2. Use interface loopback <loopback_number> to change the router IDs of the routers in the topology. R1(config)# interface loopback 0 R1(config-if)# ip address R1(config)# end R1# R2(config)# interface loopback 0 R2(config-if)# ip address R2(config)# end R2# R3(config)# interface loopback 0 R3(config-if)# ip address R3(config)# end R3# Step 3. Reload the routers to force the new router IDs to be used. When a new router ID is configured, it will not be used until the OSPF process is restarted. Make sure that the current configuration is saved to NRAM, and then use the reload command to restart each of the routers. When the router is reloaded, what is the router ID for R1? When the router is reloaded, what is the router ID for R2? When the router is reloaded, what is the router ID for R3? Step 4. Use Ping command to ping from PC1 to PC2 and PC3, and vice versa. Is these pings are successful? If not debug your configurations on the routers. Task 5: Documentation On each router, save the running configuration using (copy running-config startupconfig) command, then save your Packet Tracer's file. 8

9 Practice2 (Homework):- Scenario: You have built a network for a company, which had the following configurations: Device Interface IP Address Subnet Mask Default Gateway Description R1 Fa0/ R1 LAN Se 0/0/ Link to R2 Se 0/0/ Link to R3 R2 Fa 0/ R2 LAN1 Fa 0/ R2 LAN2 Se 0/0/ Link to R1 Se 0/0/ Link to R3 R3 Fa 0/ R3 LAN Se 0/0/ Link to R1 Se 0/0/ Link to R2 PC0 NIC PC1 NIC PC2 NIC PC3 NIC Laptop0 NIC Laptop1 NIC Also to mentioned that all the routers have (cisco) as a console password and (class) for the privilege mode. (You have to write the descriptions EXACTLY as shown in the table). Now you have to further configure the routers to actually route the packets between the networks. In this lab homework, you will use OSPF routing protocol to construct the routing tables. Task 1: Configure Interfaces and PCs Use the table above as a guide to configure all the interfaces and the PCs. Task 2: Configure OPSF Routing Use the table above as a guide to configure all the interfaces and the PCs. Step 1. Configure OSPF routing on R1 R1(config)#router ospf 1 R1(config-router)# R1(config-router)#network area 1 R1(config-router)#network area 0 R1(config-router)#network area 0 R1(config-router)#end R1# Step 2. Configure RIP routing on R2 R2(config)#router ospf 1 R2(config-router)# R2(config-router)#network area 2 R2(config-router)#network area 3 R2(config-router)#network area 0 R2(config-router)#network area 0 R2(config-router)#end R2# 9

10 Step 3. Configure OSPF routing on R3 R3(config)#router ospf 1 R3(config-router)# R3(config-router)#network area 4 R3(config-router)#network area 0 R3(config-router)#network area 0 R3(config-router)#end R3# Task 3: Verify OSPF Routes Step 1. On each router use the show ip route, show ip ospf, show ip ospf interface and show ip protocols to verify that OSPF is working. (Write down the routes on external paper for the three routers and deliver it to your teacher) Task 4: Verify OSPF Routing Use Ping command to ping from PC0 to Laptop1, PC2 to PC1, PC1 to PC3, PC2 to Laptop0 and from PC1 to PC0. Are all these pings were successful? Please make sure that the completion percentage is 100% at this stage (without a * mark which means that there is an error on some routes), else you have to go back and verify your network settings. Also, don't forget to save the file and rename it to be LAB4-XXXX, where XXXX represents your student number. 11

CIS 83 LAB 2 - Single Area OSPF Rich Simms September 12, Objective. Scenario. Topology

CIS 83 LAB 2 - Single Area OSPF Rich Simms September 12, Objective. Scenario. Topology CIS 83 LAB 2 - Single Area OSPF Rich Simms September 12, 2006 Objective The objective of this lab is to become familiar setting up and configuring OSPF on three routers for a single area. OSPF is our first

More information

Config. Router# show ip ospf

Config. Router# show ip ospf Config cc na c ookb ook.com R1(config)#router ospf 10 R1(config-router)#router-id 0.0.0.1 Do router-id first, before relationships are formed using it R3(config-router)#do clear ip ospf process Necessary

More information

Lab- Configuring Basic Single-Area OSPFv2

Lab- Configuring Basic Single-Area OSPFv2 Lab- onfiguring Basic Single-Area OSPFv2 Topology G0/0 G0/0 2013 isco and/or its affiliates. All rights reserved. This document is isco Public. Page 1 of 29 Addressing Table Objectives Device Interface

More information

Chapter 1 Lab 1-1, Single-Area OSPF Link Costs and Interface Priorities

Chapter 1 Lab 1-1, Single-Area OSPF Link Costs and Interface Priorities Chapter 1 Lab 1-1, Single-Area OSPF Link Costs and Interface Priorities Topology Objectives Configure single-area OSPF on a router. Advertise loopback interfaces into OSPF. Verify OSPF adjacencies. Verify

More information

REDDIG II Computer Networking Training

REDDIG II Computer Networking Training REDDIG II Computer Networking Training JM SANCHEZ / PH RASSAT -20/06/2012 Invierno 2011 Capacitacion en fabrica - CORPAC Dynamic Routing Dynamic Routing Function(s) of Dynamic Routing Protocols: Dynamically

More information

Configuring Networking Protocols

Configuring Networking Protocols 11 CHAPTER This chapter describes how to configure the ML-Series card for supported IP routing protocols. It is intended to provide enough information for a network administrator to get the protocols up

More information

Chapter 3 Lab 3-1, Single-Area OSPF Link Costs and Interface Priorities

Chapter 3 Lab 3-1, Single-Area OSPF Link Costs and Interface Priorities NPv6 ROUTE hapter 3 Lab 3-1, Single-Area OSPF Link osts and Interface Priorities Topology Objectives onfigure single-area OSPF on a router. Advertise loopback interfaces into OSPF. Verify OSPF adjacencies.

More information

CCNA Semester 2 labs. Part 2 of 2 Labs for chapters 8 11

CCNA Semester 2 labs. Part 2 of 2 Labs for chapters 8 11 CCNA Semester 2 labs Part 2 of 2 Labs for chapters 8 11 8.2.4.5 Lab - Configuring Basic Single-Area OSPFv2 8.3.3.6 Lab - Configuring Basic Single-Area OSPFv3 9.2.2.7 Lab - Configuring and Verifying Standard

More information

IP Routing Tecnologie e Protocolli per Internet II rev 1

IP Routing Tecnologie e Protocolli per Internet II rev 1 IP Routing Tecnologie e Protocolli per Internet II rev 1 Andrea Detti Electronic Engineering dept. E-mail: andrea.detti@uniroma2.it Some sources: Cisco CCNA Routing and Switching ICND1 and ICND2 Slide

More information

TDC 363 Introduction to LANs

TDC 363 Introduction to LANs TDC 363 Introduction to LANs OSPF Greg Brewster DePaul University TDC 363 Greg Brewster, DePaul University 1 OSPF Link State Routing Algorithms Open Shortest Path First (OSPF) Message Types Operations

More information

Table of Contents 1 OSPF Configuration 1-1

Table of Contents 1 OSPF Configuration 1-1 Table of Contents 1 OSPF Configuration 1-1 Introduction to OSPF 1-1 Basic Concepts 1-2 OSPF Area Partition 1-4 Router Types 1-7 Classification of OSPF Networks 1-9 DR and BDR 1-9 OSPF Packet Formats 1-11

More information

CCNA Exploration: Routing Protocols and Concepts Chapter 10 Case Study

CCNA Exploration: Routing Protocols and Concepts Chapter 10 Case Study Objectives: Use OSPF single area to illustrate basic Link State components and operation. Migrate from EIGRP to OSPF single area. Intro: Trevni Inc. decided to upgrade their routing protocol from EIGRP

More information

Configuration and Management of Networks

Configuration and Management of Networks onfiguration and Management of Networks Single Area SPF Link osts and Interface Priorities The lab is built on the topology: bjectives Background! onfigure single-area SPF on a r.! Advertise loopback interfaces

More information

The following questions are designed to test your understanding of this chapter s

The following questions are designed to test your understanding of this chapter s 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

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

Table of Contents 1 Static Routing Configuration RIP Configuration 2-1

Table of Contents 1 Static Routing Configuration RIP Configuration 2-1 Table of Contents 1 Static Routing Configuration 1-1 Introduction 1-1 Static Route 1-1 Default Route 1-1 Application Environment of Static Routing 1-1 Configuring a Static Route 1-2 Configuration Prerequisites

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

Lab - Configuring Basic Single-Area OSPFv2

Lab - Configuring Basic Single-Area OSPFv2 Lab - Configuring Basic Single-Area SPFv2 Topology Addressing Table Device Interface IP Address Subnet Mask Default Gateway G0/0 192.168.1.1 255.255.255.0 N/A R1 S0/0/0 (DCE) 192.168.12.1 255.255.255.252

More information

OSPF Virtual Link. Contents. Prerequisites. Document ID: Requirements. Components Used

OSPF Virtual Link. Contents. Prerequisites. Document ID: Requirements. Components Used OSPF Virtual Link Document ID: 47866 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations How the Virtual Link Operates Calculate the Shortest

More information

Case Study 2: Frame Relay and OSPF Solution

Case Study 2: Frame Relay and OSPF Solution Case Study 2: Frame Relay and OSPF Solution Objective In this case study, you troubleshoot a complex scenario involving Frame Relay and Open Shortest Path First (OSPF). Figure 2-1 shows the topology for

More information

Chapter 3 Lab 3-2, Multi-Area OSPFv2 and OSPFv3 with Stub Area

Chapter 3 Lab 3-2, Multi-Area OSPFv2 and OSPFv3 with Stub Area Chapter 3 Topology Objectives Configure multi-area OSPFv2 for IPv4. Configure multi-area OSPFv3 for IPv6 Verify multi-area behavior. Configure stub and totally stubby areas for OSPFv2. Configure stub and

More information

CCNA Exploration: Routing Protocols and Concepts Chapter 11 Case Study

CCNA Exploration: Routing Protocols and Concepts Chapter 11 Case Study bjectives: Consolidate SPF knowledge. Describe the operation of SPF multi-area. Introduce the concept of route summarization with SPF. Introduce the concept of SPF optimization. Intro: Trevni Inc. needed

More information

Introduction to OSPF

Introduction to OSPF Introduction to OSPF ISP/IXP Workshops ISP/IXP Workshops 1999, Cisco Systems, Inc. 1 OSPF Dynamic Routing Protocol Link State technology Runs over IP, protocol 89 Designed by IETF for TCP/IP Supports VLSM

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

Configuring Redundant Routing on the VPN 3000 Concentrator

Configuring Redundant Routing on the VPN 3000 Concentrator Configuring Redundant Routing on the VPN 3000 Concentrator Document ID: 13354 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Router Configurations

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

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

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

OSPF. Unless otherwise noted, OSPF refers to OSPFv2 throughout this document.

OSPF. Unless otherwise noted, OSPF refers to OSPFv2 throughout this document. Open Shortest Path First () is a link state based interior gateway protocol developed by the working group of the Internet Engineering Task Force (IETF). At present, version 2 (RFC2328) is used. Introduction

More information

debug ip ospf database external default-metric subnet area 0 stub distribute-list in Serial0/1

debug ip ospf database external default-metric subnet area 0 stub distribute-list in Serial0/1 Which statement about stateless autoconfiguration is true? A host can autoconfigure itself by appending its MAC address to the local link prefix (64 bits). 2 Autoconfiguration allows devices to connect

More information

Chapter 3 Lab 3-2, Multi-Area OSPF with Stub Areas and Authentication

Chapter 3 Lab 3-2, Multi-Area OSPF with Stub Areas and Authentication NPv6 ROUTE hapter 3 Lab 3-2, Multi-Area OSPF with Stub Areas and Authentication Topology Objectives Background onfigure multiple-area OSPF on a r. Verify multiple-area behavior. onfigure OSPF stub, totally

More information

OSPF Protocol Overview on page 187. OSPF Standards on page 188. OSPF Area Terminology on page 188. OSPF Routing Algorithm on page 190

OSPF Protocol Overview on page 187. OSPF Standards on page 188. OSPF Area Terminology on page 188. OSPF Routing Algorithm on page 190 Chapter 17 OSPF Protocol Overview The Open Shortest Path First (OSPF) protocol is an interior gateway protocol (IGP) that routes packets within a single autonomous system (AS). OSPF uses link-state information

More information

CCNA Questions/Answers Routing Protocols

CCNA Questions/Answers Routing Protocols Refer to the exhibit and configuration shown above. Routers R1 and R2 are properly configured with eigrp 976 protocol and are able to ping interfaces fa0/1 and fa0/2, respectively. Which commands are necessary

More information

Lab - Configuring Multi-area OSPFv3 Topology

Lab - Configuring Multi-area OSPFv3 Topology Topology 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 8 Addressing Table Device Interface IPv6 Address R1 R2 R3 S0/0/0 (DCE) Lo0 Lo1 Lo2 Lo3 S0/0/0 S0/0/1

More information

OSPF Virtual Links: Transit capability

OSPF Virtual Links: Transit capability OSPF Virtual Links: Transit capability Contents Introduction Prerequisites Background Information Scenario 1 Network Diagram: Abstract from RFC 2328 Section 16.2 Scenario 2 Network Diagram: Abstract from

More information

Vanguard Managed Solutions

Vanguard Managed Solutions Vanguard Managed Solutions Vanguard Applications Ware IP and LAN Feature Protocols Open Shortest Path First (OSPF) Notice 2003 Vanguard Managed Solutions, LLC 575 West Street Mansfield, Massachusetts 02048

More information

Lab10- Configuring EIGRP

Lab10- Configuring EIGRP Lab10- Configuring EIGRP Topology Lab10- Configuring EIGRP Page 1 Learning Objectives Upon completion of this lab, you will be able to: Cable a network according to the Topology Diagram. Erase the startup

More information

Introduction to OSPF

Introduction to OSPF Introduction to OSPF 1 OSPF Open Shortest Path First Link state or SPF technology Developed by OSPF working group of IETF (RFC 1247) OSPFv2 standard described in RFC2328 Designed for: TCP/IP environment

More information

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

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

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

Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of opaque LSAs 40 Configuring OSPF to

Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of opaque LSAs 40 Configuring OSPF to Contents Configuring OSPF 1 Introduction to OSPF 1 Basic concepts 1 OSPF areas 3 Router types 6 OSPF network classification 7 DR and BDR 8 OSPF packet formats 9 Supported OSPF features 17 Protocols and

More information

OSPFv3 Address Families

OSPFv3 Address Families The Open Shortest Path First version 3 (OSPFv3) address families feature enables both IPv4 and IPv6 unicast traffic to be supported. With this feature, users may have two processes per interface, but only

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

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

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

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

Antonio Cianfrani. Routing Protocols

Antonio Cianfrani. Routing Protocols Antonio Cianfrani Routing Protocols Routing protocols A routing protocol provides a communication channel among routers to exchange reachability information about networks Routing tables are properly configured

More information

Lab 2.8.1: Basic Static Route Configuration

Lab 2.8.1: Basic Static Route Configuration Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway R1 Fa0/0 172.16.3.1 255.255.255.0 N/A S0/0/0 172.16.2.1 255.255.255.0 N/A Fa0/0 172.16.1.1 255.255.255.0 N/A R2

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

Logging neighbor state changes 38 Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of

Logging neighbor state changes 38 Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of Contents Configuring OSPF 1 Introduction to OSPF 1 Basic concepts 1 Area based OSPF network partition 3 Router types 6 OSPF network classification 7 DR and BDR 8 OSPF packet formats 9 Supported features

More information

OSPF Stub Router Advertisement

OSPF Stub Router Advertisement The feature allows you to bring a new router into a network without immediately routing traffic through the new router and allows you to gracefully shut down or reload a router without dropping packets

More information

Chapter 3 Lab 3-4, OSPF over Frame Relay

Chapter 3 Lab 3-4, OSPF over Frame Relay Chapter 3 Lab 3-4, OSPF over Frame Relay Topology Objectives Background Configure OSPF over Frame Relay. Use non-broadcast and point-to-multipoint OSPF network types. Modify default OSPF timers. You are

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

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

Sample Configuration for OSPFv3

Sample Configuration for OSPFv3 Sample Configuration for OSPFv3 Document ID: 112100 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configuration Verify Troubleshoot Related Information

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

OSPF Support for Multi-VRF on CE Routers

OSPF Support for Multi-VRF on CE Routers OSPF Support for Multi-VRF on CE Routers Finding Feature Information OSPF Support for Multi-VRF on CE Routers Last Updated: June 24, 2011 The OSPF Support for Multi-VRF on CE Routers feature provides the

More information

Vendor: Alcatel-Lucent. Exam Code: 4A Exam Name: Alcatel-Lucent Interior Routing Protocols and High Availability.

Vendor: Alcatel-Lucent. Exam Code: 4A Exam Name: Alcatel-Lucent Interior Routing Protocols and High Availability. Vendor: Alcatel-Lucent Exam Code: 4A0-101 Exam Name: Alcatel-Lucent Interior Routing Protocols and High Availability Version: Demo QUESTION 1 When a router receives an IP packet, but does not find a match

More information

Lab 5: Inter-VLANs Routing

Lab 5: Inter-VLANs Routing Lab 5: Inter-VLANs Routing Network Topology:- Device Interface IP Address Subnet Mask Gateway/Clock Rate Fa 0/0.10 10.5.0.1 255.255.255.192 ----- R1 Fa 0/0.20 10.6.0.1 255.255.255.192 ----- Fa 0/0.30 10.10.0.1

More information

OSPF Commands. Cisco IOS IP Command Reference, Volume 2 of 3: Routing Protocols IP2R-61

OSPF Commands. Cisco IOS IP Command Reference, Volume 2 of 3: Routing Protocols IP2R-61 OSPF Commands Use the commands in this chapter to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For OSPF configuration information and examples, refer to the Configuring OSPF

More information

Open Shortest Path First (OSPF)

Open Shortest Path First (OSPF) CHAPTER 42 Open Shortest Path First (OSPF) Background Open Shortest Path First (OSPF) is a routing protocol developed for Internet Protocol (IP) networks by the interior gateway protocol (IGP) working

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

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

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

IPv6 Routing: OSPFv3

IPv6 Routing: OSPFv3 Open Shortest Path First version 3 (OSPFv3) is an IPv4 and IPv6 link-state routing protocol that supports IPv6 and IPv4 unicast address families (AFs). Finding Feature Information, page 1 Prerequisites

More information

Configuration and Management of Networks

Configuration and Management of Networks onfiguration and Management of Networks SPF Virtual Links and Area Summarization The lab is built on the topology: bjectives Background! onfigure multi-area SPF on a r.! Verify multi-area behavior.! reate

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 3 Lab 3-3, OSPF Virtual Links and Area Summarization

Chapter 3 Lab 3-3, OSPF Virtual Links and Area Summarization NPv6 RUTE hapter 3 Lab 3-3, SPF Virtual Links and Area Summarization Topology bjectives Background onfigure multi-area SPF on a r. Verify multi-area behavior. reate an SPF virtual link. Summarize an area.

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

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

OSPF. About OSPF. CLI Book 1: Cisco ASA Series General Operations CLI Configuration Guide, 9.4 1

OSPF. About OSPF. CLI Book 1: Cisco ASA Series General Operations CLI Configuration Guide, 9.4 1 This chapter describes how to configure the Cisco ASA to route data, perform authentication, and redistribute routing information using the Open Shortest Path First () routing protocol. About, page 1 Guidelines

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

OSPFv3 Address Families

OSPFv3 Address Families The Open Shortest Path First version 3 (OSPFv3) address families feature enables both IPv4 and IPv6 unicast traffic to be supported. With this feature, users may have two processes per interface, but only

More information

Introduction to OSPF OSPF. Link State Routing. Link State. Fast Convergence. Low Bandwidth Utilisation

Introduction to OSPF OSPF. Link State Routing. Link State. Fast Convergence. Low Bandwidth Utilisation Introduction to OSPF ISP/IP Workshops OSPF Open Shortest Path First Link state or SPF technology Developed by OSPF working group of IETF (RFC 47) Designed for TCP/IP Internet environment Fast convergence

More information

OSPFv3 Address Families

OSPFv3 Address Families The Open Shortest Path First version 3 (OSPFv3) address families feature enables both IPv4 and IPv6 unicast traffic to be supported. With this feature, users may have two processes per interface, but only

More information

Nortel Ethernet Routing Switch 5000 Series Configuration IP Routing Protocols. Release: 6.1 Document Revision:

Nortel Ethernet Routing Switch 5000 Series Configuration IP Routing Protocols. Release: 6.1 Document Revision: Configuration IP Routing Protocols Release: 6.1 Document Revision: 05.01 www.nortel.com NN47200-503. . Release: 6.1 Publication: NN47200-503 Document release date: 25 May 2009 While the information in

More information

Chapter 8 Configuring OSPF

Chapter 8 Configuring OSPF Chapter 8 Configuring OSPF This chapter describes how to configure OSPF on HP routing switches using the CLI and Web management interface. To display OSPF configuration information and statistics, see

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

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

CCNP 1 Module 6 OSPF Paul Flynn 1

CCNP 1 Module 6 OSPF Paul Flynn 1 CCNP 1 Module 6 OSPF Paul Flynn 1 Module Overview 6.1 OSPF Overview 6.1.1 Issues addressed by OSPF 6.1.2 OSPF terminology 6.1.3 OSPF states 6.1.4 OSPF network types 6.1.5 The OSPF Hello protocol 6.2 OSPF

More information

Configuring OSPF. Cisco s OSPF Implementation

Configuring OSPF. Cisco s OSPF Implementation Configuring OSPF This chapter describes how to configure OSPF. For a complete description of the OSPF commands in this chapter, refer to the OSPF s chapter of the Network Protocols Reference, Part 1. To

More information

Link State. 1 Flooding of link-state information. 5 Routing Table. 3 SPF Algorithm. 2 Building a Topological Database. 4 SPF Tree

Link State. 1 Flooding of link-state information. 5 Routing Table. 3 SPF Algorithm. 2 Building a Topological Database. 4 SPF Tree Link State 1 Flooding of link-state information 5 Routing Table 2 Building a Topological Database 3 SPF Algorithm 4 SPF Tree OSPF Hello Protocol OSPF routers send Hellos on OSPF enabled interfaces: Default

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

Initial Configurations for OSPF over a Point to Point Link

Initial Configurations for OSPF over a Point to Point Link Initial onfigurations for OSPF over a Point to Point Link Document ID: 13687 ontents Introduction Prerequisites Requirements omponents Used onventions OSPF over a Point to Point Link with IP Addresses

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

Cabrillo College. Rick Graziani, Instructor

Cabrillo College. Rick Graziani, Instructor Cabrillo College CCNP Advanced Routing Ch. 5 - Multi-areas (Part I) Rick Graziani, Instructor Mar. 4, 2002 1 Multi-Area Part I Areas LSAs show ip ospf database (summary of link state database) show ip

More information

Passit4Sure.4A Questions 4A Alcatel-Lucent Interior Routing Protocols and High Availability

Passit4Sure.4A Questions 4A Alcatel-Lucent Interior Routing Protocols and High Availability Passit4Sure.4A0-101.300Questions Number: 4A0-101 Passing Score: 800 Time Limit: 120 min File Version: 7.5 http://www.gratisexam.com/ 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability

More information

CCNP Route. Number: Passing Score: 800 Time Limit: 120 min File Version: 7.1. Cisco

CCNP Route.  Number: Passing Score: 800 Time Limit: 120 min File Version: 7.1. Cisco CCNP Route Number: 642-902 Passing Score: 800 Time Limit: 120 min File Version: 7.1 http://www.gratisexam.com/ Cisco 642-902 Implementing Cisco IP Routing (ROUTE) Version: 7.1 Cisco 642-902 Exam Sections

More information

FSOS IPv6 Routing Command Line Reference

FSOS IPv6 Routing Command Line Reference FSOS IPv6 Routing Command Line Reference Contents 1 OSPFv3 Commands... 5 1.1 area default-cost...5 1.2 area range...6 1.3 area stub... 7 1.4 auto-cost...8 1.5 clear ipv6 ospf...9 1.6 default-information

More information

Lab Configuring IGRP Instructor Version 2500

Lab Configuring IGRP Instructor Version 2500 Lab 7.3.5 Configuring IGRP Instructor Version 2500 Objective Setup IP an addressing scheme using class C networks. Configure IGRP on routers. Background/Preparation Cable a network similar to the one in

More information

FiberstoreOS V3.3 IPv6 Routing Command Line Reference

FiberstoreOS V3.3 IPv6 Routing Command Line Reference FiberstoreOS V3.3 IPv6 Routing Command Line Reference Contents 1 OSPFv3 Commands... 4 1.1 area default-cost...4 1.2 area range...5 1.3 area stub... 6 1.4 auto-cost...7 1.5 clear ipv6 ospf...8 1.6 default-information

More information

This chapter covers the following subjects:

This chapter covers the following subjects: This chapter covers the following subjects: Link-State Routing Protocol and OSPF Concepts Balanced Hybrid Routing Protocol and EIGRP Concepts OSPF Configuration EIGRP Configuration C H A P T E R 6 OSPF

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

A. The maximum number of times a double colon can replace a 16-bit segment that consists of all zeroes is two.

A. The maximum number of times a double colon can replace a 16-bit segment that consists of all zeroes is two. What are two rules for compacting IPv6 addresses? (Choose two.) A. The maximum number of times a double colon can replace a 16-bit segment that consists of all zeroes is two. B. The leading zeroes in any

More information

scope scope {global vrf vrf-name} no scope {global vrf vrf-name} Syntax Description

scope scope {global vrf vrf-name} no scope {global vrf vrf-name} Syntax Description Multi-Toplogy Routing Commands scope scope To define the scope for a Border Gateway Protocol (BGP) routing session and to enter router scope configuration mode, use the scope command in router configuration

More information

Lab Configuring OSPF Timers 2500 Series

Lab Configuring OSPF Timers 2500 Series Lab 2.3.5 Configuring OSPF Timers 2500 Series Objective Setup an IP addressing scheme for OSPF area. Configure and verify OSPF routing. Modify OSPF interface timers to adjust efficiency of network. Background/Preparation

More information

Configuring OSPF. Finding Feature Information

Configuring OSPF. Finding Feature Information This module describes how to configure Open Shortest Path First (OSPF). OSPF is an Interior Gateway Protocol (IGP) developed by the OSPF working group of the Internet Engineering Task Force (IETF). OSPF

More information

actualtests.cisco.ccnp route q&a.by.passforu

actualtests.cisco.ccnp route q&a.by.passforu actualtests.cisco.ccnp.642-902.route.2012.05.02.323q&a.by.passforu Number: 000-642-902 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Cisco 642-902 www.passforu.com

More information

Understanding the OSPF Forming neighbor adjacencies process.

Understanding the OSPF Forming neighbor adjacencies process. Understanding the OSPF Forming neighbor adjacencies process. By Gustavo Sibaja Back in the days when I was a CCNA candidate, I took the 2 first courses of the Cisco Networking Academy at a University here

More information

FiberstoreOS. IPv6 Routing Command Line Reference

FiberstoreOS. IPv6 Routing Command Line Reference FiberstoreOS IPv6 Routing Command Line Reference 1 Contents 1 OSPFv3 Commands... 6 1.1 area default-cost... 6 1.2 area range...7 1.3 area stub... 7 1.4 auto-cost...8 1.5 clear ipv6 ospf...9 1.6 default-information

More information