Question

In: Computer Science

Given a network topology of 3 or more routers with bandwidth designations, compare the metrics used...

Given a network topology of 3 or more routers with bandwidth designations, compare the metrics used during the route selection process and the resulting routing tables generated by the dual algorithm and static routing.

Solutions

Expert Solution

Routes are chosen and built in the routing table based on the routing protocol's administrative distance. The routes learned from the routing protocol with the lowest administrative distance are installed in the routing table. If there are multiple paths to the same destination from a single routing protocol, then the multiple paths would have the same administrative distance and the best path is selected based on the metrics. Metrics are values associated with specific routes, ranking them from most preferred to least preferred. The parameters used to determine the metrics differ for different routing protocols. The path with the lowest metric is selected as the optimal path and installed in the routing table. If there are multiple paths to the same destination with equal metrics, load balancing is done on these equal-cost paths. For more information on load balancing see How Does Load Balancing Work?

Prefix Lengths

Let's look at another scenario to see how the router handles another common situation: varying prefix lengths. Assume, again, that a router has four routing processes running on it, and each process has received these routes:

  • EIGRP (internal): 192.168.32.0/26

  • RIP: 192.168.32.0/24

  • OSPF: 192.168.32.0/19

Which of these routes will be installed in the routing table? Since EIGRP internal routes have the best administrative distance, it's tempting to assume the first one will be installed. However, since each of these routes has a different prefix length (subnet mask), they're considered different destinations, and they will all be installed in the routing table.

Let's see how the forwarding engine uses the information from the routing table to make forwarding decisions.

Making Forwarding Decisions

Let's look at the three routes we just installed in the routing table, and see how they look on the router.

router# show ip route
     ....
     D   192.168.32.0/26 [90/25789217] via 10.1.1.1
     R   192.168.32.0/24 [120/4] via 10.1.1.2
     O   192.168.32.0/19 [110/229840] via 10.1.1.3
     ....

If a packet arrives on a router interface destined for 192.168.32.1, which route would the router choose? It depends on the prefix length or the number of bits set in the subnet mask. Longer prefixes are always preferred over shorter ones when forwarding a packet.

In this case, a packet destined to 192.168.32.1 is directed toward 10.1.1.1, because of 192.168.32.1 falls within the 192.168.32.0/26 network (192.168.32.0 to 192.168.32.63). It also falls within the other two routes available, but 192.168.32.0/26 has the longest prefix within the routing table (26 bits versus 24 or 19 bits).

Likewise, if a packet destined for 192.168.32.100 arrives on one of the router's interfaces, it's forwarded to 10.1.1.2, because 192.168.32.100 doesn't fall within 192.168.32.0/26 (192.168.32.0 through 192.168.32.63), but it does fall within the 192.168.32.0/24 destination (192.168.32.0 through 192.168.32.255). Again, it also falls into the range covered by 192.168.32.0/19, but 192.168.32.0/24 has a longer prefix length.

IP Classless

Where the IP classless configuration command falls within the routing and forwarding processes is often confusing. In reality, IP classless only affects the operation of the forwarding processes in IOS; it doesn't affect the way the routing table is built. If IP classless isn't configured (using the no IP classless command), the router won't forward packets to supernets. As an example, let's again place three routes in the routing table and route packets through the router.

Note: If the supernet or default route is learned via IS-IS or OSPF, the no IP classless configuration command is ignored. In this case, packet switching behavior works as though IP classless were configured.

router# show ip route
....
     172.30.0.0/16 is variably  subnetted, 2 subnets, 2 masks
D        172.30.32.0/20 [90/4879540] via  10.1.1.2
D       172.30.32.0/24  [90/25789217] via 10.1.1.1
S*   0.0.0.0/0 [1/0] via 10.1.1.3  

Remembering that the 172.30.32.0/24 network includes the addresses 172.30.32.0 through 172.30.32.255, and the 172.30.32.0/20 network includes the addresses 172.30.32.0 through 172.30.47.255, we can then try switching three packets through this routing table and see what the results are.

  • A packet destined to 172.30.32.1 is forwarded to 10.1.1.1 since this is the longest prefix match.

  • A packet destined to 172.30.33.1 is forwarded to 10.1.1.2 since this is the longest prefix match.

  • A packet destined to 192.168.10.1 is forwarded to 10.1.1.3; since this network doesn't exist in the routing table, this packet is forwarded to the default route.

  • A packet destined to 172.30.254.1 is dropped.

The surprising answer out of these four is the last packet, which is dropped. It's dropped because its destination, 172.30.254.1, is within a known major network, 172.30.0.0/16, but the router doesn't know about this particular subnet within that major network.

This is the essence of classful routing: If one part of a major network is known, but the subnet toward which the packet is destined within that major network is unknown, the packet is dropped.

The most confusing aspect of this rule is that the router only uses the default route if the destination major network doesn't exist in the routing table at all.

This can cause problems in a network where a remote site, with one connection back to the rest of the network, is running no routing protocols, as illustrated.

The remote site router is configured like this:

interface Serial 0
     ip address 10.1.2.2 255.255.255.0
   !
   interface Ethernet 0
     ip address 10.1.1.1 255.255.255.0
   !
   ip route 0.0.0.0 0.0.0.0 10.1.2.1
   !
   no ip classless

Related Solutions

Given a network topology of 3 or more routers with an IPv4 and IPv6 addressing scheme,...
Given a network topology of 3 or more routers with an IPv4 and IPv6 addressing scheme, implement the appropriate technology to ensure connectivity to the Internet.
Given a network topology of 3 or more routers with an OSPF addressing scheme, implement single-area...
Given a network topology of 3 or more routers with an OSPF addressing scheme, implement single-area OSPF routing.
Given a network topology and three routers and an IPv4 or IPv6 addressing scheme, implement the...
Given a network topology and three routers and an IPv4 or IPv6 addressing scheme, implement the correct routing protocol and confirm layer connectivity.
Formulate different metrics that could be used to compare the performance of the robotic system with...
Formulate different metrics that could be used to compare the performance of the robotic system with the presently used manual system
Select 3-5 financial markets or economic metrics. Compare and contrast financial markets metrics of 2008, 2012,...
Select 3-5 financial markets or economic metrics. Compare and contrast financial markets metrics of 2008, 2012, and 2016 - has the US economy sufficiently recovered from the financial crisis?
Describe how technology is used to make cell phone calls more secure, maximize available bandwidth, and...
Describe how technology is used to make cell phone calls more secure, maximize available bandwidth, and minimize the influence of "noise". What changes need to be made to the existing system to support 5G?
3.   Consider a sub netting network with a network ID and Mask given as 200.155.187.0/24. Determine...
3.   Consider a sub netting network with a network ID and Mask given as 200.155.187.0/24. Determine the following for the given network address i. To which class does this address belong to                                           (3 Marks) ii. Identify whether the address belongs to public or private class.        (3 Marks) iii. Calculate the new mask required to provide 10 usable hosts per subnet. (8 Marks) iv. What is the dotted decimal notation for the given address.             (3 Marks) v. Calculate...
Document one or more methods used to characterize and measure consumer confidence. Compare and contrast how...
Document one or more methods used to characterize and measure consumer confidence. Compare and contrast how confidence might be related to financial markets’ expectations of risk of a recession, similarly to interest rate spreads. Do you find consumer confidence to be a useful measure? Explain why or why not. Also comment on indicators contained in “economic fundamentals,” in its value to firm managers.
Compare and contrast several empirical measures of sustainability (no more than 3). Address the logic behind...
Compare and contrast several empirical measures of sustainability (no more than 3). Address the logic behind the measures, why their advocates favour them, what weaknesses they have, and how they compare to each other.
Given N2 + 3 H2 → 2 NH3 If 5.55 g of each reactant are used,...
Given N2 + 3 H2 → 2 NH3 If 5.55 g of each reactant are used, what is the theoretical mass, in grams, of ammonia that will be produced? Also, what is the percent yield for this reaction if 5.55 g of ammonia are obtained experimentally?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT