TDC 363 Introduction to LANs

Size: px
Start display at page:

Download "TDC 363 Introduction to LANs"

Transcription

1 TDC 363 Introduction to LANs Routing Protocols and RIP Greg Brewster DePaul University TDC 363 1

2 Dynamic Routing Routing Protocols Distance Vector vs. Link State Protocols RIPv1 & RIPv2 RIP Problems Slow Convergence Routing Loops / Count to Infinity Discontiguous Networks and Summarization Partial Solutions Max Hops = 15 / Triggered Updates / Timers Split Horizon no auto-summary TDC 363 2

3 Routing Protocols Static routing is complex and not scalable. We want automatic routing table updates! Routers use dynamic routing protocols to do this. Dynamic Routing Protocols Routers exchange routing information packets with other routers to learn about all possible routes to all destination subnets within a routing domain. Routers choose least-cost route to each destination subnet and keep that route in their routing table. Routing tables are dynamically updated when network topology changes (i.e. a link goes up/down). TDC 363 3

4 Dynamic Routing Protocols The purpose of a dynamic routing protocol is to: -Discover remote networks -Maintaining up-to-date routing information -Choosing the best path to destination networks based on some path metric (least cost routing). -Ability to find a new best path if the current path is no longer available ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 4

5 Routing Protocols Metrics Metric A value used by a routing protocol to determine which routes are better than others. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 5

6 Routing Protocols Metrics Metrics used in IP routing protocols -Bandwidth -Cost -Delay -Hop count -Load -Reliability ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 6

7 Routing Protocols Metrics The Metric Field in the Routing Table Metric used for each routing protocol -RIP - hop count -IGRP & EIGRP - Bandwidth (used by default), Delay (used by default), Load, Reliability -IS-IS & OSPF Cost, Bandwidth (Cisco s implementation) ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 7

8 Routing Protocols Metrics Load balancing Routers will distribute packets equally among multiple equal-cost paths ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 8

9 Administrative Distance of a Route Purpose of a metric It s a calculated value used to determine the best path to a destination Purpose of Administrative Distance It s a numeric value that specifies the preference of a particular routing protocol ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 9

10 Administrative Distance of a Route Identifying the Administrative Distance (AD) in a routing table It is the first number in the brackets in the routing table ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 10

11 Administrative Distance of a Route AD values of Dynamic Routing Protocols ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 11

12 Dynamic Routing Protocols Components of a routing protocol Algorithm Used for collecting/processing routing information and best path determination Routing protocol messages These are messages for discovering neighbors and exchange of routing information ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 12

13 Types of Routing Protocols Interior Gateway Protocols (IGPs) Routers within same Autonomous System or customer site exchange routing information about subnets within that AS or site (called the routing domain). Objective: synchronize routing tables so that all routers contain correct routes to all subnets in AS. Exterior Gateway Protocols (EGPs) Border routers in different AS exchange routing information with each other. Objective: Gain information about how to reach subnets in other Autonomous Systems. TDC

14 Classifying Routing Protocols Types of routing protocols: -Interior Gateway Protocols (IGP) -Exterior Gateway Protocols (EGP) ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 14

15 Classifying Routing Protocols Interior Gateway Protocol Types: Distance Vector & Link State Routing Protocols Distance vector routes are advertised as vectors of distance & direction. incomplete view of network topology (only neighbors). periodic updates. Link state complete view of network topology is created. updates are not periodic. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 15

16 Criteria used to compare routing protocols -Time to convergence -Scalability -Resource usage -Implementation & maintenance Distance Vector protocol advantages: Lowest resource usage Easiest implementation and maintenance Link State protocol advantages: Fastest time to convergence Greatest scalability ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 16

17 Distance Vector Routing Protocols ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 17

18 Distance Vector Protocols In Distance-Vector routing protocols, each router essentially sends a copy of its routing table to neighbor routers at regular intervals. Each neighbor computes its own distance metric for each destination subnet and keeps the smallest metric route (least cost path) in its own table. Examples: Routing Information Protocol (RIP) uses hop count metric. Cisco (Enhanced) Interior Gateway Routing Protocol (EIGRP, IGRP) may use bandwidth, delay, reliability, load and/or hop count as metrics. By default, bandwidth and delay are used in a combined metric. TDC

19 Dynamic Distance Vector Protocols Share only with neighbors Share at regular intervals Share the distance vector: a router s distance to all other routers within the AS Routes are calculated based on the distance vectors received from the neighbors. It is based on the Bellman-Ford algorithm. (Don t worry about the details of the algorithm) Cisco IGRP and EIGRP are examples. RIP (Routing Information Protocol) is an example Encapsulated in UDP: sent to well known port 520.( RFC 1058 (RIPv1); RFC 1388 (RIPv2), RFC 2080 (RIPng for IPv6) TDC

20 Classful vs. Classless Routing In Classful Routing, we make the following assumptions: RIRs, ISPs only allocate Class A, Class B or Class C address blocks to customers. Internet backbone router table entries only use default masks. Customers use only straight subnetting that is, all subnets are the same size. All subnets of a particular network use the same mask. Subnets from the same classful network must be physically contiguous that is, they cannot be separated by another network. Routing protocols only advertise network addresses and do not advertise subnet masks. TDC

21 Classless Routing In Classless Routing, the assumptions are: RIRs and ISPs can allocate address blocks in any 2 x size. Internet backbone router table entries can use any mask. This is called CIDR (Classless InterDomain Routing). Routers can use different masks on different subnets from the same network. This is called Variable Length Subnet Masks (VLSM). Subnets from the same address block can be separated by other networks (not required to be contiguous). Routing protocols advertise subnet mask along with network address TDC

22 Routing Protocols Note: IGRP and EIGRP are Cisco proprietary protocols. All other protocols are public standards (RFCs). TDC

23 Time Line TDC

24 RIPv1 Basic Operations Once every 30 seconds, each router sends RIP msg to each neighbor router: Starts with <subnet> <hops> from routing table Adds 1 to each <hops> value. Sends resulting distance vector to all neighbors When router receives RIP msg from neighbor router Rx For each <subnet> in RIP msg If the received <hops> value is better than current entry in routing table for <subnet>, then update route table with new hop count and set Next Hop = Rx (the router this message came from). TDC

25 RIP v1 Message Format Each message exchanged between routers using RIP version 1 protocol contains: Command field: Request or Response Address of source router A <Dest. Subnet>, <Hop Count> entry for each subnet in the routing table of the source router Note: Depending on MTU, may need to send several RIP messages to send all routing table information. TDC

26 RIP Update Algorithm Receive: a RIP message from neighbor router <Rx> on interface <mx> (where <Hops> already incremented) For each entry <Net>, <Hops> in RIP msg: If destination <Net> not in routing table Add Routing Table Entry: /* New destination */ Default subnet mask, Destination = <Net>, Distance = <Hops>, Next Hop = <Rx>, Interface = <mx> Else If destination <Net> is in routing table If Next Hop = <Rx>, then Update Routing Table Entry: /* update distance */ Distance = <Hops> Else If Next Hop not <Rx>, and (<Hops>) < current table Hops Update Routing Table Entry: /* found better path */ Destination = <Net>, Distance = <Hops>, Next Hop = <Rx>, Interface = <mx> TDC

27 Examples of RIP updates by router B, connected to A, C, E, F. (FYI: Cisco routers increment hop counts before sending the RIP message). Routing Table for Router C <Dest> <Hops> RIP updates Routing Table for Router B TDC

28 Network Discovery Router initial start up (Cold Starts) -Initial network discovery Directly connected networks are initially placed in routing table ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 28

29 Network Discovery Initial Exchange of Routing Information If a routing protocol is configured then -Routers will exchange routing information Routing updates received from other routers -Router checks update for new information If there is new information: -Metric is updated -New information is stored in routing table ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 29

30 Network Discovery Exchange of Routing Information Router convergence is reached when -All routing tables in the network contain the same network information Routers continue to exchange routing information -If no new information is found then Convergence is reached ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 30

31 Basic RIPv1 Configuration A typical topology suitable for use by RIPv1 includes: -Three router set up -No PCs attached to LANs -Use of 5 different IP subnets ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 31

32 Basic RIPv1 Configuration Router RIP Command To enable RIP enter: -Router rip at the global configuration prompt -Prompt will look like R1(config-router)# ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 32

33 Basic RIPv1 Configuration network command network <network> Enables RIP on all interfaces that belong to <network> RIP will advertise <network> in RIP updates sent to out these interfaces once every 30 seconds ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 33

34 Verification and Troubleshooting Show ip Route To verify and troubleshoot routing -Use the following commands: -show ip route -show ip protocols -debug ip rip ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 34

35 Verification and Troubleshooting show ip protocols command -Displays routing protocol configured on router ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 35

36 Verification and Troubleshooting Debug ip rip command -Used to display RIP routing updates as they are happening ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 36

37 Verification and Troubleshooting Passive interface command -Used to prevent a router from sending RIP updates out an interface -Example: Router(config-router)# passive-interface <interface> Example: passive-interface Fa0/0 ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 37

38 Summary: Commands used by RIP Rtr(config)#router rip Command Rtr(config-router)#network Command s purpose Enables RIP routing process Associates a network with a RIP routing process Rtr#debug ip rip used to view real time RIP routing updates Rtr(config-router)#passive-interface fa0/0 Rtr(config-router)#default-information originate Rtr#show ip protocols Prevent RIP updates from going out an interface Used by RIP to propagate default routes Used to display timers used by RIP ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 38

39 RIP v1 Problems Several problems with the RIP version 1 protocol are solved in RIP version 2: RIPv1 had no authentication mechanism to verify identity of sending router RIPv1 has no method for interacting with Exterior Gateway Protocols (such as BGP) RIPv1 messages carry no subnet mask, so, for received <network>, the receiving router assumes: If incoming interface IP is in same classful network as <network>, then uses mask of incoming interface. Otherwise, assumes default classful subnet mask. RIPv1 messages cannot be used to advertise other Next Hops besides the source router. TDC

40 RIP version 2 Routing Information Protocol version 2: Adds Authentication Data entry to provide secure identification of source router. Basically, it s just a password, but better than RIPv1. Adds Route Tag field to carry AS number information from BGP. Adds Subnet Mask field to allow variable length subnetting on addresses in message Adds Next-Hop Address field to allow one router to advertise routes through a different Next Hop router. TDC

41 Figure RIP version 2 Route Tag: Distinguish multiple domains running on the same wire/subnet. Carries information such as AS #. It can be used to enable RIP to receive information from an exterior routing protocol. TDC

42 RIPv2 Extensions Subnet mask carried with route entry allow supports for classless and VLSM. Authentication option for routing updates Next hop carried with each route Route tags for external use Respond/integrates with RIPv1 Uses multicast instead of broadcast Still uses UDP/520: same as RIPv1 TDC

43 Configuring RIPv2 Enabling and Verifying RIPv2 Configuring RIP on a Cisco router By default it is running RIPv1 ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 43

44 Configuring RIPv2 Configuring RIPv2 on a Cisco router -Requires using the version 2 command -RIPv2 ignores RIPv1 updates To verify RIPv2 is configured use the show ip protocols command ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 44

45 RIP Routing Problems Slow Convergence (Either version) When there is a change in the network (i.e. link goes up or down), it may take several minutes before that change is propagated to all routers Routing Loops and Count to Infinity problem When links go down, RIP networks may temporarily experience loops where data is sent uselessly in a cycle until its TTL expires. Loops are eventually resolved, but it may take a few minutes. Cannot handle discontiguous networks if autosummarization is used. TDC 363 Greg Brewster, DePaul University 45

46 Improving Slow Convergence RIP sets maximum hop count of 15 In both RIP protocols, maximum legal hop count is 15. A hop count of 16 is used to indicate an unreachable network. Triggered Updates When changes occur in the network (i.e. a link goes up or down - that is, hop count changes to or from a value of 16), then a router will send out new table update immediately rather than waiting for the usual 30-second timer to expire. TDC 363 Greg Brewster, DePaul University 46

47 Routing Table Maintenance Triggered Updates Conditions in which triggered updates are sent -Interface changes state -Route becomes unreachable -New route is placed in routing table ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 47

48 Routing Loops Routing loops are A condition in which a packet is continuously transmitted within a series of routers without ever reaching its destination. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 48

49 Routing Loops Count to Infinity This is a routing loop whereby RIP routing packets loop, continuously increasing hop counts. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 49

50 Routing Loops Setting a maximum Distance Vector routing protocols set a specified metric value to indicate infinity Once a router counts to infinity it marks the route as unreachable ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 50

51 Partial Solutions for Loops Holddown Timers When a route goes down, the router keeps it down and ignores all advertisements received for that route for a holddown time. Split Horizon When router A sends RIP messages to router B, it does not include any Destinations where its Next Hop field is equal to router B s address. Split Horizon with Poisoned Reverse When router A sends RIP messages to router B, it will send Hops=16 for any Destinations where its Next Hop field is currently set to router B s address. TDC 363 Greg Brewster, DePaul University 51

52 Routing Loops Preventing loops with holddown timers -Holddown timers allow a router to not accept any changes to a route for a specified period of time. -Point of using holddown timers Allows routing updates to propagate through network with the most current information. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 52

53 Routing Loops The Split Horizon Rule is used to prevent routing loops Split Horizon rule: A router should not advertise a network through the interface from which the update came. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 53

54 Routing Loops Split horizon with poison reverse The rule states that once a router learns of an unreachable route through an interface, it will advertise it back as unreachable (hops = 16) through the same interface ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 54

55 RIP Configuration Options RIP Timers RIP uses 4 timers: Update Timer time between RIP updates (def: 30 sec.) Invalid Timer time since last update received before a route is marked invalid. (def: 180 sec.). Invalid routes are advertised as unreachable, but still forward packets. Holddown Timer length of holddown state entered when received update indicates route is unreachable. (def: 180 sec.) During this time route updates are ignored and route is advertised as unreachable, but still forwards packets. Flush Timer time since last update received before a route is removed from the routing table. (def: 240 sec.) TDC 363 Greg Brewster, DePaul University 55

56 RIP Configuration Options RIP Timers Don t mess with RIP timers unless you know what you re doing. But you can change them. TDC 363 Greg Brewster, DePaul University 56

57 RIP Configuration Options RIP Timers RIP uses 4 timers: Update Timer time between RIP updates (def: 30 sec.) Invalid Timer time since last update received before a route is marked invalid. (def: 180 sec.). Invalid routes are advertised as unreachable, but still forward packets. Holddown Timer length of holddown state entered when received update indicates route is unreachable. (def: 180 sec.) During this time route updates are ignored and route is advertised as unreachable, but still forwards packets. Flush Timer time since last update received before a route is removed from the routing table. (def: 240 sec.) TDC 363 Greg Brewster, DePaul University 57

58 RIP Configuration Options RIP Timers Don t mess with RIP timers unless you know what you re doing. But you can change them. TDC 363 Greg Brewster, DePaul University 58

59 RIP over Slow Links If you run RIP over a low-speed or dial-up link, you can suppress periodic RIP updates and only allow triggered updates. Configured in interface configuration mode. TDC 363 Greg Brewster, DePaul University 59

60 Classful Versus Classless Routing Classful Routing Protocol: Does not support VLSM. Routing updates sent do not include the subnet mask. Subnets are not advertised to a different major network. Discontiguous subnets are not visible to each other. RIP Version 1 (RIPv1) is a classful routing protocol. Classless Routing Protocol: Supports VLSM. Routing updates sent include the subnet mask. Subnets can be advertised to a different major network. Discontiguous subnets are visible to each other. RIPv2, EIGRP, OSPF, IS-IS, and BGP are classless routing protocols. Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 60

61 Routing Table Structure Cisco displays routing table entries hierarchically under classful network entries called parent routes. If all subnets are same size, then routing table displays common prefix length (/24) with parent route. Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 61

62 Routing Table Structure If subnets are different sizes (VLSM), then routing table displays default classful prefix length on parent route plus variably subnetted, then displays prefix length on each child route. Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 62

63 Discontiguous Subnets - Classful Routing Classful routing protocols do not support discontiguous networks. Discontiguous subnets are subnets of the same major network that are separated by a different major network. For example, RIPv1 has been configured on all three routers. Routers R2 and R3 advertise to R1. They cannot advertise the /24 and /24 subnets across a different major network because RIPv1 is classful. R1 therefore receives routes about /16 from two different directions and it might make an incorrect routing decision. Fa0/ /24 R /24 RIPv1 update R /24 RIPv1 update R3 Fa0/ /24 Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 63

64 Discontiguous Subnets - Classless Routing Classless routing protocols support discontiguous networks IF auto-summary is DISABLED. For example, RIPv2 has been configured on all three routers. Because of RIPv2, routers R2 and R3 can now advertise the /24 and /24 subnets across a different major network. R1 therefore receives routes with valid subnet information and can now make a correct routing decision. R1 Routing Table: / /24 Fa0/ /24 R /24 RIPv2 update /24 R /24 RIPv2 update /24 R3 Fa0/ /24 Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 64

65 RIPv1 or RIPv2: Auto-Summary Can t handle discontiguous networks Router R2 thinks that all subnets of network /16 are reachable through either serial interface and does load balancing. Routers R1 and R3 each advertise classful network /16 out serial interface. TDC 363 Greg Brewster, DePaul University 65

66 Route Summarization Route Summarization is the process of combining a number of subnet routes into a single route when advertising them out a router interface. Summarizing routes reduces the size of the routing messages and reduces the number of routing entries in the routing tables of the receiving routers. Automatic Summarization is the process of automatically summarizing to single classful network route when the outgoing interface is on a different classful network. Both RIPv1 and RIPv2, by default, have automatic summarization enabled. Chapter , Cisco Systems, Inc. All rights reserved. Cisco Public 66

67 RIPv2: Default behavior Auto-summary is enabled Router R2 thinks that all subnets of network /16 are reachable through either serial interface and does load balancing. Routers R1 and R3 each advertise classful network /16 out serial interface. TDC 363 Greg Brewster, DePaul University 67

68 RIPv2 Auto-Summary RIPv2, by default, has automatic summarization enabled to maintain compatibility with RIPv1. But, you can turn off auto-summary in RIPv2 with the no auto-summary command. TDC 363 Greg Brewster, DePaul University 68

69 RIPv2: Advertising Subnets If a router has multiple subnets in its routing table for a single classful network, N, RIPv2 advertises them as follows: If the outgoing interface connects to a subnet of the same classful network N, then: RIPv2 advertises all subnets out this interface correctly, each with its own mask. If the outgoing interface connects to a subnet of a different classful network then: By default, RIPv2 performs automatic network summarization and advertises the full classful network N out this interface. May cause incorrect routing to any discontiguous subnets. If no auto-summary is configured, then RIPv2 correctly advertises each subnet individually with its own subnet mask. TDC 363 Greg Brewster, DePaul University 69

70 RIPv2: no auto-summary Auto-summary is disabled Router R2 receives advertisements for all 6 subnets of and stores them in routing table for correct routing. Routers R1 and R3 advertise all subnets correctly. (config-router)# no auto-summary TDC 363 Greg Brewster, DePaul University 70

71 Manual Summarization But, summarization can be a good thing. It reduces the size of routing messages and routing tables. Can we use it responsibly? Yes, after configuring no auto-summary, you can manually specify how subnets should be summarized by RIP out any interface. TDC 363 Greg Brewster, DePaul University 71

72 RIPv2: no auto-summary Manual summarization configured on R1 Router R2 receives advertisements for 5 subnets of and stores them in routing table for correct routing. Routers R1 advertises route /22 out interface S0/0/0. R1 (config-if)# ip summary-address rip Can R3 configure one manual summarization for its subnets? TDC 363 Greg Brewster, DePaul University 72

73 Summary Routing Protocol Distance Vector Classless Routing Protocol Uses Hold- Down Timers Use of Split Horizon or Split Horizon w/ Poison Reverse Max Hop count = 15 Auto Summary Support CIDR Supports VLSM Uses Authentication RIPv1 Yes No Yes Yes Yes Yes No No No RIPv2 Yes Yes Yes Yes Yes Yes Yes Yes Yes ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 73

Introduction to Local and Wide Area Networks

Introduction to Local and Wide Area Networks Introduction to Local and Wide Area Networks Lecturers Amnach Khawne Jirasak Sittigorn Chapter 1 1 Routing Protocols and Concepts Chapter 4 : Distance Vector Routing Protocols Chapter 5 : RIP version 1

More information

RIP version 1. Routing Protocols and Concepts Chapter 5. Version Cisco Systems, Inc. All rights reserved. Cisco Public 1

RIP version 1. Routing Protocols and Concepts Chapter 5. Version Cisco Systems, Inc. All rights reserved. Cisco Public 1 RIP version 1 Routing Protocols and Concepts Chapter 5 Version 4.0 1 Objectives Describe the functions, characteristics, and operation of the RIPv1 protocol. Configure a device for using RIPv1. Verify

More information

Distance Vector Routing Protocols

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

More information

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

CCNA EXPLORATION V4.0 ROUTING PROTOCOLS AND CONCEPTS ACCESSIBLE INSTRUCTOR MATERIALS POWERPOINT OBJECTIVES

CCNA EXPLORATION V4.0 ROUTING PROTOCOLS AND CONCEPTS ACCESSIBLE INSTRUCTOR MATERIALS POWERPOINT OBJECTIVES CCNA EXPLORATION V4.0 ROUTING PROTOCOLS AND CONCEPTS ACCESSIBLE INSTRUCTOR MATERIALS Prepared by Cisco Learning Institute June 23, 2008 Chapter 1 Introduction to Routing and Packet Forwarding Objectives

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

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

Routing Protocols Classification

Routing Protocols Classification Routing Protocols Classification Petr Grygárek rek 1 Classification criteria Internal (IGP) / External (EGP) number of handled routes possibilities of routing politics specification Convergence Time Distance-vector

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

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

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

More information

CHAPTER 4: ROUTING DYNAMIC. Routing & Switching

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

More information

Chapter 5. RIP Version 1 (RIPv1) CCNA2-1 Chapter 5

Chapter 5. RIP Version 1 (RIPv1) CCNA2-1 Chapter 5 Chapter 5 RIP Version 1 (RIPv1) CCNA2-1 Chapter 5 RIP Version 1 RIPv1: Distance Vector, Classful Routing Protocol CCNA2-2 Chapter 5 Background and Perspective RIP evolved from the Xerox Network System

More information

Basic Idea. Routing. Example. Routing by the Network

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

More information

Routing by the Network

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

More information

RIP Version 2. The Classless Brother

RIP Version 2. The Classless Brother RIP Version 2 The Classless Brother (C) Herbert Haas 2005/03/11 1 Why RIPv2 Need for subnet information and VLSM Need for Next Hop addresses for each route entry Need for external route tags Need for multicast

More information

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

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

More information

RIP Configuration. RIP Overview. Operation of RIP. Introduction. RIP routing table. RIP timers

RIP Configuration. RIP Overview. Operation of RIP. Introduction. RIP routing table. RIP timers Table of Contents RIP Configuration 1 RIP Overview 1 Operation of RIP 1 Operation of RIP 2 RIP Version 2 RIP Message Format 3 Protocols and Standards 4 Configuring RIP Basic Functions 5 Configuration Prerequisites

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

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

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

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

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

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

More information

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

Default & Static Routes and Routing Information Protocol. Presented by : Mohammed Hamad

Default & Static Routes and Routing Information Protocol. Presented by : Mohammed Hamad Default & Static Routes and Routing Information Protocol Presented by : Mohammed Hamad When a device has multiple paths to reach a destination, it always selects one path by preferring it over others.

More information

Routing Information Protocol. A simple distance vector scheme

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

More information

Routing Information Protocol. RIP application. RIP version 1

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

More information

Top-Down Network Design

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

More information

Determining IP Routes. 2000, Cisco Systems, Inc. 9-1

Determining IP Routes. 2000, Cisco Systems, Inc. 9-1 Determining IP Routes, Cisco Systems, Inc. 9- Objectives Upon completion of this chapter, you will be able to complete the following tasks: Distinguish the use and operation of static and dynamic routes

More information

Routing Information Protocol

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

More information

Routing Information Protocol

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

More information

Network Protocols. Routing. TDC375 Autumn 03/04 John Kristoff - DePaul University 1

Network Protocols. Routing. TDC375 Autumn 03/04 John Kristoff - DePaul University 1 Network Protocols Routing TDC375 Autumn 03/04 John Kristoff - DePaul University 1 IPv4 unicast routing All Internet hosts perform basic routing for local net destinations, forward to local host for non-local

More information

Introduction to Dynamic Routing Protocols

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

More information

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

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

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

More information

Objectives. Review: Classful addresses. RIPv1 Characteristics. RIP Operation. RIP version 1

Objectives. Review: Classful addresses. RIPv1 Characteristics. RIP Operation. RIP version 1 2007 isco Systems, Inc. All rights reserved. isco Public Objectives IP version 1 outing Protocols and oncepts hapter 5 Describe the functions, characteristics, and operation of the IPv1 protocol. onfigure

More information

Routing Information Protocol. RIP application. RIP version 1

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

More information

Chapter 5. RIP Version 1 (RIPv1)

Chapter 5. RIP Version 1 (RIPv1) Chapter 5 RIP Version 1 (RIPv1) CCNA2-1 Chapter 5 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario. Thanks must

More information

CCNA EXPLORATION V4.0 ROUTING PROTOCOLS AND CONCEPTS

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

More information

Distance vector and RIP

Distance vector and RIP DD2490 p4 2008 Distance vector and RIP Olof Hagsand KTHNOC/NADA Literature RIP lab RFC 245: RIPv2. Sections 1 2 contains some introduction that can be useful to understand the context in which RIP is specified..1.4

More information

2008 NDP Lectures 7 th Semester

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

More information

Introduction to Routing

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

More information

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

Draft Manuscript Draft M. Manuscript Draft Ma. t Manuscript Draft Manu. ipt Draft Manuscript Dra. anuscript Draft Manuscri

Draft Manuscript Draft M. Manuscript Draft Ma. t Manuscript Draft Manu. ipt Draft Manuscript Dra. anuscript Draft Manuscri M aft Ma CHAPTER 5 ript Dra RIP Version 1 Objectives aft Ma Upon completion of this chapter, you should be able to answer the following questions: What are the functions, characteristics, and operation

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

Network Protocols. Routing. TDC375 Winter 2002 John Kristoff - DePaul University 1

Network Protocols. Routing. TDC375 Winter 2002 John Kristoff - DePaul University 1 Network Protocols Routing TDC375 Winter 2002 John Kristoff - DePaul University 1 IP routing Performed by routers Table (information base) driven Forwarding decision on a hop-by-hop basis Route determined

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

Routing Protocols and

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

More information

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

IP Routing Volume Organization

IP Routing Volume Organization IP Routing Volume Organization Manual Version 20091105-C-1.03 Product Version Release 6300 series Organization The IP Routing Volume is organized as follows: Features IP Routing Overview Static Routing

More information

Configuring RIP. RIP Configuration Task List

Configuring RIP. RIP Configuration Task List Configuring RIP This chapter describes how to configure RIP. For a complete description of the RIP commands that appear in this chapter, refer to the RIP s chapter of the Network Protocols Reference, Part

More information

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

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

More information

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

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

More information

BTEC Level 3 Extended Diploma

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

More information

SEMESTER 2 Chapter 3 Introduction to Dynamic Routing Protocols V 4.0

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

More information

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

Routing Protocols of IGP. Koji OKAMURA Kyushu University, Japan

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

More information

Routing Dynamically. 3.0 Routing Dynamically. Chapter Introduction Class Activity How Much Does This Cost?

Routing Dynamically. 3.0 Routing Dynamically. Chapter Introduction Class Activity How Much Does This Cost? Chapter 3 Routing Dynamically 3.0 Routing Dynamically 3.0.1.1 Introduction The data networks that we use in our everyday lives to learn, play, and work range from small, local networks to large, global

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

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

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

Routing Architecture. Objectives. Module 2 Routing Fundamentals. Author: Rolf Augstein January 2006

Routing Architecture. Objectives. Module 2 Routing Fundamentals. Author: Rolf Augstein January 2006 Routing Architecture Module 2 Routing Fundamentals Basic Problems Principles, Classification Operation Author: Rolf Augstein raugstein@rolfaugstein.com January 2006 Feel free to use this publication for

More information

COMPARATIVE ANALYSIS OF ROUTING PROTOCOLS

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

More information

Routing Protocols. Autonomous System (AS)

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

More information

Routing Protocols- Dynamic Routing

Routing Protocols- Dynamic Routing Routing Protocols- Dynamic Routing Packet routing in the Internet is divided into two general groups Interior and Exterior Routing. Interior routing with (IGP s) Interior Gateway protocols happens inside

More information

The most simple way to accelerate a Router is at 9.8 m/sec/sec.

The most simple way to accelerate a Router is at 9.8 m/sec/sec. Routing Introduction Direct vs. Indirect Delivery Static vs. Dynamic Routing Distance Vector vs. Link State (C) Herbert Haas 2005/03/11 The most simple way to accelerate a Router is at 9.8 m/sec/sec. Seen

More information

Draft Manuscript Draft M. uscript Draft Manuscript. aft Manuscript Draft Ma. cript Draft Manuscript D. ipt Draft Manuscript Dra

Draft Manuscript Draft M. uscript Draft Manuscript. aft Manuscript Draft Ma. cript Draft Manuscript D. ipt Draft Manuscript Dra M aft Ma CHAPTER 3 ript Introduction to Dynamic Routing Protocols Objectives aft Ma Upon completion of this chapter, you should be able How do you determine the administrative distance of a route, and

More information

CS118 Discussion Week 7. Taqi

CS118 Discussion Week 7. Taqi CS118 Discussion Week 7 Taqi Outline Hints for project 2 Lecture review: routing About Course Project 2 Please implement byte-stream reliable data transfer Cwnd is in unit of bytes, not packets How to

More information

Why dynamic route? (1)

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

More information

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

Configuring RIP. Information About RIP CHAPTER

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

More information

Chapter 4: VLSM and Classless Inter Domain Routing. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved.

Chapter 4: VLSM and Classless Inter Domain Routing. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Chapter 4: VLSM and Classless Inter Domain Routing 1 What will we Learn from chapter 4? Compare and contrast classful and classless IP addressing. Review VLSM and explain the benefits of classless IP addressing.

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

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

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

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

More information

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

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

More information

Multiprotocol BGP Extensions for IP Multicast Commands

Multiprotocol BGP Extensions for IP Multicast Commands Multiprotocol BGP Extensions for IP Multicast Commands Use the commands in this chapter to configure and monitor multiprotocol BGP. Multiprotocol BGP is based on RFC 2283, Multiprotocol Extensions for

More information

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

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

More information

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

Last time. Transitioning to IPv6. Routing. Tunneling. Gateways. Graph abstraction. Link-state routing. Distance-vector routing. Dijkstra's Algorithm

Last time. Transitioning to IPv6. Routing. Tunneling. Gateways. Graph abstraction. Link-state routing. Distance-vector routing. Dijkstra's Algorithm Last time Transitioning to IPv6 Tunneling Gateways Routing Graph abstraction Link-state routing Dijkstra's Algorithm Distance-vector routing Bellman-Ford Equation 10-1 This time Distance vector link cost

More information

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

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

More information

Keywords RIP, OSPF, IGP, EGP, AS, LSA

Keywords RIP, OSPF, IGP, EGP, AS, LSA Volume 4, Issue 2, February 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Evolution of

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

CSCE 463/612 Networks and Distributed Processing Spring 2018

CSCE 463/612 Networks and Distributed Processing Spring 2018 CSCE 463/612 Networks and Distributed Processing Spring 2018 Network Layer IV Dmitri Loguinov Texas A&M University April 12, 2018 Original slides copyright 1996-2004 J.F Kurose and K.W. Ross 1 Chapter

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

ICMP, ARP, RARP, IGMP

ICMP, ARP, RARP, IGMP Internet Layer Lehrstuhl für Informatik 4 Raw division into three tasks: Data transfer over a global network Route decision at the sub-nodes Control of the network or transmission status Routing Protocols

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

Routing in the Internet

Routing in the Internet Routing in the Internet Daniel Zappala CS 460 Computer Networking Brigham Young University Scaling Routing for the Internet 2/29 scale 200 million destinations - can t store all destinations or all prefixes

More information

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

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

More information

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 4: Manipulating Routing

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

More information

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

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

More information

Configuring IP Routing Protocols

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

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

Introduction to IP Routing

Introduction to IP Routing Introduction to IP Routing Static-, Default-, Dynamic-Routing, RIP Classless/Classful Routing, Internet Routing Overview Agenda Introduction to IP Routing Static Routing Default Route Dynamic Routing RIP

More information

Module 6 Implementing BGP

Module 6 Implementing BGP Module 6 Implementing BGP Lesson 1 Explaining BGP Concepts and Terminology BGP Border Gateway Protocol Using BGP to Connect to the Internet If only one ISP, do not need BGP. If multiple ISPs, use BGP,

More information

Lecture 12. Introduction to IP Routing. Why introduction? Routing

Lecture 12. Introduction to IP Routing. Why introduction? Routing Lecture. Introduction to IP Routing Why introduction? Routing: very complex issue need in-depth study entire books on routing our scope: give a flavour of basic routing structure and messaging give an

More information

FiberstoreOS IP Routing Configuration Guide

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

More information

College of DuPage. CCNA3 V3.0 Switching Basics and Intermediate Routing: Module 1: Introduction to Classless Routing

College of DuPage. CCNA3 V3.0 Switching Basics and Intermediate Routing: Module 1: Introduction to Classless Routing College of DuPage CCNA3 V3.0 Switching Basics and Intermediate Routing: Module 1: Introduction to Classless Routing 3-2004 1 Overview With the phenomenal growth of the Internet and TCP/IP, virtually every

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

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

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

More information