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

Size: px
Start display at page:

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

Transcription

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

2 Introducing the Routing Table R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set C C /24 is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/0 Routing table is a data file in RAM that is used to store route information about: Directly connected Remote networks 2

3 Introducing the Routing Table R1# show ip route <output omitted> C C /24 is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/0 Exit Interfaces The routing table contains network/next-hop associations The next hop is the IP address of a next-hop router. (coming) May also include an outgoing or exit interface (more later) 3

4 Introducing the Routing Table R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP <output omitted> C C /24 is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/0 Directly Connected Networks directly connected network is a network that is directly attached to one of the router interfaces. When a router s interface is configured with an IP address and subnet mask, the interface becomes a host on that attached network. Active directly connected networks are added to the routing table. 4

5 Introducing the Routing Table R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP <output omitted> C C /24 is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/0 Remote Network A remote network is a network that is not directly connected to the router. A remote network is a network that can only be reached by sending the packet to another router. Remote networks are added to the routing table using a dynamic routing protocol or by configuring static routes. Dynamic routes are routes to remote networks that were learned automatically by the router, using a dynamic routing protocol. Static routes are routes to networks that a network administrator manually configured. 5

6 Static Routes R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP <output omitted> Gateway of last resort is not set C C S /24 is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/ /24 [1/0] via c Static Route Static route includes the network address and subnet mask of the remote network, along with the IP address of the next-hop router or exit interface. Note: Configuration of the static route is not shown. Static routes are denoted with the code S in the routing table, Static routes are examined in detail in the next chapter. 6

7 Dynamic Routes R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set C /24 is directly connected, FastEthernet0/0 C /24 is directly connected, Serial0/0/0 S /24 [1/0] via R /24 [120/1] via , 00:00:20, Serial0/0/0 R1 has automatically learned about the /24 network from R2 through the dynamic routing protocol RIP (Routing Information Protocol). RIP was one of the first IP routing protocols and will be fully discussed in later chapters. Note: Configuration of RIP not shown. 7

8 Routing Table Principles These principles, listed as follows, are from Alex Zinin s book, Cisco IP Routing: Every router makes its decision alone, based on the information it has in its own routing table. The fact that one router has certain information in its routing table does not mean that other routers have the same information. Routing information about a path from one network to another does not provide routing information about the reverse, or return, path. 8

9 Examining Router Interfaces R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set R1# show ip route command is used to display the routing table. Initially, the routing table is empty if no interfaces have been configured. Note: Static routes and dynamic routes cannot be added to the routing table until the appropriate local interfaces, also known as the exit interfaces, have been configured on the router. (later) 9

10 Interfaces and their Statuses R1# show interfaces FastEthernet0/0 is administratively down, line protocol is down Hardware is AmdFE, address is 000c (bia 000c ) <output omitted> Serial0/0/0 is administratively down, line protocol is down <output omitted> 10

11 Interfaces and their Statuses R1# show ip interface brief Interface IP-Address OK? Method Status Protocol FastEthernet0/0 unassigned YES manual administratively down down Serial0/0 unassigned YES unset administratively down down FastEthernet0/1 unassigned YES unset administratively down down Serial0/1 unassigned YES unset administratively down down R1# Used to see a portion of the interface information in a condensed format Note: Great command for checking interfaces before starting a lab! 11

12 Interfaces and their Statuses R1# show running-config <output omitted> interface FastEthernet0/0 mac-address 000c no ip address duplex auto speed auto shutdown! interface FastEthernet0/1 mac-address 000c no ip address duplex auto speed auto shutdown <output omitted> show running-config command displays current configuration file another way to verify the configuration of an interface 12

13 Configuring an Ethernet Interface R1(config)# interface fastethernet 0/0 R1(config-if)# ip address R1(config-if)# no shutdown *Mar 1 01:16:08.212: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up *Mar 1 01:16:09.214: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up changed state to up message indicates that, physically, the connection is good. interface is properly connected to a switch or a hub. receiving a carrier signal from another device (switch, hub, PC, or another router). changed state to up message indicates that the data link layer is operational. LAN interfaces, typically no data link parameter changes. WAN interfaces in a lab environment require clocking on one side of the link 13

14 Reading the Routing Table R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP <output omitted> Gateway of last resort is not set C /24 is subnetted, 1 subnets is directly connected, FastEthernet0/0 The interface was configured with the /24 IP address, which makes it a member of the /24 network. C = directly connected R1 has an interface that belongs to this network The /24 subnet mask for this route is displayed in the line above the actual route. 14

15 Routers Usually Store Network Addresses R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP <output omitted> Gateway of last resort is not set C /24 is subnetted, 1 subnets is directly connected, FastEthernet0/0 Phone book analogy: Families not individuals with same number Occasionally, a host route is entered in the routing table; the host route represents an individual host IP address. The host route is listed with the device s host IP address and a /32 ( ) subnet mask. The topic of host routes is discussed in another course. 15

16 Pings from R2 to If you convert these addresses to binary and compare them, you will see that the first 24 bits of this route do not match because the twenty-third bit does not match. Packets are dropped. 16

17 Pings from R2 to R2# ping !!!! R2# show ip route /24 is subnetted, 2 subnets C is directly connected, FastEthernet0/0 C is directly connected, Serial0/0/0 C /24 is directly connected, Serial0/0/1 This time the ping succeeds! It is successful because R2 has a route in its routing table that matches , which is the ping packet s destination IP address. 17

18 Static Routes with Next-Hop Addresses ip route command Configuring Static Routes Routing Table Principles Resolving to an Exit Interface with a Recursive Lookup

19 Purpose and Command Syntax of the ip route Command Static routes are commonly used when routing from a network to a stub network. A stub network is a network accessed by a single route. R1 only has one way to reach other destinations via R2. Therefore, network is a stub network and R1 is a stub router. Dynamic routing protocol between R1 and R2 is a waste of resources. 19

20 ip route Command The command for configuring a static route is ip route. The complete syntax for configuring a static route is: ip route prefix mask {ip-address interface-type interface-number [ip-address]} [dhcp] [distance] [name next-hop-name] [permanent track number] [tag tag] 20

21 Configuring Static Routes R1# debug ip routing R1# conf t R1(config)# ip route :20:15: RT: add /24 via , static metric [1/0] R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, /24 is subnetted, 3 subnets S [1/0] via C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/0 R1 in our chapter topology knows about its directly connected networks. The remote networks that R1 does not know about are as follows: /124: The LAN on R2 (static route above solved this) /24: The serial network between R2 and R /24: The LAN on R3 21

22 Verifying Static Routes R1# show running-config <output omitted>! ip route ip route ip route ! <output omitted> R1# copy running-config startup-config Now is a good time to save the configuration to NVRAM with the copy running-config startup-config command. 22

23 Configure R2 and R3 Static Routes R2(config)# ip route R2(config)# ip route R3(config)# ip route R3(config)# ip route R3(config)# ip route

24 R1# show ip route <output omitted> /24 is subnetted, 3 subnets S [1/0] via C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/0 S /24 [1/0] via S /24 [1/0] via R2# show ip route <output omitted> /24 is subnetted, 3 subnets C is directly connected, FastEthernet0/0 C is directly connected, Serial0/0/0 S [1/0] via C /24 is directly connected, Serial0/0/1 S /24 [1/0] via R3# show ip route <output omitted> /24 is subnetted, 3 subnets S [1/0] via S [1/0] via S [1/0] via C /24 is directly connected, Serial0/0/1 C /24 is directly connected, FastEthernet0/0 24

25 Verify End-to-End Connectivity R1# ping !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms R1# ping !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms R1# ping !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms R1# ping !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms R1# 25

26 Summary and Default Static Routes Summary Static Routes Default Static Routes

27 Summarizing Routes to Reduce the Size of the Routing Table Summary route is a single route that can be used to represent multiple routes. Generally a set of contiguous networks (but do not have to be) Have the same exit interface or next-hop IP address. Example: /16, /16, /16, /16, /16, /16, all the way through /16 Can be represented by a single network address: /8. Creates smaller routing tables More efficient routing table lookup process more efficient. A single static route can be used to represent dozens, hundreds, or even thousands of routes. As of March 2007, there are more than 200,000 routes in the Internet core routers. Most of these are summarized routes. 27

28 Summarizing Routes to Reduce the Size of the Routing Table R3: ip route Serial0/0/1 ip route Serial0/0/1 ip route Serial0/0/1 All three routes are forwarding traffic out the same Serial 0/0/1 interface. Can be summarized to the single

29 Calculating a Summary Route Step 1. Write out the networks that you want to summarize in binary. Step 2. To find the subnet mask for summarization, start with the leftmost bit. Step 3. Work your way to the right, finding all the bits that match consecutively. ip route serial0/0/1 Step 4. When you find a column of bits that do not match, stop. You are at the summary boundary. Step 5. Count the number of leftmost matching bits, which in our example is 22. This number becomes your subnet mask for the summarized route, /22 or Step 6. To find the network address for summarization, copy the matching 22 bits and add all 0 bits to the end to make 32 bits.. 29

30 Configuring a Summary Route R3(config)# no ip route serial0/0/1 R3(config)# no ip route serial0/0/1 R3(config)# no ip route serial0/0/1 R3(config)# ip route serial0/0/1 Delete individual static routes. Configure single summary route. 30

31 Changes in Routing Table R3# show ip route Before <output omitted> /24 is subnetted, 3 subnets S is directly connected, Serial0/0/1 S is directly connected, Serial0/0/1 S is directly connected, Serial0/0/1 C /24 is directly connected, Serial0/0/1 C /24 is directly connected, FastEthernet0/0 R3# show ip route After <output omitted> /22 is subnetted, 1 subnets S is directly connected, Serial0/0/1 C /24 is directly connected, Serial0/1 C /24 is directly connected, FastEthernet0/0 Any packet with a destination IP address belonging to the /24, /24, or /24 network matches this summarized route. 31

32 Verify the Summary Route R3# ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms R3# ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/60 ms R3# ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/60 ms R3# 32

33 Default Static Route A default route is used to represent all routes with zero or no bits matching. In other words, when there are no routes that have a more specific match, the default route will be a match. (more later throughout the course) A default static route is a route that will match all packets. Default static routes are used To represent destination networks outside the router s own routing domain. A common use is when connecting a company s edge router to the ISP network. When no other routes in the routing table match the packet s destination IP address in other words, when a more specific match does not exist. When a router has only one other router to which it is connected. This condition is known as a stub router. 33

34 Configuring a Default Static Route Router(config)# ip route [exit-interface ip-address ] network address and mask is called a quad-zero route. 34

35 Configuring a Default Static Route ip route serial 0/0/0 ip route serial 0/0/0 ip route serial 0/0/0 R1 is a stub router and is connected only to R2. R1 doesn t need specific routing information to reach R3 networks. Currently R1 has three static routes. All three static routes have: the exit interface Serial 0/0/0 next-hop Router R2 35

36 Configuring a Default Static Route R1(config)# no ip route serial 0/0/0 R1(config)# no ip route serial 0/0/0 R1(config)# no ip route serial 0/0/0 R1(config)# ip route serial 0/0/0 Delete individual static routes. Configure single default static route. 36

37 Verifying a Default Static Route R1# show ip route Before S C C S S /24 is subnetted, 3 subnets is directly connected, Serial0/0/ is directly connected, Serial0/0/ is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/ /24 is directly connected, Serial0/0/0 R1# show ip route After <some codes omitted> * - candidate default, U - per-user static route, o - ODR Gateway of last resort is to network /24 is subnetted, 2 subnets C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/0 S* /0 is directly connected, Serial0/0/0 37

38 Verifying a Default Static Route R1# show ip route <some codes omitted> * - candidate default, U - per-user static route, o - ODR Gateway of last resort is to network /24 is subnetted, 2 subnets C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/0 S* /0 is directly connected, Serial0/0/0 A /0 mask indicates that zero or no bits are needed to match. As long as a more specific match doesn t exist, the default static route will match all packets. Default routes are very common on routers. Instead of routers having to store routes for all the networks in the Internet, they can store a single default route to represent any network that is not in the routing table. You will see in later chapters that a default route does not always have to be a static route. 38

39 Classifying Dynamic Routing Protocols IGP and EGP Distance Vector and Link-State Classful and Classless Convergence

40 Classifying Routing Protocols Routing Protocols can be classified by: IGP or EGP Distance vector or link-state Classful or classless 40

41 IGP and EGP An autonomous system (AS) otherwise known as a routing domain is a collection of routers under a common administration. Company s internal network An ISP s network. Because the Internet is based on the autonomous system concept, two types of routing protocols are required: Interior routing protocols Exterior routing protocols 41

42 IGP and EGP Interior gateway protocols (IGP): Used for intra-autonomous system routing Routing inside an autonomous system Exterior gateway protocols (EGP): Used for inter-autonomous system routing Routing between autonomous systems 42

43 Distance Vector and Link-State Routing Protocols Interior gateway protocols (IGP) can be classified as two types: Distance vector routing protocols Link-state routing protocols 43

44 Distance Vector Routing Protocol Operation Distance vector Routes are advertised as vectors of distance and direction. Distance is defined in terms of a metric Such as hop count, Direction is simply the: nexthop router or exit interface. Typically use the Bellman-Ford algorithm for the best-path route determination 44

45 Distance Vector Routing Protocol Operation Routing protocol Does not know the topology of an internetwork. Only knows the routing information received from its neighbors. Like signposts along the path to the final destination. 45

46 Distance Vector Routing Protocol Operation Distance vector protocols work best in situations where: The network is simple and flat and does not require a hierarchical design. The administrators do not have enough knowledge to configure and troubleshoot link-state protocols. Specific types of networks, such as hub-and-spoke networks, are being implemented. Worst-case convergence times in a network are not a concern. More in Chapter 4. 46

47 Link-State Protocol Operation Link-state routing protocol can create a complete view, or topology, of the network. Like having a complete map of the network topology Link-state protocols are associated with Shortest Path First (SPF) calculations. A link-state router uses the linkstate information to: Create a topology map Select the best path to all destination networks in the topology. 47

48 Link-State Protocol Operation Link-state protocols work best in situations where The network design is hierarchical, usually occurring in large networks. The administrators have a good knowledge of the implemented link-state routing protocol. Fast convergence of the network is crucial. More in later chapters. 48

49 Classful and Classless Routing Protocols All routing protocols can also be classified as either Classful routing protocols Classless routing protocols IPv6 routing protocols are classless 49

50 Classful Routing Protocols Classful routing protocols do not send subnet mask information in routing updates. The first routing protocols, such as RIP When network addresses were allocated based on classes. Class A, B, or C. Routing protocol did not need to include the subnet mask in the routing update. Network mask determined based on value of first octet of the network address. 50

51 Classful Routing Protocols /16 Major Classful Network All /24 subnets Classful routing protocols do not include the subnet mask Therefore do not support VLSM and CIDR. All subnets within the same major classful network address must have the same mask. Other limitations to classful routing protocols, including: Inability to support discontiguous networks (later) More later! 51

52 Classless routing Protocols /16 Major Classful Network /27 and /30 subnets / / /30 Classless routing protocols include the subnet mask with the network address in routing updates. Today s networks are no longer allocated based on classes Subnet mask cannot be determined by the value of the first octet. Classless routing protocols are required in most networks today because of their support for: VLSM CIDR Discontiguous networks. 52

53 Dynamic Routing Protocols and Convergence R2 s Routing Table R1 s Routing Table R3 s Routing Table An important characteristic of a routing protocol: How quickly it converges when there is a change in the topology. Convergence is when the routing tables of all routers are at a state of consistency. The network has converged when all routers have complete and accurate information about the network. Convergence time is the time it takes routers to: share information calculate best paths update their routing tables. A network is not completely operable until the network has converged; therefore, most networks require short convergence times. 53

54 Dynamic Routing Protocols and Convergence R2 s Routing Table R1 s Routing Table R3 s Routing Table Generally, convergence time: Slow: RIP and IGRP Faster: EIGRP, OSPF, and IS-IS 54

55 Metrics Purpose of the Metric Metrics and Routing Protocols Load Balancing

56 Purpose of a Metric? Metrics are a way to measure or compare. Determine which route is the best path. Assign costs to reach remote networks. Routing protocol learns multiple routes to the same destination. Metric is used to determine which path is most preferable 56

57 Purpose of a Metric Routing protocol metrics: RIP: Hop count IGRP and EIGRP: Bandwidth, delay, reliability and load OSPF (Cisco s version): Bandwidth IS-IS: Four values (Cisco uses default ) Covered in CCNP BGP: Attributes Covered in CCNP More later 57

58 Metric Parameters 56 Kbps R1 to reach the /24 network. RIP: Fewest number of hops via R2. OSPF: Path with the highest cumulative bandwidth through R3. This results in faster packet delivery. 58

59 Metric Field in the Routing Table The routing table displays the metric for each dynamic and static route. Static routes always have a metric of 0 with RIP. Routing protocols install route in routing table with the lowest metric. 59

60 R2# show ip route <output omitted> Gateway of last resort is not set R /24 [120/1] via , 00:00:24, Serial0/0/0 C /24 is directly connected, Serial0/0/0 C /24 is directly connected, FastEthernet0/0 C /24 is directly connected, Serial0/0/1 R /24 [120/1] via , 00:00:26, Serial0/0/1 R /24 [120/1] via , 00:00:24, Serial0/0/0 [120/1] via , 00:00:26, Serial0/0/1 R /24 [120/1] via , 00:00:26, Serial0/0/1 R /24 [120/2] via , 00:00:26, Serial0/0/1 All routers running RIP R2 has a route to the /24 network that is 2 hops away. The 2 in the command output is where the routing metric is displayed. 120 is the Administrative Distance (later) 60

61 Load Balancing What happens when two or more routes to the same destination have identical metric values? The router load balances between these equal-cost paths. The packets are forwarded using all equal-cost paths. 61

62 Load Balancing R2# show ip route <output omitted> R /24 [120/1] via , 00:00:24, Serial0/0/0 [120/1] via , 00:00:26, Serial0/0/1 All the routing protocols discussed in this course are capable of automatically load balancing traffic for up to four equal-cost routes by default. EIGRP is also capable of load balancing across unequal-cost paths. This feature of EIGRP is discussed in the CCNP courses. 62

63 RIPv1: A Distance Vector, Classful Routing Protocol Background and Perspective RIPv1 Characteristics and Message Format RIP Operation

64 RIPv1: Distance Vector, Classful Routing Protocol The first protocol used was Routing Information Protocol (RIP). RIP still popular: simple and widespread support. Why learn RIP? Still in use today (there is even a RIPng for IPv6). Help understand fundamental concepts and comparisons of protocols such as classful (RIPv1) and classless (RIPv2) 64

65 RIPv1 Characteristics and Message Format Note: The first version of RIP is often called RIPv1 to distinguish it from RIP version 2 (RIPv2). However, both versions share many of the same features. When discussing features common to both versions, we will refer to RIP. When discussing features unique to each version, we will use RIPv1 and RIPv2. RIPv2 is discussed in Chapter 7. RIP characteristics: Distance vector routing protocol. Metric: hop count Advertised routes with hop counts greater than 15 are considered unreachable. Response messages (routing table updates) are broadcast every 30 seconds. (RIPv2 uses multicasts) 65

66 RIP Operation Startup 1. Each RIP-configured interface sends out a Request message Asking for their complete routing tables. 2. A Response message is sent back by RIP-enabled neighbors. If new route: Installs in routing table. If existing route: Replace if better hop count. Startup router then sends a triggered update out all RIP-enabled interfaces containing its own routing table so that RIP neighbors can be informed of any new routes. 66

67 IP Address Classes and Classful Routing No subnet mask RIPv1: Classful routing protocol. Does not send subnet mask in update. A router either uses the subnet mask: (discussed later) configured on a local interface or applies the default classful subnet mask Because of this limitation, RIPv1 networks cannot be discontiguous, nor can they implement VLSM. 67

68 Basic RIPv1 Configuration RIPv1 Scenario A Enable RIP: router rip Command Specifying Networks

69 RIPv1 Scenario A Notice that this topology uses five Class C network addresses. Remember, RIPv1 is a classful routing protocol We will see that the class of the network is used by RIPv1 to determine the subnet mask. 69

70 Enabling RIP: router rip Command R1# conf t Enter configuration commands, one per line. End with CNTL/Z. R1(config)# router? bgp Border Gateway Protocol (BGP) egp Exterior Gateway Protocol (EGP) eigrp Enhanced Interior Gateway Routing Protocol (EIGRP) igrp Interior Gateway Routing Protocol (IGRP) isis ISO IS-IS iso-igrp IGRP for OSI networks mobile Mobile routes odr On Demand stub Routes ospf Open Shortest Path First (OSPF) rip Routing Information Protocol (RIP) R1(config)# router rip R1(config-router)# Enter router configuration mode for RIP, enter router rip at the global configuration prompt. Notice that the prompt changes. 70

71 Enabling RIP: router rip Command R1# conf t R1(config)# router rip R1(config-router)# router rip Does not directly start the RIP process. Provides access to configure routing protocol settings. No routing updates are sent until additional commands are configured. no router rip To remove the RIP routing process from a device Stops the RIP process Erases all existing RIP configuration commands. 71

72 Specifying Networks Router(config-router)# network directly-connected-classfulnetwork-address To enable RIP routing for a network, use the network command in router configuration mode Enter the classful network address for each directly connected network. 72

73 Specifying Networks Router(config-router)# network directly-connected-classfulnetwork-address The network command performs the following functions: Enables RIP on all interfaces that belong to a specific network. Associated interfaces will now both send and receive RIP updates. Advertises the specified network in RIP routing updates sent to other routers every 30 seconds. 73

74 Specifying Networks Only directly connected classful network addresses! R1(config)# router rip R1(config-router)# network R1(config-router)# network R2(config)# router rip R2(config-router)# network R2(config-router)# network R2(config-router)# network R3(config)# router rip R3(config-router)# network R3(config-router)# network If you enter a subnet or host IP address, IOS automatically converts it to a classful network address. For example, if you enter the command network , the router will convert it to network

75 Verification and Troubleshooting Verifying RIP: show ip route Verifying RIP: show ip protocols Verifying RIP: debu ip rip Passive Interfaces

76 Verifying RIP: show ip route Command R1# show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, <output omitted> Gateway of last resort is not set R R C C R /24 [120/1] via , 00:00:02, Serial0/0/ /24 [120/2] via , 00:00:02, Serial0/0/ /24 is directly connected, FastEthernet0/ /24 is directly connected, Serial0/0/ /24 [120/1] via , 00:00:02, Serial0/0/0 An R in the output indicates RIP routes. Because this command displays the entire routing table, including directly connected and static routes, it is normally the first command used to check for convergence. Routes might not immediately appear when you execute the command because networks take some time to converge.. 76

77 Verifying RIP: show ip route Command R1# show ip route <output omitted> R /24 [120/2] via , 00:00:23, Serial0/0/0 77

78 Verifying RIP: show ip protocols Command Verifies that RIP routing is configured and running on Router R2 At least one active interface with an associated network command is needed before RIP routing will start. 78

79 Passive Interfaces Got router? Some routers can have interfaces that do not connect to another router. You can use the passive-interface command with RIP to configure an interface not to send those updates. Bandwidth is wasted transporting unnecessary updates. All devices on the LAN must process the RIPv1 update up to the transport layer. Security risk 79

80 Passive Interfaces Router(config-router)# passive-interface interface-type interfacenumber What about using on R2: R2(Config-router)# no network But then R2 would not advertise this LAN as a route in updates sent to R1 and R3. Correct solution is to use the passive-interface command 80

81 Passive Interfaces R2(config)# router rip R2(config-router)# passive-interface FastEthernet 0/0 X 81

82 Passive Interfaces R2# show ip protocols <output omitted> Interface Send Recv Triggered RIP Key-chain Serial0/0/ Serial0/0/ FastEthernet 0/0 no longer included Automatic network summarization is in effect Routing for Networks: LAN network still included in RIP updates that are sent Passive Interface(s): FastEthernet0/0 FastEthernet 0/0 is a passive interface Routing Information Sources: Gateway Distance Last Update :00: :00:23 Distance: (default is 120) 82

83 Automatic Summarization Modified Topology B Boundary Routers and Automatic Summarization Processing RIP Updates Sending RIP Updates Advantages and Disadvantages of Automatic Summarization

84 Modified Topology: Scenario B / / /24 Fewer routes in a routing table means that the routing table process can more quickly locate the route needed to forward the packet. Summarizing several routes into a single route is known as route summarization or route aggregation. Some routing protocols, such as RIP, automatically summarize routes on certain routers. 84

85 Modified Topology: Scenario B / / /24 Three classful networks are used: / / /24 The /16 network is subnetted into three subnets: / / /24 The /24 network is subnetted as a single subnet /30. 85

86 Configuration Changes for R1 R1(config)# interface fa0/0 R1(config-if)# ip address R1(config-if)# interface S0/0/0 R1(config-if)# ip address R1(config-if)# no router rip R1(config)# router rip R1(config-router)# network R1(config-router)# network network address R1(config-router)# passive-interface FastEthernet 0/0 R1(config-router)# end R1# show run <output omitted>! router rip passive-interface FastEthernet0/0 network ! <output omitted> IOS automatically corrects subnet entries to classful The no shutdown and clock rate commands are not needed because these commands are still configured from Scenario A. 86

87 Configuration Changes for R2 R2(config)# interface S0/0/0 R2(config-if)# ip address R2(config-if)# interface fa0/0 R2(config-if)# ip address R2(config-if)# interface S0/0/1 R2(config-if)# ip address R2(config-if)# no router rip R2(config)# router rip R2(config-router)# network R2(config-router)# network R2(config-router)# passive-interface FastEthernet 0/0 R2(config-router)# end R2# show run <output omitted>! router rip passive-interface FastEthernet0/0 network network ! <output omitted> IOS automatically corrects subnet entries to classful network address 87

88 Configuration Changes for R3 R3(config)# interface fa0/0 R3(config-if)# ip address R3(config-if)# interface S0/0/1 R3(config-if)# ip address R3(config-if)# no router rip R3(config)# router rip R3(config-router)# network R3(config-router)# network R3(config-router)# passive-interface FastEthernet 0/0 R3(config-router)# end R3# show run <output omitted>! router rip passive-interface FastEthernet0/0 network network ! <output omitted> 88

89 Boundary Routers and Automatic Summarization RIP is a classful routing protocol that automatically summarizes classful networks across major network boundaries. 89

90 Boundary Routers and Automatic Summarization R2 has interfaces in more than one major classful network. This makes R2 a boundary router in RIP. Both Serial 0/0/0 and FastEthernet 0/0 interfaces on R2 are inside the boundary. The Serial 0/0/1 interface is inside the boundary. Boundary routers summarize RIP subnets from one major network to the other, updates for the , , and networks will automatically be summarized into when sent out R2 s Serial 0/0/1 interface. 90

91 Processing RIP Updates R2# show ip route /24 is subnetted, 3 subnets R [120/1] via , 00:00:18, Serial0/0/0 C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/ /30 is subnetted, 1 subnets C is directly connected, Serial0/0/1 R /24 [120/1] via , 00:00:16, Serial0/0/1 Classful routing protocols such as RIPv1 do not include the subnet mask in the routing update. However, the routing table includes RIPv1 routes with both the network address and the subnet mask. So how does a router running RIPv1 determine what subnet mask it should apply to a route when adding it to the routing table? 91

92 Rules for Processing RIPv1 Updates Routing Update and Interface Same Classful Major Network Different Classful Major Network Routing Update Subnet Mask Use mask of interface Use default classful mask The following two rules govern RIPv1 updates: If a routing update and the interface on which it is received belong to the same major network, the subnet mask of the interface is applied to the network in the routing update. If a routing update and the interface on which it is received belong to different major networks, the classful subnet mask of the network is applied to the network in the routing update.. 92

93 Example of RIPv1 Processing Updates R2# debug ip rip (selected output) RIP: received v1 update from on Serial0/0/ in 1 hops R2# show ip route (selected output) /24 is subnetted, 3 subnets R [120/1] via , 00:00:18, Serial0/0/0 Same classful network as the incoming update. Update: in 1 hops Interface received: Serial 0/0/ /24 Same classful network address ( ) Applies subnet mask of its S0/0/0 interface, /24. The /24 subnet was added to the routing table /

94 Sending RIP Updates R2# debug ip rip RIP protocol debugging is on RIP: sending v1 update to via Serial0/0/0 ( ) RIP: build update entries network metric 1 network metric 1 network metric 2 RIP: sending v1 update to via Serial0/0/1 ( ) RIP: build update entries network metric 1 94

95 Sending RIP Updates R2# debug ip rip RIP protocol debugging is on RIP: sending v1 update to via Serial0/0/0 ( ) RIP: build update entries network metric 1 network metric 1 network metric 2 RIP: sending v1 update to via Serial0/0/1 ( ) RIP: build update entries network metric 1 95

96 Sending RIP Updates R2# debug ip rip RIP protocol debugging is on RIP: sending v1 update to via Serial0/0/0 ( ) RIP: build update entries network metric 1 network metric 1 network metric 2 RIP: sending v1 update to via Serial0/0/1 ( ) RIP: build update entries network metric 1 96

97 Sending RIP Updates

98 Determining the mask and network address Receiving an Update: Determining subnet mask for routing table What is the major classful network address of the receiving interface? What is the major classful network address of the network in the routing update? Are they the same major classful network address? Yes: Apply subnet mask of the receiving interface for this network address in the routing table. No: Apply classful subnet mask for this network address in the routing table. Sending an Update: Determining whether or not to summarize route sent What is the major classful network address of the sending interface? What is the major classful network address of the network in the routing update? Are they the same major classful network address? Yes: Send subnet network address No: Send summary address the classful network address 98

99 Verifying Routing Updates R1# show ip route <output omitted> Gateway of last resort is not set /24 is subnetted, 3 subnets C is directly connected, FastEthernet0/0 C is directly connected, Serial0/0/0 R [120/1] via , 00:00:17, Serial0/0/0 R /24 [120/1] via , 00:00:17, Serial0/0/0 R /24 [120/2] via , 00:00:17, Serial0/0/0 R3# show ip route <output omitted> Gateway of last resort is not set R /16 [120/1] via , 00:00:15, Serial0/0/ /30 is subnetted, 1 subnets C is directly connected, Serial0/0/1 C /24 is directly connected, FastEthernet0/0 99

100 Classful routing protocols do not support VLSM Routers running RIPv1 are limited to using the same subnet mask for all subnets with the same classful network. As you will learn in later chapters, classless routing protocols such as RIPv2 allow the same major (classful) network to use different subnet masks on different subnets, better known as variable-length subnet masking (VLSM).. 100

101 Advantages of Automatic Summarization R3# show ip route <output omitted> Gateway of last resort is not set R /16 [120/1] via , 00:00:15, Serial0/0/ /30 is subnetted, 1 subnets C is directly connected, Serial0/0/1 C /24 is directly connected, FastEthernet0/0 Smaller routing updates are sent and received, which uses less bandwidth for routing updates between R2 and R3. R3 has a single route for the /16 network, regardless of how many subnets there are or how it is subnetted. Using a single route results in a faster lookup process in the routing table for R3. 101

102 Disadvantage of Automatic Summarization / /16 Discontiguous network, two or more subnets separated by at least one other major network /16 is a discontiguous network. 102

103 Discontiguous Networks Do Not Converge with RIPv1 R1(config)# router rip R1(config-router)# network R1(config-router)# network R2(config)# router rip R2(config-router)# network R2(config-router)# network R3(config)# router rip R3(config-router)# network R3(config-router)# network RIPv1 configuration is correct, but it is unable to determine all the networks in this discontiguous topology. 103

104 Discontiguous Networks Do Not Converge with RIPv / /16 Both routers, however, will advertise the major network address, a summary route to R2. 104

105 Discontiguous Networks Do Not Converge with RIPv1 R2# show ip route R /16 [120/1] via , 00:00:14, Serial0/0/1 [120/1] via , 00:00:19, Serial0/0/0 R2 has two equal-cost paths to the network. R2 will load-balance traffic destined for any subnet of This means that R1 will get half of the traffic and R3 will get the other half of the traffic, whether or not the destination of the traffic is for one of their LANs. 105

106 Discontiguous Networks Do Not Converge with RIPv1 R2# show ip route R /16 [120/1] via , 00:00:14, Serial0/0/1 [120/1] via , 00:00:19, Serial0/0/0 Classful routing protocols do not support discontiguous networks because they do not include the subnet mask in the routing update. Classless routing protocols (RIPv2, EIGRP, OSPF, IS-IS, BGP) do support discontiguous networks. 106

107 Default Route and RIPv1 Modified Topology C Propagating the Default Route in RIPv1

108 Modified Topology: Scenario C Default routes are used by routers to represent all routes that are not specifically in the routing table. A default route is commonly used to represent routes that are not in the locally administered network, such as the Internet.. 108

109 Default Routes In today s networks, customers do not necessarily have to exchange routing updates with their ISP. Customer routers that connect to an ISP do not need a listing for every route on the Internet. Instead, these routers have a default route that sends all traffic to the ISP router when the customer router does not have a route to a destination. The ISP configures a static route pointing to the customer router for addresses inside the customer s network. 109

110 Configuration Changes for R2 and R3 R2(config)# router rip R2(config-router)# no network R2(config-router)# exit R2(config)# ip route serial 0/0/1 R3(config)# no router rip R3(config)# ip route serial 0/0/1 110

111 Routing Table R1# show ip route <output omitted> Gateway of last resort is not set /24 is subnetted, 3 subnets C is directly connected, FastEthernet0/0 C is directly connected, Serial0/0/0 R [120/1] via , 00:00:05, Serial0/0/0 R1 has all /24 subnets, but will drop packets for all other networks. No default route (coming) 111

112 Routing Table R2# show ip route <output omitted> Gateway of last resort is to network /24 is subnetted, 3 subnets R [120/1] via , 00:00:03, Serial0/0/0 C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/ /30 is subnetted, 1 subnets C is directly connected, Serial0/0/1 S* /0 is directly connected, Serial0/0/1 R2 has routes for /16 subnets. R2 has static default route for all other networks 112

113 Routing Table R3# show ip route <output omitted> Gateway of last resort is not set /22 is subnetted, 1 subnets S is directly connected, Serial0/0/ /30 is subnetted, 1 subnets C is directly connected, Serial0/0/1 C /24 is directly connected, FastEthernet0/0 R3 has static route for /16 network. Doesn t matter if or how /16 is subnetted, R3 will forward packets to R2. 113

114 Propagating the Default Route in RIPv1 R1# show ip route <output omitted> Gateway of last resort is not set /24 is subnetted, 3 subnets C is directly connected, FastEthernet0/0 C is directly connected, Serial0/0/0 R [120/1] via , 00:00:05, Serial0/0/0 Can configure static default route on every router but: inefficient does not react to topology changes In many routing protocols, including RIP, you can use the defaultinformation originate command in router configuration mode to specify that this router is to originate default information, by propagating the static default route in RIP updates. 114

115 Propagating the Default Route in RIPv1 R2(config)# router rip R2(config-router)# default-information originate R2(config-router)# end R2# debug ip rip RIP: sending v1 update to via Serial0/0/0 ( ) RIP: build update entries subnet metric 1 subnet metric 1 115

116 Propagating the Default Route in RIPv1 R1# show ip route <output omitted> * - candidate default, U - per-user static route, o - ODR Gateway of last resort is to network /24 is subnetted, 3 subnets C is directly connected, Serial0/0/0 R [120/1] via , 00:00:16, Serial0/0/0 C is directly connected, FastEthernet0/0 R* /0 [120/1] via , 00:00:16, Serial0/0/0 The static default route on R2 has been propagated to R1 in a RIP update. R1 has connectivity to the LAN on R3 and any destination on the Internet. 116

117 RIPv1 Limitations / /16 In a discontiguous network, a classful major network address, such as /16, is separated by one or more other major networks /16 is divided by the networks: / /30 Classful routing protocols do not include enough routing information to route properly for discontiguous networks. 117

118 RIPv1 and RIPv2 RIPv2 is actually an enhancement of RIPv1 s features and extensions rather than an entirely new protocol. Next-hop addresses included in the routing updates Use of multicast addresses in sending updates Authentication option available Both versions of RIP share the following features and limitations: Use of hold-down and other timers to help prevent routing loops Use of split horizon and split horizon with poison reverse to also help prevent routing loops Use of triggered updates when there is a change in the topology for faster convergence Maximum hop count of 15 hops, with the hop count of 16 signifying an unreachable network 118

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

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

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

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

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

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

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

Lab 2.8.1: Basic Static Route Configuration

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

More information

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

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

Smart Serial. Show interfaces. Shut down. logging synchronous

Smart Serial. Show interfaces. Shut down. logging synchronous SEMESTER 2 Chapter 2 Static Networking V 4.0 2.1.1 What are the primary responsibilities of the router? 2.1.3 What is the first serial connector described called at the router end? What is the first serial

More information

Distance vector Routing protocols. 2000, Cisco Systems, Inc. 9-1

Distance vector Routing protocols. 2000, Cisco Systems, Inc. 9-1 Distance vector Routing protocols 2000, Cisco Systems, Inc. 9-1 IP Routing Configuration Tasks Router configuration Select routing protocols Specify networks or interfaces RIP Network 172.16.0.0 IGRP,

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

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

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

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

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

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

outing and Switching Elective : Le

outing and Switching Elective : Le Routing and Switching Elective : Lecture Notes Nepal Engineering College Compiled by: Junior Professor: Daya Ram Budhathoki Nepal Engineering college, Changunarayan Chapters covered: Cabling Router Configuration

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

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

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

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

EIGRP Lab / lo1. .1 lo / /30

EIGRP Lab / lo1. .1 lo / /30 EIGRP Lab 172,16,1.0/24.1 lo1 192.168.20.0/30.2.1 Merida fa0 fa0 Vargas lo2.1 lo2.5.1 lo1 192.168.30.0/24 172.16.2.0/24 192.168.20.4.0/30 Scenario: Loopback0 is used for RouterID Loopback1 is a virtual

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

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

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

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

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

Chapter 1 Lab 1-1, Basic RIPng and Default Gateway Configuration

Chapter 1 Lab 1-1, Basic RIPng and Default Gateway Configuration Chapter 1 Lab 1-1, Basic RIPng and Default Gateway Configuration Topology Objectives Configure IPv6 addressing. Configure and verify RIPng on R1 and R2. Configure IPv6 static routes between R2 and R3.

More information

Easy Virtual Network Configuration Example

Easy Virtual Network Configuration Example Easy Virtual Network Configuration Example Document ID: 117974 Contributed by Fabrice Ducomble, Cisco TAC Engineer. Aug 04, 2014 Contents Introduction Prerequisites Requirements Components Used Background

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

Chapter 4 Lab 4-1, Redistribution Between RIP and OSPF

Chapter 4 Lab 4-1, Redistribution Between RIP and OSPF hapter 4 Lab 4-1, Redistribution Between RIP and OSPF Topology Objectives Review configuration and verification of RIP and OSPF. onfigure passive interfaces in both RIP and OSPF. Filter routing updates

More information

EXAM TOPICS COVERED IN THIS CHAPTER INCLUDE:

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

More information

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

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

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

Chapter 6: Network Layer

Chapter 6: Network Layer Chapter 6: Network Layer Introduction to Networks Intro to Networks v5 Network Layer Intro to Networks v5 2 The Network Layer End to End Transport processes Addressing end devices Encapsulation of Packets

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

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

Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED

Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED Topology Objectives Background For IBGP peers to correctly exchange routing information, use the next-hop-self command with

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

Basic Idea. Routing. Example. Routing by the Network

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

More information

CCNA Semester 2 labs. Labs for chapters 2 10

CCNA Semester 2 labs. Labs for chapters 2 10 CCNA Semester 2 labs Labs for chapters 2 10 2.2.2.5 Lab - Configuring IPv4 Static and Default Routes 2.3.2.4 Lab - Troubleshooting Static Routes 3.2.1.9 Lab - Configuring Basic RIPv2 5.2.2.9 Lab - Configuring

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

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

CCENT Study Guide. Chapter 9 IP Routing

CCENT Study Guide. Chapter 9 IP Routing CCENT Study Guide Chapter 9 IP Routing Chapter 9 Objectives The CCENT Topics Covered in this chapter include: 3.0 Routing Technologies 3.1 Describe the routing concepts. 3.1.a Packet handling along the

More information

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

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

More information

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

9 Routing Introduction

9 Routing Introduction 9 Routing Introduction CERTIFICATION OBJECTIVES 9.01 Types of Routes 9.02 Static Routes 9.03 Router on a Stick 9.04 Dynamic Routing Protocols 9.05 Problems with Distance Vector Protocols Two-Minute Drill

More information

Lab - Troubleshooting Connectivity Issues

Lab - Troubleshooting Connectivity Issues Lab - Troubleshooting Connectivity Issues Topology Addressing Table R1 ISP Objectives Device Interface IP Address Subnet Mask Default Gateway G0/1 192.168.1.1 255.255.255.0 N/A S0/0/0 10.1.1.1 255.255.255.252

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

RealCiscoLAB.com. Chapter 6 Lab 6-2, Using the AS_PATH Attribute. Topology. Objectives. Background. CCNPv6 ROUTE

RealCiscoLAB.com. Chapter 6 Lab 6-2, Using the AS_PATH Attribute. Topology. Objectives. Background. CCNPv6 ROUTE RealCiscoLAB.com CCNPv6 ROUTE Chapter 6 Lab 6-2, Using the AS_PATH Attribute Topology Objectives Background Use BGP commands to prevent private AS numbers from being advertised to the outside world. Use

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

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

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

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

More information

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

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

More information

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

Lab 5-3 Redistribution Between EIGRP and IS-IS

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

More information

TELECOMMUNICATION MANAGEMENT AND NETWORKS

TELECOMMUNICATION MANAGEMENT AND NETWORKS QUAID-E-AWAM UNIVERSITY OF ENGINEERING SCIENCE AND TECHNOLOGY, NAWABSHAH TELECOMMUNICATION MANAGEMENT AND NETWORKS LAB # 3 CONFIGURING INTERFACES OF ROUTER AND SWITCH Topology Diagram Addressing Table

More information

Route Redistribution 2005 Cisco Systems, Inc. All rights reserved. 1of 38

Route Redistribution 2005 Cisco Systems, Inc. All rights reserved. 1of 38 1of 38 Basic Route Redistribution Presented by: Allan Johnson Cisco Academy Conference 2005 2of 38 Outline of Discussion Route Redistribution Overview Example 1: IGRP and EIGRP Automatic Redistribution

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

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

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

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

Routing Information Protocol Version 2.0

Routing Information Protocol Version 2.0 Routing Information Protocol Version 2.0 RIPv2 Objective: onfigure RIPv2 between R1 and R2 to obtain connectivity between Networks Directions onfigure R1's interface F0/0 with the IP address 10.1.0.1/16

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

FiberstoreOS IP Routing Configuration Guide

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

More information

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

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

FSOS IP Routing Configuration Guide

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

More information

KIM DONNERBORG / RTS. Cisco Lab Øvelse Af Kim Donnerborg / RTS. Side 0 af 8

KIM DONNERBORG / RTS. Cisco Lab Øvelse Af Kim Donnerborg / RTS. Side 0 af 8 KIM DONNERBORG / RTS Side 0 af 8 INDHOLDSFORTEGNELSE Lab: Basic Router Configuration... 2 Topology Diagram... 2 Addressing Table... 2 Learning Objectives... 2 Scenario... 2 Task 1: Cable the Network....

More information

This chapter covers the following subjects:

This chapter covers the following subjects: This chapter covers the following subjects: Configuring and Testing Static Routes Distance Vector Concepts Configuring RIP and IGRP C H A P T E R 5 RIP, IGRP, and Static Route Concepts and Configuration

More information

Chapter 8 Lab 8-3, Configuring 6to4 Tunnels

Chapter 8 Lab 8-3, Configuring 6to4 Tunnels Chapter 8 Lab 8-3, Configuring 6to4 Tunnels Topology Objectives Configure EIGRP for IPv4. Create a 6to4 tunnel. Configure static IPv6 routes. Background In this lab, you configure EIGRP for full connectivity

More information

Lab: Basic Static Route Configuration

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

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

IPv6 Tunnel through an IPv4 Network

IPv6 Tunnel through an IPv4 Network IPv6 Tunnel through an IPv4 Network Document ID: 25156 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations (Manual IPv6 Mode) Configurations

More information

Chapter 7 Lab 7-1, Configuring BGP with Default Routing

Chapter 7 Lab 7-1, Configuring BGP with Default Routing Chapter 7 Topology Objectives Configure BGP to exchange routing information with two ISPs. Background The International Travel Agency (ITA) relies extensively on the Internet for sales. For this reason,

More information

Introduction to Routing

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

More information

Chapter 6 Lab 6-4, BGP Route Reflectors and Route Filters

Chapter 6 Lab 6-4, BGP Route Reflectors and Route Filters Chapter 6 Lab 6-4, BGP Route Reflectors and Route Filters Topology Objectives Background Configure IBGP routers to use a route reflector and a simple route filter. The International Travel Agency maintains

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

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

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

Sybex CCENT Chapter 8: IP Routing. Instructor & Todd Lammle

Sybex CCENT Chapter 8: IP Routing. Instructor & Todd Lammle Sybex CCENT 100-101 Chapter 8: IP Routing Instructor & Todd Lammle Chapter 8 Objectives The CCENT Topics Covered in this chapter include: IP Routing Technologies Describe basic routing concepts CEF Packet

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

Implement Static Routes for IPv6 Configuration Example

Implement Static Routes for IPv6 Configuration Example Implement Static Routes for IPv6 Configuration Example Document ID: 113361 Contents Introduction Prerequisites Components Used Conventions Configure Network Diagram Configurations Verify Related Information

More information

Lab Configuring Basic RIPv2 (Solution)

Lab Configuring Basic RIPv2 (Solution) (Solution) Topology 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 15 Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway

More information

Lab Configuring IGRP Instructor Version 2500

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

More information

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

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

Cisco CCNA 2 Exploration - Routing

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

More information

Overview. Information About Layer 3 Unicast Routing. Send document comments to CHAPTER

Overview. Information About Layer 3 Unicast Routing. Send document comments to CHAPTER CHAPTER 1 This chapter introduces the basic concepts for Layer 3 unicast routing protocols in Cisco NX-OS. This chapter includes the following sections: Information About Layer 3 Unicast Routing, page

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

Chapter 7 Lab 7-2, Using the AS_PATH Attribute

Chapter 7 Lab 7-2, Using the AS_PATH Attribute Chapter 7 Topology Objectives Use BGP commands to prevent private AS numbers from being advertised to the outside world. Use the AS_PATH attribute to filter BGP routes based on their source AS numbers.

More information

Cisco Building Scaleable Cisco Internetworks (BSCI) Practice Test. Version https://certkill.com

Cisco Building Scaleable Cisco Internetworks (BSCI) Practice Test. Version https://certkill.com Cisco 642-901 642-901 Building Scaleable Cisco Internetworks (BSCI) Practice Test Version 2.12 QUESTION NO: 1 Cisco 642-901: Practice Exam A company has a BGP network and a BGP route of 196.27.125.0/24

More information

Case Study 2: Frame Relay and OSPF Solution

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

More information

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

Configuration and Management of Networks

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

More information