From f91f89bcd6a7c0b26d9e5b9d7062a29451ab51b5 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 1 Jun 2016 15:31:02 -0400 Subject: pimd: Add support for displaying ip mroute When you enter a static mroute under an interface the 'show run' is not displaying this information. Add code to allow this. Ticket: CM-11257 Signed-off-by: Donald Sharp Reviewed-by: Daniel Walton Reviewed-by: Don Slice --- pimd/pim_vty.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pimd/pim_vty.c') diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index eeeda9d43..beb0622a3 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -33,6 +33,7 @@ #include "pim_str.h" #include "pim_ssmpingd.h" #include "pim_pim.h" +#include "pim_static.h" int pim_debug_config_write(struct vty *vty) { @@ -200,6 +201,8 @@ int pim_interface_config_write(struct vty *vty) ++writes; } } + + writes += pim_static_write_mroute (vty, ifp); } vty_out(vty, "!%s", VTY_NEWLINE); ++writes; -- cgit v1.2.3