mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Ignore routes with next-hop 127.0.0.1 on BSD.
This commit is contained in:
parent
a9f380fe83
commit
de14a7c7aa
@ -381,6 +381,11 @@ krt_read_rt(struct ks_msg *msg, struct krt_proto *p, int scan)
|
|||||||
ng = neigh_find2(&p->p, &a.gw, a.iface, 0);
|
ng = neigh_find2(&p->p, &a.gw, a.iface, 0);
|
||||||
if (!ng || (ng->scope == SCOPE_HOST))
|
if (!ng || (ng->scope == SCOPE_HOST))
|
||||||
{
|
{
|
||||||
|
/* Ignore routes with next-hop 127.0.0.1, host routes with such
|
||||||
|
next-hop appear on OpenBSD for address aliases. */
|
||||||
|
if (ipa_classify(a.gw) == (IADDR_HOST | SCOPE_HOST))
|
||||||
|
return;
|
||||||
|
|
||||||
log(L_ERR "KRT: Received route %I/%d with strange next-hop %I",
|
log(L_ERR "KRT: Received route %I/%d with strange next-hop %I",
|
||||||
net->n.prefix, net->n.pxlen, a.gw);
|
net->n.prefix, net->n.pxlen, a.gw);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user