0% found this document useful (0 votes)
12 views13 pages

Eigrp

The document describes the configuration of EIGRP routing between three routers connected to LAN networks. It includes the IP addressing, interface configurations and EIGRP configurations of each router. It also documents the connectivity verification steps.

Uploaded by

Hari Thapa
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)
12 views13 pages

Eigrp

The document describes the configuration of EIGRP routing between three routers connected to LAN networks. It includes the IP addressing, interface configurations and EIGRP configurations of each router. It also documents the connectivity verification steps.

Uploaded by

Hari Thapa
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/ 13

Figure of EIGRP routing in Ipv4 network:

IP Planning
192.9.1.0/24 (R-1)
S.no Devices Interface Description IP Add SM DGW
1 gig0/0/0 connected-to-SW0 192.9.1.1 255.255.255.0
se 0/1/0 conection-to-R-2 12.1.1.1 255.255.255.252
se 0/1/1 conection-to-R-3 13.1.1.1 255.255.255.252
Se 0/2/1 Connection to ISP 200.200.200.2 255.255.255.0
Gig0/1 Connection to R-1
2 SW-0 FA0/1 Connection to PC-
0
Fa0/2 Connection to L-0
3 Pc0 192.9.1.10 255.255.255.0 192.9.1.1
4 Laptop 0 192.9.1.11 255.255.255.0 192.9.1.1

192.9.2.0/24 (R-2)
S.no Devices Interface Description IP Add SM DGW
1 gig0/0/0 connection-to-SW1 192.9.2.1 255.255.255.0

se 0/1/0 connection-to-R-3 23.1.1.1 255.255.255.252


R-2
se 0/1/1 connection-to-R-1 12.1.1.2 255.255.255.252

2 SW-2 Gig 0/1 Connection to R-2


Fa0/1 Connection to PC
2
Fa 0/2 Connection to LP 2
4 Pc2 Fa 0/1 192.9.2.10 255.255.255.0 192.9.2.1
5 Laptop 2 Fa 0/1 192.9.2.11 255.255.255.0 192.9.2.1

192.9.3.0/24 (R-3)
S.no Devices Interface Description IP Add SM DGW
1 gig0/0/0 connection-to-SW 192.9.3.1 255.255.255.0

se 0/1/0 connection-to-R-1 13.1.1.2 255.255.255.252

se 0/1/1 connection-to-R-2 23.1.1.1 255.255.255.252

SW-3 Gig 0/1 Connection to R-3


2 F0/1 Connection to PC -
1
Fa0/2 Connection to LP -
1
4 Pc1 Fa 0/1 192.9.3.10 255.255.255.0 192.9.3.1
5 Laptop 1 Fa 0/1 192.9.3.11 255.255.255.0 192.9.3.1

200.200.200.0/24 (ISP)
Sn Device Interface Description Ip address Subnet Mask Default gateway
1 ISP Se 0/2/1 Connect to R-1 200.200.200.1 255.255.255.0
Gig 0/0/0 Connect to 100.100.100.1 255.255.255.0
Server
2 Server Fa0 Connect to ISP 100.100.100.10 255.255.255.0 100.100.100.1
Configuration of Router 1 (R-1)
Router>enable
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R-1
R-1(config)#enable secret cisco
R-1(config)#line console 0
R-1(config-line)#password class
R-1(config-line)#login
R-1(config-line)#exit
R-1(config)#line vty 0 4
R-1(config-line)#password bim5
R-1(config-line)#login
R-1(config-line)# service password-encryption
R-1(config-line)#exit
R-1(config)#int gig0/0/0
R-1(config-if)#description ***connected-to-SW-0***
R-1(config-if)#ip address 192.9.1.1 255.255.255.0
R-1(config-if)#no shutdown
R-1(config-if)#exit
R-1(config)#int serial 0/1/0
R-1(config-if)#description ***conection-to-R-2***
R-1(config-if)#ip address 12.1.1.1 255.255.255.252
R-1(config-if)#no shutdown
R-1(config-if)#exit
R-1(config)#int serial 0/1/1
R-1(config-if)#description ***conection-to-R-3***
R-1(config-if)#ip address 13.1.1.1 255.255.255.252
R-1(config-if)#no shutdown
R-1(config-if)#exit
R-1(config)#int serial 0/1/1
R-1(config-if)#description ***conection-to-R-3***
R-1(config-if)#ip address 13.1.1.1 255.255.255.252
R-1(config-if)#no shutdown
R-1(config-if)#exit
R-1(config)#interface serial 0/2/1
R-1(config-if)#description ***connected to IPS***
R-1(config-if)#ip address 200.200.200.2 255.255.255.0
R-1(config-if)#no shutdown
R-1(config-if)#exit
R-1(config)#ip route 0.0.0.0 0.0.0.0 200.200.200.1
R-1(config)#end
R-1(config)#router eigrp 10
R-1(config-router)#network 192.9.1.1
R-1(config-router)#network 12.1.1.0
R-1(config-router)#network 13.1.1.0
R-1(config-router)#passive-interface default
R-1(config-router)# no passive-interface serial 0/1/0

Router(config-router)#no passive-interface serial 0/1/1

R-1(config-router)#end

Configuration of Router 2 (R-2)


Router>enable
Router#conf t
Router(config)#hostname R-2
R-2(config)#enable secret cisco
R-2(config)#line console 0
R-2(config-line)#password class
R-2(config-line)#login
R-2(config-line)#exit
R-2(config)#line vty 0 4
R-2(config-line)#password bim5
R-2(config-line)#login

R-2(config-line)service password-encryption
R-2(config-line)#exit

R-2(config)#int gig0/0/0
R-2(config-if)#description ***connection-to-SW-2***
R-2(config-if)#ip address 192.9.2.1 255.255.255.0
R-2(config-if)#no shutdown

R-2(config-if)#exit

R-2(config)#int serial 0/1/0


R-2(config-if)#description ***connection-to-R-3***
R-2(config-if)#ip address 23.1.1.1 255.255.255.252
R-2(config-if)#no shutdown

R-2(config-if)#exit

R-2(config)#int serial 0/1/1


R-2(config-if)#description ***connection-to-R-1***
R-2(config-if)#ip address 12.1.1.2 255.255.255.252
R-2(config-if)#no shutdown

R-2(config-if)#exit

R-2(config)#router eigrp 10
R-2(config-router)#network 192.9.2.0
R-2(config-router)#network 12.1.1.0
R-2(config-router)#network 9.1.1.0
R-2(config-router)#passive-interface default
R-2(config-router)# no passive-interface serial 0/1/0

Router(config-router)#no passive-interface serial 0/1/1


R-2(config-router)#end
R-2#wr

Configuration of Router 3 (R-3)

Router>enable
Router#conf t
Router(config)#hostname R-3
R-3(config)#enable secret cisco
R-3(config)#line console 0
R-3(config-line)#password class
R-3(config-line)#login
R-3(config-line)#exit
R-3(config)#line vty 0 4
R-3(config-line)#password bim5
R-3(config-line)#login

R-3(config-line)service password-encryption
R-3(config-line)#exit

R-3(config)#int gig0/0/0
R-3(config-if)#description ***connection-to-SW3***
R-3(config-if)#ip address 192.9.3.1 255.255.255.0
R-3(config-if)#no shutdown R-3(config-if)#exit
R-3(config)#int serial 0/1/0
R-3(config-if)#description ***connection-to-R-1***
R-3(config-if)#ip address 13.1.1.2 255.255.255.252
R-3(config-if)#no shutdown

R-3(config-if)#exit

R-3(config-if)#int serial 0/1/1


R-3(config-if)#description ***connection-to-R-2***
R-3(config-if)#ip address 23.1.1.1 255.255.255.252
R-3(config-if)#no shutdown
R-3(config-if)#exit
R-3(config)#router eigrp10
R-3(config-router)#network 192.9.3.0
R-3(config-router)#network 13.1.1.0
R-3(config-router)#network 35.1.1.0
R-3(config-router)#passive-interface default
R-3(config-router)#default-information originate

Router(config-router)#no passive-interface serial 0/1/0

Router(config-router)#no passive-interface serial 0/1/1

R-3(config-router)#no auto-summary
R-3(config-router)#end
R-3#wr

ISP
Router#confguration terminal
Router(config)#hostname ISP
ISP(config)#enable password cisco
ISP(config)#line console 0
ISP(config-line)#password class
ISP(config-line)#login
ISP(config-line)#exit
ISP(config)#line vty 0 4
ISP(config-line)#password bim5
ISP(config-line)#login
ISP(config-line)#exit
ISP(config)#exit
ISP(config)#interface gigabitEthernet 0/0/0
ISP(config-if)#description ***connected to server***
ISP(config-if)#ip address 100.100.100.1 255.255.255.0
ISP(config-if)#no shut down
ISP(config-if)#exit
ISP(config)#int
ISP(config)#interface seri
ISP(config)#interface serial 0/2/1
ISP(config-if)#des
ISP(config-if)#description ***connecter to R-1***
ISP(config-if)#ip address 200.200.200.1 255.255.255.0
ISP(config-if)#no shutdown
ISP(config-if)#exit
ISP(config)#ip route 0.0.0.0 0.0.0.0 200.200.200.2
ISP(config)#end

Verification
Router 1(R-1)
Show ip interface brief
show ip eigrp neighbors

show ip protocol
Show ip route eigrp

Router (R-2)
Show ip int brief

show ip eigrp neighbors


show ip protocol

show ip route eigrp

Reachability
PC0 to R-1
PC0 to PC1
PC0 to L2

Router (R-2) (PC1 to L0 , PC1 to PC2)


Router (R-3)
L2 to R-1
L2 to PC1

You might also like