IP Addressing and Routing Part 3: Default and Static Routing
IP Addressing and Routing Part 3: Default and Static Routing
I suggest taking a look at the first two parts before moving on to the third one, just because there is a lot of fundamental concepts and information that you will need to get a clear understanding of what I will be talking about in this part.For those of you who have been able to keep up with the first two parts, let’s get started. As promised, today we are going to talk about different types of routing:
- Static routing
- Default routing
- Dynamic routing – to be discussed in detail in a later post
What You Must Know About Routing
For those of you who did have the chance to go through my previous posts you will know by now that routers in order to be able to route packets to their final destination, need to maintain a routing table in which all the necessary information will be held. The information needed is simply a combination of networks and output interfaces on the router that can reach those networks.Each time a router receives a packet it inspects the destination IP address and tries to find, by looking in its routing table, a possible route to that IP address. Routers do not send broadcasts looking for the remote networks; therefore if a network is not listed in a routers table, the router simply discards the packets.
Now how does a router maintain its routing table? The answer is pretty straightforward. Either manual route directions are configured on the router or dynamic protocols are used to populate routing information to routers.
Static Routing Pros and Cons
Manually configuring routes on your router can be both beneficial and disadvantageous. Static routing has the following benefits:- No extra processing and added resources as in the case of dynamic routing protocols
- No extra bandwidth requirement caused by the transmission of excessive packets for the routing table update process
- Extra security by manually admitting or rejecting routing to certain networks
- Network Administrators need to know the complete network topology very well in order to configure routes correctly
- Topology changes need manual adjustment to all routers something which is very time consuming
Getting Familiar with Static Routing
To manually insert a static route into the Cisco routers routing table the following command syntax needs to be followed in global configuration mode:Let’s take a look at each part of the static route command:
- IP route: Is the standard announcement of the static route command
- Destination network address: Is the IP address of the network to include in the routing table
- Subnet mask: Is the mask of that network
- Next-hop address: Is the address of the next-hop router that will receive packets from you and forward them to the destined network
- Output interface: Instead of next hop address you can declare the exit interface on your router
- Administrative distance: Is used to apply a sort of prioritization (weigh factors) on static routes, so that different routes to a given destination would follow a certain activation pattern. The Administrative distance (AD) is just an integer from 0 to 255 where 0 indicates a first priority route and 255 means that no traffic is allowed to pass through this route. By default the AD of directly connected interfaces is 0 and for static routes it’s 1
- Permanent: With the permanent word, the router is forced to keep this route in its routing table even if the interface leading to this network is shutdown. Under normal circumstances, if this happens, static routes involved are automatically removed from the routing table
When to Use Default Routing
Default routing is used only in stub networks. Stub are the networks that have only one output interface and everything going through these networks has to cross the single exit point.Instead of having many static routes pointing to remote networks via the single output interface, a single default route is configured that matches all possible routes.
Using Administrative Distances in Static Routes
By default, Static routes have an administrative distance (AD) of 1. ADs are used for prioritization purposes. Different routes, in a specific destination network can be assigned different weights so that one of the routes is used in favor of the other. Routes having the same weight load share the traffic. We will see in practice further on how we can change ADs in static routes.Putting Routing into Practice
Let’s use an example to illustrate the configuration process for static and/or default routes.RouterA is directly connected to networks 195.14.25.40/30, 195.14.125.48/30 and 192.168.10.0/24. In order for RouterA to be able to route packets to all other networks the following static routes need to be configured on the router:
- RouterA(config)#ip route 192.168.20.0 255.255.255.0 195.14.25.42
- RouterA(config)#ip route 195.14.25.60 255.255.255.252 195.14.25.42
- RouterA(config)#ip route 192.168.30.0 255.255.255.0 195.14.25.42
- RouterA(config)#ip route 0.0.0.0.0 0.0.0.0 195.14.25.42
- RouterA(config)#ip route 0.0.0.0.0 0.0.0.0 195.14.25.42
- RouterA(config)#ip route 0.0.0.0.0 0.0.0.0 195.14.125.50
In case we wanted one of the links as a backup, so that it will be activated only when the primary link goes down, then we could assign different Administrative Distances to the links like, the following:
- RouterA(config)#ip route 0.0.0.0.0 0.0.0.0 195.14.25.42 1
- RouterA(config)#ip route 0.0.0.0.0 0.0.0.0 195.14.125.50 100
Guess What? The Rest is Up To You!
So far, I’ve shown you how static routes/default routes/priority routes can be defined on RouterA. Still, RouterB and RouterC cannot fully route all subnets to each other and to RouterA. Similar configuration needs to be performed on the other routers as well. But I will leave that for you to carry out.Remember that routers only know about networks directly connected to them. Static routes or routes learned by dynamic protocols have to be configured in order for the routers to do their job: Routing packets of course. Also keep in mind that default routes are chosen when there is no specific match in the routing table to a given network. They are preferably used in stub networks.
So go ahead and give this a try! Start by configuring either Static routes, or Default routes. You could even load share traffic when appropriate. And as always, feel free to leave me a comment if you run into any difficulties, or if you have any questions.
Comments
Post a Comment