diff options
author | hasso <hasso> | 2003-05-25 16:02:39 +0000 |
---|---|---|
committer | hasso <hasso> | 2003-05-25 16:02:39 +0000 |
commit | 19163b543af110f337b6990a2ce67fee19c23c4a (patch) | |
tree | 33d4de8064e2042f63ead72c54957a6d82dcb8c6 /ripd | |
parent | c7d37a1bb50a1423dfc9b689dfe742e158c9b678 (diff) | |
download | quagga-19163b543af110f337b6990a2ce67fee19c23c4a.tar.bz2 quagga-19163b543af110f337b6990a2ce67fee19c23c4a.tar.xz |
Unbroke "set metric" command in vtysh again.
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/rip_routemap.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/ripd/rip_routemap.c b/ripd/rip_routemap.c index b354a896..bab29f32 100644 --- a/ripd/rip_routemap.c +++ b/ripd/rip_routemap.c @@ -965,15 +965,21 @@ ALIAS (no_match_tag, DEFUN (set_metric, set_metric_cmd, - "set metric (<0-4294967295>|<+/-metric>)", + "set metric <0-4294967295>", SET_STR "Metric value for destination routing protocol\n" - "Metric value\n" - "Add or subtract metric\n") + "Metric value\n") { return rip_route_set_add (vty, vty->index, "metric", argv[0]); } +ALIAS (set_metric, + set_metric_addsub_cmd, + "set metric <+/-metric>", + SET_STR + "Metric value for destination routing protocol\n" + "Add or subtract BGP metric\n") + DEFUN (no_set_metric, no_set_metric_cmd, "no set metric", @@ -1121,6 +1127,7 @@ rip_route_map_init () install_element (RMAP_NODE, &no_match_tag_val_cmd); install_element (RMAP_NODE, &set_metric_cmd); + install_element (RMAP_NODE, &set_metric_addsub_cmd); install_element (RMAP_NODE, &no_set_metric_cmd); install_element (RMAP_NODE, &no_set_metric_val_cmd); install_element (RMAP_NODE, &set_ip_nexthop_cmd); |