What are some examples of routing protocols.
What is a Routed/Routable Protcol?
These terms refer to a protocol that defines a packet structure and logical addressing (e.g. IPv4 and IPv6).
What is Path Selection?
The process that a routing protocol uses to choose the best route to a destination.
What is the relationship between Routing Protocols and Routed/Routable Protocols?
Routing protocols forward packets with address defined by routed protocols. For example, OSPF defines a process for routing IPv4 packets.
What are the general functions of a routing protocol?
What is an IGP?
An Interior Gateway Protocol is a routing protocol that was designed to be used inside a single AS (Autonomous System). Examples of these would be OSPF, RIP, EIGRP (Enchanced Interior Gateway Routing Protocol)
What is an EGP?
An Exterior Gateway Protocol is a routing protocol that was designed to be used between multiple AS (Autonomous System). An example of one is BGP.
What is an AS (Autonomous System)?
What organisation assigns ASNs (Autonomous System Numbers)?
IANA (Internet Assigned Numbers Authority)
What is a Routing Protocol Algorithm?
The logic that routing protocols use to learn routes, choose the best route for a destination, and converge in reaction to network topology changes. The three main ones are:
- Distance Vector (Sometimes called Bellman-Ford after its creator) (IGP)
- Path Vector (EGP)
- Link-State (IGP)
- There is also Advanced Distance Vector (Sometimes called Balanced Hybrid)
What are the three IGP Routing Protocol Algorithms?
What routing protocols use Link-State algorithms?
What routing protocols use Advanced Distance Vector algorithms?
What metrics are used by RIP, OSPF, IS-IS, and EIGRP?
Describe a benefit of OSPF over RIP?
RIP will always take the shortest route regardless of how slow the links are. OSPF may take a longer route but overall it will be faster as its metric uses interface bandwidth. (i.e. 3 gigabit links are better than a single serial link of 1000kbps.)
What does the ‘bandwidth’ command do?
What routing protocols use Distance Vector algorithms?
True or False. OSPF is a classful routing protocol.
False. OSPF is a classless routing protocol like RIPv2 and EIGRP. RIP and IGRP are classful.
True or False. EIGRP is a Cisco proprietary protocol.
True. Although they publish it as a public RFC for vendors to use.
What is Route Redistribution?
The ability for a router to advertise routes learned in one routing protocol using a different routing protocol.
What is Administrative Distance?
Routing Protocol Administrative Distances
Connected - 0
Static - 1
eBGP - 20
EIGRP (internal routes) - 90
IGRP - 100
OSPF - 110
IS-IS - 115
RIP - 120
EIGRP (external routes) -170
iBGP - 200
DHCP Default Route - 254
Unusable - 255
What is Dijkstra SPF?
Dijkstra Shortest Path First is a mathematical algorithm that allows a router using a link-state routing protocol to query its LSDB and build the shortest route to a destination based on that information.
What are OSPF Neighbors?
OSPF enabled routers that are connected to the same network and are part of the same area. They have also gone through the Hello process to decide that they will become neighbors.