Added `show route for <prefix-or-ipa>' which looks up route leading to
given network.
This commit is contained in:
parent
56d6c530eb
commit
9449c91ab2
3 changed files with 12 additions and 3 deletions
1
TODO
1
TODO
|
@ -10,7 +10,6 @@ Core
|
||||||
- filters: user defined attributes?
|
- filters: user defined attributes?
|
||||||
|
|
||||||
- cli: show tables?
|
- cli: show tables?
|
||||||
- cli: show where is routed given IP address?
|
|
||||||
|
|
||||||
- client: Ctrl-R eats one more enter
|
- client: Ctrl-R eats one more enter
|
||||||
- client: paging?
|
- client: paging?
|
||||||
|
|
|
@ -22,7 +22,7 @@ CF_DECLS
|
||||||
CF_KEYWORDS(ROUTER, ID, PROTOCOL, PREFERENCE, DISABLED, DEBUG, ALL, OFF, DIRECT)
|
CF_KEYWORDS(ROUTER, ID, PROTOCOL, PREFERENCE, DISABLED, DEBUG, ALL, OFF, DIRECT)
|
||||||
CF_KEYWORDS(INTERFACE, IMPORT, EXPORT, FILTER, NONE, TABLE, STATES, ROUTES, FILTERS)
|
CF_KEYWORDS(INTERFACE, IMPORT, EXPORT, FILTER, NONE, TABLE, STATES, ROUTES, FILTERS)
|
||||||
CF_KEYWORDS(PASSWORD, FROM, PASSIVE, TO, ID, EVENTS, PACKETS, PROTOCOLS, INTERFACES)
|
CF_KEYWORDS(PASSWORD, FROM, PASSIVE, TO, ID, EVENTS, PACKETS, PROTOCOLS, INTERFACES)
|
||||||
CF_KEYWORDS(PRIMARY, STATS, COUNT)
|
CF_KEYWORDS(PRIMARY, STATS, COUNT, FOR)
|
||||||
|
|
||||||
CF_ENUM(T_ENUM_RTS, RTS_, DUMMY, STATIC, INHERIT, DEVICE, STATIC_DEVICE, REDIRECT,
|
CF_ENUM(T_ENUM_RTS, RTS_, DUMMY, STATIC, INHERIT, DEVICE, STATIC_DEVICE, REDIRECT,
|
||||||
RIP, OSPF, OSPF_EXT, OSPF_IA, OSPF_BOUNDARY, BGP, PIPE)
|
RIP, OSPF, OSPF_EXT, OSPF_IA, OSPF_BOUNDARY, BGP, PIPE)
|
||||||
|
@ -256,6 +256,13 @@ r_args:
|
||||||
$$->prefix = $2.addr;
|
$$->prefix = $2.addr;
|
||||||
$$->pxlen = $2.len;
|
$$->pxlen = $2.len;
|
||||||
}
|
}
|
||||||
|
| r_args FOR prefix_or_ipa {
|
||||||
|
$$ = $1;
|
||||||
|
if ($$->pxlen != 256) cf_error("Only one prefix expected");
|
||||||
|
$$->prefix = $3.addr;
|
||||||
|
$$->pxlen = $3.len;
|
||||||
|
$$->show_for = 1;
|
||||||
|
}
|
||||||
| r_args TABLE SYM {
|
| r_args TABLE SYM {
|
||||||
$$ = $1;
|
$$ = $1;
|
||||||
if ($3->class != SYM_TABLE) cf_error("%s is not a table", $3->name);
|
if ($3->class != SYM_TABLE) cf_error("%s is not a table", $3->name);
|
||||||
|
|
|
@ -846,6 +846,9 @@ rt_show(struct rt_show_data *d)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (d->show_for)
|
||||||
|
n = fib_route(&d->table->fib, d->prefix, d->pxlen);
|
||||||
|
else
|
||||||
n = fib_find(&d->table->fib, &d->prefix, d->pxlen);
|
n = fib_find(&d->table->fib, &d->prefix, d->pxlen);
|
||||||
if (n)
|
if (n)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue