Lab 3
Lab 3
Lab 3
Objective
This lab aims to guide you through configuring EIGRP (Enhanced Interior Gateway Routing Protocol) on
routers within the same autonomous system (AS) and between different autonomous systems.
Lab Topology
Page 1 of 8
R3 will be in a different EIGRP AS (200)
Addressing Table
R1 Configuration
Page 2 of 8
Router(config)# router eigrp 100
Router(config-router)# no auto-summary
Router(config-router)# exit
Explanation:
This command enables EIGRP routing on the router and specifies the Autonomous System (AS) number.
The number 100 represents the AS number where EIGRP will operate.
Autonomous System is a group of routers under the same administrative control that share routing information.
The second part (0.0.0.255) is a wildcard mask that defines the range of IP addresses to be included.
This means if you have 10.1.0.0/16 and 10.2.0.0/16, EIGRP will automatically summarize them to 10.0.0.0/8
when advertised to another router.
The no auto-summary command disables automatic summarization and allows EIGRP to advertise
specific subnets rather than summarized routes.
Page 3 of 8
R2 Configuration
Router(config-router)# no auto-summary
Router(config-router)# exit
Explanation:
show ip eigrp neighbors command is used to display information about EIGRP-adjacent routers (neighbors) that
have established a successful EIGRP neighborship with the current router.
Page 4 of 8
Uses the same network address in the network command.
A network can use more than one routing protocol, and routers on the network can learn about a route from multiple
sources. Routers need to find a way to select a better path when there are multiple paths available. Administrative
distance number is used by routers to find out which route is better (lower number is better). For example, if the same
route is learned from RIP and EIGRP, a Cisco router will choose the EIGRP route and stores it in the routing table. This is
because EIGRP routes have (by default) the administrative distance of 90, while RIP route have a higher administrative
distance of 120.
If a router learns two different paths for the same network from the same routing protocol, it has to decide which route
is better and will be placed in the routing table. Metric is the measure used to decide which route is better (a lower
Page 5 of 8
number is better). Each routing protocol uses its own metric. For example, RIP uses hop counts as a metric, while OSPF
uses cost.
Router(config-router)# no auto-summary
Router(config-router)# exit
Router(config-router)# no auto-summary
Router(config-router)# exit
Page 6 of 8
Step 3: Configure Redistribution on R2
Router(config)# router eigrp 100
Router(config-router)# exit
Router(config-router)# exit
Explanation:
What is Redistribution?
Redistribution is the process of sharing routing information between two different routing protocols
or between different autonomous systems within the same routing protocol.
In this case, the router is redistributing routes between EIGRP AS 100 and EIGRP AS 200.
The metric parameters define bandwidth, delay, reliability, load, and MTU.
Notice that: by default, EIGRP internal routes have an AD of 90 and EIGRP external (redistributed)
routes have an AD of 170.
If R1 and R3 are not installing each other’s routes, it may be due to a higher AD.
Page 7 of 8
Router(config)# router eigrp 200
Page 8 of 8