TDC 363 Introduction to LANs

Size: px
Start display at page:

Download "TDC 363 Introduction to LANs"

Transcription

1 TDC 363 Introduction to LANs OSPF Greg Brewster DePaul University TDC 363 Greg Brewster, DePaul University 1

2 OSPF Link State Routing Algorithms Open Shortest Path First (OSPF) Message Types Operations Configuration and Verification TDC 363 Greg Brewster, DePaul University 2

3 Link-State Routing Link state routing protocols -Also known as shortest path first algorithms -These protocols built around Dijkstra s SPF ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 3

4 Link-State Routing Link-State Routing Process How routers using Link State Routing Protocols reach convergence -Each routers learns about its own directly connected networks -Link state routers exchange Hello packet to meet other directly connected link state routers. -Each router builds its own Link State Packet (LSP) which includes information about links and neighbors such as neighbor ID, link type, & bandwidth. -After the LSP is created the router floods it to all neighbors who then store the information and then forward it until all routers have the same information. -Once all the routers have received all the LSPs, the routers then construct a topological map of the entire network which is used to determine the best routes to all destinations. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 4

5 Link-State Routing Sending Hello Packets to Neighbors Connected interfaces that are using the same link state routing protocols will exchange hello packets. Once routers learn it has neighbors they form an adjacency -2 adjacent neighbors will exchange hello packets -These packets will serve as a keep alive function ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 5

6 Link-State Routing Building the Link State Packet Each router builds its own Link State Packet (LSP) Contents of LSP: -State of each directly connected link -Includes information about neighbors such as neighbor ID, link type, & bandwidth. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 6

7 Link-State Routing LSPs are sent out under the following conditions -Initial router start up or routing process -When there is a change in topology ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 7

8 Link-State Routing Constructing a link state data base Routers use a database to construct a topology map of the network ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 8

9 Link-State Routing ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 9

10 Link-State Routing Determining the shortest path The shortest path to a destination determined by adding the costs & finding the lowest total path cost ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 10

11 Link-State Routing Once the SPF algorithm has determined the shortest path routes, these routes are placed in the routing table. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 11

12 Link-State Routing Protocols Advantages of a Link-State Routing Protocol Routing protocol Builds Topological map Router can independently determine the shortest path to every network. Convergence A periodic/ event driven routing updates Use of LSP Distance vector No No Slow Generally No No Link State Yes Yes Fast Generally Yes Yes ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 12

13 Link-State Routing Protocols Requirements for using a link state routing protocol Memory requirements Typically link state routing protocols use more memory Processing Requirements More CPU processing is required of link state routing protocols Bandwidth Requirements Initial startup of link state routing protocols can consume lots of bandwidth ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 13

14 Open Shortest Path First (OSPF) 1. A Link State Internal Gateway Protocol used within most Autonomous Systems on the Internet 2. Advantages over RIP (distance-vector protocol) TDC 363 a) Supports many distance metrics, including physical distance, transmission delay, queueing delay, etc. b) Adapts to changes in topology quickly. c) Supports multiple types of service such as least delay, highest throughput, etc. d) Does load balancing over multiple paths to the same destination. e) Supports hierarchical systems: i) Autonomous Systems ii) Areas iii) Networks iv) Subnets f) Improved security. Greg Brewster, DePaul University 14

15 OSPF Link State Database Each OSPF router maintains a Link State Database containing, for each link in the network: The Link Type Router IDs of routers connected to this link IP subnet address for this link IP subnet mask for this link Link cost Link status (up or down) TDC 363 Greg Brewster, DePaul University 15

16 Basic OSPF Configuration Router ID This is a single IP address used to identify a router 3 methods for determining the router ID Configure with OSPF router-id command -Takes precedence over other methods If router-id command not used then router chooses highest IP address of any loopback interfaces Commonly set up Loopback0 IP to become Router ID If no loopback interfaces are configured then the highest IP address on any active interface is used Using active interface IP address is not best practice because Router ID may change if interface goes down. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 16

17 Basic OSPF Configuration OSPF Router ID Commands used to verify current router ID Show ip protocols Show ip ospf Show ip ospf interface ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 17

18 OSPF Hierarchical Networks Autonomous Systems Owned by single organization Areas Collection of subnets and routers within an AS. Each area has an Area Number. Routers inside an area flood information to all other routers in area Area border routers summarize area information to pass to another area All areas connect to backbone area (0). For TDC 363, we only study single-area OSPF all subnets and routers will be in Area 0. TDC 363 Greg Brewster, DePaul University 18

19 Figure OSPF Hierarchical Networks Backbone router: connect only to networks in the backbone area (Area 0) Area border router: attaches to multiple areas. Internal router: all interfaces connected to networks in the same area. AS boundary router (Also known as Border Router): connect to other ASes TDC 363 Greg Brewster, DePaul University 19

20 Introduction to OSPF OSPF Packet Types ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 20

21 OSPF HELLO Packet When router first powers up or comes online, it will first discover neighbors Multicast HELLO messages on all its interfaces Listen for HELLO messages in response from neighbor routers Store neighbor router information in Adjacency Database. TDC 363 Greg Brewster, DePaul University 21

22 OSPF Router Tables / Databases OSPF maintains three databases which are used to create three tables. Database Table Description Adjacency Database Link-state Database Forwarding Database Neighbor Table Topology Table Routing Table List of all neighbors routers to which a router has established bidirectional communication. This table is unique for each router. Can be viewed using the show ip ospf neighbor command. List of information about all other routers in the network. The database shows the network topology. All routers within an area have identical link-state databases. Can be viewed using the show ip ospf database command. List of routes generated when an algorithm is run on the linkstate database. Each router s routing table is unique and contains information on how and where to send packets to other routers. Can be viewed using the show ip route command. Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 22

23 Introduction to OSPF Hello Packets Maintain adjacencies and set Designated Router OSPF Hello Intervals Usually multicast ( ) Sent every 10 seconds in general Sent every 30 seconds for NBMA OSPF Dead Intervals This is the time that must transpire before the neighbor is considered down Default time is 4 times the hello interval ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 23

24 OSPF DATABASE DESCRIPTION Message When other routers receive the HELLO message: If this is the first time they have heard from this router, they will send DATABASE DESCRIPTION message This message gives a summary outline of all information in the Link State Database of the router TDC 363 Greg Brewster, DePaul University 24

25 OSPF LINK STATE REQUEST Message When a router wants more information about a particular set of links, it will send a LINK STATE REQUEST message to its neighbor. Neighbor will respond with LINK STATE UPDATE message containing requested information TDC 363 Greg Brewster, DePaul University 25

26 OSPF LINK STATE UPDATE Message When any link state changes (link goes up or down, cost changes, etc.) a router will flood a LINK STATE UPDATE message to all other routers in the Area. Link State Update contains one or more Link State Advertisements (LSAs) from the router. TDC 363 Greg Brewster, DePaul University 26

27 LSU Flooding When any router receives a Link State Update message, it checks whether this is a new update message If it is a New LSU message, then this router will flood the message (transmit a copy out all interfaces except the one it arrived on) If it is an Old LSU message (seen before), then this router will drop the message TDC 363 Greg Brewster, DePaul University 27

28 New or Old? A router determines whether an arriving LSU message is new or old using two header fields Sequence Number Each router remembers the Sequence Number of the last LSU seen from every other router Each router increments Sequence Number when sending out a new LSU Age Routers update Age field with estimated transit time. Messages dropped when Age gets too large TDC 363 Greg Brewster, DePaul University 28

29 OSPF Types of Links Point-to-Point Link Directly connects two routers with no other host or router inbetween. Transient Link A Link with multiple routers on it (example: a LAN) Stub Link A link with only one router on it Virtual Link A multi-hop connection between two routers (a tunnel) used for backup if direct link goes down. TDC 363 Greg Brewster, DePaul University 29

30 Point-to-Point Links Each of the two routers measures the metric from itself to its neighbor. Result: there are 2 metrics for each pointto-point link one for data sent in each direction. May be same value or different. TDC 363 Greg Brewster, DePaul University 30

31 Transient Links and DRs Many routers connect to the same link (multiaccess link), such as in a LAN. Problem: Its too much work to measure metrics between all possible pairs of routers Solution: Choose one router to be designated router (DR) Other routers only form adjacencies with DR. Cost metric is assigned from each router to designated router. No cost from designated router to others. Designated Router is elected based on Priority value. Backup Designated Router is also elected and takes over if DR fails. TDC 363 Greg Brewster, DePaul University 31

32 OSPF in Multiaccess Networks Solution to LSA flooding issue is the use of Designated router (DR) Backup designated router (BDR) DR & BDR selection Routers are elected to send & receive LSA Sending & Receiving LSA DRothers send LSAs via multicast to DR & BDR DR forward LSA via multicast address to all other routers ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 32

33 OSPF in Multiaccess Networks Criteria for getting elected DR/BDR 1. DR: Router with the highest OSPF interface priority. 2. BDR: Router with the second highest OSPF interface priority. 3. If OSPF interface priorities are equal, the highest router ID is used to break the tie. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 33

34 OSPF in Multiaccess Networks Timing of DR/BDR Election Occurs as soon as 1 st router has its interface enabled on multiaccess network When a DR is elected it remains as the DR until one of the following occurs -The DR fails. -The OSPF process on the DR fails. -The multiaccess interface on the DR fails. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 34

35 OSPF in Multiaccess Networks OSPF Interface Priority Manipulating the DR/BDR election process continued Use the ip ospf priority interface command. Example:Router(config-if)#ip ospf priority {0-255} Priority number range 0 to means the router cannot become the DR or BDR 1 is the default priority value ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 35

36 Stub Links A stub link is just a special case of a transient network where the number of routers on the network is 1 Stub links are advertised in LSAs sent by connected router. TDC 363 Greg Brewster, DePaul University 36

37 OSPF Protocol Overview When router first powers up, it will Determine who its neighbor routers are. Download a complete Link State Database from a neighbor router When something changes in the network (link goes up or down, cost metric changes, etc.) Discovering router will flood Link State Advertisements (LSAs) to all other routers in the Area to update their databases TDC 363 Greg Brewster, DePaul University 37

38 Link State Advertisement An LSA packet announces the state of all links connected to a router Four types of LSAs: Router Link LSA Network Link LSA Summary Link LSA (multi-area OSPF) External Link LSA (multi-area OSPF) TDC 363 Greg Brewster, DePaul University 38

39 Router Link LSA Advertises the state of the links connected to a true router Can be any of the 4 link types TDC 363 Greg Brewster, DePaul University 39

40 Network Link LSA Advertises the state of the links connected to a designated router TDC 363 Greg Brewster, DePaul University 40

41 Summary Link LSA Two Types (not required for TDC 363): Summary Link to Network LSA Used to provide a summary of all link information for one particular Area to all routers in another Area in the same Autonomous System Summary Link to AS Boundary Router LSA Advertises a path to an AS Boundary router so that Area routers can learn how to get outside of their own Autonomous System TDC 363 Greg Brewster, DePaul University 41

42 OSPF Metric OSPF uses path cost as metric for determining best route. Path Cost = sum of link costs on path to destination. -Link Cost is based on bandwidth of link interface Interface bandwidth parameter can be changed by admin. It is not affected by clock rate command. Link Cost is calculated using the formula Link Cost = 10 8 / (Interface Bandwidth) Default Link Costs Eth interface: 10 FastEth interface: 1 GigEth interface: 1 Serial Interface: 64 (regardless of clock rate) ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 42

43 OSPF Metric COST of an OSPF route Is the accumulated value from one router to the next ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 43

44 Basic OSPF Configuration Modifying the Cost of a link Both sides of a serial link should be configured with the same bandwidth Commands used to modify bandwidth value Bandwidth command Example: Router(config-if)#bandwidth bandwidth-kbps ip ospf cost command allows you to directly specify interface cost -Example:R1(config)#interface serial 0/0/0 R1(config-if)#ip ospf cost 1562 ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 44

45 OSPF Configuration router ospf <proc-num> (global config) Creates OSPF route database, starts OSPF routing process number <proc-num> that manages OSPF messages, maintains database, and copies routes from database into routing table. network <a.b.c.d> netmask <w.x.y.z> area <num> TDC 363 Causes OSPF to advertise Subnet ID <a.b.c.d> with wildcard (inverse subnet mask) <w.x.y.z> in OSPF area number <num> and to send/receive OSPF Hellos and LSUs on all interfaces that directly connect to this subnet. The subnet specified in the network command should be directly connected to this router. Two routers connected to same link will only become OSPF neighbors if both of them execute network statements for the common link subnet in their OSPF configurations. Greg Brewster, DePaul University 45

46 Configure Single-area OSPFv2 The network Command This activates OSPF (sends out HELLOs) on interfaces connected to subnets /24, /30 and /30. It also includes these 3 subnets in OSPF database and OSPF Update messages. Presentation_ID 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 46

47 Specific Network Statements Type a separate specific OSPF network statement for each directly-connected subnet on the router. Do not type a network statement for any remote subnet that is not directly connected. Do not combine multiple subnets into a single network statement. Example: /24 & /24 are directly attached: Correct:» network area 0» network area 0 Wrong: (this will work in some cases, not others - you lose points in any case)» network area 0 It will always be wrong to type: network area 0 Sometimes this works, sometimes it messes things up. But it is always sloppy and not acceptable. TDC 363 Greg Brewster, DePaul University 47

48 Basic OSPF Configuration TDC 363 enable configure terminal interface loopback0! For OSPF ID ip address no shutdown interface ethernet0/0 ip address no shutdown interface serial0/0 ip address no shutdown router ospf 1 network area 0 network area 0 exit exit Greg Brewster, DePaul University 48

49 OSPF Configuration - Optional router ospf <proc-num> passive-interface <interface> (global config) Disables sending route updates out the specified interface router-id A.B.C.D Sets OSPF router-id to A.B.C.D ospf log-adjacency-changes Shows a message on router console any time an OSPF neighbor goes up or down. TDC 363 Greg Brewster, DePaul University 49

50 Configure Single-Area OSPFv2 Passive Interface By default, OSPF messages are forwarded out all OSPF-enabled interfaces. However, these messages really only need to be sent out interfaces connecting to other OSPF-enabled routers. Sending out unneeded messages on a LAN affects the network in three ways: Inefficient Use of Bandwidth Inefficient Use of Resources Increased Security Risk OSPF messages are not sent out a Passive Interface, but its IP subnet is included in OSPF database and in Update messages sent out other interfaces. The Passive Interface feature helps limit the scope of routing update advertisements. Presentation_ID 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 50

51 Configure Single-area OSPFv2 Configuring Passive Interfaces Use the passive-interface router configuration mode command to prevent the transmission of routing messages through a router interface, but still allow that network to be advertised to other routers. Presentation_ID 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 51

52 OSPF Interface Configuration ip ospf cost <cost> (optional) Sets the cost for the link connected to this interface to <cost> ip ospf retransmit-interval <time> Sets the time between Link State Advertisement retransmissions to <time> seconds. ip ospf priority <num> Sets the OSPF priority of this interface to <num>. Highest priority interface on transient network will be designated router. ip ospf hello-interval <time> Sets the time between HELLO packets to <time> seconds. ip ospf dead-interval <time> If no HELLO packets seen for <time> seconds, then neighbor router is declared down. TDC 363 Greg Brewster, DePaul University 52

53 TDC 363 OSPF Interface Configuration enable configure terminal interface ethernet0/0 ip address ip ospf cost 10 ip ospf priority 5 no shutdown interface serial0/0 ip address no shutdown router ospf 1 network area 0 network area 0 exit exit Greg Brewster, DePaul University 53

54 OSPF Verification/Debug show ip protocols show ip ospf interface show ip ospf database show ip ospf router debug ip ospf? adj - OSPF adjacency events events - OSPF events flood - OSPF flooding lsa-generation - OSPF lsa generation packet - OSPF packets retransmission - OSPF retransmission events tree - OSPF database tree TDC Greg Brewster, DePaul University 54

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

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

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

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

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

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

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

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

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

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

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

Chapter 16 OSPF Version 3 Commands

Chapter 16 OSPF Version 3 Commands Chapter 16 OSPF Version 3 Commands NOTE: The OSPF version 3 configuration level is present only on HP devices that support IPv6. area Assigns OSPF version 3 areas. You can assign an IPv4 address or a number

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

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

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 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

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

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

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

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

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

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

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

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

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

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

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls Link State Routing In particular OSPF Karst Koymans Informatics Institute University of Amsterdam (version 16.3, 2017/03/09 11:25:31) Tuesday, March 7, 2017 Link State Protocols Basic ideas Problems and

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

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

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

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

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

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

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

OSPF. OSPF processs can be enabled on 2 levels

OSPF. OSPF processs can be enabled on 2 levels OSPF UDP port 89 Metic cost Link state protocol Flood the link state information in the entire topology Builds the topology table Stores in LSDB Runs SPF(Djsktra algorithm) for best path to reach destination

More information

Exam Questions

Exam Questions Exam Questions 100-105 ICND1 Cisco Interconnecting Cisco Networking Devices Part 1 (ICND1 v3.0) https://www.2passeasy.com/dumps/100-105/ 1.Refer to the exhibit. Assume that all router interfaces are operational

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

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 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

OSPF DR and BDR Elections

OSPF DR and BDR Elections OSPF DR and BDR Elections In Chapter 6, Enhanced IGRP (EIGRP) and Open Shortest Path First (OSPF), of the Sybex CCNA Study Guide Standard and CCNA Study Guide Deluxe Editions, I discussed EIGRP and OSPF

More information

Creating Multiple OSPF Areas. 2001, Cisco Systems, Inc. 6-1

Creating Multiple OSPF Areas. 2001, Cisco Systems, Inc. 6-1 Creating Multiple OSPF Areas 6-1 Issues with Maintaining a Large OSPF Network I am only receiving LSAs, no data. OSPF The SPF is running too often for me to route. OSPF OSPF OSPF OSPF My routing table

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

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 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

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

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC DD2490 p4 200 Link-state routing and OSPF Olof Hagsand KTH/CSC Literature RFC 232: Browse through Section. Section 2 gives a very good understanding of OSPF issues. The example is realistic (complex) and

More information

8. Refer to the exhibit. The ORL router is unable to form a neighbor relationship with the JAX router. What is a possible cause of this problem?

8. Refer to the exhibit. The ORL router is unable to form a neighbor relationship with the JAX router. What is a possible cause of this problem? 1. Refer to the exhibit. A new PC was deployed in the Sales network. It was given the host address of 192.168.10.31 with a default gateway of 192.168.10.17. The PC is not communicating with the network

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

2001, Cisco Systems, Inc. All rights reserved.

2001, Cisco Systems, Inc. All rights reserved. 2001, Cisco Systems, Inc. All rights reserved. 1 OSPFv3 2 OSPFv2 Latest revision is RFC 2328 April 1998 OSPF uses a 2 level hierarchical model SPF calculation is performed independently for each area Typically

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

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

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

Routing Protocols. Technology Description BGP CHAPTER

Routing Protocols. Technology Description BGP CHAPTER CHAPTER 11 This chapter describes the level of support that Cisco ANA provides for routing protocols, as follows: Technology Description, page 11-1 Information Model Objects (IMOs), page 11-3 Vendor-Specific

More information

Which of the following are primary functions of a router? (Choose two.) - packet switching - path selection

Which of the following are primary functions of a router? (Choose two.) - packet switching - path selection Which three statements are true regarding the encapsulation and de-encapsulation of packets when traveling through a router? (Choose three.) - The router modifies the TTL field, decrementing it by one.

More information

Chapter 7 Routing Protocols

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

More information

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

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

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

Chapter 1 The IP Routing Protocols

Chapter 1 The IP Routing Protocols Chapter 1 The IP Routing Protocols 1 This chapter describes routing protocol options for the Internet Protocol (IP) suite. The chapter Routing IP contains all the information you need for configuring IP.

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

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

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

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls Link State Routing In particular OSPF Karst Koymans Informatics Institute University of Amsterdam (version 17.4, 2017/11/30 12:33:57) Tuesday, November 28, 2017 Link State Protocols Basic ideas Problems

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

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

IRT0030 ANDMESIDE LOENG 5. Indrek Rokk

IRT0030 ANDMESIDE LOENG 5. Indrek Rokk IRT0030 ANDMESIDE LOENG 5 Indrek Rokk 2 Harjutus Aadress 2001:db8:aaaa:fc:50a5:8a35:a5bb:66e1/64 Küsimused Interface ID Subnet prefix Site prefix ISP prefix ISP prefix kahendkoodis Registry number Registry

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

OSPF (Open Shortest Path First)

OSPF (Open Shortest Path First) OSPF (Open Shortest Path First) Open : specification publicly available RFC 1247, RFC 2328 Working group formed in 1988 Goals: Large, heterogeneous internetworks Uses the Link State algorithm Topology

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

Configuring OSPF. Finding Feature Information. Contents

Configuring OSPF. Finding Feature Information. Contents Configuring OSPF First Published: May 5, 2008 Last Updated: March 18 2011 This module describes how to configure Open Shortest Path First (OSPF). OSPF is an Interior Gateway Protocol (IGP) developed by

More information

Helsinki University of Technology Telecommunications Laboratory. OSPF Routing Protocol Licenciate course seminar paper

Helsinki University of Technology Telecommunications Laboratory. OSPF Routing Protocol Licenciate course seminar paper Helsinki University of Technology Telecommunications Laboratory OSPF Routing Protocol Licenciate course seminar paper Shkumbin I. Hamiti, 08.10.1996 Communications Laboratory, TKK-HUT email: bini#tiltu.hut.fi

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

EECS 122, Lecture 16. Link Costs and Metrics. Traffic-Sensitive Metrics. Traffic-Sensitive Metrics. Static Cost Metrics.

EECS 122, Lecture 16. Link Costs and Metrics. Traffic-Sensitive Metrics. Traffic-Sensitive Metrics. Static Cost Metrics. EECS 122, Lecture 16 Kevin Fall kfall@cs.berkeley.edu edu Link Costs and Metrics Routing protocols compute shortest/cheapest paths using some optimization criteria Choice of criteria has strong effect

More information

OSPF (Open Shortest Path First)

OSPF (Open Shortest Path First) OSPF (Open Shortest Path First) Open : specification publicly available RFC 1247, RFC 2328 Working group formed in 1988 Goals: Large, heterogeneous internetworks Uses the Link State algorithm Topology

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

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

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

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC DD2490 p4 2009 Link-state routing and OSPF Olof Hagsand KTH/CSC Literature RFC 232: Browse through Section. Section 2 gives a very good understanding of OSPF issues. The example is realistic (complex)

More information

Unicast Routing. Information About Layer 3 Unicast Routing CHAPTER

Unicast Routing. Information About Layer 3 Unicast Routing CHAPTER CHAPTER 1 This chapter introduces the underlying concepts for Layer 3 unicast routing protocols in Cisco 1000 Series Connected Grid Routers (hereafter referred to as the Cisco CG-OS router) and WAN backhaul

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

Operation Manual OSPF. Table of Contents

Operation Manual OSPF. Table of Contents Table of Contents Table of Contents... 1-1 1.1 OSPF Overview... 1-1 1.1.1 Introduction to OSPF... 1-1 1.1.2 Process of OSPF Route Calculation... 1-2 1.1.3 OSPF Packets... 1-2 1.1.4 LSA Type... 1-3 1.1.5

More information

Configuring OSPF with CLI

Configuring OSPF with CLI OSPF Configuring OSPF with CLI This section provides information to configure Open Shortest Path First (OSPF) using the command line interface. Topics in this section include: OSPF Configuration Guidelines

More information

Module 8. Routing. Version 2 ECE, IIT Kharagpur

Module 8. Routing. Version 2 ECE, IIT Kharagpur Module 8 Routing Lesson 27 Routing II Objective To explain the concept of same popular routing protocols. 8.2.1 Routing Information Protocol (RIP) This protocol is used inside our autonomous system and

More information

Chapter 15 OSPF Commands

Chapter 15 OSPF Commands Chapter 15 OSPF Commands NOTE: This chapter contains information about OSPF version 2 commands only. For information about OSPF version 3 commands, see OSPF Version 3 Commands on page 16-1. area Assigns

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

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

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

4A Alcatel-Lucent. Alcatel-Lucent Interior Routing Protocols and High Availability Alcatel-Lucent 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability Download Full Version : http://killexams.com/pass4sure/exam-detail/4a0-101 QUESTION: 297 Click on the exhibit. 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

Routing, Routing Algorithms & Protocols

Routing, Routing Algorithms & Protocols Routing, Routing Algorithms & Protocols Computer Networks Lecture 6 http://goo.gl/pze5o8 Circuit-Switched and Packet-Switched WANs 2 Circuit-Switched Networks Older (evolved from telephone networks), a

More information

CCNP 1: Advanced Routing

CCNP 1: Advanced Routing Scope and Sequence CCNP 1: Advanced Routing Cisco Networking Academy Program Version 3.1 TABLE OF CONTENTS CCNP 1: ADVANCED ROUTING...1 TARGET AUDIENCE...3 PREREQUISITES...3 COURSE DESCRIPTION...3 COURSE

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

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 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

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

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

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

More information

OSPF DESIGN GUIDE. Cisco Systems. Network Supported Accounts. Rev: 1.1 April, Sam Halabi. Network Consulting Engineer

OSPF DESIGN GUIDE. Cisco Systems. Network Supported Accounts. Rev: 1.1 April, Sam Halabi. Network Consulting Engineer OSPF DESIGN GUIDE Cisco Systems Network Supported Accounts Rev: 1.1 April, 1996 Sam Halabi Network Consulting Engineer The Open Shortest Path First Protocol (OSPF), defined in RFC 1583, is an Interior

More information

Routing Protocol - IS-IS

Routing Protocol - IS-IS Routing Protocol - IS-IS What is IS-IS? Intermediate System to Intermediate System intra-domain routing protocol :: IS, ES Is a Link State Protocol Is a dynamic routing protocol based on SPF routing algorithm

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

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