zebra: Remove experimental warning

Remove the pimd experimental warnings that are being
displayed for some commands.

Ticket: CM-6128
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2016-06-01 11:44:16 -04:00
parent 8371bd6008
commit 54fec4d508

View File

@ -179,7 +179,6 @@ DEFUN (ip_mroute_dist,
"Nexthop interface name\n"
"Distance\n")
{
VTY_WARN_EXPERIMENTAL();
return zebra_static_ipv4 (vty, SAFI_MULTICAST, 1, argv[0], NULL, argv[1], NULL, NULL, argc > 2 ? argv[2] : NULL, NULL);
}
@ -202,7 +201,6 @@ DEFUN (no_ip_mroute_dist,
"Nexthop interface name\n"
"Distance\n")
{
VTY_WARN_EXPERIMENTAL();
return zebra_static_ipv4 (vty, SAFI_MULTICAST, 0, argv[0], NULL, argv[1], NULL, NULL, argc > 2 ? argv[2] : NULL, NULL);
}
@ -228,7 +226,6 @@ DEFUN (ip_multicast_mode,
"Lookup both, use entry with lower distance\n"
"Lookup both, use entry with longer prefix\n")
{
VTY_WARN_EXPERIMENTAL();
if (!strncmp (argv[0], "u", 1))
multicast_mode_ipv4_set (MCAST_URIB_ONLY);
@ -281,7 +278,6 @@ DEFUN (show_ip_rpf,
IP_STR
"Display RPF information for multicast source\n")
{
VTY_WARN_EXPERIMENTAL();
return do_show_ip_route(vty, VRF_DEFAULT_NAME, SAFI_MULTICAST);
}
@ -298,8 +294,6 @@ DEFUN (show_ip_rpf_addr,
struct rib *rib;
int ret;
VTY_WARN_EXPERIMENTAL();
ret = inet_aton (argv[0], &addr);
if (ret == 0)
{