
When complex networks contain multiple interconnections, static routes are no longer a practical solution because they cannot adapt or react to changes in the topology. Not to mention, the configuration complexity can grow exponentially as you add more devices to the network. For example, give the network design shown in the figure below, router A knows only the three directly connected networks attached to the router.
For IP packets to reach the 172.17.0.0 network via static routes, you would have to configure Router A to go through one of its neighbor routers, such as Router B. however, Router B also requires a static route to 172.17.0.0 because that network is not directly connected to it. Supposing that the router is using Router F as its next hop, that router does not require a static route because it is directly connected.
Unfortunately, our configuration undertaking does not stop there because we have to configure a static route in Router F and Router B back to the 172.16.0.0 network.

Granted, the configuration scenario shown in the figure above is not drastically difficult or strenuous, but imagine if the network contained 20 more routers.
More importantly, consider what would happen if the link between A and B went down. Because the routes are statically configured in the routers, you must go back and remove the static routes on Router A and B and redirect the traffic by configuring routes to go through Router C, D, and E. Not to mention, you must remove and reconfigure static routes back to the 172.16.0.0 network in Router F, E, D, and C.
To alleviate the administrative calamity you might have to encounter with static routes in complex networks, you can use dynamic routing protocols. If you configure routing protocols, the routers advertise their connected networks to the rest of the routers in the network, thus minimizing the amount of configuration required. In addition, routing protocols can detect and adapt to topology changes in the internetwork.
Routing metrics
Because one of the core responsibilities of routing protocols is to build routing tables to determine optimal routing paths, you need to have some means of measuring which routes are preferred when there are multiple pathways to a destination.
Routing protocols use some measure of metrics to identify which routes are optimal to reach a destination network. The lowest cumulative metric to a destination is the preferred path and the one that ultimately enters the routing table. Different routing protocols use one or several of the following metrics to calculate the best path.
- Hop count: the number of routing devices that the packet must travel to reach a destination network.
- Bandwidth: the cumulative bandwidth of the links to the destination in kilobits per second.
- Delay: The length of time (measured in microseconds) a packet takes from source to destination.
- Reliability: The consistency of the links and paths toward the destination based on error rates of the interfaces.
- Load: The cumulative amount of congestion or saturation of the links toward the destination.
- MTU: The maximum frame size is allowed to traverse the links to the destination.
- Cost: An arbitrary number typically based on the bandwidth of the link.
Classful and classless Routing Updates
As you will see in the following sections, routing protocols are categorized into several different classifications based on common characteristics and properties that they share. The first of these classifications revolves around the contents of routing updates that Layer 3 devices advertise to their neighbors.
Specifically, if the routing updates do not contain the subnet mask along with their respective advertised networks, they are said to be classful routing protocols. Conversely, if the subnet mask is transmitted along with the network information, it is characterized as a classless routing protocol.
This may seem like a trivial characteristic to define routing protocols, but as you will see, the results of the subnet mask being present or not in routing updates can affect the routing protocols you choose and how efficiently you can design your entire network.
With classful routing protocols, you assume that your network’s design conforms to the class boundaries of IP subnets. In other words, major networks in your design use their default classful subnet masks, “Implementing IP addressing” (for example, class A uses 255.0.0.0, Class B uses 255.255.0.0, and Class C uses 255.255.255.0).
If you happen to subnet a major network into smaller subnets, classful routing protocols are disadvantageous, because they do not receive the revised subnet mask. For this reason, classful routing protocols process updates in one of two ways:
- If the network in the updates matches the same major classful network on the interface through which it was received, it uses the subnet mask of the interface and places it in the routing table.
- If the router advertises a network to a different major network out an interface that is not in the same major network, it automatically summarizes the network to its classful boundary.
For example, when Router B in the following figure sends an update to Router A using a classful routing protocol (RIPv1 in this example), it summarizes the 172.17.30.0/24 to a default Class B 172.17.0.0 network because it is going out the serial 0/0 interface, which does not contain a subnet in that major network.
The 192.168.1.60 network, on the other hand, is in the same major network, so it does not automatically summarize that subnet. When router A receives that update, it adds the 172.17.0.0 network to its routing table, specifying Router B’s serial interface IP (192.168.1.10) as the next hop to reach that network. In addition, it adds the 192.168.1.60 network as well, using its interface mask because it is in that same major network.
Now consider if the Ethernet segment of Router B’s 192.168.1.60 network had a /29 subnet mask. The end result would still be the same as before in that Router B would advertise the 192.168.1.60 subnet and Router A would use its interface’s subnet mask of /30. In these instances, classful routing protocols are not the optimal choice because Router A has a route to only a third of the 192.168.1.60/29 subnet.
For this reason, when you subnet a major network, you must be sure that you use the same subnet mask throughout your network design with classful routing protocols. This same subnet design is commonly referred to as a Fixed length subnet mask (FLSM) network design.

Classful routing protocols can also be problematic when major classful networks are subnetted and are haphazardly dispersed throughout the network, as illustrated in the figure below. When Router A and C summarize their networks to Router B, Router B thinks that the172.16.0.0 network is out both of its serial interfaces.
This could easily result in traffic destined for 172.16.10.0 and 172.16.50.0 being load balanced out each interface, resulting in 50% packet loss because the packets are sent in a round fashion between both interfaces.

Because classless routing protocols advertise the subnet masks in their routing updates, discontiguous networks are no longer an issue because routing devices are aware of the subnetted networks. In addition, the requirement of using the same subnet mask throughout the network ceases to apply because the routers do not automatically summarize the networks to a classful boundary.
No longer inhibited by these constraints, you are free to use different subnet masks, known as Variable-length subnet masks (VLSMs) in your network design. In addition, you now have full autonomy to manually summarize networks as you wish to help keep routing tables small to conserve resources. VLSM and route summarization are described in greater detail in the following sections.
VLSM
Using classless routing protocols affords you the luxury of having support for VLSM network design. This is advantageous in your network planning because you can allow the appropriate number of IP addresses required for each link.
Not to mention, by assigning the minimal number of IP addresses required for a given link, you conserve IP addresses. For example, you can use a /30 subnet mask for point-to-point links because you need only two available IP addresses and a /27 subnet mask on an Ethernet segment to accommodate 30 hosts.
If you were using classless routing protocols, you would have to use a /27 for all links, which would inevitably waste 28 IP addresses on the point-to-point links. Throughout your certification and career, it is quite possible you will have to design your network given a usable subnet and host requirements for all your links. When tackling this designing task, be sure to adhere to the following guidelines:
- If possible, start with the larger subnets first.
- Write out the ranges that you have assigned to ensure that you do not accidentally overlap subnets.
- Make sure your networks start on incremental boundaries (128, 64, 32 and so on.)
In the next article, we will continue to the Route Summarization and conclude this topic of Routing and Routing protocol.