Basic Routing Concepts And Protocols Explained

Basic Routing Concepts And Protocols Explained

This tutorial explains static and dynamic routing, Administrative distance, Autonomous System, Routing update, Routing Metric and Routing protocols in detail with examples.

Routing protocol shares routing update that contains network information. Routers keep this information in routing tables. Routing tables are used to determine the best path for packet. Routing protocols uses several concepts to determine the best path.

IP Routing

IP routing is the process of moving data packets between different networks. By default two different IP networks cannot communicate with each other. They need a mediator device that can switch packet between them. Router takes this responsibility. Routers interfaces are associated with different networks. This association is kept in routing table. Routers use it to take switching decision.

Static Routing

When routers learn from an administrator, it is called static routing. In static routing we have to add all network locations manually. If any change occurs in network, administrator is responsible to update it by hand in all routers.

Advantage of static routing.

It is easy to implement.
It is most secure way of routing, since no information is shared with other routers.
It puts no overhead on resources such as CPU or memory.

Disadvantage of static routing

It is suitable only for small network.
If a link fails static route cannot reroute the traffic.

Dynamic Routing

When routers learn from neighboring router through the routing protocols, it is called dynamic routing. In dynamic routing routers add network locations automatically form the routing information. If any change occurs in network, affected routers update others via routing information.

Advantage of dynamic routing

It is suitable for all type of networks.
Automatically build routing tables.
Reroute the traffic from possible network, in link failure condition.

Disadvantage of dynamic routing

It is hard to implement.
It is less secure, since it shares routing updates with other routers.
It puts additional overhead on resources such as CPU, memory and link bandwidth.
Depending on network requirement we can use either static routing or dynamic routing. Even more we can use a combination of both dynamic and static routing.

Routing updates

 Routing update is a mechanism of sharing information with neighboring routers. In a particular time duration router advertise its routing information through broadcast or multicast. Different protocols have different time intervals. Some protocols use broadcast for routing updates while some uses multicast. Routing updates contain all necessary information for routing protocol such as learned network, timers, AS, AD, matrix values, interface details etc.

 

Autonomous System

 Autonomous System (AS) is a collection of routers that share same routing table information. AS is a boundary line for routing protocol. It could be your company, or group of companies. It is defined by a numeric value. To distinguish between different AS, Internet Assigned Numbers Authority (IANA) provides a range from 1 to 65535. There are two types of AS, private and public. Private AS numbers are used for internal network. Public AS numbers are used for internet backbone.

Interior Gateway Protocols

Interior gateway protocols (IGPs) are used to share routing updates between routers in same AS. Some examples of IGPs are RIPv1, RIPv2, EIGRP, IGRP, and OSPF.

Exterior Gateway Protocols

Exterior gateway protocols (EGPs) are used to share routing updates between different AS. Example of EGPs is Border Gateway Protocol (BGP).

 

Administrative Distance

 Administrative distance (AD) is the trustworthiness of routing update received from a neighbor router. If a router receives two routing updates for same path from two different routing protocols then router will check the AD value to choose the best path. AD is a numeric value from 0 to 255. If one update has lower AD value than other, then the route with the lowest AD will be placed in the routing table

  1. Route source Default AD value
  2. Direct connected interface 0
  3. Static route 1
  4. EIGRP 90
  5. IGRP 100
  6. OSPF 110
  7. RIP 120
  8. External EIGRP 170
  9. Unknown 255

Lower AD value is more believable by router. 0 (Zero) is considered as the most trustworthiness network while 255 is considered as invalid route and it will be never used.

Metric

If two routing updates for same network have same AD value then metric will use to choose the best path. Metric is a measurement to calculate best path. Route with the lowest metric will be chosen. Different routing protocols use different metrics. It may use single metric or multiple metrics. For example EIGRP uses bandwidth, delay, load, MTU and reliability while RIP only uses hop count as metric.

 

Routing Protocol Metric Description

  1. EIGRP Bandwidth Capacity of link in Kbps
  2. EIGRP Delay Time to reach in destination
  3. EIGRP Load Path that is least utilize
  4. EIGRP MTU Path that support largest frame size
  5. EIGRP Reliability Path that have least down time
  6. OSPF Cost Inverse of bandwidth links
  7. RIP Hop count Hops ( Routers) in the way of destination

 

Routing Protocols

There are three types of routing protocols:-

  1. Distance Vector
  2. Link State
  3. Hybrid
  4. Distance Vector

Distance vector routing protocol uses distance (metric value) and direction (vector) to find the best path to destination network. Router receives routing update from neighboring router and these neighboring routers receive updates from their neighboring routers until the destination network. Every router in the way of destination network called hop. Each time a packet goes through a router, it add one in hop count value. Route with the least hop count value will be chosen as best path and will be placed in routing table. RIP is the example of distance vector routing protocol. These protocol shares entire routing table to the directly connected neighbors.
Link State

Link state routing protocols use more composite metric to locate the best path for destination network. It maintains three separate tables. First table keeps track of directly connected neighbors. Second table determines the entire network topology. Third is the routing table that keeps actual path. OSPF is the example of link state protocol. Link state protocols share their own links to all other routers in network.

Hybrid routing protocols are the mix of distance vector and link state protocol. To locate more accurate path, it uses aspect from both distance vector and link state. EIGRP is the example of hybrid routing protocols.
All three types of protocol have their own advantage and disadvantage. They take different approach in sharing routing updates and in choosing the best path.

 

Author: Ronnie

Your Feedback is Valuable for us. Pls do comments.