• 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/37

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;

37 Cards in this Set

  • Front
  • Back
What information is stored in an OSPF link-state database?
1. The existence of and identifier for each router (router-id)
2. Each router interface, ip address, mask, subnet
3. List of routers reachable by each router on each interface
If an interface matches more than one OSPF network command, which one applies?
1. OSPF orders network commands by most-specific first
2. The first network command that matches the interface used
What are six commands used to verify OSPF?
#show ip ospf
#show ip ospf interface brief (shows area #)
#show ip ospf neighbors
#show ip ospf database
#show ip protocols
#show ip route
What IP addresses does OSPF use to send updates?
1. 224.0.0.5 (all OSPF routers)
2. 224.0.0.6 (all DRs)
Does OSPF send full or partial topology updates?
Full updates when neighbors are discovered; partial after.
What are the two requirements for OSPF to send hello messages on an interface?
1. OSPF enabled on interface by #network command or #ip ospf area command
2. Interface not been made passive
How do you enable OSPF hellos directly on an interface?
interface mode
#ip ospf <process> area <n>
What are seven requirements for OSPF routers to become neighbors?
1. Primary IP addresses in same subnet, same mask.
2. Interface not passive
3. Must be in same area
4. Hello and dead timers match
5. Unique router-ids
6. IP MTU must match
7. Authentication successful
What IOS command would you use to see which interfaces are active and passive?
#show ip protocols
What are the IOS commands used to set the OSPF hello-timer and dead timer?
interface mode
#ip ospf hello-interval <n>
#ip ospf dead-interval <n>
What IOS commands show the state of a neighbor relationship?
What are the possible states?
#show ip ospf neighbors [brief]
1. down
2. init
3. seen
4. 2Way - neighbors, but no direct topo exchange.
5. Full/DR or Full/BDR
What is the OSPF minimal-hello multiplier? What is the command to deploy it?
sets dead interval = 1 s
hello interval = 1/n
#ip ospf dead-interval minimal hello-multiplier <n>
How do you set the MTU for an interface? (2 commands)
#ip mtu <x> (just for IP)
#mtu <x> (all layer 3 protocols)
What are the commands and mode to enable OSPF clear-text authentication?
interface mode
#ip ospf authentication
#ip ospf authentication-key <value>
What are the commands and mode to enable OSPF md5 authentication?
interface mode
#ip ospf authentication message-digest
#ip ospf message-digest-key <number> md5 <key-value>
What is the IOS command to verify OSPF authentication?
#debug ip ospf adjacency
What is the mode and command to override the default OSPF authentication?
What is the advantage of this?
router-config mode
#area <x> authentication [message-digest]
advantage: if you do this, you don't need to set the authentication on every interface.
What is the OSPF command to verify authentication setup for an interface?
#show ip ospf interface <interface>
How do you migrate to a new key when using OSPF authentication?
Configure the new key value on all routers in a subnet, then delete the configuration for the old keys.
How do you set the OSPF network type on an interface, and what are the possible settings?
#ip ospf network <type>
1. broadcast
2. point-to-point
3. nonbroadcast (NBMA)
4. point-to-multipoint
5. point-to-multipoint nonbroadcast
OSPF: Which interface network types use a DR/BDR?
Only Broadast and NBMA
What is the default OSPF hello timer by interface type?
10 seconds for broadcast and point-to-point
30 seconds for all others
Which interface network types support dynamic discovery of OSPF neighbors?
Broadcast, point-to-point, and point-to-multipoint
Which interface types allow more than two OSPF routers on a subnet?
Broadcast, NBMA, point-to-multipoint, and point-to-multipoint nonbroadcast
What is the default network interface type for frame relay point-to-point subinterfaces?
Point-to-point
What is the default network interface type for frame relay physical and multipoint subinterfaces?
NBMA
What ios command shows the interface network type?
#show ip ospf interface <interface>
What are the two responsibilities of an OSPF DR?
1. Create and flood Type-2 network LSAs for the subnet
2. Aid in database exchange over the subnet
What are the commands to verify OSPF links
#show ip ospf database
#show ip ospf database router <r-id>
#show ip ospf database network <ip>
#show ip ospf database summary <network>
What command can be used to protect an OSPF router from learning too many LSAs?
router ospf mode
#max-lsa <n>
Logs events. Eventually discards LSDB and starts over based on ignore-time and number of times to ignore event.
Both configured using #max-lsa
What kinds of route filtering does OSPF allow and not allow?
Intra-area filtering (Type-1 and Type-2 LSAs) cannot be filtered.
Inter-area routing is allowed.
Type-3 LSAs on ABRs
Type-5 LSAs on ASBRs
What is the mode and command to configure OSPF LSA Type-3 filtering?
#router ospf
#area <n> filter-list prefix <name> { in | out }
Give an example of a prefix list that would filter all routes to network 10.5.6.0/24 from coming into area 5
#ip prefix-list filter-into-5 seq 10 deny 10.5.6.0/24
#ip prefix-list filter-into-5 seq 20 permit 0.0.0.0/0 le 32
#router ospf <n>
#area 5 filter-list prefix filter-into-5 in
If you want to filter a route so that some of the routers in an OSPF area do not learn the route, what type of filtering will you use?
Filter using distribution lists.
Type-3 filtering will not work (prefix-lists) because that will filter an LSA from an entire area.
Describe four rules for using a distribute list to filter routes in OSPF.
1. in or out required, but only in works
2. Refer to a numbered ACL, a named ACL, prefix list, or route-map.
3. Permit allows route, deny filters
4. Optioanl interface <name> parameter compares with outgoing interface
Which OSPF LSAs are flooded only within an area and not between areas?
LSA Types 1, 2, 4, and 7.
What is the hello-dead interval process between two routers on a virtual link? What is the DR/BDR process for the same scenario?
There is no hello-dead time process for a virtual link
There is no DR/BDR process for a virtual link