Hey James, I believe the answer is pretty simple. You can tag all the static routes you want to distribute to a certain neighbor with tag value 100 for instance and use a route-map under ospf doing the following On the neighbor you want to receive those certain routes, configure a route-map that matches the source of updates with tag 100 route-map AllowRoutes permit 10 match ip route-source x.x.x.x match tag 100 while on the other 2 neighbors, configure route-maps that permit everything except the static route route-map OmitRoutes deny 10 match ip route-source x.x.x.x match tag 100 The problem is that you can't control which neighbor will be a recipient for some particular routes from the source of updates. However, you can control the recipients to allow certain routes or not. Hope this helps, my first post ever Wassim CCNP
... View more