Route Sources – In-Depth Explanation

In routing, a route source refers to where or how a route to a destination network is learned by a router. Understanding route sources is fundamental for effective routing design and troubleshooting.

There are three primary route sources:

  • Connected Routes
  • Static Routes
  • Dynamic Routes

✅ Route Sources – Concept Checklist

Route SourceHow LearnedAdmin Distance (Default)Metric UseManual ConfigExample Protocols
ConnectedInterface up with IP0Not needed❌ NoN/A
StaticManually configured1Optional✅ YesN/A
DynamicLearned via protocolsVaries✅ Yes✅ YesRIP, OSPF, EIGRP

🔹 1. Connected Routes

🔸 Definition

A connected route is automatically added to the routing table when a router interface is configured with an IP address and is up.

🔸 Example

interface GigabitEthernet0/0
 ip address 192.168.10.1 255.255.255.0

This adds: C 192.168.10.0/24 is directly connected, GigabitEthernet0/0

🔸 Administrative Distance

AD = 0 (Most preferred)

🔸 Impact of Interface Status

  • Up = route appears
  • Down = route removed

🔸 Connected Routes in Static/Dynamic Routing

ip route 10.0.0.0 255.255.255.0 192.168.10.2

🔹 2. Static Routes

🔸 Definition

Manually configured paths using next-hop IP or exit interface.

🔸 AD = 1

🔸 Examples

ip route 10.0.0.0 255.255.255.0 192.168.1.2
ip route 10.0.0.0 255.255.255.0 GigabitEthernet0/1
ip route 10.0.0.0 255.255.255.0 192.168.1.2 GigabitEthernet0/1

🔸 Floating Static Route

ip route 10.0.0.0 255.255.255.0 192.168.1.2 5

🔸 Comparison

MethodUse CaseProsCons
Next-hop IPMulti-accessARP handlingNeeds ARP
Interface onlyPoint-to-pointFast lookupBroadcast issues
Fully specifiedBest controlClarityComplex config

🔹 3. Dynamic Routes

🔸 Definition

Routes learned automatically through routing protocols.

🔸 Examples

  • RIP – Hop count
  • OSPF – Cost
  • EIGRP – Bandwidth + delay
  • BGP – Policy

🔸 AD Values

ProtocolAD
EIGRP90
OSPF110
RIP120
BGP (eBGP)20
BGP (iBGP)200

🔸 Benefits

  • Scalability
  • Redundancy
  • Adaptability

🔹 4. Comparative Understanding

FeatureConnectedStaticDynamic
Config NeededNoYesYes
Admin Distance0190–120+
Learning MethodInterface upManualProtocols
ScalabilityLowLowHigh
FlexibilityNoneModerateHigh
ConvergenceInstantManualAutomatic

✅ Summary Table

Route TypeADConfigurable?Auto FailoverScalableCommon Use
Connected0NoNoNoBase for dynamic, local
Static1YesYes (floating)NoSmall networks, backup
Dynamic90+YesYesYesLarge networks

Routing Route Sources Quiz

1. What is a connected route?

Correct answer is D. Connected routes are automatically added when an interface is up and configured with an IP.

2. What is the default administrative distance (AD) of a static route?

Correct answer is B. Static routes have a default AD of 1.

3. Which of the following routing protocols uses a hop count as its metric?

Correct answer is A. RIP uses hop count as its metric.

4. What is a floating static route?

Correct answer is C. Floating static routes have higher AD to act as backups.

5. Which command is used to verify routing table entries and their administrative distances?

Correct answer is B. 'show ip route' displays the routing table and AD values.

6. What is the default AD of OSPF?

Correct answer is A. OSPF’s default AD is 110.

7. What happens to connected routes when the interface goes down?

Correct answer is D. Connected routes disappear if the interface goes down.

8. Which of the following routing protocols has the lowest default AD?

Correct answer is C. External BGP has an AD of 20, the lowest among dynamic protocols.

9. Which route source has the highest trustworthiness?

Correct answer is B. Connected routes have AD 0 and highest trust.

10. Which of the following is NOT true about static routes?

Correct answer is B. Static routes do NOT automatically update on link failure unless configured as floating routes.

← Back to Home