summaryrefslogtreecommitdiff
path: root/zebra/zserv.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-02-11 22:42:16 +0000
committerhasso <hasso>2004-02-11 22:42:16 +0000
commit55906724d8d460b16f11c2fe05eeb799325f97ba (patch)
tree858bcea4e941ce2ab503761821ad575de00b698f /zebra/zserv.c
parent2db3d05da3ac6b1ff9452a5f291bfc39a719d1c6 (diff)
Added "ipv6 forwarding" command and fixed "no ipv6 forwarding" help.
Diffstat (limited to 'zebra/zserv.c')
-rw-r--r--zebra/zserv.c23
1 files changed, 21 insertions, 2 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c
index 3ea1a168..0f30a559 100644
--- a/zebra/zserv.c
+++ b/zebra/zserv.c
@@ -1902,12 +1902,30 @@ DEFUN (show_ipv6_forwarding,
return CMD_SUCCESS;
}
+DEFUN (ipv6_forwarding,
+ ipv6_forwarding_cmd,
+ "ipv6 forwarding",
+ IPV6_STR
+ "Turn on IPv6 forwarding")
+{
+ int ret;
+
+ ret = ipforward_ipv6_on ();
+ if (ret != 0)
+ {
+ vty_out (vty, "Can't turn on IPv6 forwarding%s", VTY_NEWLINE);
+ return CMD_WARNING;
+ }
+
+ return CMD_SUCCESS;
+}
+
DEFUN (no_ipv6_forwarding,
no_ipv6_forwarding_cmd,
"no ipv6 forwarding",
NO_STR
- IP_STR
- "Doesn't forward IPv6 protocol packet")
+ IPV6_STR
+ "Turn off IPv6 forwarding")
{
int ret;
@@ -1985,6 +2003,7 @@ zebra_init ()
#ifdef HAVE_IPV6
install_element (VIEW_NODE, &show_ipv6_forwarding_cmd);
install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd);
+ install_element (CONFIG_NODE, &ipv6_forwarding_cmd);
install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd);
#endif /* HAVE_IPV6 */