Don't try to install static routes to disconnected neighbors.
This commit is contained in:
parent
eab0d1e5e5
commit
25287d6f7e
1 changed files with 2 additions and 1 deletions
|
@ -73,7 +73,8 @@ static_start(struct proto *p)
|
|||
r->chain = n->data;
|
||||
n->data = r;
|
||||
r->neigh = n;
|
||||
static_install(p, r, n->iface);
|
||||
if (n->iface)
|
||||
static_install(p, r, n->iface);
|
||||
}
|
||||
else
|
||||
log(L_ERR "Static route destination %I is invalid. Ignoring.\n", r->via);
|
||||
|
|
Loading…
Reference in a new issue