diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-01 21:31:02 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-01 21:31:02 +0200 |
commit | f91f89bcd6a7c0b26d9e5b9d7062a29451ab51b5 (patch) | |
tree | b6ea99b4b91e6090f032b5a26388d8f36ac8bbc6 /pimd/pim_static.h | |
parent | zebra: Remove experimental warning (diff) | |
download | frr-f91f89bcd6a7c0b26d9e5b9d7062a29451ab51b5.tar.xz frr-f91f89bcd6a7c0b26d9e5b9d7062a29451ab51b5.zip |
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 <sharpd@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Reviewed-by: Don Slice <dslice@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_static.h')
-rw-r--r-- | pimd/pim_static.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_static.h b/pimd/pim_static.h index 3a096932d..b3be09e91 100644 --- a/pimd/pim_static.h +++ b/pimd/pim_static.h @@ -43,5 +43,6 @@ void pim_static_route_free(struct static_route *s_route); int pim_static_add(struct interface *iif, struct interface *oif, struct in_addr group, struct in_addr source); int pim_static_del(struct interface *iif, struct interface *oif, struct in_addr group, struct in_addr source); +int pim_static_write_mroute (struct vty *vty, struct interface *ifp); #endif /* PIM_STATIC_H_ */ |