DMVPN with BGP & OSPF

While working on some older CCNP labs recently I needed to get rid of the frame relay that was used in the various labs since it’s no longer being used and is not supported in EVE-NG. I originally connected everything via a generic cloud and used ethernet interfaces since that is the only type Eve will support to the cloud. While this worked okay I did not like the direct connectivity I was seeing between the routers as it seemed like the DMVPN tunnel I was building was pointless.

Then I decided to use EBGP as the Underlay for the DMVPN Overlay. I choose a very simple implementation where the hub and spokes all connect to the same “ISP”. This makes the scenario much easier since the ISP is just redistributing connected subnets.

Now I’m using DMVPN in the place of Frame Relay for all of my labs and it’s working great. I had never worked with DMVPN before so this was a great lab. Originally it was just a simple OSPF lab that “morphed” into something far more interesting. I’ll post the configuration snippets below in case you are curious.

ISP-SINGLE-REDISTRIBUTED –> allowas-in (for multiple ISP’s)

1router bgp 1
2 bgp log-neighbor-changes
3 neighbor 11.11.11.1 remote-as 11
4 neighbor 22.22.22.1 remote-as 22
5 neighbor 44.44.44.1 remote-as 44
6 network 11.11.11.0 mask 255.255.255.0
7 network 22.22.22.0 mask 255.255.255.0
8 network 44.44.44.0 mask 255.255.255.0
9end
10 
11ip route 11.11.11.0 255.255.255.0 Null0
12ip route 22.22.22.0 255.255.255.0 Null0
13ip route 44.44.44.0 255.255.255.0 Null0
14 
15interface Serial1/0
16 ip address 11.11.11.2 255.255.255.252
17 serial restart-delay 0
18 
19interface Serial1/2
20 ip address 22.22.22.2 255.255.255.252
21 serial restart-delay 0
22 
23interface Serial1/3
24 ip address 44.44.44.2 255.255.255.252
25 serial restart-delay 0
26end
27 
28BGP#sh ip bgp
29     Network          Next Hop            Metric LocPrf Weight Path
30 *>   11.11.11.0/24    0.0.0.0                  0         32768 i
31 *>   22.22.22.0/24    0.0.0.0                  0         32768 i
32 *>   44.44.44.0/24    0.0.0.0                  0         32768 i

DMVPN-HUB

1interface Serial1/0
2 ip address 11.11.11.1 255.255.255.252
3 serial restart-delay 0
4 
5router bgp 11
6 bgp log-neighbor-changes
7 distribute-list 10 in
8 network 11.11.11.0 mask 255.255.255.0
9 neighbor 11.11.11.2 remote-as 1
10end
11 
12access-list 10 deny   11.11.11.0
13access-list 10 permit any
14 
15R1#sh ip bgp
16     Network          Next Hop            Metric LocPrf Weight Path
17 *>   22.22.22.0/24    11.11.11.2               0             0 1 i
18 *>   44.44.44.0/24    11.11.11.2               0             0 1 i
19 
20Hub#sh ip route bgp
21Gateway of last resort is not set
22      22.0.0.0/30 is subnetted, 1 subnets
23B        22.22.22.0 [20/0] via 11.11.11.2, 00:00:40
24      44.0.0.0/30 is subnetted, 1 subnets
25B        44.44.44.0 [20/0] via 11.11.11.2, 00:00:40
26 
27interface Tunnel1
28 ip address 10.1.110.1 255.255.255.0
29 no ip redirects
30 ip nhrp map multicast dynamic
31 ip nhrp network-id 10
32 ip ospf network point-to-multipoint
33 ip ospf cost 64
34 tunnel source 11.11.11.1
35 tunnel mode gre multipoint
36end
37 
38HUB#sh dmvpn | i 1
39        T1 - Route Installed, T2 - Nexthop-override
40Interface: Tunnel1, IPv4 NHRP Details
41     1 22.22.22.1           10.1.110.2    UP 01:02:32     D
42     1 44.44.44.1           10.1.110.4    UP 01:02:40     D
43 
44router ospf 1
45 router-id 10.1.1.1
46 area 24 stub no-summary
47 redistribute static subnets
48 network 10.1.110.0 0.0.0.255 area 24
49 network 10.1.116.0 0.0.0.255 area 0
50 neighbor 10.1.110.2 cost 10
51 
52HUB#sh ip ospf nei
53Neighbor ID     Pri   State           Dead Time   Address         Interface
5410.6.6.6          0   FULL/  -        00:00:33    10.1.116.6      Serial1/1
5510.4.4.4          0   FULL/  -        00:01:56    10.1.110.4      Tunnel1
5610.2.2.2          0   FULL/  -        00:01:36    10.1.110.2      Tunnel1

Spoke #1

1interface Serial1/2
2 ip address 22.22.22.1 255.255.255.252
3 serial restart-delay 0
4end
5 
6router bgp 22
7 bgp log-neighbor-changes
8 distribute-list 10 in
9 network 22.22.22.0 mask 255.255.255.0
10 neighbor 22.22.22.2 remote-as 1
11end
12 
13access-list 10 deny   22.22.22.0
14access-list 10 permit any
15 
16R2#sh ip bgp
17     Network          Next Hop            Metric LocPrf Weight Path
18 *>   11.11.11.0/24    22.22.22.2               0             0 1 i
19 *>   44.44.44.0/24    22.22.22.2               0             0 1 i
20 
21Spoke1#sh ip route bgp
22Gateway of last resort is 10.1.110.1 to network 0.0.0.0
23      11.0.0.0/30 is subnetted, 1 subnets
24B        11.11.11.0 [20/0] via 22.22.22.2, 00:00:40
25      44.0.0.0/30 is subnetted, 1 subnets
26B        44.44.44.0 [20/0] via 22.22.22.2, 00:00:40
27 
28interface Tunnel1
29 ip address 10.1.110.2 255.255.255.0
30 no ip redirects
31 ip nhrp map 10.1.110.1 11.11.11.1
32 ip nhrp map multicast 11.11.11.1
33 ip nhrp map 10.1.110.4 44.44.44.1
34 ip nhrp map multicast 44.44.44.1
35 ip nhrp network-id 10
36 ip nhrp nhs 10.1.110.1
37 ip nhrp nhs 10.1.110.4
38 ip ospf network point-to-multipoint
39 ip ospf cost 64
40 tunnel source 22.22.22.1
41 tunnel mode gre multipoint
42end
43 
44Spoke1#sh dmvpn | i 1
45        T1 - Route Installed, T2 - Nexthop-override
46Interface: Tunnel1, IPv4 NHRP Details
47     1 11.11.11.1           10.1.110.1    UP 01:02:23     S
48     1 44.44.44.1           10.1.110.4    UP 00:16:21     S
49 
50router ospf 1
51 router-id 10.2.2.2
52 area 24 stub
53 network 10.1.110.0 0.0.0.255 area 24
54 network 172.30.24.0 0.0.0.255 area 24
55 distribute-list 10 in
56end
57 
58Spoke1#sh ip ospf nei
59 
60Neighbor ID     Pri   State           Dead Time   Address         Interface
6110.1.1.1          0   FULL/  -        00:01:53    10.1.110.1      Tunnel1
6210.4.4.4          1   FULL/DR         00:00:39    172.30.24.4     Ethernet0/0

Spoke #2

1interface Serial1/3
2 ip address 44.44.44.1 255.255.255.252
3 serial restart-delay 0
4end
5 
6router bgp 44
7 bgp log-neighbor-changes
8 distribute-list 10 in
9 network 44.44.44.0 mask 255.255.255.0
10 neighbor 44.44.44.2 remote-as 1
11end
12 
13access-list 10 deny   44.44.44.0
14access-list 10 permit any
15 
16R4#sh ip bgp
17     Network          Next Hop            Metric LocPrf Weight Path
18 *>   11.11.11.0/24    44.44.44.2               0             0 1 i
19 *>   22.22.22.0/24    44.44.44.2               0             0 1 i
20 
21Spoke2#sh ip route bgp
22Gateway of last resort is 10.1.110.1 to network 0.0.0.0
23      11.0.0.0/30 is subnetted, 1 subnets
24B        11.11.11.0 [20/0] via 44.44.44.2, 00:00:40
25      22.0.0.0/30 is subnetted, 1 subnets
26B        22.22.22.0 [20/0] via 44.44.44.2, 00:00:40
27 
28interface Tunnel1
29 ip address 10.1.110.4 255.255.255.0
30 no ip redirects
31 ip nhrp map 10.1.110.1 11.11.11.1
32 ip nhrp map multicast 11.11.11.1
33 ip nhrp map 10.1.110.2 22.22.22.1
34 ip nhrp map multicast 22.22.22.1
35 ip nhrp network-id 10
36 ip nhrp nhs 10.1.110.1
37 ip nhrp nhs 10.1.110.2
38 ip ospf network point-to-multipoint
39 ip ospf cost 64
40 tunnel source 44.44.44.1
41 tunnel mode gre multipoint
42end
43 
44Spoke2#sh dmvpn | i 1
45        T1 - Route Installed, T2 - Nexthop-override
46Interface: Tunnel1, IPv4 NHRP Details
47     1 11.11.11.1           10.1.110.1    UP 00:12:38     S
48     1 22.22.22.1           10.1.110.2    UP 00:12:38     S
49 
50router ospf 1
51 router-id 10.4.4.4
52 area 24 stub
53 network 10.1.110.0 0.0.0.255 area 24
54 network 172.30.24.0 0.0.0.255 area 24
55end
56 
57Spoke2#sh ip ospf nei
58Neighbor ID     Pri   State           Dead Time   Address         Interface
5910.1.1.1          0   FULL/  -        00:01:53    10.1.110.1      Tunnel1
6010.2.2.2          1   FULL/BDR        00:00:36    172.30.24.2     Ethernet0/0

When I get some extra time I’ll add 2 more ISP routers so that each site it connecting to a different instance of AS1. Then I’ll use iBGP within AS1 to forward the routes accordingly and verify that the tunnel can still be built through various hops as opposed to all meeting on the same AS1 router. This method is a better approximation of a real world scenario.

Another option would be to use EBGP and have each site use a different ISP. Then make the different Autonomous Systems talk to each other to form the tunnel, another very likely real world scenario and one of the whole reasons for using DMVPN.