diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-31 09:08:12 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-31 10:30:19 -0400 |
| commit | 89b680829e938a81224d8de12ac1e7d9aaf245d3 (patch) | |
| tree | 9b76b0243bbd65378443998b0b7691ae0d279e05 /pimd/pim_cmd.c | |
| parent | b77b155068fccde782700e342d745f2090886223 (diff) | |
pimd: Add ability to lookup RP group by table.
This feature does this:
Add the ability to store the non-prefix static RP
entries into a table. Then to lookup the G to
find the RP in that table, finding the longest
prefix match across both prefix-lists and
static RP's.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_cmd.c')
| -rw-r--r-- | pimd/pim_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index ae509f4a9b..6111eed588 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -5070,7 +5070,7 @@ static int pim_rp_cmd_worker(struct pim_instance *pim, struct vty *vty, } if (result == PIM_GROUP_OVERLAP) { - vty_out(vty, "%% Group range specified cannot overlap\n"); + vty_out(vty, "%% Group range specified cannot exact match another\n"); return CMD_WARNING_CONFIG_FAILED; } |
