EIGRP Flashcards
Which routing protocol can be configured to do unequal cost multi-path routing (load balancing)
EIGRP
What kind of routing protocol is EIGRP?
- Distance Vector
- Link State
- Path Vector
- Distance Vector (hybrid)
What is the Routing AD of RIP?
RIP: 120

What is the Routing AD of internal EIGRP?
What is the Routing AD of external EIGRP?
Internal EIGRP: 90
External EIGRP: 170

What is the Routing AD of OSPF?
OSPF: 110

What is the Routing AD of external BGP?
What is the Routing AD of internal BGP?
External BGP: 20
Internal BGP: 200

What happens if an interface is set as a ‘Passive Interfaces’
In RIP, it listens but doesn’t send hello packets.
Networks learned on passive interfaces are advertised to other links.
EIGRP will perform equal cost load balanceing on up to how many paths by default?
What is the max that can be configured?
4 by defualt.
Can be increased up to 16 paths.
EIGRP config… what’s goes in the blank?
Subnet mask or wildcard mask?
R1(config-router)#network 10.0.0.0 ___________
- *Wildcard mask**
i. e. 0.0.255.255
OSPF config… what’s goes in the blank?
Subnet mask or wildcard mask?
R1(config-router)#network 10.0.0.0 ___________
Wildcard mask
i.e. 0.0.255.255
Command to see the interfaces enabled with EIGRP?
R1# show ip eigrp interface
Command to see all paths learned by EIGRP
R1# show ip eigrp topology all-links
Command to see the adjacent routers seen with EIGRP enabled?
R1# show ip eigrp neighbors
Command to see the what routing protocols are running and info about them?
R1# show ip protocols
How is the default EIGRP router ID generated?
IP address of the highest loopback IP address.
If not loopbacks, then uses the highest IP address of any interface.
How do you manually set the EIGRP router ID?
R1(config)# router eigrp 100
R1(config-router)# eigrp router-id 2.2.2.2
Auto classful network boundry summary is enabled by default on these routing protocols?
Auto classful network boundry summary is unavalable on this routing protocol?
Enabled in RIP and EIGRP by default
Not auto summarization in OSPF
How do you add a summay route address in EIGRP?
Set this summary on the interface you want to advertise out of.
R1(config-router)# interface f1/0
R1(config-if)# ip summary-address eigrp 100 10.0.0.0 255.255.0.0
How to setup a default route in EIGRP?
…for example, to the internet…
Crease a summary route on the interfaces that point to the inside of the network, not the outside interface. i.e.
R1(config)# interface f3/0
R1(config-if)# ip summay-address eigrp 100 0.0.0.0 0.0.0.0
How to configure a passive interface in EIGRP?
R1(config)# router eigrp 100
R1(config-router)# passive-interface loop 0
R1(config-router)# passive-interface f1/0
In EIGRP, what does the term ‘Reported Distance’ mean?
Also known as the ‘Advertised Distance’
It’s the distance the neighbor router says the network is away from itself.
In EIGRP, what does the term ‘Feasible Distance’ mean?
Reported Distance + Metric to reach the neighbor that reported the route
In EIGRP, what does the term ‘Successor Route’ mean?
That is the best route with the lowest metric to reach a network.
In EIGRP, what does the term ‘Feasible Successor’ mean?
What does it take to qualify as a Feasible Successor?
That is the next best route(s) that doesn’t make it into the routing table initially.
A route qualifies as a Feasible Successor if its Reported Distance (neighbor’s metric to the network) is lower than the Feasible Distance (reported distance plus metric to reach next router) of the current Successor Route (best route).
*This isn’t entered into the routing table if the main Successor Route is still available.
What does EIGRP take into accout to calculate metric?
- Bandwidth
- Delay (by default the delay is a produt of interface type)
- Reliability (not by default)
- Load (not by default)
True or False?
In EIGRP, the values shown for the interface delay and the value you enter to set the delay are the same units?
False
shown in microseconds but entered in tens of microseconds
delay 1000 = 10000 usec
True or False?
Setting the interface bandwidth properties of an interface changes the physical clocking of the interface?
False
Changing the bandwidth or Delay for only changes the software policies that make calculations based on it such as EIGRP
SVIs are on Routers or Switches?
Subinterfaces are on Routers or Switches?
SVI’s are on Switches
Subinterfaces are on Routers
CAM table is another name for what?
as in:
CAM Table
FIB Table
ARP Table
VLAN Table
Adjacency Table
The switch’s MAC address table
FIB table on a router contains what information?
as in :
CAM Table
FIB Table
ARP Table
VLAN Table
Adjacency Table
IP address and outbound port.
It’s a specific version of the IP routing table used in Cisco Express Forwarding (CEF)
Adjacency table is what?
…as in:
CAM Table
FIB Table
ARP Table
VLAN Table
Adjacency Table
List of the ports and MAC for each IP address it knows about including all of the next hop addresses. It’s used for the FIB table.
In EIGRP, if you enter the following commands and hit enter, what will happen reguarding the wildcard mask?
R1 (config) # router eigrp 100
R1(config-router) network 10.0.0.0
The default wildcard mask for 0.255.255.255 will be used because EIGRP defaults to using the classful network/wildcard mask if one is not entered.
In EIGRP, does manually setting the router ID immediately take effect?
Yes. OSPF must be manually restarted for the new update to take effect. In EIGRP, manual updates take effect immediately.