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

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;

42 Cards in this Set

  • Front
  • Back

What rule states that 'a router cannot advertise a route BACK OUT the interface on which the route was learned'?

SPLIT HORIZON
What action does the router running a Distance Vector routing protocol take when one of its routed interface's Link or Line–Protocol goes down?
ROUTE POISONING. Proactively generating a routing update with an infinite metric and flooding it to its neighboring routers.
What action do the routers that hear the Route Poisoning Advertisement take when they receive the advertisement?

POISON REVERSE. They send the poisoned route back to the originator of the advertisement.

What is the IP limitation of IPv4?
Classful addressing only
Does RIPv1 send the subnet mask with its advertisements?
No
What is the IP limitation of RIPv1?
Classful addressing only
Does RIPv1 send the subnet mask with its advertisements?
No
What did RIPv2 improve?

1 - Routing of Classless addresses


2 - Authentication


3 - Triggered updates


4 - Multicast adv. instead of broadcast

What is significant about RIP Version 2’s ‘Triggered Updates’ (aka Flash Updates)?

They immediately advertise network changes on their directly connected network segments to their neighbors without waiting for the regularly scheduled Update Timer to expire.

What is the name of the IPv6 version of RIP?
RIPng (next generation)
What is the Administrative Distance of RIP?
120
What is the UDP port that is used by RIPv1 & RIPv2?
UDP 520
What is the UDP port that is used by RIPng?
UDP 521
How does RIPv1 issue its advertisements?
Destination address is the Broadcast
How does RIPv2 issue its advertisements?
Destination address is 224.0.0.9
How does RIPng issue its advertisements?
Destination address is FF02::9
Does RIPv1 allow authentication?
No
Does RIPv2 allow authentication?
Yes, plain text and MD5 hashed
Does RIPng allow authentication?

No

What algorithm is used for RIP calculation?
Bellman-Ford
What is the metric used for RIP calculations?

Hop count

What is the max hop count in RIP?
15 hops, 16 is considered 'infinite'
What type of routing protocol is RIP?

Distance Vector, (Distance=Metric, Vector=Interface)

What 4 commands can you run to troubleshoot RIP?

1 - 'show run | section rip'


2 - 'show ip route rip'


3 - 'show ip protocols'


4 - 'show ip rip database'

What does RIP do every 30 seconds?

Resends the entire routing table out all interfaces

What is the command that will start the RIP process on a router?

‘router rip’ from Global Configuration Mode

What command will enable the more advanced features of the IPv4 flavor of RIP?

‘version 2’ from Router Configuration Mode

What command will enable out interfaces with an IP on the 192.168.1.0 /25?

‘network 192.168.1.0’ from Router Configuration Mode

I want to advertise this router as the default route to all other routers. What command do I use?

'default-information originate' from Router Configuration Mode.

I want to summarize my routes to a router connected to one of my interfaces.

'ip summary-address rip [ip address] [subnet mask]' from Interface Configuration Mode.

What are the steps to enabling plaintext authentication for RIP.

1 – Create your key-chain


‘key chain [name]' from Global Configuration Mode.


‘key [number]' from Key-chain Configuration Mode.


'key-string [password]' from Key-chain Configuration Mode.


2 – Encrypt your key in your Configuration ‘service password-encryption' from Global Configuration Mode.


3 – Enable Authentication for RIP on the Interface ‘ip rip authentication key-chain [name]' from Interface Configuration Mode.

What command do you use if you want to turn you plaintext authentication into MD5 hashed authentication?

‘ip rip authentication mode md5’ from Interface Configuration Mode.

I want to stop all advertisements out of my interfaces by default and only enable them out of select interfaces.

'passive-interface default’ from Router Configuration Mode.



'no passive-interface [interface]’ from Router Configuration Mode.

How do you configure a unicast neighbor in RIPv2?

'neighbor [ip address]' from Router Configuration Mode.

How do you disable automatic summarization in RIP?

'no auto-summary' from Router Configuration Mode.

If I want to modify RIP’s timers what command will I use?

‘timers basic [update] [invalid] [hold-down] [flush]' from Router Configuration Mode.

What command do you use if you want to toggle how many equal-cost paths RIP will load-balance across?

‘maximum-paths [1-16]' from Router Configuration Mode.

What command do I need to use 1st if I want to enable routing for IPv6?

‘ipv6 unicast-routing' from Global Configuration Mode.

What command do I need to use to enable RIPng?

‘ipv6 router rip [name of process]’ from Global Configuration Mode.

What command do I need to use to enable RIPng routing on a particular interface?

‘ipv6 rip [name of process] enable’ from Interface Configuration Mode.

What command do you issue to summarize an IPv6 prefix out a particular interface?

‘ipv6 rip [name of process] summary-address [prefix]’ from Interface Configuration Mode.

After doing a ‘show ip protocols’ and double checking my timers, I do a debug and notice that the invalid timer is off by a few seconds. My boss is standing over my shoulder and wants to know why it’s off, so you’d better have an explanation for this CHAOS and MAYHEM!

RIP_Jitter was included in the standard to accommodate routing over Half Duplex networks. It is a 0-15% random timer delay that ensures that two routers will not consistently transmit their updates at the same time.