Study Session Number 5! RIP, EIGRP and OSPF! #6

Hi Everyone! 

Today I decided that I was going to brush up on my routing protocols - RIP, EIGRP, OSPF, IS-IS.

RIP used distance vector, so does EIGRP although its better its not ideally suited for businesses. OSPF is the most widely used protocol as its vendor neutral and is link state. IS-IS is a protocol aimed at more at ISP's. 

Interior Gateway routing protocols - RIP, EIGRP, OSPF, IS-IS.
Exterior Gateway routing protocols - External BGP.

Link state - Makes decisions based on the cost of the link (internet speed).
Distance Vector - Based on how many hops to X devices. 

Administrative Distance - Lowest AD to route wins. AD is how much that link is trusted.
AD Measurements - 
Connected - 0 
Static Route - 1
External BGP - 20
EIGRP - 90
OSPF - 110
IS-IS - 115
RIP -120

Metric - 
When multiple paths are learned through a routing protocol the metric will be used to decide what path is the best along with the AD.

Router looks at AD first, then uses metric to decide what path to use. 

[120/1]
120 = AD (RIP)
1 = METRIC

Floating Static Route - 
The route essentially "floats" in the background as a backup link, the AD is modified to be higher so that the route will be chosen second to the other route that has a lower AD (lower is better).

Loopback Interface - 
A loopback is a logical interface that isn't locked down to a physical interface - because of this the interface can never fail. A loopback uses a /32 subnet mask as it cant be put into the physical address space and also uses an IP address (basically a standard IP address but uses a /32 subnet). Loopback is useful for Voip traffic and as a management interface.

Passive Interface - 
A passive interface is configured to send out routing updates to a network, the routers will learn how to get to the passive interface but wont send out updates to it. Used for loopback interfaces and networks that might need access in future. 

RIP - HOP COUNT (RIPv2 - Uses Multicast address to send updates, 224 address. Max hop count = 15)
EIGRP - BANDWIDTH/DELAY
OSPF - BANDWIDTH/LINK COST

RIP is aware of neighbors, OSPF is aware of the whole network, an easy way to remember this is to think of when RIP is used on a router it has a Point Of View perspective whereas when OSPF is used its a birds-eye view of the network.  
 
Will go into more depth in different blog about EIGRP & OSPF.





Comments

Popular posts from this blog

Python Crash Course Chapter 1-2! #1

I PASSED! Cisco CCNA 200-301! Experience & Where I'm going from here!

Python Notes #6 Functions