cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
454
Views
1
Helpful
5
Replies

DMVPN stage 1 and EIGRP Adjacency flaps - Lab setup

lumornet
Level 1
Level 1

Hello everyone!

Have a typical DMVPN lab setup in GNS3 with 1 hub + 2 spokes, EIGRP configured including the tunnel interface and loopbacks, not the underlay IPs. The HUB and Spokes are pretty much connected in the same network. For some reason EIGRP continues to Flap constantly. I can see output on the spoke indicating the HUB to be its neighbor, but when issuing "sh ip eigrp neighbors" on the HUB there's no output. In the process of t-shooting I eliminated one of the SPOKEs, so at the moment I have 1 HUB and 1 SPOKE

Here's the configs and terminal outputs:

 

*****HUB config:

Building configuration...

Current configuration : 279 bytes
!
interface Tunnel0
ip address 192.168.0.1 255.255.255.0
no ip redirects
ip mtu 1400
no ip split-horizon eigrp 567
ip nhrp authentication cisco
ip nhrp network-id 1
ip tcp adjust-mss 1360
tunnel source GigabitEthernet0/0
tunnel mode gre multipoint
tunnel key 1234
end

Router(config-if)#do sh run | s r e
router eigrp 567
network 10.10.10.1 0.0.0.0
network 192.168.0.0

*******SPOKE config:

interface Tunnel0
ip address 192.168.0.2 255.255.255.0
no ip redirects
ip mtu 1400
ip nhrp authentication cisco
ip nhrp network-id 1
ip nhrp nhs 192.168.0.1 nbma 155.1.37.1
ip tcp adjust-mss 1360
tunnel source GigabitEthernet1
tunnel mode gre multipoint
tunnel key 1234

Router#sh run | s r e
router eigrp 567
network 10.10.10.2 0.0.0.0
network 192.168.0.0

**************Message in the terminal of the SPOKE, no messages on the HUB

May 10 02:25:30.748: %DUAL-5-NBRCHANGE: EIGRP-IPv4 567: Neighbor 192.168.0.1 (Tunnel0) is up: new adjacency
*May 10 02:26:50.262: %DUAL-5-NBRCHANGE: EIGRP-IPv4 567: Neighbor 192.168.0.1 (Tunnel0) is down: retry limit exceeded
*May 10 02:26:50.470: %DUAL-5-NBRCHANGE: EIGRP-IPv4 567: Neighbor 192.168.0.1 (Tunnel0) is up: new adjacency
*May 10 02:28:09.987: %DUAL-5-NBRCHANGE: EIGRP-IPv4 567: Neighbor 192.168.0.1 (Tunnel0) is down: retry limit exceeded
*May 10 02:28:14.518: %DUAL-5-NBRCHANGE: EIGRP-IPv4 567: Neighbor 192.168.0.1 (Tunnel0) is up: new adjacency

*********Debug eigrp packet both routers

*May 10 03:06:00.485: EIGRP: Received HELLO on Tu0 - paklen 20 nbr 192.168.0.1
*May 10 03:06:00.485: AS 567, Flags 0x0:(NULL), Seq 0/0 interfaceQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/1
*May 10 03:06:00.527: EIGRP: Sending HELLO on Tu0 - paklen 20
*May 10 03:06:00.527: AS 567, Flags 0x0:(NULL), Seq 0/0 interfaceQ 0/0 iidbQ un/rely 0/0
*May 10 03:06:03.299: EIGRP: Sending UPDATE on Tu0 - paklen 0 nbr 192.168.0.1, retry 10, RTO 5000 tid 0
*May 10 03:06:03.299: AS 567, Flags 0x1:(INIT), Seq 67/0 interfaceQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/1
*May 10 03:06:05.289: EIGRP: Received HELLO on Tu0 - paklen 20 nbr 192.168.0.1
*May 10 03:06:05.289: AS 567, Flags 0x0:(NULL), Seq 0/0 interfaceQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/1
*May 10 03:06:05.447: EIGRP: Sending HELLO on Tu0 - paklen 20

 

 

 

1 Accepted Solution

Accepted Solutions

lumornet
Level 1
Level 1

Was missing the "multicast" on "ip nhrp nhs 192.168.0.1 nbma 155.1.37.1 multicast" line on the spokes!

as soon as I added the keyword "multicast"... viola! EIGRP adjacency!

Thank you so much everyone! Cheers!

View solution in original post

5 Replies 5

M02@rt37
VIP
VIP

Hello @lumornet 

The spoke's NBMA address (155.1.37.1) is not reachable from the hub. 'Cause there’s no static or dynamic maping in the Hub to resolve the spoke’s tunnel IP to its NBMA IP.

Add this on HUB interface tunnel:

ip nhrp map multicast dynamic

Follow steps here:

https://www.fir3net.com/Cisco-Router/dmvpn-tutorial.html

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.

lumornet
Level 1
Level 1

Thank you so much! found that the command line "ip nhrp map multicast dynamic" was already in place, is just not in the "sh run" output. Had to issue "show run all" to display it. Also found on a couple forums that is some sort of a default config on the HUB side...

Let me go through the steps on your post and see if there's anything missing...I'll keep you posted!

 

Your config is OK' and it true some IOS not show command in "show run".

Now' are you sure there is no ACL apply to any routers?

Are you sure underlay IGP is work correctly?

Note:- Add to hub tunnel ""no ip next-hop eigrp""

MHM

lumornet
Level 1
Level 1

Was missing the "multicast" on "ip nhrp nhs 192.168.0.1 nbma 155.1.37.1 multicast" line on the spokes!

as soon as I added the keyword "multicast"... viola! EIGRP adjacency!

Thank you so much everyone! Cheers!

Great !

Thanks for you feedback.

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.