Lesson 6 - Routing Packets Flashcards
Address Resolution Protocol (ARP)
An ARP request is a broadcast asking for the MAC address corresponding to a known IP address. An ARP reply contains the requested MAC address.
Time To Live (TTL)
The TTL field in an IP header is decremented once for each router hop. Therefore, if the value in a TTL field is reduced to 0, a router discards the frame and sends a time exceeded Internet Control Message Protocol (ICMP) message back to the source.
default static route
A default static route is an administratively configured entry in a router’s routing table that specifies where traffic for all unknown networks should be sent.
next hop
An IP address on the next router to which traffic should be forwarded.
routed protocol
A protocol with an addressing scheme (for example, IP) that defines different network addresses.
routing protocol
A routing protocol (for example, RIP, OSPF, or EIGRP) that advertises route information between routers, which describes how to reach specified destination networks.
administrative distance (AD)
A routing protocol’s index of believability. Routing protocols with a smaller AD are considered more believable than routing protocols with a higher AD.
metric
A value assigned to a route. Lower metrics are preferred over higher metrics.
Interior Gateway Protocol (IGP)
A routing protocol that operates within an autonomous system, which is a network under a single administrative control. OSPF and EIGRP are popular examples of IGPs.
Exterior Gateway Protocol (EGP)
A routing protocol that operates between autonomous systems, which are networks under different administrative control. Border Gateway Protocol (BGP) is the only EGP in widespread use today.
distance vector
A category of routing protocol that sends a full copy of its routing table to its directly attached neighbors.
link state
A category of routing protocol that maintains a topology of a network and uses an algorithm to determine the shortest path to a destination network.
hold-down timers
Can speed the convergence process of a routing protocol. After a router makes a change to a route entry, the hold-down timer prevents subsequent updates for a specified period of time. This approach can help stop flapping routes (which are routes that oscillate between being available and unavailable) from preventing convergence.
split horizon
This feature of a distance-vector routing protocol prevents a route learned on one interface from being advertised back out of that same interface.
poison reverse
This feature of a distance-vector routing protocol causes a route received on one interface to be advertised back out of that same interface with a metric considered to be infinite.
link-state advertisement (LSA)
Sent by routers in a network to advertise the networks the routers know how to reach. Routers use those LSAs to construct a topological map of a network. The algorithm run against this topological map is Dijkstra’s shortest path first algorithm.
Routing Information Protocol (RIP)
A distance-vector routing protocol that uses a metric of hop count. The maximum number of hops between two routers in an RIP-based network is 15. Therefore, a hop count of 16 is considered to be infinite. RIP is considered to be an IGP.
Open Shortest Path First (OSPF)
A link-state routing protocol that uses a metric of cost, which is based on the link speed between two routers. OSPF is a popular IGP because of its scalability, fast convergence, and vendor interoperability.
Intermediate System-to-Intermediate System (IS-IS)
A link-state routing protocol similar in its operation to OSPF. IS-IS uses a configurable-yet-dimensionless metric associated with an interface and runs Dijkstra’s shortest path first algorithm. Although using IS-IS as an IGP offers the scalability, fast convergence, and vendor-interoperability benefits of OSPF, it has not been deployed as widely as OSPF.
Enhanced Interior Gateway Routing Protocol (EIGRP)
A Cisco proprietary protocol. Although EIGRP is popular in Cisco-only networks, it is less popular in mixed-vendor networks. Like OSPF, EIGRP is an IGP with very fast convergence and high scalability. EIGRP is considered to be an advanced distance vector or a hybrid routing protocol.
Border Gateway Protocol (BGP)
The only EGP in widespread use today. In fact, BGP is considered to be the routing protocol that runs the Internet, which is an interconnection of multiple autonomous systems. BGP is a path-vector routing protocol, meaning that it can use as its metric the number of autonomous system hops that must be transited to reach a destination network, as opposed to the number of required router hops.
route redistribution
Allows routes learned by one routing protocol to be injected into the routing process of another routing protocol.
network address translation (NAT)
Allows private IP addresses (as defined in RFC 1918) to be translated into Internet-routable IP addresses (public IP addresses).
Dynamic NAT (DNAT)
A variant of NAT in which inside local addresses are automatically assigned an inside global address from a pool of available addresses.