Lab 9. Phase 3 Dynamic Mapping With EIGRP


Nah kali ini kita akan Pasang Routing EIGRP pada di semua router baik itu HUB maupun Spoke nya.

R1(HUB):
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)#exit HUB(config)#int tun0
HUB(config-if)#no ip split-horizon eigrp 12

R3(SPOKE-1):
Spoke-1(config-if)#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)#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 lakukan verifikasi

Spoke-1#show ip route eigrp   
      1.0.0.0/32 is subnetted, 1 subnets  
D 1.1.1.1 [90/27008000] via 192.168.10.1, 00:48:08, Tunnel0  
      3.0.0.0/32 is subnetted, 1 subnets  
D 3.3.3.3 [90/28288000] via 192.168.10.1, 00:47:43, Tunnel0  

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 = 56/71/80 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/78/84 ms 

Komentar

Postingan populer dari blog ini

Automation, Backup Config With Paramiko