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

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;

44 Cards in this Set

  • Front
  • Back
OSPF: 3 major categories of data and corresponding show commands
1. Neighbors (show ip ospf neighbor)
2. Database (show ip ospf database)
3. Route calculation (sho ip route)
OSPF: To what IP address does OSPF send Hello messages?
Multicast 224.0.0.5
OSPF: Default hello interval and dead interval
1. Hello interval = 10 seconds
2. Dead interval = 4 * hello or 40 seconds
OSPF: What must match in hello messages to become neighbors (4 items)?
1. Subnet number and mask
2. hello and dead intervals
3. OSPF area ID
4. Authentication (if used)
OSPF: What are the 5 neighbor states?
1. Down - previously known neighbor, but interface failed
2. Init - hellos exchanged
3.Seen - config details matched
4. two-way: state for non-adjacent routers
5. Full: database exchange completed
OSPF: What is a designated router (DR) and backup (BDR)?
Designated router (DR) is used on a broadcast LAN subnet to reduce the number relationships required. BDR functions as a backup DR. All other routers try to form neighbor relationships with the DR and the BDR.
OSPF: What type of interface requires a designated router?
Broadcast interface type requires a DR
Point to point does not require a DR.
OSPF: How are DR and BDR selected?
Router with highest OSPF priority wins election as DR
highest router id is tiebreaker.
OSPF: How to determine router id?
1. Configure using subcommand #router-id
2. Use highest IP address of loopback interface in up/up state
3. Use highest IP address of any interface in up/up state.
OSPF: What is the routing algorithm?
The Dijkstra Shortest Path First algorithm
OSPF: What is an area border router (ABR)?
Any router that is connected to the backbone area and at least one other area.
OSPF: What is the backbone area?
Area 0
A specifal OSPF area to which all other ares must connect.
OSPF: What is a backbone router?
Any router in the backbone area (area 0).
OSPF: What is an internal router?
Any router in a single non-backbone area.
OSPF: What is an autonomous system border router(ASBR)?
A router that connects to routers that do not use OSPF. Exchanges routes.
OSPF: List 3 OSPF route types
1. Intra-area route: route to subnet in same area.
2. Inter-area route: route to subnet in different area
3. External route: route to subnet outside the OSPF domain and advertised into the domain.
OSPF: CLI commands to configure OSPF
1. #router ospf <process id>
2. #Router-id <value>
3. #network <network-addr><inverse mask> area <area-number>
OSPF: CLI commands to configure a loopback interface
1. #interface loopback <n>
2. #ip address <ip-addr> <mask>
OSPF: CLI mode and commands to set hello-timer, dead-timer
interface mode: 1. #ip ospf hello-interval <time>
2. #ip ospf dead-interval <time>
OSPF: CLI mode and commands to set OSPF cost, bandwidth on interface
interface mode:
#ip ospf cost <value>
#bandwidth <x> (in Kb)
OSPF: CLI command to set auto-cost reference bandwidth.
global: #auto-cost reference-bandwidth <value>
Units are M
Default is 100 M
OSPF: CLI commands to configure OSPF to use authentication
1. #router ospf <process id>
2. #area <n> authentication message-digest
if you leave off the "message-digest" keyword, it will do clear-text authentication
OSPF: CLI commands to configure authentication on an interface
1. #interface <type-number>
2. #ip ospf authentication
3. #ospf authentication message-digest
4. #osf message-digest-key 1 md5 <password>
OSPF: CLI commands to display database, processes, neighbors
1. #show ip ospf database
2. #show ip ospf
3. #show ip ospf neighbor
OSPF: CLI command to show interfaces used by OSPF
#show ip ospf interfaces brief
OSPF: CLI commands to set interfaces to passive/not passive
1. #passive interface <type number>
2. #no passive interface <type number>
3. #default passive interface (sets all interfaces to passive)
OSPF: How are route metrics calculated?
The route metric is the sum of the cost for each outgoing interface
OSPF: How are costs for each interface calculated
1. explicitly set with interface command: #ip ospf cost <value: 1-65,536>
2. Calculated as (reference bandwidth) / (interface bandwidth)
OSPF: Default reference bandwidth and CLI command to change it
1. Default is 100Mbps
2. #auto-cost reference-bandwidth <number> (units of Mbps)
OSPF: What is the IOS command to remove the redistribution based on OSFP routing process ID?
#clear ip ospf {pid}
OSPF: What is the IOS command to view OSFP link-state advertisements requested by the router?
#sho ip ospf request-list
OSPF: What is the IOS command to view the OSPF routing tables entries to an ABR and ASBR?
#sho ip ospf border-routers
OSPF: IOS command to configure authentication type for an interface
#ip ospf authentication
OSPF: What is the default interface configuration used by OSPF to run over frame relay?
Non-broadcast multi-access
RIP: Attributes of a distance vector routing protocol
1. Send full routing updates periodically
2. Routes should remain "young" (timer in routing table)
3. Full update limited by split-horizon rules
RIP: Name 5 techniques used with distance vector protocols to prevent loops and count-to-infinity problems
1. Route poisoning
2. Split horizon
3. Poisoned reverse
4. Tiggered updates
5. Holddown timers
RIP: Describe route poisoning
Used with distance vector protocols
advertise down routes as having infinite cost
deals with count-to-infinity problem
RIP: Describe split horizon
In routing updates sent out interface X, don't include routing information about routes that use X as the outgoing interface
prevents looping
prevents count-to-infinity
RIP: Describe poison-reverse
When learning of a failed route, suspend split-horizon rules and advertise a poisoned route
RIP: Describe triggered updates
When a route fails, do not wait for the next periodic update. Send out a triggered partial update listing the poisoned route.
RIP: Describe the holddown timer
As soon as a route is known to be down, hold it down for a time to give all routers time to learn of the failed route
OSPF: Link State protocol attributes
1. Link-state database on every router
2. starts by flooding network topology
3. refloods periodically (OSPF - 30 min. default)
4. Sends link-state advertisements (LSAs)
OSPF and RIP: Compare Link State and Distance Vector routing protocols.
1. Link state has much faster convergence
2. Link state requres more CPU and memory
3. Link state inherently avoids loops
OSPF: IOS command to display hello timer settings
#show ip ospf interfaces