Routing Protocols Flashcards
(163 cards)
What is unicast communication?
Communication between one sender and one receiver, a one-to-one communication.
What do routers create to support unicast communication?
Routing tables.
What is an internet?
A combination of networks connected by routers.
What decision do routers make when they receive a packet?
Which network to pass the packet to, based on optimization.
What is cost or metric in routing?
A value assigned for passing through a network, used to minimize delay.
What are the two types of routing tables?
Static and dynamic.
What is a static routing table?
A routing table with manual entries.
What is a dynamic routing table?
A routing table that is updated automatically when there is a change.
What is a routing protocol?
A combination of rules and procedures that lets routers inform each other of changes.
What is an autonomous system (AS)?
A group of networks and routers under the authority of a single administration.
What is intra-domain routing?
Routing inside an autonomous system.
What is inter-domain routing?
Routing between autonomous systems.
Name one intra-domain routing protocol.
Routing Information Protocol (RIP).
Name another intra-domain routing protocol.
Open Shortest Path First (OSPF).
What is the implementation of path vector routing?
Border Gateway Protocol (BGP).
What algorithm is used to find the shortest path in a graph?
Bellman-Ford algorithm.
What does the Bellman-Ford algorithm do?
Finds the least cost (shortest path) between any two nodes.
In distance vector routing, how is cost typically measured?
Hop counts.
What must each router keep for each route?
Destination network, the cost, and the next hop.
What is referred to as ‘R’ in the context of distance vector routing?
Record, which contains R.dest and R.cost.
What happens when a router receives a record?
It searches for the destination address in the routing table.
What should a router do if the record cost plus 1 is smaller than the table cost?
Update the route information to reflect a better route.
What should a router do if an entry is not found in the table?
Add it to the table and sort according to the destination address.
What is the default cost between any two neighbors in distance vector routing?
1.