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?

10 comments:

  1. dbd packets are being filtered/dropped for some reason such as:

    mtu mismatch.
    access-list if you block unicast OSPF between the boxes you'll get exactly the symptoms ...
  2. Hay,

    Too many retransmissions - buggy line
    Neighbor Down: Ignore timer expired - ospf message-digest-key is configured only one side

    -jumbo
  3. There is hidden "ignore" timer. If neighbor do something wrong its ignored for period of that timer.
    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...
  4. MTU mismatch prevent establishing adjacency
    sol
    1-(config)#system mtu routing "mtu_value"
    or
    2-(config-if)#ip ospf mtu ignore
    Zico
  5. I don't know how you did it, but I'm trying to work an OSPF relationship between a Juniper and a Cisco Router, and I keep getting the following

    %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
  6. MTU mismatch ignored & oversized packet lost by one of the routers:

    http://blog.ioshints.info/2009/11/ip-ospf-mtu-ignore-is-dangerous-command.html
  7. I get the same message even though the MTUs on both sides are the same. What more can be wrong, if the MTU missmatch is not the case???
  8. you are using multicast, and multiaccesss environment, one of the routers keep sending prune message, which effect the ospf relation.
Add comment
Sidebar