Replies: 1 comment 1 reply
-
today, on zebra external routes are overriden with kernel kind. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have configured a Wireguard point-to-point connection between two servers, with the intention of making each others' subnets accessible to each other. Wireguard mandates that I explicitly declare the allowed routes using the
AllowedIPs
field in the config file (otherwise it refuses to route them), and it also automatically adds those routes to the routing table. I would like to redistribute these routes over OSPF with FRR.However, the routes added by Wireguard look like this:
... which you may notice, does not declare a routing protocol.[1] But in FRR,
conf > router ospf > redistribute
requires a route protocol as argument. See docs. So what do I do here?[1]:
This is a direct quote from
man ip-route
:It doesn't help in this case because
boot
is not one of the recognised protocols in FRR; I just found this quote quite amusing.Beta Was this translation helpful? Give feedback.
All reactions