Challenge: OSPF Neighbor Changing State from DOWN to DOWN
Here’s an interesting behavior I was able to create in a lab connecting two routers with a serial link:
*19:34:42.765: %OSPF-5-ADJCHG: Process 1, Nbr 10.0.1.1 on Serial1/0 from →
EXSTART to DOWN, Neighbor Down: Too many retransmissions
*19:35:42.773: %OSPF-5-ADJCHG: Process 1, Nbr 10.0.1.1 on Serial1/0 from →
DOWN to DOWN, Neighbor Down: Ignore timer expired
The messages are repeated approximately every three minutes (using the default OSPF timers).
The challenge: what was going on and how was I able to produce these messages?
mtu mismatch.
access-list if you block unicast OSPF between the boxes you'll get exactly the symptoms ...
Too many retransmissions - buggy line
Neighbor Down: Ignore timer expired - ospf message-digest-key is configured only one side
-jumbo
How too reproduce this: on one of two routers connected by Ethernet interfaces filter unicast (but not multicast) packets of ospf protocol in both directions - routers will periodically establish two-way adjacency, but they can't exchange their databases...
sol
1-(config)#system mtu routing "mtu_value"
or
2-(config-if)#ip ospf mtu ignore
Zico
%OSPF-5-ADJCHG: Process 1, Nbr xxx.xxx.xxx.xxx on VlanXXX from EXCHANGE to DOWN, Neighbor Down: Too many retransmissions
%OSPF-5-ADJCHG: Process 1, Nbr xxx.xxx.xxx.xxx on VlanXXX from DOWN to DOWN, Neighbor Down: Ignore timer expired
http://blog.ioshints.info/2009/11/ip-ospf-mtu-ignore-is-dangerous-command.html