Home > DMVPN Tutorial

DMVPN Tutorial

One of the most popular network topology in practical nowadays is shown below with one HeadQuarter connecting to branch offices at some locations. The main enterprise resources are located in the HeadQuarter.

DMVPN_Topo.jpg

The router at the HeadQuarter undertakes the role of a Hub while branch routers take the role of Spokes. In this Hub-and-Spoke topology, each Branch can access some resources on the HeadQuarter. But there are some disadvantages with this topology:

+ When a spoke wants to communicate with another Spoke, it must go through the Hub which increases the traffic passing through the Hub, increase CPU and memory usage on Hub and can create bottle-neck problem. This also increases latency for time-sensitive applications such as VoIP, video conference…
+ Each site requires a static public IP address if the environment between them are public (like the Internet).
+ The configuration is complex, especially with large network. When a new Spoke is added, additional configuration is required on Hub

Dynamic Multipoint VPN (DMVPN) is a solution of Cisco that can be used to overcome these disadvantages. DMVPN provides the following advantages:

+ Provides full meshed connectivity with simple Hub-and-Spoke topology. The spokes can communicate between each other without going through Hub
+ Only one static public IP address is required on Hub. Spokes can use dynamic (unknown) public IP addresses
+ The configuration is simple even in large network. No additional configuration is required on Hub when new Spokes are added.

DMVPN_Topo_Spoke-To_Spoke.jpg

DMVPN provides full-meshed connectivity
with Hub-and-Spoke topology

But notice that DMVPN is not a protocol, it is the combination of the following technologies:

+ Multipoint GRE (mGRE)
+ Next-Hop Resolution Protocol (NHRP)
+ Dynamic Routing Protocol (EIGRP, RIP, OSPF, BGP…) (optional)
+ Dynamic IPsec encryption (optional)
+ Cisco Express Forwarding (CEF)

DMVPN combines multiple GRE (mGRE) Tunnels, IPSec encryption and NHRP (Next Hop Resolution Protocol) to perform its job and save the administrator the need to define multiple static crypto maps and dynamic discovery of tunnel endpoints.

To keep this tutorial simple we only mention about mGRE and NHRP.

Multipoint Generic Routing Encapsulation (mGRE)

Before taking about mGRE we should learn why we have to run GRE on DMVPN. The answer is simple: because we want to run IPSec on it. And why we need IPSec? Because we want to utilize the power of cheap but insecure Internet (and other insecure public) connections at our sites.

As you may know, IPSec is a framework consisting of protocols and algorithms for protecting data through an untrusted IP network, such as the internet. Although IPSec provides a secure tunneling method but it does not support multicast and broadcast traffic so popular routing protocol (OSPF, EIGRP, …) run based on multicast cannot be used with IPSec. So we have to use GRE to “wrap” these multicast traffic. As a result, all traffic (including unicast, multicast and broadcast) between sites are encapsulated into GRE packets before being encrypted and sent over the network.

Now we knew why GRE should be used here. But traditional GRE (sometimes called point-to-point or p2p GRE) also has its limitation: for each connection to the Spoke, Hub router needs to establish a separate GRE tunnel. So when the number of Spokes increases, Hub must increase the number of tunnels at the same rate -> lots of configuration on Hub. So it is the time when mGRE takes part in.

An mGRE tunnel inherits the concept of a classic GRE tunnel but an mGRE tunnel does not require a unique tunnel interface for each connection between Hub and spoke like traditional GRE. One mGRE can handle multiple GRE tunnels at the other ends. Unlike classic GRE tunnels, the tunnel destination for a mGRE tunnel does not have to be configured; and all tunnels on Spokes connecting to mGRE interface of the Hub can use the same subnet.

DMVPN_Topo_mGRE.jpg

mGRE tunnel is treated as a non-broadcast multi-access (NBMA) environment. mGRE tunnel does not have to be configured with a tunnel destination so we need another protocol to take care of the destination addresses. In this case NHRP is used for NBMA environment.

Note: Besides the Tunnel IP address, each Spoke and Hub will have a NBMA IP address, which is a public IP address used as the tunnel source IP address. We post the configuration here as an example to help you understand more about the difference of these two IP addresses:

Hub
interface fa0/0
ip address 11.11.11.1 255.255.255.0
interface tunnel 1
ip address 192.168.100.1 255.255.255.0 -> Tunnel IP address (private IP)
tunnel source fa0/0 -> NBMA IP address (public IP)
Spoke (Branch 3)
interface fa0/0
ip address 13.13.13.3 255.255.255.0
interface tunnel 1
ip address 192.168.100.3 255.255.255.0 -> Tunnel IP address (private IP)
tunnel source fa0/0 -> NBMA IP address (public IP)

So the Tunnel address is the address configured under “interface tunnel” while the NBMA address is the address used as source of the tunnel.

NHRP

Next Hop Resolution Protocol (NHRP), defined in RFC 2332, is a Layer 2 address resolution protocol and cache, like Address Resolution Protocol (ARP). NHRP is used by a branch router connected to a non-broadcast, multi-access (NBMA) sub-network to determine the IP address of the “NBMA next hop”; in this case, the headend router or the destination IP address of another branch router.

NHRP is used to map tunnel IP addresses to “physical” or “real” IP addresses, used by endpoint routers. It resolves private addresses (those behind mGRE and optionally IPSEC) to a public address. NHRP is layer 2 resolution protocol and cache, much like Address Resolution Protocol (ARP) or Reverse ARP (Frame Relay).

In order for DMVPN to work correctly, DMVPN relies on NHRP to create a mapping database of all spoke tunnels to real (public) IP addresses. When a Spoke joins a DMVPN network it will register itself with the Hub via NHRP. The NHRP Registration Process is described below:

+ When a Spoke joins a DMVPN network, it sends a Registration Request to the Hub whose IP address has already been configured on the Spoke (via the “ip nhrp nhs <Hub IP address>” command)
+ The Registration Request contains the Spoke’s Tunnel and NBMA addresses along with the hold time -> Hub does not have to statically configure Spoke IP -> simplify Hub configuration
+ Hub then create an NHRP mapping entry in its NHRP cache (just like an ARP cache) to keep the mapping between Spoke’s Tunnel and NBMA addresses. The hold time of this mapping equals to the hold time in the Registration Request.
+ Hub sends a NHRP Registration Reply to the Spoke to complete the process

DMVPN_Topo_NHRP_Register.jpg

NHRP Registration Process

Note:
+ The Spoke who sends NHRP Registration Request is called NHRP Client (NHC) while the Hub who replies the request is called NHRP Server (NHS).
+ The Spoke’s NBMA address is often its public IP and obtained dynamically while the Spoke’s Tunnel address is the private IP
+ NHRP mapping can be statically configured on both Spoke and Hub

A cool advantage of NHRP is the ability to help DMVPN establish direct Spoke-to-Spoke communication without going through Hub. Let’s see how NHRP works in this case.

DMVPN_Topo_Spoke_To_Spoke.jpg

NHRP Resolution Process

1. Before a spoke can directly send traffic to another spoke, it must still query the Hub to get the NBMA address of the destination spoke. To do this, Spoke must send a NHRP Resolution Request to the Hub asking for the NBMA address of the destination spoke.
2. The Hub replies with the NBMA (public) address of Spoke 3 (which is 13.13.13.3 in this case). If the Hub does not known NBMA of Spoke 3 it will query Spoke 3 first.
3. The direct IPsec tunnel between two spokes is built only after that. But the spoke-to-spoke tunnel is only temporary and is torn down after a pre-configured period of inactivity to save resources.

Note:
+ In case NHS does not have an entry in its cache for the NHC’s query, NHS returns an error and the spoke will install an entry pointing to the NHS. So traffic must flow through the Hub
+ Instead of asking NHS, the destination spoke IP can be statically configured on the NHC.
+ “Resolution” is only used for spoke to spoke communication

Now let’s see the whole picture of how NHRP takes part in the routing process.

1. Suppose Spoke 1 wants to send traffic to network 172.16.1.0/24 behind Spoke 2. It will look up its routing table and see an entry like this:

172.16.1.0/24 … via 192.168.100.2, Tunnel0

(means this subnet was learned from next-hop 192.168.100.2 via its Tunnel0)

2. Spoke 1 looks up its NHRP mapping table to search for the NBMA address of 192.168.100.2. If it can’t find one, it will send an NHRP Resolution Request to get the mapping information from the Hub. Suppose the NBMA address of 192.168.100.2 configured on Spoke 2 is 12.12.12.2.
3. Now Spoke 1 has enough information to encapsulate original packets. It will encapsulate packets with IP source of 11.11.11.1 (its NBMA address) and IP destination of 12.12.12.2 (Spoke 2’s NBMA address) then send to the destination.

DMVPN_Topo_Spoke_To_Spoke_NHRP.jpg

In the next part we will learn how to configure DMVPN

Comments (30) Comments
Comment pages
1 2 2257
  1. Krish
    August 20th, 2020

    Good Doc, Thanks

  2. schustah
    May 6th, 2021

    very good, briefly explained. About 5 Years 9Tut, DigiTut, NetworkTut, and always excited!

  3. Anonymous
    May 11th, 2021

    Team , Planning to write ENARSI exam , can you please let me know if we have latest dumps here in place.

  4. kings
    May 11th, 2021

    awesome explanation

  5. Anonymous
    May 13th, 2021

    Networktut..can u confirm if these dumps are latest

  6. Anonymous
    May 14th, 2021

    Team..Pl confirm

  7. AMT
    June 24th, 2021

    So good, now it’s clear

  8. Webman007
    July 16th, 2021

    Please, I’m running for CCNP ENCOR. Is your dump real? thanks

  9. Nini
    August 13th, 2021

    I failed the ENARSI yesterday. Anyone with the latest Dumps?

  10. Anon
    August 20th, 2021

    @Nini
    Were there new questions

  11. Anonymous
    September 5th, 2021

    New dumps available Pls share over here

  12. Orko
    September 10th, 2021

    are there new questions or is the dump up to date

  13. das
    October 15th, 2021

    Note (1st-Oct-2021): The exam has just been changed and we are working to gather information. Please wait for some time before taking the exam
    AS you mentioned in home page admin please let us know when r you going to update new questions or new exam type

  14. mbear
    November 26th, 2021

    What a good and clear explanation!! Many thanks!

  15. Nop
    January 2nd, 2022

    Hi Guys,

    Please confirm if the dump are still valid?

    Thanks in advance!

  16. bastardo
    February 11th, 2022

    Regarding comments on this website and other, yes, it is still valid.

  17. tangnamo bastardo
    February 18th, 2022

    Where is the dumps?

  18. Suntzu
    March 3rd, 2022

    Why are there frame-relay questions included??? The exam does not have any questions about frame-relay, or does it?

  19. Artemisia
    April 30th, 2022

    hello guys, where can I find the pdf of the official guide 300-410 enarsi? Thank you

  20. Clegarcia
    May 25th, 2022

    Hi guys , Could you send me the updated dump?

  21. Anonymous
    August 8th, 2022

    Are the dumps valid?

  22. magicoastro
    August 15th, 2022

    Are the dumps valid?

  23. magicoastro
    August 16th, 2022

    Can you tell me if the dumps are valid. I’m due for my certification next week. Please

  24. magicoastro
    August 24th, 2022

    I just took my exam and I tell you that many questions are missing in NETWORKTUT

  25. Immanuel
    September 11th, 2022

    Please, has anyone written this ENARSI exam recently? Can the person confirm if the dumps are still valid?
    @magicoastro, how was the exam and hope u passed?

  26. magicoastro
    September 30th, 2022

    The dumps were not valid now they have updated it. But still many questions remain.

  27. Anonymous
    October 8th, 2022

    hi guys can anyone share the latest dumps thanks

  28. Anonymous
    October 10th, 2022

    does anyone have vce exam simulator and pdf for enarsi?

  29. gandie
    December 21st, 2022

    good and short explanation . nice !!!

  30. bearsy
    January 6th, 2023

    i need to recertify my ccnp, what is the most current exam for this?

Comment pages
1 2 2257