summaryrefslogtreecommitdiffstats
path: root/nest/rt-table.c
diff options
context:
space:
mode:
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index ef07042..389baaa 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -1509,7 +1509,16 @@ rt_update_hostentry(rtable *tab, struct hostentry *he)
rta *a = n->routes->attrs;
pxlen = n->n.pxlen;
- if (a->dest == RTD_DEVICE)
+ if (a->hostentry)
+ {
+ /* Recursive route should not depend on another recursive route */
+ log(L_WARN "Next hop address %I resolvable through recursive route for %I/%d",
+ he->addr, n->n.prefix, n->n.pxlen);
+ he->iface = NULL;
+ he->gw = IPA_NONE;
+ he->dest = RTD_UNREACHABLE;
+ }
+ else if (a->dest == RTD_DEVICE)
{
if (if_local_addr(he->addr, a->iface))
{