diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-27 21:33:00 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-27 21:52:12 +0100 |
commit | 40d1cbfbb3c30688f96e6982dc56ec313a708333 (patch) | |
tree | f689c6343130ddb077e2ba2617e9bc1a1da40b4f /ripngd | |
parent | lib: Fix Auto generation of redistribution strings (diff) | |
download | frr-40d1cbfbb3c30688f96e6982dc56ec313a708333.tar.xz frr-40d1cbfbb3c30688f96e6982dc56ec313a708333.zip |
*: Fix redistribute issue
Somewhere in the past we switched from
using the auto-generated redistribute statements
to a non-generated version. This caused us to
loose new protocols to redistribute as they are
added. Put it back.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ripngd')
-rw-r--r-- | ripngd/ripng_zebra.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ripngd/ripng_zebra.c b/ripngd/ripng_zebra.c index bb8fed3e9..5de785a6b 100644 --- a/ripngd/ripng_zebra.c +++ b/ripngd/ripng_zebra.c @@ -315,7 +315,7 @@ DEFUN (no_ripng_redistribute_ripng, DEFUN (ripng_redistribute_type, ripng_redistribute_type_cmd, - "redistribute <kernel|connected|static|ospf6|isis|bgp|table>", + "redistribute " FRR_REDIST_STR_RIPNGD, "Redistribute\n" FRR_REDIST_HELP_STR_RIPNGD) { @@ -336,7 +336,7 @@ DEFUN (ripng_redistribute_type, DEFUN (no_ripng_redistribute_type, no_ripng_redistribute_type_cmd, - "no redistribute <kernel|connected|static|ospf6|isis|bgp|table> [metric (0-16)] [route-map WORD]", + "no redistribute " FRR_REDIST_STR_RIPNGD " [metric (0-16)] [route-map WORD]", NO_STR "Redistribute\n" FRR_REDIST_HELP_STR_RIPNGD @@ -364,7 +364,7 @@ DEFUN (no_ripng_redistribute_type, DEFUN (ripng_redistribute_type_metric, ripng_redistribute_type_metric_cmd, - "redistribute <kernel|connected|static|ospf6|isis|bgp|table> metric (0-16)", + "redistribute " FRR_REDIST_STR_RIPNGD " metric (0-16)", "Redistribute\n" FRR_REDIST_HELP_STR_RIPNGD "Metric\n" @@ -392,7 +392,7 @@ DEFUN (ripng_redistribute_type_metric, DEFUN (ripng_redistribute_type_routemap, ripng_redistribute_type_routemap_cmd, - "redistribute <kernel|connected|static|ospf6|isis|bgp|table> route-map WORD", + "redistribute " FRR_REDIST_STR_RIPNGD " route-map WORD", "Redistribute\n" FRR_REDIST_HELP_STR_RIPNGD "Route map reference\n" @@ -418,7 +418,7 @@ DEFUN (ripng_redistribute_type_routemap, DEFUN (ripng_redistribute_type_metric_routemap, ripng_redistribute_type_metric_routemap_cmd, - "redistribute <kernel|connected|static|ospf6|isis|bgp|table> metric (0-16) route-map WORD", + "redistribute " FRR_REDIST_STR_RIPNGD " metric (0-16) route-map WORD", "Redistribute\n" FRR_REDIST_HELP_STR_RIPNGD "Metric\n" |