RIP & EIGRP Flashcards

1
Q

RIP Characteristics

A

Distance Vector IGP
Metric = Hop count (max 15)

Performs ECMP (up to 4 paths by default)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

RIPv1 Characteristics

A

Legacy
VLSM not supported (no subnet mask info sent with routing updates)

Updates sent every 30 sec as broadcast traffic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

RIPv2 Characteristics

A

Supports VLSM
Supports authentication

Uses multicast (224.0.0.9)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

RIPv2 Configuration

A
From global config:
Router rip
Version 2
Network 10.0.0.0 (or whichever network)
No auto-summary
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

RIPv2 Manual Summarization

A

From interface config (interface you’re sending the summary route out of):
ip summary-address rip 10.0.0.0 255.255.0.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Command: View RIP configuration

A

show run | section rip

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Command: Check RIP Database

A

show ip rip database

If you have RIP neighbors & don’t see expected routes, check this

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Command: RIP Default Route Injection

A

ip route 0.0.0.0 0.0.0.0 203.0.113.2
router rip
default-information originate

(Injects the above default route into RIP)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Command: RIP Passive Interface on FastEthernet3/0 on the 203.0.113.0 network

A

router rip
passive-interface f3/0
network 203.0.113.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

EIGRP Characteristics

A

Advanced Distance Vector IGP
Supports large networks
Fast convergence time
Supports bounded updates (network topology changes only sent to affected routers)
Messages sent via Multicast
Automatic equal cost load balancing (up to 4 paths by default, can be increased to 16)
Supports unequal cost load balancing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

EIGRP Configuration (10.0.0.0/16 network)

A

router eigrp 100
network 10.0.0.0 0.0.255.255

(Uses wildcard mask; 100 = AS number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

EIGRP Verification Commands

A

show run | section eigrp
show ip eigrp interfaces
show ip eigrp neighbors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

EIGRP: Router ID

A

Used by EIGRP routers to identify themselves
Takes form of an IP address

Defaults to being the highest IP of any loopback interfaces configured, or the highest other IP address if a loopback doesn’t exist

Can be manually specified

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Command: EIGRP Router ID Configuration for 2.2.2.2

A

router eigrp 100

eigrp router-id 2.2.2.2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Command: View EIGRP Router ID

A

show ip protocols

show ip int brief
(And find the highest IP of interfaces; if you have a loopback, that will be the Router ID even if it’s lower)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly