• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/17

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

17 Cards in this Set

  • Front
  • Back
What algorithm does OSPF use to calculate metric?
Dijkstra SPF algorithm
What information is sent in LSU packets?
Link state updates contain a subnet number, mask, metric, and other information about the subnet.
What is the multicast destination address used for OSPF Hello packets?
224.0.0.5
What is a Hello packet and what does it contain?
It allows OSPF neighbors to meet each other. It contains the sending router's RID, Area ID, Hello interval, dead interval, router priority, designated router, backup designated router, and a list of neighbors that the sending router already knows about on the subnet.
What information MUST two OSPF routers agree on in order to become neighbors?
Subnet mask. Subnet number. Hello interval. Dead interval. OSPF Area ID.
What is a DR, and what is its purpose?
Designated Router. Required for OSPF on LANs, and sometimes Frame Relay and ATM. Essentially, other OSPF routers send their updates to the DR and it distributes them to the other routers on the subnet. The idea is to cut down on redundant OSPF traffic.
How does OSPF decide whether it needs a DR or not, and how can you control that behavior?
It depends on the OSPF network type. You can change it with "ip ospf network [type]".
What is a BDR?
Backup Designated Router.
How is a DR elected?
The router sending the Hello with the highest OSPF Priority setting becomes the DR. If a new router comes on and advertises a higher priority it does not immediately become the DR - it has to wait for the current DR and BDR to fail.
How can you tell when a router has exchanged its entire link-state database with a neighbor?
It enters the "Full" state. "show ip ospf neighbor'.
What is the dead interval?
If a router doesn't hear a Hello from a neighbor within the dead interval, it assumes the link is down, removes information about that router from its database, and runs the Dijkstra algorithm again.
What are the issues OSPF faces as it scales to larger networks?
A larger topology database requires more memory on each router. Processing the larger topology database with the SPF algorithm requires processing power that grows exponentially with the size of the database. A single interface change forces every router to run SPF again.
How can you mitigate the scaling problems faced by managing OSPF in larger networks?
Use OSPF areas to limit the amount of information each router needs to know about all the other routers on the network.
What category routing protocol is EIGRP?
Balanced Hybrid.
What is the basic process used by EIGRP to communicate with other routers?
Neighbor discovery. Full routing update. Continuous Hellos (5 seconds by default on LANs and PPP links). Partial updates when there are changes.
How does EIRGP avoid loops?
When it builds the topology table it includes other routes that could be used if the best route fails. The second best is called the successor, and the rest are called feasible successors. If there are no successors in the topology table, the router uses the Diffusing Update Algorithm (DUAL) to send queries to its neighbors to locate another route.
What tables does EIRGP keep?
Neighbors table, topology table, and routing table.