You are on page 1of 17

22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.

com

Search...

Table of Contents
CCIE Routing & Switching

Unit 1: Preparation
Unit 2: Switching
Unit 3: IP Routing
Unit 4: RIP
RIP Distance Vector Routing Protocol

How to conတgure RIP on a Cisco router

RIP Timers Debug

RIP Reliable Default Route with IP SLA

Unit 5: EIGRP
Unit 6: OSPF
Unit 7: BGP
Unit 8: Multicast
Unit 9: IPv6
Unit 10: Quality of Service
Unit 11: Security
Unit 12: System Management
Unit 13: Network Services
Unit 14: MPLS

You are here: Home » Cisco » CCIE Routing & Switching

RIP Distance Vector Routing Protocol


https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 1/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

18 votes

RIP is a distance vector routing protocol and the simplest routing protocol to start with. We’ll
start by paying attention to the distance vector class. What does the name distance vector
mean?

Distance: How far away, in routing world we use metrics which we just discussed.
Vector: Which direction, in routing world we care about which interface and the IP-address
of the next router to send it to.

10:51

I don’t know if you ever go cycling but here in The Netherlands we have some nice so called
mushroom signposts telling you which way to go and how far (in kilometers) the destination is.
The same principle applies to distance vector routing protocols.

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 2/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

If you don’t like cycling you’ll like the highway signs better:

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 3/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

Enough about cycling and highways let’s see how distance vector routing protocols operate.

In this picture we have three routers and we are running a distance vector routing protocol
(RIP). As we start our routers they build a routing table by default but the only thing they know
are their directly connected interfaces. You can see that this information is in their routing
table. In red you can see which interface and in green you can see the metric. RIP uses hop
count as its metric which is nothing more than counting the number of routers (hops) you have
to pass to get to your destination.

Now I’m going to enable distance vector routing, what will happen is that our routers will copy
their routing table to their directly connected neighbor. Router Spade will copy its routing table
to router Hearts. Router Hearts will copy its routing table to router Clubs and the other way
around.

If a router receives information about a network it doesn’t know about yet, it will add this
information to its routing table:

Take a look at router Spade and you will see that it has learned about the 192.168.23.0 /24 and
3.3.3.0 /24 network from router Hearts. You see that it has added the interface (Fa1/0) how to
reach these networks (that’s the vector part) and you see that it has added the metric (hop
count) for these networks (that’s the distance part).

192.168.23.0 /24 is one hop away, 3.3.3.0 /24 is two hops away.
https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 4/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

Awesome! You also see that router Hearts and router Clubs have တlled their routing tables.

Every 30 seconds our routers will send a full copy of their routing table to their neighbors who
can update their own routing table.

So far so good, our routers are working and we know the destination to all of our networks…
distance vector routing protocols are vulnerable to some problems however. Let me show you
what can go wrong:

12:19

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 5/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

The FastEthernet 1/0 link on router Clubs is going down, so it will change its routing table. Its
status went from 0 to Down.

Every 30 seconds our routers send a full copy of their routing table to their neighbors and it just
happens to be that it’s time for router Hearts to send a copy. Router Hearts sends his full
routing table towards router Clubs. What do you think will happen?

Router Clubs gets the routing table from router Hearts and will see that router Hearts is
advertising the 3.3.3.0 /24 network with a hop count of 1. That’s excellent is what router Clubs
thinks….a hop count of 1 is better than having a network that is down. Router Clubs will add this
information to its routing table.

A few seconds later it’s time for router Clubs to send its routing table to its neighbor router
Hearts. Router Hearts will come to the following conclusion:

“I can reach 3.3.3.0 /24 by going to router Clubs and my hop count used to be 1. I’m receiving a
routing table from router Clubs now and it now says that the hop count is 2…I need to update
myself to include this change”.

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 6/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

The hop count on router Hearts is now 3, it received 2 from router Clubs plus it adds the hop
towards router Clubs.

Router Hearts will also send a copy of its routing table towards router Spade who will update
itself as well.

Do you see where this is going? These routers are going to keep updating themselves to inတnity.

What will happen when we send an IP packet to the 3.3.3.0 /24 network?

Look at the routing table of router Hearts and router Clubs, they are pointing to each other.
Ladies and Gentleman…we have a routing loop! That’s not a good thing, IP packets have a TTL
(Time to Live) တeld however so they won’t loop around forever like Ethernet Frames do.

To prevent routers from updating themselves over and over again we have a maximum. For RIP
this is a hop count of 16. 16 is considered unreachable so the maximum number of hops you
can have is 15.

This problem is called counting to inတnity.

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 7/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

There is something else we use to counter the counting to inတnity problem. In our example
router Clubs advertised the 3.3.3.0 /24 network towards router Hearts. How useful is it that
router Hearts advertises this network towards router Clubs?

That’s like telling someone a joke that you just learned from that person…not very eတective
(unless the joke is extremely good/lame

In routing it’s not very eတective so whatever you learn from your neighbor you are not going to
advertise back to him. We call this split horizon.

Something else we do is that once a network goes down (3.3.3.0 /24 in our example) the router
will send a triggered update immediately to update its neighbors.

The triggered update will contain the network that is down and an inတnite metric (16 in the case
of RIP). Sending a update for this network with an inတnite metric is called route poisoning.

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 8/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

To make sure router Clubs does not update itself via some other router / path in the network,
router Hearts will send a poison reverse in response to the route poison it has received from
router Clubs.

I just explained to you what split horizon is…”don’t advertise whatever you learned from your
neighbor back to them”.

“Route poisoning overrules split horizon”

There is one more thing we use with distance vector routing protocols. When router Hearts and
Spade တnd out that our 3.3.3.0 /24 network is down they will also start a holddown timer. This
holddown timer will run for 180 seconds and it does the following:

If we receive information about the 3.3.3.0 /24 network from another router with the same
or worse metric than we currently have, we ignore this information.
If we receive information about the 3.3.3.0 /24 network from another router with a better
metric, we stop the holddown timer and update our routing table with this new information.
If we don’t receive anything and the holddown timer elapses we remove this network from
the routing table.

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 9/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

What do you think? That’s plenty of information about RIP and distance vector routing protocols
right?

Let me တnish this articleby giving you an overview between RIP version 1 and version 2. They
are similar with a few diတerences:

RIP Version 1 Version 2

Class Classful Classless

Addressing Type Broadcast Multicast

Support manual summaries No Yes

Authentication support No Yes

RIP version 1 is classful so it does not send a subnet mask along with its routing updates,
version 2 is classless so it will send the subnet mask along. RIP version 1 sends everything using
broadcasts compared to RIP version 2 which uses multicast (you can also use unicast btw).

That's all I have for you now. In another article I will show you all the RIP commands you need
to know for CCNA! I hope you enjoyed this article, if it was helpful to you please leave a
comment!

Rate this Lesson:

« Previous Lesson
OER (Optimize Edge Routing)
Phases
Next Lesson
How to conတgure RIP on a Cisco
router
»

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 10/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

Home › Forums › RIP Distance Vector Routing Protocol

This topic contains 25 replies, has 9 voices, and was last updated by   Rene Molenaar 1 day, 3
hours ago.

Viewing 15 posts - 1 through 15 (of 25 total)


12→
Author
Posts  | Subscribe
May 10, 2014 at 10:25 #15194 Reply

mohamed hosny
i have two question

1- split horizon : it’s not useful to advertise network back to the neighbor through interface
which came from this neighbor because he is closer to this network than me. the question is
what happen when i learned the same network from another neighbor in the following cases 1-
with lower metric
or 2-higher metric
or 3- equal metric

2- question two how split horizon works if we have example


1-RI connected to R2 and R3
2-R2 connected to R1and R3
3-R3 connected to R1and R2

August 4, 2014 at 21:22 #15195 Reply

Farai
It was my တrst time to read about the RIP, the way the Protocol is explained is very clear and
straight forward. Thanks

September 19, 2014 at 03:26 #15196 Reply

Darren
Rene,
I’m using the Boson Netsim 9.0 simulator and I conတgured a lab to match what you laid out in
this lesson, what has me baတed is how and where do you see the hop count message of 16,

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 11/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

when I shutdown the interface on my R3 router (LAN) 3.3.3.0/24. I turned on debug IP Rip on my
R2 router to view the updates being sent from R3. I did see the metric count reach 4 and after
that the route was deleted for network 3.3.3.0/24, I never saw the hop count reach 16……just
curious about this.
Otherwise a very good explanation and write up RIP protocol
It could be the simulator not doing a valid simulation of a real router, not sure.

Thanks again for your information

September 19, 2014 at 06:40 #15201 Reply

Rene Molenaar
Keymaster
Hi Darren,

It might be the Boson simulator, you could try this in GNS3 with two routers…see if the output is
diတerent than in Boson.

Rene

October 23, 2014 at 09:40 #15202 Reply

Umair
Very Very nice explanation, Thanks

March 16, 2015 at 10:07 #15203 Reply

Aisha M
Member
Dear Rene,

This article has been very helpful for me. Thank you for posting it.

I just have one misunderstanding about it. How can “counting to inတnity problem” happen if we
use “split horizons”? Or did you mean that “split horizons” is one of the methods to resolve
“counting to inတnity problem”?

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 12/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

Best regards,
Aisha

March 16, 2015 at 10:22 #15206 Reply

Rene Molenaar
Keymaster
Hi Aisha,

The way distance vector routing protocols share routing information makes them vulnerable to
problems like counting to inတnity. Split horizon is one of the techniques to counter/prevent that
problem.

Rene

March 16, 2015 at 14:28 #15210 Reply

Aisha M
Member
That is clear now. Thank you, Rene!

June 6, 2015 at 11:51 #15211 Reply

Maruti G
Member
Hi Rene, I’m bit confussed with Split horizon and Reverse poison. Could you please me on this.

June 7, 2015 at 10:54 #15212 Reply

Rene Molenaar
Keymaster
Hi Maruti,

Split horizon is pretty straight forward…

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 13/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

When you learn about a network on an interface then you don’t advertise that network out of
the same network.

This makes sense, we learn something on an interface so why advertise that information out of
the same interface…

Route poisoning and poison reverse are both used to invalidate a network. When an interface
goes down, the router will send a “route poison” for networks that are now unreachable. The
“poison” part means setting the metric to the highest possible value which indicates that it is
unreachable, in case of RIP that’s a hop count of 16.

The poison reverse is sent by the router who receives the route poison, it works a bit like an
acknowledgment and ensures that the router that sent the route poison doesn’t install any
other entries in its routing table for the network that went missing.

Rene

June 9, 2015 at 07:14 #15213 Reply

Maruti G
Member
Thanks Rene! Now, I understood these terms.

August 24, 2015 at 10:18 #15214 Reply

Hussein Samir
Participant
Hi Rene,

If RIP router received an information about a network from diတerent interfaces (vectors) with
diတerent metrics, what information the router will take care of and decides to put it into the
routing table :-
1 – Information that have better metric ?
2 – both information ?

August 24, 2015 at 11:33 #15215 Reply

Rene Molenaar

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 14/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

Keymaster
Hi Hussein,

RIP is a simple protocol, it will always prefer the path with the lowest vector. If the metric is
equal then it will install both paths and will do load balancing.

Rene

August 24, 2015 at 12:24 #15216 Reply

Hussein Samir
Participant
Thanks Rene,

I have one more question about invalid timers and တush timers of RIP ? what are these timers
about ?

August 24, 2015 at 12:40 #15217 Reply

Rene Molenaar
Keymaster
Hi Hussein,

The invalid timer is the number of seconds that we wait before a route goes into hold down. It’s
180 seconds by default.

The တush timer is the number of seconds we wait after the holddown timer has expired before
we throw the route away. It’s 240 seconds by default.

Rene

Author
Posts

Viewing 15 posts - 1 through 15 (of 25 total)


12→
Reply To: RIP Distance Vector Routing Protocol
b i link b-quote del img ul ol li code close tags

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 15/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

Please put code in between `backticks` or use the CODE button.


To place inline images, please use any image share service (such as TinyPic or Imgur) and use
the IMG button!

Notify me of follow-up replies via email

Maximum တle size allowed is 2048 KB.

Attachments:
Выберите файл Файл не выбран
Add another တle

Submit

About NetworkLessons.com

Hello There! I'm René Molenaar (CCIE #41726), Your Personal Instructor of
Networklessons.com. I'd like to teach you everything about Cisco, Wireless and
Security. I am here to Help You Master Networking!

Read my story

Social Fans

  
14,267 7,929 1,589
FANS FOLLOWERS SUBSCRIBERS

Highest Rated Lessons

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 16/17
22.06.2016 RIP Distance Vector Routing Protocol | NetworkLessons.com

MPLS Layer 3 VPN Conတguration


(25 votes)

VRF Lite Conတguration on Cisco IOS


(23 votes)

Cisco Portfast Conတguration


(20 votes)

IPv6 Address Types


(18 votes)

EIGRP Stub Explained


(17 votes)

New Lessons

Introduction to Cisco IOS XE


ERSPAN Conတguration on Cisco IOS XE
IGMP Filter
IGMP Snooping without Router
Cisco Group Management Protocol (CGMP)

Disclaimer
Privacy Policy
Support

RIP Distance Vector Routing Protocol written by Rene Molenaar average rating 4.8/5 - 18 user ratings

https://networklessons.com/cisco/ccie­routing­switching/rip­distance­vector­routing­protocol/ 17/17

You might also like