0% found this document useful (0 votes)
81 views

DMVPN Tutorial

The document discusses Dynamic Multipoint VPN (DMVPN) which provides full mesh connectivity in a hub-and-spoke topology using multipoint GRE (mGRE) tunnels, Next Hop Resolution Protocol (NHRP), and dynamic routing protocols. DMVPN allows branches to communicate directly without traversing the hub and simplifies configuration by allowing dynamic addressing of spokes.

Uploaded by

skaneroner
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views

DMVPN Tutorial

The document discusses Dynamic Multipoint VPN (DMVPN) which provides full mesh connectivity in a hub-and-spoke topology using multipoint GRE (mGRE) tunnels, Next Hop Resolution Protocol (NHRP), and dynamic routing protocols. DMVPN allows branches to communicate directly without traversing the hub and simplifies configuration by allowing dynamic addressing of spokes.

Uploaded by

skaneroner
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

ROUTE 300­101 Training » 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.

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

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

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

In the next part we will learn how to configure DMVPN

You might also like