Hi,Doing some labbing but I can't seem to get my config right. 2 routers which have an OSPF adjacency in OSPF area 1. OSPF area 0 is configured on one of the routers and the loopback (lo0.0) interface is in it. I'm trying to have the ABR generate a default route into stub area 1, but I can't seem to get the router in area 1 to see the default route:Config R1 (ABR)
root@rtr-1> show configuration protocols ospf area 0.0.0.0 { interface lo0.0 { passive; }}area 0.0.0.1 { stub default-metric 10; interface em1.0;}
Config R2 (router in area 1)
traceoptions { file ospf-log.log; flag all;}area 0.0.0.1 { stub; interface em1.0;}
The routers have established a full adjacency over area 1. Even more interesting is that the route to the loopback of R1 appears as a OSPF intra area route (LSA type 3) in the routing table of R2. It should do this, seeing as area 1 is a stub and not a totally stub area. But why doesn't the default route show up at R2?
root@rtr2> show ospf neighbor detail Address Interface State ID Pri Dead172.12.12.1 em1.0 Full 1.1.1.1 128 33 Area 0.0.0.1, opt 0x50, DR 172.12.12.2, BDR 172.12.12.1 Up 00:07:03, adjacent 00:07:03
root@rtr2> show route protocol ospf inet.0: 11 destinations, 11 routes (11 active, 0 holddown, 0 hidden)+ = Active Route, - = Last Active, * = Both1.1.1.1/32 *[OSPF/10] 00:10:47, metric 1 > to 172.12.12.1 via em1.0224.0.0.5/32 *[OSPF/10] 23:03:20, metric 1 MultiRecv
root@rtr2> show ospf database | match 0.0.0.0/0 root@rtr2>
I've also check the martians, 0.0.0.0/0 exact is allowed. What else could be wrong here. R1 (ABR) does not have a default route itself, but this shouldn't be a requirement as far as I know (at least not in Cisco).