SlideShare a Scribd company logo
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
DMVPN 
LAB WORKBOOK

Prepared By
Sai Linn Thu
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
GRE Site-to-Site VPN
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0 Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
©2016 RHC Technologies
Step 1 – IP Address Assignment
R1	
   R2	
   R3	
   R4	
  
configure terminal
int F0/0
ip add 10.1.12.1 255.255.255.0
!
configure terminal
int F0/0
ip add 10.1.12.2 255.255.255.0
int F1/0
ip add 10.1.23.2 255.255.255.0
int F2/0
ip add 10.1.24.2 255.255.255.0
int F3/0
ip add 10.1.25.2 255.255.255.0
int F4/0
ip add 10.1.26.2 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.23.3 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.24.4 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
int F1/0
ip add 10.1.25.5 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.26.6 255.255.255.0
!
©2016 RHC Technologies
Step 2 – Configure Underlay Network using OSPF
R1	
   R2	
   R3	
   R4	
  
configure terminal
router ospf 1
router-id 1.1.1.1
int F0/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 2.2.2.2
int F0/0
ip ospf 1 area 0
int F1/0
ip ospf 1 area 0
int F2/0
ip ospf 1 area 0
int F3/0
ip ospf 1 area 0
int F4/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 3.3.3.3
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 4.4.4.4
int F1/0
ip ospf 1 area 0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
router ospf 1
router-id 5.5.5.5
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 6.6.6.6
int F1/0
ip ospf 1 area 0
!
©2016 RHC Technologies
Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.x.x/24 )
R1	
   R3	
  
configure terminal
int tunnel 13
ip add 172.16.13.1 255.255.255.0
tunnel source 10.1.12.1 
tunnel destination 10.1.23.3
!
configure terminal
int tunnel 13
ip add 172.16.13.3 255.255.255.0
tunnel source 10.1.23.3
tunnel destination 10.1.12.1
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
Tunnel Between R1 and R3
R1	
   R4	
  
configure terminal
int tunnel 14
ip add 172.16.14.1 255.255.255.0
tunnel source 10.1.12.1 
tunnel destination 10.1.24.4
!
configure terminal
int tunnel 14
ip add 172.16.14.4 255.255.255.0
tunnel source 10.1.24.4
tunnel destination 10.1.12.1
!
Tunnel Between R1 and R4
R1	
   R5	
  
configure terminal
int tunnel 15
ip add 172.16.15.1 255.255.255.0
tunnel source 10.1.12.1 
tunnel destination 10.1.25.5
!
configure terminal
int tunnel 15
ip add 172.16.15.5 255.255.255.0
tunnel source 10.1.25.5
tunnel destination 10.1.12.1
!
Tunnel Between R1 and R5
R1	
   R6	
  
configure terminal
int tunnel 16
ip add 172.16.16.1 255.255.255.0
tunnel source 10.1.12.1 
tunnel destination 10.1.26.6
!
configure terminal
int tunnel 16
ip add 172.16.16.6 255.255.255.0
tunnel source 10.1.26.6
tunnel destination 10.1.12.1
!
Tunnel Between R1 and R6
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0
Lo 1 – 192.168.30.3/24
Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24
Lo 1 – 192.168.10.1/24
©2016 RHC Technologies
Step 4 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6
R1	
  
configure terminal
int loopback 1
ip add 192.168.10.1 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int loopback 1
ip add 192.168.30.3 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.40.4 255.255.255.0
!
R5	
   R6	
  
configure terminal
int loopback 1
ip add 192.168.50.5 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.60.6 255.255.255.0
!
©2016 RHC Technologies
Step 5 – Configure Overlay Network using EIGRP AS 100
R1	
  
configure terminal
router eigrp 100
network 172.16.13.0 0.0.0.255
network 172.16.14.0 0.0.0.255
network 172.16.15.0 0.0.0.255
network 172.16.16.0 0.0.0.255
network 192.168.10.0 0.0.0.255
no auto-summary
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
router eigrp 100
network 172.16.13.0 0.0.0.255
network 192.168.30.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.14.0 0.0.0.255
network 192.168.40.0 0.0.0.255
no auto-summary
!
R5	
   R6	
  
configure terminal
router eigrp 100
network 172.16.15.0 0.0.0.255
network 192.168.50.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.16.0 0.0.0.255
network 192.168.60.0 0.0.0.255
no auto-summary
!
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
DMVPN Phase I
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
The best routing protocol over DMVPN is
BGP or EIGRP.
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0 Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
©2016 RHC Technologies
Step 1 – IP Address Assignment
R1	
   R2	
   R3	
   R4	
  
configure terminal
int F0/0
ip add 10.1.12.1 255.255.255.0
!
configure terminal
int F0/0
ip add 10.1.12.2 255.255.255.0
int F1/0
ip add 10.1.23.2 255.255.255.0
int F2/0
ip add 10.1.24.2 255.255.255.0
int F3/0
ip add 10.1.25.2 255.255.255.0
int F4/0
ip add 10.1.26.2 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.23.3 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.24.4 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
int F1/0
ip add 10.1.25.5 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.26.6 255.255.255.0
!
©2016 RHC Technologies
Step 2 – Configure Underlay Network using OSPF
R1	
   R2	
   R3	
   R4	
  
configure terminal
router ospf 1
router-id 1.1.1.1
int F0/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 2.2.2.2
int F0/0
ip ospf 1 area 0
int F1/0
ip ospf 1 area 0
int F2/0
ip ospf 1 area 0
int F3/0
ip ospf 1 area 0
int F4/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 3.3.3.3
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 4.4.4.4
int F1/0
ip ospf 1 area 0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
router ospf 1
router-id 5.5.5.5
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 6.6.6.6
int F1/0
ip ospf 1 area 0
!
©2016 RHC Technologies
Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 )
R1	
  
configure terminal
int tunnel 1
ip add 172.16.10.1 255.255.255.0
tunnel source 10.1.12.1
tunnel mode gre multipoint
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip add 172.16.10.3 255.255.255.0
tunnel source 10.1.23.3
tunnel destination 10.1.12.1
!
configure terminal
int tunnel 1
ip add 172.16.10.4 255.255.255.0
tunnel source 10.1.24.4
tunnel destination 10.1.12.1
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip add 172.16.10.5 255.255.255.0
tunnel source 10.1.25.5
tunnel destination 10.1.12.1
!
configure terminal
int tunnel 1
ip add 172.16.10.6 255.255.255.0
tunnel source 10.1.26.6
tunnel destination 10.1.12.1
!
©2016 RHC Technologies
Step 4 – Configure NHRP
R1	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp map multicast dynamic
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1

!
R5	
   R6	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
!
©2016 RHC Technologies
Step 4 – Verify NHRP
R1	
  
R1#sh	
  ip	
  nhrp	
  	
  
172.16.10.3/32	
  via	
  172.16.10.3	
  
	
  	
  	
  Tunnel1	
  created	
  00:03:34,	
  expire	
  01:56:25	
  
	
  	
  	
  Type:	
  dynamic,	
  Flags:	
  unique	
  registered	
  used	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.23.3	
  	
  
172.16.10.4/32	
  via	
  172.16.10.4	
  
	
  	
  	
  Tunnel1	
  created	
  00:03:02,	
  expire	
  01:56:57	
  
	
  	
  	
  Type:	
  dynamic,	
  Flags:	
  unique	
  registered	
  used	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.24.4	
  	
  
172.16.10.5/32	
  via	
  172.16.10.5	
  
	
  	
  	
  Tunnel1	
  created	
  00:02:39,	
  expire	
  01:57:20	
  
	
  	
  	
  Type:	
  dynamic,	
  Flags:	
  unique	
  registered	
  used	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.25.5	
  	
  
172.16.10.6/32	
  via	
  172.16.10.6	
  
	
  	
  	
  Tunnel1	
  created	
  00:02:22,	
  expire	
  01:57:37	
  
	
  	
  	
  Type:	
  dynamic,	
  Flags:	
  unique	
  registered	
  used	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.26.6	
  	
  
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
R3#sh	
  ip	
  nhrp	
  	
  	
  	
  	
  	
  	
  	
  	
  
172.16.10.1/32	
  via	
  172.16.10.1	
  
	
  	
  	
  Tunnel1	
  created	
  00:04:22,	
  never	
  expire	
  	
  
	
  	
  	
  Type:	
  staJc,	
  Flags:	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.12.1	
  
R4#sh	
  ip	
  nhrp	
  	
  
172.16.10.1/32	
  via	
  172.16.10.1	
  
	
  	
  	
  Tunnel1	
  created	
  00:02:04,	
  never	
  expire	
  	
  
	
  	
  	
  Type:	
  staJc,	
  Flags:	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.12.1	
  
R5	
   R6	
  
R5#sh	
  ip	
  nhrp	
  	
  
172.16.10.1/32	
  via	
  172.16.10.1	
  
	
  	
  	
  Tunnel1	
  created	
  00:04:01,	
  never	
  expire	
  	
  
	
  	
  	
  Type:	
  staJc,	
  Flags:	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.12.1	
  
R6#show	
  ip	
  nhrp	
  
172.16.10.1/32	
  via	
  172.16.10.1	
  
	
  	
  	
  Tunnel1	
  created	
  00:03:58,	
  never	
  expire	
  	
  
	
  	
  	
  Type:	
  staJc,	
  Flags:	
  	
  
	
  	
  	
  NBMA	
  address:	
  10.1.12.1
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0
Lo 1 – 192.168.30.3/24
Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24
Lo 1 – 192.168.10.1/24
©2016 RHC Technologies
Step 5 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6
R1	
  
configure terminal
int loopback 1
ip add 192.168.10.1 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int loopback 1
ip add 192.168.30.3 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.40.4 255.255.255.0
!
R5	
   R6	
  
configure terminal
int loopback 1
ip add 192.168.50.5 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.60.6 255.255.255.0
!
©2016 RHC Technologies
Step 6 – Configure Overlay Network using EIGRP AS 100
R1	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.10.0 0.0.0.255
no auto-summary
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.30.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.40.0 0.0.0.255
no auto-summary
!
R5	
   R6	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.50.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.60.0 0.0.0.255
no auto-summary
!
©2016 RHC Technologies
Step 7 – Disable ip split-horizon EIGRP on Hub ( R1 )
R1	
  
configure terminal
int tunnel 1
no ip split-horizon eigrp 100
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
DMVPN Phase II
( EIGRP )
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0 Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
©2016 RHC Technologies
Step 1 – IP Address Assignment
R1	
   R2	
   R3	
   R4	
  
configure terminal
int F0/0
ip add 10.1.12.1 255.255.255.0
!
configure terminal
int F0/0
ip add 10.1.12.2 255.255.255.0
int F1/0
ip add 10.1.23.2 255.255.255.0
int F2/0
ip add 10.1.24.2 255.255.255.0
int F3/0
ip add 10.1.25.2 255.255.255.0
int F4/0
ip add 10.1.26.2 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.23.3 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.24.4 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
int F1/0
ip add 10.1.25.5 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.26.6 255.255.255.0
!
©2016 RHC Technologies
Step 2 – Configure Underlay Network using OSPF
R1	
   R2	
   R3	
   R4	
  
configure terminal
router ospf 1
router-id 1.1.1.1
int F0/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 2.2.2.2
int F0/0
ip ospf 1 area 0
int F1/0
ip ospf 1 area 0
int F2/0
ip ospf 1 area 0
int F3/0
ip ospf 1 area 0
int F4/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 3.3.3.3
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 4.4.4.4
int F1/0
ip ospf 1 area 0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
router ospf 1
router-id 5.5.5.5
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 6.6.6.6
int F1/0
ip ospf 1 area 0
!
©2016 RHC Technologies
Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 )
R1	
  
configure terminal
int tunnel 1
ip add 172.16.10.1 255.255.255.0
tunnel source 10.1.12.1
tunnel mode gre multipoint
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip add 172.16.10.3 255.255.255.0
tunnel source 10.1.23.3
tunnel mode gre multipoint
!
configure terminal
int tunnel 1
ip add 172.16.10.4 255.255.255.0
tunnel source 10.1.24.4
tunnel mode gre multipoint
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip add 172.16.10.5 255.255.255.0
tunnel source 10.1.25.5
tunnel mode gre multipoint
!
configure terminal
int tunnel 1
ip add 172.16.10.6 255.255.255.0
tunnel source 10.1.26.6
tunnel mode gre multipoint
!
©2016 RHC Technologies
Step 4 – Configure NHRP
R1	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp map multicast dynamic
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
!
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0
Lo 1 – 192.168.30.3/24
Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24
Lo 1 – 192.168.10.1/24
©2016 RHC Technologies
Step 5 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6
R1	
  
configure terminal
int loopback 1
ip add 192.168.10.1 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int loopback 1
ip add 192.168.30.3 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.40.4 255.255.255.0
!
R5	
   R6	
  
configure terminal
int loopback 1
ip add 192.168.50.5 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.60.6 255.255.255.0
!
©2016 RHC Technologies
Step 6 – Configure Overlay Network using EIGRP AS 100
R1	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.10.0 0.0.0.255
no auto-summary
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.30.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.40.0 0.0.0.255
no auto-summary
!
R5	
   R6	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.50.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.60.0 0.0.0.255
no auto-summary
!
©2016 RHC Technologies
Step 7 – Disable ip split-horizon & ip next-hop-self EIGRP on Hub ( R1 )
R1	
  
configure terminal
int tunnel 1
no ip split-horizon eigrp 100
no ip next-hop-self eigrp 100
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
©2016 RHC Technologies
R H C
TECHNOLOGIES
#LIKE #FOLLOW #WATCH
DMVPN Phase III
( EIGRP )
©2016 RHC Technologies
R H C
TECHNOLOGIES
 #2016
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0 Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
©2016 RHC Technologies
Step 1 – IP Address Assignment
R1	
   R2	
   R3	
   R4	
  
configure terminal
int F0/0
ip add 10.1.12.1 255.255.255.0
!
configure terminal
int F0/0
ip add 10.1.12.2 255.255.255.0
int F1/0
ip add 10.1.23.2 255.255.255.0
int F2/0
ip add 10.1.24.2 255.255.255.0
int F3/0
ip add 10.1.25.2 255.255.255.0
int F4/0
ip add 10.1.26.2 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.23.3 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.24.4 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
int F1/0
ip add 10.1.25.5 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.26.6 255.255.255.0
!
©2016 RHC Technologies
Step 2 – Configure Underlay Network using OSPF
R1	
   R2	
   R3	
   R4	
  
configure terminal
router ospf 1
router-id 1.1.1.1
int F0/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 2.2.2.2
int F0/0
ip ospf 1 area 0
int F1/0
ip ospf 1 area 0
int F2/0
ip ospf 1 area 0
int F3/0
ip ospf 1 area 0
int F4/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 3.3.3.3
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 4.4.4.4
int F1/0
ip ospf 1 area 0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R5	
   R6	
  
configure terminal
router ospf 1
router-id 5.5.5.5
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 6.6.6.6
int F1/0
ip ospf 1 area 0
!
©2016 RHC Technologies
Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 )
R1	
  
configure terminal
int tunnel 1
ip add 172.16.10.1 255.255.255.0
tunnel source 10.1.12.1
tunnel mode gre multipoint
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip add 172.16.10.3 255.255.255.0
tunnel source 10.1.23.3
tunnel mode gre multipoint
!
configure terminal
int tunnel 1
ip add 172.16.10.4 255.255.255.0
tunnel source 10.1.24.4
tunnel mode gre multipoint
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip add 172.16.10.5 255.255.255.0
tunnel source 10.1.25.5
tunnel mode gre multipoint
!
configure terminal
int tunnel 1
ip add 172.16.10.6 255.255.255.0
tunnel source 10.1.26.6
tunnel mode gre multipoint
!
©2016 RHC Technologies
Step 4 – Configure NHRP
R1	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp map multicast dynamic
ip nhrp redirect
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
ip nhrp shortcut
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
ip nhrp shortcut
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
ip nhrp shortcut
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map multicast 10.1.12.1
ip nhrp shortcut
!
©2016 RHC Technologies
R H C
TECHNOLOGIES
 #2016
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0
Lo 1 – 192.168.30.3/24
Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24
Lo 1 – 192.168.10.1/24
©2016 RHC Technologies
Step 5 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6
R1	
  
configure terminal
int loopback 1
ip add 192.168.10.1 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int loopback 1
ip add 192.168.30.3 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.40.4 255.255.255.0
!
R5	
   R6	
  
configure terminal
int loopback 1
ip add 192.168.50.5 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.60.6 255.255.255.0
!
©2016 RHC Technologies
Step 6 – Configure Overlay Network using EIGRP AS 100
R1	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.10.0 0.0.0.255
no auto-summary
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.30.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.40.0 0.0.0.255
no auto-summary
!
R5	
   R6	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.50.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.60.0 0.0.0.255
no auto-summary
!
©2016 RHC Technologies
Step 7 – Disable ip split-horizon ( R1 )
R1	
  
configure terminal
int tunnel 1
no ip split-horizon eigrp 100
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
©2016 RHC Technologies
R H C
TECHNOLOGIES
 #2016
#LIKE #FOLLOW #WATCH
DMVPN Phase II 
( Dual Hub/Single Cloud )
( EIGRP )
©2016 RHC Technologies
R H C
TECHNOLOGIES
 #2016
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0 Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
R11	
  
Fa0/1
Fa0/0
Fa1/0 Fa1/0
©2016 RHC Technologies
Step 1 – IP Address Assignment
R1	
   R2	
   R11	
  
configure terminal
int F0/0
ip add 10.1.12.1 255.255.255.0
!
configure terminal
int F0/0
ip add 10.1.12.2 255.255.255.0
int F0/1
ip add 10.1.112.2 255.255.255.0
int F1/0
ip add 10.1.23.2 255.255.255.0
int F2/0
ip add 10.1.24.2 255.255.255.0
int F3/0
ip add 10.1.25.2 255.255.255.0
int F4/0
ip add 10.1.26.2 255.255.255.0
!
configure terminal
int F0/0
ip add 10.1.112.11 255.255.255.0
!

#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
   R5	
   R6	
  
configure terminal
int F1/0
ip add 10.1.23.3 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.24.4 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.25.5 255.255.255.0
!
configure terminal
int F1/0
ip add 10.1.26.6 255.255.255.0
!
©2016 RHC Technologies
Step 2 – Configure Underlay Network using OSPF
R1	
   R2	
   R11	
  
configure terminal
router ospf 1
router-id 1.1.1.1
int F0/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 2.2.2.2
int F0/0
ip ospf 1 area 0
int F0/1
ip ospf 1 area 0
int F1/0
ip ospf 1 area 0
int F2/0
ip ospf 1 area 0
int F3/0
ip ospf 1 area 0
int F4/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 11.11.11.11
int F0/0
ip ospf 1 area 0
!

#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
   R5	
   R6	
  
configure terminal
router ospf 1
router-id 3.3.3.3
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 4.4.4.4
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 5.5.5.5
int F1/0
ip ospf 1 area 0
!
configure terminal
router ospf 1
router-id 6.6.6.6
int F1/0
ip ospf 1 area 0
!
©2016 RHC Technologies
Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 )
R1	
  
configure terminal
int tunnel 1
ip add 172.16.10.1 255.255.255.0
tunnel source 10.1.12.1
tunnel mode gre multipoint
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip add 172.16.10.3 255.255.255.0
tunnel source 10.1.23.3
tunnel mode gre multipoint
!
configure terminal
int tunnel 1
ip add 172.16.10.4 255.255.255.0
tunnel source 10.1.24.4
tunnel mode gre multipoint
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip add 172.16.10.5 255.255.255.0
tunnel source 10.1.25.5
tunnel mode gre multipoint
!
configure terminal
int tunnel 1
ip add 172.16.10.6 255.255.255.0
tunnel source 10.1.26.6
tunnel mode gre multipoint
!
R11	
  
configure terminal
int tunnel 1
ip add 172.16.10.11 255.255.255.0
tunnel source 10.1.112.11
tunnel mode gre multipoint
!
©2016 RHC Technologies
Step 4 – Configure NHRP
R1	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp map multicast dynamic
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp nhs 172.16.10.11
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map 172.16.10.11 10.1.112.11
ip nhrp map multicast 10.1.12.1
ip nhrp map multicast 10.1.112.11
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp nhs 172.16.10.11
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map 172.16.10.11 10.1.112.11
ip nhrp map multicast 10.1.12.1
ip nhrp map multicast 10.1.112.11
!
R5	
   R6	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp nhs 172.16.10.11
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map 172.16.10.11 10.1.112.11
ip nhrp map multicast 10.1.12.1
ip nhrp map multicast 10.1.112.11
!
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp nhs 172.16.10.1
ip nhrp nhs 172.16.10.11
ip nhrp map 172.16.10.1 10.1.12.1
ip nhrp map 172.16.10.11 10.1.112.11
ip nhrp map multicast 10.1.12.1
ip nhrp map multicast 10.1.112.11
!
R11	
  
configure terminal
int tunnel 1
ip nhrp network-id 100
ip nhrp map multicast dynamic
!
©2016 RHC Technologies
R H C
TECHNOLOGIES
 #2016
#LIKE #FOLLOW #WATCH
R5	
   R6	
  
R1	
  
R3	
   R4	
  
R2	
  
Fa0/0
Fa0/0
Fa1/0 Fa1/0 Fa1/0
Fa1/0
Fa1/0
Fa2/0
Fa3/0
Fa4/0
R11	
  
Fa0/1
Fa0/0
Fa1/0 Fa1/0
Lo 1 – 192.168.30.3/24 Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24
192.168.111.x/24
©2016 RHC Technologies
Step 5 – Create LAN on R1, R11, R3, R4, R5 & R6
R1	
  
configure terminal
int Fa1/0
ip add 192.168.111.1 255.255.255.0
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
int loopback 1
ip add 192.168.30.3 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.40.4 255.255.255.0
!
R5	
   R6	
  
configure terminal
int loopback 1
ip add 192.168.50.5 255.255.255.0
!
configure terminal
int loopback 1
ip add 192.168.60.6 255.255.255.0
!
R11	
  
configure terminal
int Fa1/0
ip add 192.168.111.11 255.255.255.0
!
©2016 RHC Technologies
Step 6 – Configure Overlay Network using EIGRP AS 100
R1	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.111.0 0.0.0.255
no auto-summary
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R3	
   R4	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.30.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.40.0 0.0.0.255
no auto-summary
!
R5	
   R6	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.50.0 0.0.0.255
no auto-summary
!
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.60.0 0.0.0.255
no auto-summary
!
R11	
  
configure terminal
router eigrp 100
network 172.16.10.0 0.0.0.255
network 192.168.111.0 0.0.0.255
no auto-summary
!
©2016 RHC Technologies
Step 7 – Disable ip split-horizon & ip next-hop-self EIGRP on Hub ( R1 , R11 )
R1	
  
configure terminal
int tunnel 1
no ip split-horizon eigrp 100
no ip next-hop-self eigrp 100
!
#LIKE #FOLLOW #WATCH
R H C
TECHNOLOGIES
R11	
  
configure terminal
int tunnel 1
no ip split-horizon eigrp 100
no ip next-hop-self eigrp 100
!
© www.rhctechnologies.com
R H C
TECHNOLOGIES
RHC Technologies
#LIKE #FOLLOW #WATCH

More Related Content

What's hot

Module 3: NETCONF and YANG Concepts
Module 3: NETCONF and YANG ConceptsModule 3: NETCONF and YANG Concepts
Module 3: NETCONF and YANG Concepts
Tail-f Systems
 
Mpls
MplsMpls
Sigtran oracle
Sigtran oracleSigtran oracle
Sigtran oracle
dborsan
 
Mobile Transport Evolution with Unified MPLS
Mobile Transport Evolution with Unified MPLSMobile Transport Evolution with Unified MPLS
Mobile Transport Evolution with Unified MPLS
Cisco Canada
 
Bgp
BgpBgp
Eigrp
EigrpEigrp
Eigrpfirey
 
VPN (virtual private network)
VPN (virtual private network) VPN (virtual private network)
VPN (virtual private network)
Netwax Lab
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1
Febrian ‎
 
IMS + VoLTE Overview
IMS + VoLTE OverviewIMS + VoLTE Overview
IMS + VoLTE Overview
Hamidreza Bolhasani
 
How BGP Works
How BGP WorksHow BGP Works
How BGP Works
ThousandEyes
 
IP Security
IP SecurityIP Security
IP Security
Ambo University
 
IPSec and VPN
IPSec and VPNIPSec and VPN
IPSec and VPN
Abdullaziz Tagawy
 
Mpls basic
Mpls basicMpls basic
MENOG-Segment Routing Introduction
MENOG-Segment Routing IntroductionMENOG-Segment Routing Introduction
MENOG-Segment Routing Introduction
Rasoul Mesghali, CCIE RS
 
Layer-2 VPN
Layer-2 VPNLayer-2 VPN
Layer-2 VPNrosmida
 
Cisco Identity Services Engine (ISE)
Cisco Identity Services Engine (ISE)Cisco Identity Services Engine (ISE)
Cisco Identity Services Engine (ISE)
Anwesh Dixit
 
Cisco Live Milan 2015 - BGP advance
Cisco Live Milan 2015 - BGP advanceCisco Live Milan 2015 - BGP advance
Cisco Live Milan 2015 - BGP advance
Bertrand Duvivier
 
Segment Routing: A Tutorial
Segment Routing: A TutorialSegment Routing: A Tutorial
Segment Routing: A Tutorial
APNIC
 

What's hot (20)

Module 3: NETCONF and YANG Concepts
Module 3: NETCONF and YANG ConceptsModule 3: NETCONF and YANG Concepts
Module 3: NETCONF and YANG Concepts
 
Mpls
MplsMpls
Mpls
 
Cisco MPLS
Cisco MPLSCisco MPLS
Cisco MPLS
 
Sigtran oracle
Sigtran oracleSigtran oracle
Sigtran oracle
 
Mobile Transport Evolution with Unified MPLS
Mobile Transport Evolution with Unified MPLSMobile Transport Evolution with Unified MPLS
Mobile Transport Evolution with Unified MPLS
 
Bgp
BgpBgp
Bgp
 
Eigrp
EigrpEigrp
Eigrp
 
VPN (virtual private network)
VPN (virtual private network) VPN (virtual private network)
VPN (virtual private network)
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1
 
IMS + VoLTE Overview
IMS + VoLTE OverviewIMS + VoLTE Overview
IMS + VoLTE Overview
 
How BGP Works
How BGP WorksHow BGP Works
How BGP Works
 
DMVPN
DMVPNDMVPN
DMVPN
 
IP Security
IP SecurityIP Security
IP Security
 
IPSec and VPN
IPSec and VPNIPSec and VPN
IPSec and VPN
 
Mpls basic
Mpls basicMpls basic
Mpls basic
 
MENOG-Segment Routing Introduction
MENOG-Segment Routing IntroductionMENOG-Segment Routing Introduction
MENOG-Segment Routing Introduction
 
Layer-2 VPN
Layer-2 VPNLayer-2 VPN
Layer-2 VPN
 
Cisco Identity Services Engine (ISE)
Cisco Identity Services Engine (ISE)Cisco Identity Services Engine (ISE)
Cisco Identity Services Engine (ISE)
 
Cisco Live Milan 2015 - BGP advance
Cisco Live Milan 2015 - BGP advanceCisco Live Milan 2015 - BGP advance
Cisco Live Milan 2015 - BGP advance
 
Segment Routing: A Tutorial
Segment Routing: A TutorialSegment Routing: A Tutorial
Segment Routing: A Tutorial
 

Viewers also liked

Cisco ASA Firewall Lab WorkBook
Cisco ASA Firewall Lab WorkBookCisco ASA Firewall Lab WorkBook
Cisco ASA Firewall Lab WorkBook
RHC Technologies
 
IPv6 Basics
IPv6 BasicsIPv6 Basics
IPv6 Basics
RHC Technologies
 
BGP Route Reflectors Lab WorkBook
BGP Route Reflectors Lab WorkBookBGP Route Reflectors Lab WorkBook
BGP Route Reflectors Lab WorkBook
RHC Technologies
 
BGP Route Aggregation Lab WorkBook
BGP Route Aggregation Lab WorkBookBGP Route Aggregation Lab WorkBook
BGP Route Aggregation Lab WorkBook
RHC Technologies
 
IS-IS Routing Lab WorkBook
IS-IS Routing Lab WorkBookIS-IS Routing Lab WorkBook
IS-IS Routing Lab WorkBook
RHC Technologies
 
VRF Lab WorkBook
VRF Lab WorkBookVRF Lab WorkBook
VRF Lab WorkBook
RHC Technologies
 
DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...
DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...
DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...
NetProtocol Xpert
 
Cisco Certified Design Expert - Exam Preparation
Cisco Certified Design Expert - Exam PreparationCisco Certified Design Expert - Exam Preparation
Cisco Certified Design Expert - Exam Preparation
Mohamed Radwan
 
Nxll18 vpn (s2 s gre & dmvpn)
Nxll18 vpn (s2 s gre & dmvpn)Nxll18 vpn (s2 s gre & dmvpn)
Nxll18 vpn (s2 s gre & dmvpn)
Netwax Lab
 
Dmvpn with configuration example
Dmvpn with configuration exampleDmvpn with configuration example
Dmvpn with configuration example
3Anetwork com
 
200-125-ccna-v3
200-125-ccna-v3200-125-ccna-v3
200-125-ccna-v3Ibby Nuj
 
ASA Multiple Context Training
ASA Multiple Context TrainingASA Multiple Context Training
ASA Multiple Context TrainingTariq Bader
 
NAT in ASA Firewall
NAT in ASA FirewallNAT in ASA Firewall
NAT in ASA Firewall
NetProtocol Xpert
 
Cisco Router and Switch Security Hardening Guide
Cisco Router and Switch Security Hardening GuideCisco Router and Switch Security Hardening Guide
Cisco Router and Switch Security Hardening Guide
Harris Andrea
 
MPLS Concepts and Fundamentals
MPLS Concepts and FundamentalsMPLS Concepts and Fundamentals
MPLS Concepts and Fundamentals
Shawn Zandi
 
InternetWorking With TCP\IP
InternetWorking With TCP\IPInternetWorking With TCP\IP
InternetWorking With TCP\IPhunghanamhus
 
How to speak english fluently
How to speak english fluentlyHow to speak english fluently
How to speak english fluentlymegacq
 
Understanding and Troubleshooting ASA NAT
Understanding and Troubleshooting ASA NATUnderstanding and Troubleshooting ASA NAT
Understanding and Troubleshooting ASA NAT
Cisco Russia
 

Viewers also liked (19)

Cisco ASA Firewall Lab WorkBook
Cisco ASA Firewall Lab WorkBookCisco ASA Firewall Lab WorkBook
Cisco ASA Firewall Lab WorkBook
 
IPv6 Basics
IPv6 BasicsIPv6 Basics
IPv6 Basics
 
BGP Route Reflectors Lab WorkBook
BGP Route Reflectors Lab WorkBookBGP Route Reflectors Lab WorkBook
BGP Route Reflectors Lab WorkBook
 
BGP Route Aggregation Lab WorkBook
BGP Route Aggregation Lab WorkBookBGP Route Aggregation Lab WorkBook
BGP Route Aggregation Lab WorkBook
 
IS-IS Routing Lab WorkBook
IS-IS Routing Lab WorkBookIS-IS Routing Lab WorkBook
IS-IS Routing Lab WorkBook
 
VRF Lab WorkBook
VRF Lab WorkBookVRF Lab WorkBook
VRF Lab WorkBook
 
DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...
DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...
DMVPN configuration - Configuring Cisco dynamic Multipoint VPN - HUB, SPOKES,...
 
Cisco Certified Design Expert - Exam Preparation
Cisco Certified Design Expert - Exam PreparationCisco Certified Design Expert - Exam Preparation
Cisco Certified Design Expert - Exam Preparation
 
CCNP Security-Firewall
CCNP Security-FirewallCCNP Security-Firewall
CCNP Security-Firewall
 
Nxll18 vpn (s2 s gre & dmvpn)
Nxll18 vpn (s2 s gre & dmvpn)Nxll18 vpn (s2 s gre & dmvpn)
Nxll18 vpn (s2 s gre & dmvpn)
 
Dmvpn with configuration example
Dmvpn with configuration exampleDmvpn with configuration example
Dmvpn with configuration example
 
200-125-ccna-v3
200-125-ccna-v3200-125-ccna-v3
200-125-ccna-v3
 
ASA Multiple Context Training
ASA Multiple Context TrainingASA Multiple Context Training
ASA Multiple Context Training
 
NAT in ASA Firewall
NAT in ASA FirewallNAT in ASA Firewall
NAT in ASA Firewall
 
Cisco Router and Switch Security Hardening Guide
Cisco Router and Switch Security Hardening GuideCisco Router and Switch Security Hardening Guide
Cisco Router and Switch Security Hardening Guide
 
MPLS Concepts and Fundamentals
MPLS Concepts and FundamentalsMPLS Concepts and Fundamentals
MPLS Concepts and Fundamentals
 
InternetWorking With TCP\IP
InternetWorking With TCP\IPInternetWorking With TCP\IP
InternetWorking With TCP\IP
 
How to speak english fluently
How to speak english fluentlyHow to speak english fluently
How to speak english fluently
 
Understanding and Troubleshooting ASA NAT
Understanding and Troubleshooting ASA NATUnderstanding and Troubleshooting ASA NAT
Understanding and Troubleshooting ASA NAT
 

Similar to DMVPN Lab WorkBook

cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdfcisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
AsgarAlam6
 
Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration
3Anetwork com
 
Frame Relay (Multipoint)
Frame Relay (Multipoint)Frame Relay (Multipoint)
Frame Relay (Multipoint)
NetProtocol Xpert
 
VRF Configuration
VRF ConfigurationVRF Configuration
VRF Configuration
Netwax Lab
 
Nxll22 role based cli
Nxll22 role based cliNxll22 role based cli
Nxll22 role based cli
Netwax Lab
 
City School Network- Routing & Switching Final Report
City School Network- Routing & Switching Final ReportCity School Network- Routing & Switching Final Report
City School Network- Routing & Switching Final Report
Shahzeb Pirzada
 
Lab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdfLab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdf
Nesibusami
 
보안위협 관리통제
보안위협 관리통제보안위협 관리통제
보안위협 관리통제
Munkyeonggu
 
Ccna 4 chapter 3 v4.0 answers 2011
Ccna 4 chapter 3 v4.0 answers 2011Ccna 4 chapter 3 v4.0 answers 2011
Ccna 4 chapter 3 v4.0 answers 2011Dân Chơi
 
PROYECTO VLANS
PROYECTO VLANSPROYECTO VLANS
PROYECTO VLANS
rubendavidsuarez
 
OSPF_Exercises.pdf
OSPF_Exercises.pdfOSPF_Exercises.pdf
OSPF_Exercises.pdf
Denis Rasskazov
 
Network Security Best Practice (BCP38 & 140)
Network Security Best Practice (BCP38 & 140) Network Security Best Practice (BCP38 & 140)
Network Security Best Practice (BCP38 & 140)
Bangladesh Network Operators Group
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
galerussel59292
 

Similar to DMVPN Lab WorkBook (20)

BACIK CISCO SKILLS
BACIK CISCO SKILLSBACIK CISCO SKILLS
BACIK CISCO SKILLS
 
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdfcisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
 
Samplab19
Samplab19Samplab19
Samplab19
 
Mpl sv1 qbook
Mpl sv1 qbookMpl sv1 qbook
Mpl sv1 qbook
 
Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration
 
Frame Relay (Multipoint)
Frame Relay (Multipoint)Frame Relay (Multipoint)
Frame Relay (Multipoint)
 
CPU
CPUCPU
CPU
 
VRF Configuration
VRF ConfigurationVRF Configuration
VRF Configuration
 
Nxll22 role based cli
Nxll22 role based cliNxll22 role based cli
Nxll22 role based cli
 
City School Network- Routing & Switching Final Report
City School Network- Routing & Switching Final ReportCity School Network- Routing & Switching Final Report
City School Network- Routing & Switching Final Report
 
Lab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdfLab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdf
 
보안위협 관리통제
보안위협 관리통제보안위협 관리통제
보안위협 관리통제
 
Ccna 4 chapter 3 v4.0 answers 2011
Ccna 4 chapter 3 v4.0 answers 2011Ccna 4 chapter 3 v4.0 answers 2011
Ccna 4 chapter 3 v4.0 answers 2011
 
Cho
ChoCho
Cho
 
הגדרת נתבי סיסקו 1.0
הגדרת נתבי סיסקו 1.0הגדרת נתבי סיסקו 1.0
הגדרת נתבי סיסקו 1.0
 
PROYECTO VLANS
PROYECTO VLANSPROYECTO VLANS
PROYECTO VLANS
 
OSPF_Exercises.pdf
OSPF_Exercises.pdfOSPF_Exercises.pdf
OSPF_Exercises.pdf
 
Network Security Best Practice (BCP38 & 140)
Network Security Best Practice (BCP38 & 140) Network Security Best Practice (BCP38 & 140)
Network Security Best Practice (BCP38 & 140)
 
mpls-04
mpls-04mpls-04
mpls-04
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
 

Recently uploaded

FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.
ViralQR
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 

Recently uploaded (20)

FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 

DMVPN Lab WorkBook

  • 1. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH DMVPN LAB WORKBOOK Prepared By Sai Linn Thu
  • 2. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH GRE Site-to-Site VPN
  • 3. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0
  • 4. ©2016 RHC Technologies Step 1 – IP Address Assignment R1   R2   R3   R4   configure terminal int F0/0 ip add 10.1.12.1 255.255.255.0 ! configure terminal int F0/0 ip add 10.1.12.2 255.255.255.0 int F1/0 ip add 10.1.23.2 255.255.255.0 int F2/0 ip add 10.1.24.2 255.255.255.0 int F3/0 ip add 10.1.25.2 255.255.255.0 int F4/0 ip add 10.1.26.2 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.23.3 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.24.4 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal int F1/0 ip add 10.1.25.5 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.26.6 255.255.255.0 !
  • 5. ©2016 RHC Technologies Step 2 – Configure Underlay Network using OSPF R1   R2   R3   R4   configure terminal router ospf 1 router-id 1.1.1.1 int F0/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 2.2.2.2 int F0/0 ip ospf 1 area 0 int F1/0 ip ospf 1 area 0 int F2/0 ip ospf 1 area 0 int F3/0 ip ospf 1 area 0 int F4/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 3.3.3.3 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 4.4.4.4 int F1/0 ip ospf 1 area 0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal router ospf 1 router-id 5.5.5.5 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 6.6.6.6 int F1/0 ip ospf 1 area 0 !
  • 6. ©2016 RHC Technologies Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.x.x/24 ) R1   R3   configure terminal int tunnel 13 ip add 172.16.13.1 255.255.255.0 tunnel source 10.1.12.1 tunnel destination 10.1.23.3 ! configure terminal int tunnel 13 ip add 172.16.13.3 255.255.255.0 tunnel source 10.1.23.3 tunnel destination 10.1.12.1 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES Tunnel Between R1 and R3 R1   R4   configure terminal int tunnel 14 ip add 172.16.14.1 255.255.255.0 tunnel source 10.1.12.1 tunnel destination 10.1.24.4 ! configure terminal int tunnel 14 ip add 172.16.14.4 255.255.255.0 tunnel source 10.1.24.4 tunnel destination 10.1.12.1 ! Tunnel Between R1 and R4 R1   R5   configure terminal int tunnel 15 ip add 172.16.15.1 255.255.255.0 tunnel source 10.1.12.1 tunnel destination 10.1.25.5 ! configure terminal int tunnel 15 ip add 172.16.15.5 255.255.255.0 tunnel source 10.1.25.5 tunnel destination 10.1.12.1 ! Tunnel Between R1 and R5 R1   R6   configure terminal int tunnel 16 ip add 172.16.16.1 255.255.255.0 tunnel source 10.1.12.1 tunnel destination 10.1.26.6 ! configure terminal int tunnel 16 ip add 172.16.16.6 255.255.255.0 tunnel source 10.1.26.6 tunnel destination 10.1.12.1 ! Tunnel Between R1 and R6
  • 7. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Lo 1 – 192.168.30.3/24 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0 Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24 Lo 1 – 192.168.10.1/24
  • 8. ©2016 RHC Technologies Step 4 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6 R1   configure terminal int loopback 1 ip add 192.168.10.1 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int loopback 1 ip add 192.168.30.3 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.40.4 255.255.255.0 ! R5   R6   configure terminal int loopback 1 ip add 192.168.50.5 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.60.6 255.255.255.0 !
  • 9. ©2016 RHC Technologies Step 5 – Configure Overlay Network using EIGRP AS 100 R1   configure terminal router eigrp 100 network 172.16.13.0 0.0.0.255 network 172.16.14.0 0.0.0.255 network 172.16.15.0 0.0.0.255 network 172.16.16.0 0.0.0.255 network 192.168.10.0 0.0.0.255 no auto-summary ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal router eigrp 100 network 172.16.13.0 0.0.0.255 network 192.168.30.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.14.0 0.0.0.255 network 192.168.40.0 0.0.0.255 no auto-summary ! R5   R6   configure terminal router eigrp 100 network 172.16.15.0 0.0.0.255 network 192.168.50.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.16.0 0.0.0.255 network 192.168.60.0 0.0.0.255 no auto-summary !
  • 10. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH DMVPN Phase I
  • 11. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH The best routing protocol over DMVPN is BGP or EIGRP.
  • 12. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0
  • 13. ©2016 RHC Technologies Step 1 – IP Address Assignment R1   R2   R3   R4   configure terminal int F0/0 ip add 10.1.12.1 255.255.255.0 ! configure terminal int F0/0 ip add 10.1.12.2 255.255.255.0 int F1/0 ip add 10.1.23.2 255.255.255.0 int F2/0 ip add 10.1.24.2 255.255.255.0 int F3/0 ip add 10.1.25.2 255.255.255.0 int F4/0 ip add 10.1.26.2 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.23.3 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.24.4 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal int F1/0 ip add 10.1.25.5 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.26.6 255.255.255.0 !
  • 14. ©2016 RHC Technologies Step 2 – Configure Underlay Network using OSPF R1   R2   R3   R4   configure terminal router ospf 1 router-id 1.1.1.1 int F0/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 2.2.2.2 int F0/0 ip ospf 1 area 0 int F1/0 ip ospf 1 area 0 int F2/0 ip ospf 1 area 0 int F3/0 ip ospf 1 area 0 int F4/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 3.3.3.3 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 4.4.4.4 int F1/0 ip ospf 1 area 0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal router ospf 1 router-id 5.5.5.5 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 6.6.6.6 int F1/0 ip ospf 1 area 0 !
  • 15. ©2016 RHC Technologies Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 ) R1   configure terminal int tunnel 1 ip add 172.16.10.1 255.255.255.0 tunnel source 10.1.12.1 tunnel mode gre multipoint ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip add 172.16.10.3 255.255.255.0 tunnel source 10.1.23.3 tunnel destination 10.1.12.1 ! configure terminal int tunnel 1 ip add 172.16.10.4 255.255.255.0 tunnel source 10.1.24.4 tunnel destination 10.1.12.1 ! R5   R6   configure terminal int tunnel 1 ip add 172.16.10.5 255.255.255.0 tunnel source 10.1.25.5 tunnel destination 10.1.12.1 ! configure terminal int tunnel 1 ip add 172.16.10.6 255.255.255.0 tunnel source 10.1.26.6 tunnel destination 10.1.12.1 !
  • 16. ©2016 RHC Technologies Step 4 – Configure NHRP R1   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp map multicast dynamic ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ! R5   R6   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 !
  • 17. ©2016 RHC Technologies Step 4 – Verify NHRP R1   R1#sh  ip  nhrp     172.16.10.3/32  via  172.16.10.3        Tunnel1  created  00:03:34,  expire  01:56:25        Type:  dynamic,  Flags:  unique  registered  used          NBMA  address:  10.1.23.3     172.16.10.4/32  via  172.16.10.4        Tunnel1  created  00:03:02,  expire  01:56:57        Type:  dynamic,  Flags:  unique  registered  used          NBMA  address:  10.1.24.4     172.16.10.5/32  via  172.16.10.5        Tunnel1  created  00:02:39,  expire  01:57:20        Type:  dynamic,  Flags:  unique  registered  used          NBMA  address:  10.1.25.5     172.16.10.6/32  via  172.16.10.6        Tunnel1  created  00:02:22,  expire  01:57:37        Type:  dynamic,  Flags:  unique  registered  used          NBMA  address:  10.1.26.6     #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   R3#sh  ip  nhrp                   172.16.10.1/32  via  172.16.10.1        Tunnel1  created  00:04:22,  never  expire          Type:  staJc,  Flags:          NBMA  address:  10.1.12.1   R4#sh  ip  nhrp     172.16.10.1/32  via  172.16.10.1        Tunnel1  created  00:02:04,  never  expire          Type:  staJc,  Flags:          NBMA  address:  10.1.12.1   R5   R6   R5#sh  ip  nhrp     172.16.10.1/32  via  172.16.10.1        Tunnel1  created  00:04:01,  never  expire          Type:  staJc,  Flags:          NBMA  address:  10.1.12.1   R6#show  ip  nhrp   172.16.10.1/32  via  172.16.10.1        Tunnel1  created  00:03:58,  never  expire          Type:  staJc,  Flags:          NBMA  address:  10.1.12.1
  • 18. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Lo 1 – 192.168.30.3/24 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0 Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24 Lo 1 – 192.168.10.1/24
  • 19. ©2016 RHC Technologies Step 5 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6 R1   configure terminal int loopback 1 ip add 192.168.10.1 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int loopback 1 ip add 192.168.30.3 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.40.4 255.255.255.0 ! R5   R6   configure terminal int loopback 1 ip add 192.168.50.5 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.60.6 255.255.255.0 !
  • 20. ©2016 RHC Technologies Step 6 – Configure Overlay Network using EIGRP AS 100 R1   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.10.0 0.0.0.255 no auto-summary ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.30.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.40.0 0.0.0.255 no auto-summary ! R5   R6   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.50.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.60.0 0.0.0.255 no auto-summary !
  • 21. ©2016 RHC Technologies Step 7 – Disable ip split-horizon EIGRP on Hub ( R1 ) R1   configure terminal int tunnel 1 no ip split-horizon eigrp 100 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES
  • 22. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH DMVPN Phase II ( EIGRP )
  • 23. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0
  • 24. ©2016 RHC Technologies Step 1 – IP Address Assignment R1   R2   R3   R4   configure terminal int F0/0 ip add 10.1.12.1 255.255.255.0 ! configure terminal int F0/0 ip add 10.1.12.2 255.255.255.0 int F1/0 ip add 10.1.23.2 255.255.255.0 int F2/0 ip add 10.1.24.2 255.255.255.0 int F3/0 ip add 10.1.25.2 255.255.255.0 int F4/0 ip add 10.1.26.2 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.23.3 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.24.4 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal int F1/0 ip add 10.1.25.5 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.26.6 255.255.255.0 !
  • 25. ©2016 RHC Technologies Step 2 – Configure Underlay Network using OSPF R1   R2   R3   R4   configure terminal router ospf 1 router-id 1.1.1.1 int F0/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 2.2.2.2 int F0/0 ip ospf 1 area 0 int F1/0 ip ospf 1 area 0 int F2/0 ip ospf 1 area 0 int F3/0 ip ospf 1 area 0 int F4/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 3.3.3.3 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 4.4.4.4 int F1/0 ip ospf 1 area 0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal router ospf 1 router-id 5.5.5.5 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 6.6.6.6 int F1/0 ip ospf 1 area 0 !
  • 26. ©2016 RHC Technologies Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 ) R1   configure terminal int tunnel 1 ip add 172.16.10.1 255.255.255.0 tunnel source 10.1.12.1 tunnel mode gre multipoint ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip add 172.16.10.3 255.255.255.0 tunnel source 10.1.23.3 tunnel mode gre multipoint ! configure terminal int tunnel 1 ip add 172.16.10.4 255.255.255.0 tunnel source 10.1.24.4 tunnel mode gre multipoint ! R5   R6   configure terminal int tunnel 1 ip add 172.16.10.5 255.255.255.0 tunnel source 10.1.25.5 tunnel mode gre multipoint ! configure terminal int tunnel 1 ip add 172.16.10.6 255.255.255.0 tunnel source 10.1.26.6 tunnel mode gre multipoint !
  • 27. ©2016 RHC Technologies Step 4 – Configure NHRP R1   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp map multicast dynamic ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ! R5   R6   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 !
  • 28. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Lo 1 – 192.168.30.3/24 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0 Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24 Lo 1 – 192.168.10.1/24
  • 29. ©2016 RHC Technologies Step 5 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6 R1   configure terminal int loopback 1 ip add 192.168.10.1 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int loopback 1 ip add 192.168.30.3 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.40.4 255.255.255.0 ! R5   R6   configure terminal int loopback 1 ip add 192.168.50.5 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.60.6 255.255.255.0 !
  • 30. ©2016 RHC Technologies Step 6 – Configure Overlay Network using EIGRP AS 100 R1   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.10.0 0.0.0.255 no auto-summary ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.30.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.40.0 0.0.0.255 no auto-summary ! R5   R6   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.50.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.60.0 0.0.0.255 no auto-summary !
  • 31. ©2016 RHC Technologies Step 7 – Disable ip split-horizon & ip next-hop-self EIGRP on Hub ( R1 ) R1   configure terminal int tunnel 1 no ip split-horizon eigrp 100 no ip next-hop-self eigrp 100 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES
  • 32. ©2016 RHC Technologies R H C TECHNOLOGIES #LIKE #FOLLOW #WATCH DMVPN Phase III ( EIGRP )
  • 33. ©2016 RHC Technologies R H C TECHNOLOGIES #2016 #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0
  • 34. ©2016 RHC Technologies Step 1 – IP Address Assignment R1   R2   R3   R4   configure terminal int F0/0 ip add 10.1.12.1 255.255.255.0 ! configure terminal int F0/0 ip add 10.1.12.2 255.255.255.0 int F1/0 ip add 10.1.23.2 255.255.255.0 int F2/0 ip add 10.1.24.2 255.255.255.0 int F3/0 ip add 10.1.25.2 255.255.255.0 int F4/0 ip add 10.1.26.2 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.23.3 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.24.4 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal int F1/0 ip add 10.1.25.5 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.26.6 255.255.255.0 !
  • 35. ©2016 RHC Technologies Step 2 – Configure Underlay Network using OSPF R1   R2   R3   R4   configure terminal router ospf 1 router-id 1.1.1.1 int F0/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 2.2.2.2 int F0/0 ip ospf 1 area 0 int F1/0 ip ospf 1 area 0 int F2/0 ip ospf 1 area 0 int F3/0 ip ospf 1 area 0 int F4/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 3.3.3.3 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 4.4.4.4 int F1/0 ip ospf 1 area 0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R5   R6   configure terminal router ospf 1 router-id 5.5.5.5 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 6.6.6.6 int F1/0 ip ospf 1 area 0 !
  • 36. ©2016 RHC Technologies Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 ) R1   configure terminal int tunnel 1 ip add 172.16.10.1 255.255.255.0 tunnel source 10.1.12.1 tunnel mode gre multipoint ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip add 172.16.10.3 255.255.255.0 tunnel source 10.1.23.3 tunnel mode gre multipoint ! configure terminal int tunnel 1 ip add 172.16.10.4 255.255.255.0 tunnel source 10.1.24.4 tunnel mode gre multipoint ! R5   R6   configure terminal int tunnel 1 ip add 172.16.10.5 255.255.255.0 tunnel source 10.1.25.5 tunnel mode gre multipoint ! configure terminal int tunnel 1 ip add 172.16.10.6 255.255.255.0 tunnel source 10.1.26.6 tunnel mode gre multipoint !
  • 37. ©2016 RHC Technologies Step 4 – Configure NHRP R1   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp map multicast dynamic ip nhrp redirect ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ip nhrp shortcut ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ip nhrp shortcut ! R5   R6   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ip nhrp shortcut ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map multicast 10.1.12.1 ip nhrp shortcut !
  • 38. ©2016 RHC Technologies R H C TECHNOLOGIES #2016 #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Lo 1 – 192.168.30.3/24 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0 Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24 Lo 1 – 192.168.10.1/24
  • 39. ©2016 RHC Technologies Step 5 – Create Loopback 1 as LAN on R1, R3, R4, R5 & R6 R1   configure terminal int loopback 1 ip add 192.168.10.1 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int loopback 1 ip add 192.168.30.3 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.40.4 255.255.255.0 ! R5   R6   configure terminal int loopback 1 ip add 192.168.50.5 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.60.6 255.255.255.0 !
  • 40. ©2016 RHC Technologies Step 6 – Configure Overlay Network using EIGRP AS 100 R1   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.10.0 0.0.0.255 no auto-summary ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.30.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.40.0 0.0.0.255 no auto-summary ! R5   R6   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.50.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.60.0 0.0.0.255 no auto-summary !
  • 41. ©2016 RHC Technologies Step 7 – Disable ip split-horizon ( R1 ) R1   configure terminal int tunnel 1 no ip split-horizon eigrp 100 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES
  • 42. ©2016 RHC Technologies R H C TECHNOLOGIES #2016 #LIKE #FOLLOW #WATCH DMVPN Phase II ( Dual Hub/Single Cloud ) ( EIGRP )
  • 43. ©2016 RHC Technologies R H C TECHNOLOGIES #2016 #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0 R11   Fa0/1 Fa0/0 Fa1/0 Fa1/0
  • 44. ©2016 RHC Technologies Step 1 – IP Address Assignment R1   R2   R11   configure terminal int F0/0 ip add 10.1.12.1 255.255.255.0 ! configure terminal int F0/0 ip add 10.1.12.2 255.255.255.0 int F0/1 ip add 10.1.112.2 255.255.255.0 int F1/0 ip add 10.1.23.2 255.255.255.0 int F2/0 ip add 10.1.24.2 255.255.255.0 int F3/0 ip add 10.1.25.2 255.255.255.0 int F4/0 ip add 10.1.26.2 255.255.255.0 ! configure terminal int F0/0 ip add 10.1.112.11 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   R5   R6   configure terminal int F1/0 ip add 10.1.23.3 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.24.4 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.25.5 255.255.255.0 ! configure terminal int F1/0 ip add 10.1.26.6 255.255.255.0 !
  • 45. ©2016 RHC Technologies Step 2 – Configure Underlay Network using OSPF R1   R2   R11   configure terminal router ospf 1 router-id 1.1.1.1 int F0/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 2.2.2.2 int F0/0 ip ospf 1 area 0 int F0/1 ip ospf 1 area 0 int F1/0 ip ospf 1 area 0 int F2/0 ip ospf 1 area 0 int F3/0 ip ospf 1 area 0 int F4/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 11.11.11.11 int F0/0 ip ospf 1 area 0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   R5   R6   configure terminal router ospf 1 router-id 3.3.3.3 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 4.4.4.4 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 5.5.5.5 int F1/0 ip ospf 1 area 0 ! configure terminal router ospf 1 router-id 6.6.6.6 int F1/0 ip ospf 1 area 0 !
  • 46. ©2016 RHC Technologies Step 3 – Create Tunnels as Overlay Network ( IP Address – 172.16.10.x/24 ) R1   configure terminal int tunnel 1 ip add 172.16.10.1 255.255.255.0 tunnel source 10.1.12.1 tunnel mode gre multipoint ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip add 172.16.10.3 255.255.255.0 tunnel source 10.1.23.3 tunnel mode gre multipoint ! configure terminal int tunnel 1 ip add 172.16.10.4 255.255.255.0 tunnel source 10.1.24.4 tunnel mode gre multipoint ! R5   R6   configure terminal int tunnel 1 ip add 172.16.10.5 255.255.255.0 tunnel source 10.1.25.5 tunnel mode gre multipoint ! configure terminal int tunnel 1 ip add 172.16.10.6 255.255.255.0 tunnel source 10.1.26.6 tunnel mode gre multipoint ! R11   configure terminal int tunnel 1 ip add 172.16.10.11 255.255.255.0 tunnel source 10.1.112.11 tunnel mode gre multipoint !
  • 47. ©2016 RHC Technologies Step 4 – Configure NHRP R1   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp map multicast dynamic ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp nhs 172.16.10.11 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map 172.16.10.11 10.1.112.11 ip nhrp map multicast 10.1.12.1 ip nhrp map multicast 10.1.112.11 ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp nhs 172.16.10.11 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map 172.16.10.11 10.1.112.11 ip nhrp map multicast 10.1.12.1 ip nhrp map multicast 10.1.112.11 ! R5   R6   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp nhs 172.16.10.11 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map 172.16.10.11 10.1.112.11 ip nhrp map multicast 10.1.12.1 ip nhrp map multicast 10.1.112.11 ! configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp nhs 172.16.10.1 ip nhrp nhs 172.16.10.11 ip nhrp map 172.16.10.1 10.1.12.1 ip nhrp map 172.16.10.11 10.1.112.11 ip nhrp map multicast 10.1.12.1 ip nhrp map multicast 10.1.112.11 ! R11   configure terminal int tunnel 1 ip nhrp network-id 100 ip nhrp map multicast dynamic !
  • 48. ©2016 RHC Technologies R H C TECHNOLOGIES #2016 #LIKE #FOLLOW #WATCH R5   R6   R1   R3   R4   R2   Fa0/0 Fa0/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa1/0 Fa2/0 Fa3/0 Fa4/0 R11   Fa0/1 Fa0/0 Fa1/0 Fa1/0 Lo 1 – 192.168.30.3/24 Lo 1 – 192.168.40.4/24 Lo 1 – 192.168.50.5/24 Lo 1 – 192.168.60.6/24 192.168.111.x/24
  • 49. ©2016 RHC Technologies Step 5 – Create LAN on R1, R11, R3, R4, R5 & R6 R1   configure terminal int Fa1/0 ip add 192.168.111.1 255.255.255.0 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal int loopback 1 ip add 192.168.30.3 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.40.4 255.255.255.0 ! R5   R6   configure terminal int loopback 1 ip add 192.168.50.5 255.255.255.0 ! configure terminal int loopback 1 ip add 192.168.60.6 255.255.255.0 ! R11   configure terminal int Fa1/0 ip add 192.168.111.11 255.255.255.0 !
  • 50. ©2016 RHC Technologies Step 6 – Configure Overlay Network using EIGRP AS 100 R1   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.111.0 0.0.0.255 no auto-summary ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R3   R4   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.30.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.40.0 0.0.0.255 no auto-summary ! R5   R6   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.50.0 0.0.0.255 no auto-summary ! configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.60.0 0.0.0.255 no auto-summary ! R11   configure terminal router eigrp 100 network 172.16.10.0 0.0.0.255 network 192.168.111.0 0.0.0.255 no auto-summary !
  • 51. ©2016 RHC Technologies Step 7 – Disable ip split-horizon & ip next-hop-self EIGRP on Hub ( R1 , R11 ) R1   configure terminal int tunnel 1 no ip split-horizon eigrp 100 no ip next-hop-self eigrp 100 ! #LIKE #FOLLOW #WATCH R H C TECHNOLOGIES R11   configure terminal int tunnel 1 no ip split-horizon eigrp 100 no ip next-hop-self eigrp 100 !
  • 52. © www.rhctechnologies.com R H C TECHNOLOGIES RHC Technologies #LIKE #FOLLOW #WATCH