summaryrefslogtreecommitdiff
path: root/pimd/pim_vty.c
diff options
context:
space:
mode:
authorBarry A. Trent <barry.trent@atcorp.com>2024-08-09 15:37:01 -0700
committerBarry A. Trent <barry.trent@atcorp.com>2024-09-20 13:44:48 -0700
commit9b68853e0d7616c97fbf64cf983ce63e3d93abe6 (patch)
tree3e8b5e18f4a6ac24dfd223d4924b728ea9bdca6b /pimd/pim_vty.c
parent26b67993d0de7e64d3409858bc0f165b9f8d4c1c (diff)
pimd: add igmp proxy cli and yang configuration
Signed-off-by: Barry A. Trent <barry.trent@atcorp.com>
Diffstat (limited to 'pimd/pim_vty.c')
-rw-r--r--pimd/pim_vty.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c
index e5324dd873..d5d6fb54d5 100644
--- a/pimd/pim_vty.c
+++ b/pimd/pim_vty.c
@@ -270,6 +270,11 @@ static int gm_config_write(struct vty *vty, int writes,
++writes;
}
+ if (pim_ifp->gm_proxy) {
+ vty_out(vty, " ip igmp proxy\n");
+ ++writes;
+ }
+
/* ip igmp version */
if (pim_ifp->igmp_version != IGMP_DEFAULT_VERSION) {
vty_out(vty, " ip igmp version %d\n", pim_ifp->igmp_version);