Hi, im trying to setup a route filter to allow only a default route to flow into my mikrotik from ospf:
#accept default route
add chain=ospf_only_def_in prefix=0.0.0.0/0 action=accept
#discard the rest
add chain=ospf_only_def_in action=discard
Then I set this as the in-filter in the OSPF instance. I disable then enable ospf.
Still i get all the routes.
So I tried removing the accept line, so everything should be discarded. Still get all the routes.
What am i missing here?
--John