On Thu, Sep 13, 2018 at 05:21:37PM +0200, Marko Cupać wrote: > Hi, > > I saw this in my log for the first time, after adding 'no redistribute > default': > > ospfd[10921]: alien OSPF route 10.30.1.47/32 > > My ospfd.conf is quite minimal: > > router-priority 0 > router-id IP.ADD.RE.SS > no redistribute default > area 0.0.0.0 { > interface bnx0 { metric 100 } > } > > How to further investigate this? I see this on OpenBSD firewall which > connects to Cisco router. The address appears to be smartphone on one > of remote networks.
ospfd logs this message when it sees a routing entry with priority 32 which it did not originate. When you see this during the start of ospfd it could be from another ospfd running in the same rdomain. I had this when I wanted to do a config check but missed to option "-n" and started a second instance. There is now a check for this in the startup of ospfd in -current. You will also see this message when you add a static route with the "-priority 32". ospfd removes such routes after logging it. What did you do after adding "no redistribute default" to the config file? Restart with rcctl, reload with ospfctl? And why did you add "no redistribute default"? By default your default route is not redistributed. Remi