Fiche 1

6.2.2.4

PKT corrigé : https://henallux-my.sharepoint.com/:u:/g/personal/etu41500_henallux_be/EVONdq_lMApGvvUKHVCnFJUBXBOsvl8AIm-lBmPU2iOHyw?e=ZLPa5P

Part 1: Configure EIGRP

  • Sur R1 :
router eigrp 1
network 172.16.1.0 0.0.0.255
network 172.16.3.0 0.0.0.3
network 192.168.10.4 0.0.0.3
passive-interface g0/0
no auto-summary
copy run start
  • Sur R2 :
router eigrp 1
network 172.16.2.0 0.0.0.255
network 172.16.3.0 0.0.0.3
network 192.168.10.8 0.0.0.3
passive-interface g0/0
copy run start
  • Sur R3 :
router eigrp 1
network 192.168.1.0 0.0.0.255
network 192.168.10.8 0.0.0.3
network 192.168.10.4 0.0.0.3
passive-interface g0/0
copy run start

Part 2: Verify EIGRP Routing

show ip eigrp neighbors
show ip route

7.1.2.4

PKT corrigé : https://henallux-my.sharepoint.com/:u:/g/personal/etu41500_henallux_be/EeVqACNWWH9Pp_eWPaC5uO0BEXlQbti8wTAp8k1F8SO57w?e=Uy9cu0

Part 1: Propagate a Default Route in EIGRP for IPv4

ip route 0.0.0.0 0.0.0.0 s0/1/0
router eigrp 1
redistribute static

Part 2: Propagate a Default Route in EIGRP for IPv6

ipv6 route ::/0 s0/1/0/
ipv6 router eigrp 1
redistribute static

6.2.2.5

Part 1: Build the Network and Verify Connectivity

R1 :

no ip domain-lookup
hostname R1
interface GigabitEthernet0/0/0
ip address 192.168.1.1 255.255.255.0
interface Serial0/1/0
ip address 10.1.1.1 255.255.255.252
clock rate 64000
interface Serial0/1/1
ip address 10.3.3.1 255.255.255.252
enable secret cisco
router eigrp 10
network 10.1.1.0 0.0.0.3
network 10.3.3.0 0.0.0.3
network 192.168.1.0
redistribute connected
passive-interface GigabitEthernet0/0/0

R2 :

no ip domain-lookup
hostname R2
int s0/1/0
no shutdown
ip address 10.1.1.2 255.255.255.252
interface s0/1/1
no shutdown
ip address 10.2.2.2 255.255.255.252
clock rate 64000
interface g0/0/0
no shutdown
ip address 192.168.2.1 255.255.255.0
enable secret cisco
router eigrp 10
network 10.1.1.0 0.0.0.3
network 10.2.2.0 0.0.0.3
network 192.168.2.0 0.0.0.255
no auto-summary

R3 :

no ip domain-lookup
hostname R2
int s0/1/0
no shutdown
ip address 10.3.3.2 255.255.255.252
interface s0/1/1
clock rate 64000
no shutdown
ip address 10.2.2.1 255.255.255.252
interface g0/0/0
no shutdown
ip address 192.168.3.1 255.255.255.0
enable secret cisco
router eigrp 10
network 10.2.2.0 0.0.0.3
network 10.3.3.0 0.0.0.3
network 192.168.3.0 0.0.0.255
no auto-summary