DMVPN Lab 2 : Phase 1 Dynamic Mapping With EIGRP

 LAB 2


Nah Pada lab Sekarang buat routing eigrp pada setiap router baik hub atau spoke untuk menghubungkan jaringan local masing-masing spoke atau hub, dalam hal ini ip loopback akan kita anggap sebagai ip jaringan local kita.

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 tun0 
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

Lalu verifikasi dengan melakukan 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/124 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/84 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/76/116 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

R4 (Spoke-2)

Spoke-2#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 = 60/71/80 ms

Spoke-2#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 = 88/114/160 ms


Comments