0% found this document useful (0 votes)
6 views6 pages

25 Eigrp+Single+as+Lab

The document outlines the basic and EIGRP configurations for routers R1 to R5, including interface settings and IP addresses. It also details EIGRP neighbor configurations, summarization, passive interfaces, and metric settings. Additionally, it provides commands for verification and testing connectivity between PCs and routers.

Uploaded by

vinayntwk
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views6 pages

25 Eigrp+Single+as+Lab

The document outlines the basic and EIGRP configurations for routers R1 to R5, including interface settings and IP addresses. It also details EIGRP neighbor configurations, summarization, passive interfaces, and metric settings. Additionally, it provides commands for verification and testing connectivity between PCs and routers.

Uploaded by

vinayntwk
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

EIGRP Single AS Lab:

R1 Basic Configuration
R1(config)#hostname R1
R1(config)#interface ethernet 0/0
R1(config-if)#ip address 192.168.12.1 255.255.255.0
R1(config-if)#no shutdown
R1(config)#interface ethernet 0/1
R1(config-if)#ip address 192.168.13.1 255.255.255.0
R1(config-if)#no shutdown
R1(config)#interface loopback 1
R1(config-if)#ip add 1.1.1.1 255.255.255.255

R2 Basic Configuration
R2(config)#hostname R2
R2(config)#interface ethernet 0/0
R2(config-if)#ip address 192.168.12.2 255.255.255.0
R2(config-if)#no shutdown
R2(config)#interface ethernet 0/1
R2(config-if)#ip address 192.168.24.2 255.255.255.0
R2(config-if)#no shutdown
R2(config)#interface ethernet 0/2
R2(config-if)#ip address 192.168.23.2 255.255.255.0
R2(config-if)#no shutdown

1 | P a g e Created by Ahmad Ali E-Mail: ahmadalimsc@gmail.com , Mobile: 00966564303717


R3 Basic Configuration
R3(config)#hostname R3
R3(config)#interface ethernet 0/0
R3(config-if)#ip address 192.168.13.3 255.255.255.0
R3(config-if)#no shutdown
R3(config)#interface ethernet 0/1
R3(config-if)#ip address 192.168.35.3 255.255.255.0
R3(config-if)#no shutdown
R3(config)#interface ethernet 0/2
R3(config-if)#ip address 192.168.23.3 255.255.255.0
R3(config-if)#no shutdown

R4 Basic Configuration
R4(config)#hostname R4
R4(config)#interface ethernet 0/0
R4(config-if)#ip address 192.168.24.4 255.255.255.0
R4(config-if)#no shutdown
R4(config)#interface ethernet 0/1
R4(config-if)#ip address 192.168.1.254 255.255.255.0
R4(config-if)#no shutdown
R4(config)#interface loopback0
R4(config-if)#ip address 172.16.0.1 255.255.255.0
R4(config)#interface loopback1
R4(config-if)#ip address 172.16.1.1 255.255.255.0
R4(config)#interface loopback2
R4(config-if)#ip address 172.16.2.1 255.255.255.0
R4(config)#interface loopback3
R4(config-if)#ip address 172.16.3.1 255.255.255.0
R4(config)#interface loopback4
R4(config-if)#ip address 172.16.4.1 255.255.255.0
R4(config)#interface loopback5
R4(config-if)#ip address 172.16.5.1 255.255.255.0
R4(config)#interface loopback6
R4(config-if)#ip address 172.16.6.1 255.255.255.0
R4(config)#interface loopback7
R4(config-if)#ip address 172.16.7.1 255.255.255.0

2 | P a g e Created by Ahmad Ali E-Mail: ahmadalimsc@gmail.com , Mobile: 00966564303717


R5 Basic Configuration
R5(config)#hostname R5
R5(config)#interface ethernet 0/0
R5(config-if)#ip address 192.168.35.5 255.255.255.0
R5(config-if)#no shutdown
R5(config-if)#exit
R5(config)#interface ethernet 0/1
R5(config-if)#ip address 192.168.2.254 255.255.255.0
R5(config-if)#no shutdown
R5(config)#interface loopback1
R5(config-if)#ip address 172.30.1.1 255.255.255.0
R5(config)#interface loopback2
R5(config-if)#ip address 172.30.2.1 255.255.255.0
R5(config)#interface loopback3
R5(config-if)#ip address 172.30.3.1 255.255.255.0
R5(config)#interface loopback4
R5(config-if)#ip address 172.30.4.1 255.255.255.0
R5(config)#interface loopback5
R5(config-if)#ip address 172.30.5.1 255.255.255.0
R5(config)#interface loopback6
R5(config-if)#ip address 172.30.6.1 255.255.255.0
R5(config)#interface loopback7
R5(config-if)#ip address 172.30.7.1 255.255.255.0

PC1 Basic Configuration


VPCS> ip 192.168.1.1 /24 192.168.1.254

PC2 Basic Configuration


VPCS> ip 192.168.2.2 /24 192.168.2.254

R1 EIGRP Configuration
R1(config)#router eigrp 1
R1(config-router)#network 192.168.12.0 0.0.0.255
R1(config-router)#network 192.168.13.0 0.0.0.255
R1(config-router)#no auto-summary
R1(config-router)#redistribute static
R1(config-router)#exit
R1(config)#ip route 0.0.0.0 0.0.0.0 Loopback1

3 | P a g e Created by Ahmad Ali E-Mail: ahmadalimsc@gmail.com , Mobile: 00966564303717


R2 EIGRP Configuration
R2(config)#router eigrp 1
R2(config-router)#network 192.168.12.0 0.0.0.255
R2(config-router)#network 192.168.23.0 0.0.0.255
R2(config-router)#no auto-summary
R2(config-router)#exit
R2(config)#router eigrp 1
R2(config-router)#
R2(config-router)#network 192.168.24.0 0.0.0.255
R2(config-router)#neighbor 192.168.24.4 Ethernet 0/1
R2(config-router)#exit

R3 EIGRP Configuration
R3(config)#router eigrp 1
R3(config-router)#network 192.168.13.0 0.0.0.255
R3(config-router)#network 192.168.35.0 0.0.0.255
R3(config-router)#network 192.168.23.0 0.0.0.255
R3(config-router)#no auto-summary

R4 EIGRP Configuration
R4(config)#router eigrp 1
R4(config-router)#network 192.168.1.0 0.0.0.255
R4(config-router)#network 172.16.0.0 0.0.255.255
R4(config-router)#no auto-summary
R4(config-router)#exit
R4(config)#router eigrp 1
R4(config-router)#network 192.168.24.0 0.0.0.255
R4(config-router)#neighbor 192.168.24.2 Ethernet 0/0
R4(config-router)#exit

R5 EIGRP Configuration
R5(config)#router eigrp test
R5(config-router)#address-family ipv4 unicast autonomous-system 1
R5(config-router-af)#network 0.0.0.0 255.255.255.255
R5(config-router-af)#exit

4 | P a g e Created by Ahmad Ali E-Mail: ahmadalimsc@gmail.com , Mobile: 00966564303717


Show Commands
R1#show ip eigrp neighbors
R1#show ip route eigrp | begin Gateway
R2#show ip eigrp neighbors
R3#show ip eigrp neighbors
R4#show ip eigrp neighbors
R4#show ip route eigrp | begin Gateway
R5#show ip eigrp neighbors
R5#show ip route eigrp | begin Gateway
PC1> ping 192.168.2.2
PC2> ping 192.168.1.1

R4 EIGRP Summarization Configuration


R4(config)#interface e0/0
R4(config-if)#ip summary-address eigrp 1 172.16.0.0 255.255.240.0
R4(config-if)#exit

R5 EIGRP Summarization Configuration


R5(config)#router eigrp test
R5(config-router)#address-family ipv4 unicast autonomous-system 1
R5(config-router-af)#af-interface e0/0
R5(config-router-af-interface)#summary-address 172.30.0.0 255.255.240.0
R5(config-router-af-interface)#exit

Show Commands
R1#show ip route eigrp | begin Gateway
R1#show ip eigrp topology
R1#ping 172.16.7.1
R1#ping 172.30.7.1
R4#show ip route eigrp | begin Gateway
R4#show ip protocols | b eigrp
R5#show ip route eigrp | begin Gateway
R5#show ip protocols | b eigrp

R4 EIGRP Passive Interface Configuration


R4(config)#router eigrp 1
R4(config-router)#passive-interface default
R4(config-router)#no passive-interface Ethernet0/1
R4(config-router)#exit

5 | P a g e Created by Ahmad Ali E-Mail: ahmadalimsc@gmail.com , Mobile: 00966564303717


R5 EIGRP Passive Interface Configuration
R5(config)#router eigrp test
R5(config-router)#address-family ipv4 unicast autonomous-system 1
R5(config-router-af)#af-interface Ethernet0/0
R5(config-router-af-interface)#passive-interface
R5(config-router-af-interface)#exit

Show and Verification Commands


R4#show ip eigrp interfaces
R4#show ip protocols | begin eigrp
R5#show ip eigrp interfaces
R5#show ip protocols | begin eigrp

R1 and R2 EIGRP Metric Configuration


R1(config)#interface Ethernet0/0
R1(config-if)#bandwidth 5000
R2(config)#interface Ethernet0/0
R2(config-if)#bandwidth 5000

R1 EIGRP Variance Configuration


R1(config)#router eigrp 1
R1(config-router)#variance 2

6 | P a g e Created by Ahmad Ali E-Mail: ahmadalimsc@gmail.com , Mobile: 00966564303717

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy