Lab 2. Phase 1 Dynamic Mapping With EIGRP


Pada lab sebelumnya kita mengkonfigurasikan dengan menggunakan Static Route. Sekarang kita akan membuat EIGRP agar jaringan lokal spoke dan hub bisa saling terhubung, kita akan menggunakan IP loopback sebagai ip lokalnya.

R1(HUB):
HUB(config)#interface loopback0
HUB(config-if)#ip add 1.1.1.1 255.255.255.255
HUB(config-if)#exit
HUB(config)#interface tunnel0
HUB(config-if)#ip nhrp map multicast dynamic
HUB(config-if)#exit
HUB(config)#router eigrp 12
HUB(config-router)#network 1.1.1.1 0.0.0.0
HUB(config-router)#network 192.168.10.1 0.0.0.0
HUB(config-router)#no auto-summary
HUB(config-router)#interface tunnel0
HUB(config-if)#no ip split-horizon eigrp 12

R3(SPOKE-1):
Spoke-1(config)#interface loopback0
Spoke-1(config-if)#ip address 2.2.2.2 255.255.255.255
Spoke-1(config-if)#exit
Spoke-1(config)#interface tunnel0
Spoke-1(config-if)#ip nhrp map multicast 12.12.12.1
Spoke-1(config-if)#exit
Spoke-1(config)#router eigrp 12
Spoke-1(config-router)#network 2.2.2.2 0.0.0.0
Spoke-1(config-router)#network 192.168.10.2 0.0.0.0
Spoke-1(config-router)#no auto-summary

R4(SPOKE-2):
Spoke-2(config)#interface loopback0
Spoke-2(config-if)#ip address 3.3.3.3 255.255.255.255
Spoke-2(config-if)#exit
Spoke-2(config-if)#int tunnel 0
Spoke-2(config-if)#ip nhrp map multicast 12.12.12.1
Spoke-2(config-if)#exit
Spoke-2(config)#router eigrp 12
Spoke-2(config-router)#network 3.3.3.3 0.0.0.0
Spoke-2(config-router)#network 192.168.10.3 0.0.0.0
Spoke-2(config-router)#no auto-summary

Kita cek ping.

R1(HUB):
HUB#ping 2.2.2.2 Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:
! !!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 48/88/123 ms
==============================================================
HUB#ping 3.3.3.3
Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
! !!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/66/73 ms

R3(SPOKE-1):
Spoke-1#ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 40/66/126 ms
Spoke-1#ping 3.3.3.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 76/102/132 ms

R4(SPOKE-2):
Spoke-1#ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 40/81/126 ms
Spoke-1#ping 3.3.3.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 76/106/144 ms


Komentar

Postingan populer dari blog ini

Automation, Backup Config With Paramiko