I’ve been working on deploying OSPF since ROS5.0 was released. I’m now up to 5.4 on some routers, and am having a frequent issue that is sure to cause some problems later down the road.
One unit, in particular:
IP Addresses:
# ADDRESS NETWORK INTERFACE
0 172.17.84.142/30 172.17.84.140 backhaul
1 172.17.84.52/32 172.17.84.52 lo0
2 172.17.87.241/29 172.17.87.240 bridge1
Routes:
# DST-ADDRESS PREF-SRC GATEWAY DISTANCE
0 A S 0.0.0.0/0 172.17.84.141 110
1 ADC 172.17.84.52/32 172.17.84.52 lo0 0
2 ADC 172.17.84.140/30 172.17.84.142 backhaul 0
3 ADC 172.17.87.240/29 172.17.87.241 bridge1 0
ospf networks
# NETWORK AREA
0 172.17.84.52/32 backbone
1 172.17.84.140/30 backbone
2 172.17.87.240/29 backbone
OSPF Interfaces
# INTERFACE COST PRIORITY NETWORK-TYPE AUTHENTICATION AUTHENTICATION-KEY
0 DP lo0 10 1 broadcast none
1 D bridge1 10 1 broadcast none
2 D backhaul 10 1 broadcast none
Neighbors come right up, and after a a few moments, the routing tables are flooded. The problem, is that the neighbor on the backhaul interface isn’t getting the route for the LAN:
/routing ospf route> print where interface=PTP-HES
# DST-ADDRESS STATE COST GATEWAY INTERFACE
34 172.17.84.52/32 intra-area 20 172.17.84.142 PTP-HES
35 172.17.84.140/30 intra-area 10 0.0.0.0 PTP-HES
The loopback address is getting propagated, but nothing for the /29 on the LAN.
This is happening on 5.2/5.3/5.4. I don’t know about earlier versions, as I only deployed 5.0 and 5.1 in a very limited fashion for testing.
Any ideas and/or suggestions on how to resolve this problem? What additional information is needed to resolve this?
Thank you,