summaryrefslogtreecommitdiff
path: root/pimd/pim_instance.c
diff options
context:
space:
mode:
authorNathan Bahr <nbahr@atcorp.com>2024-06-12 16:26:48 +0000
committerNathan Bahr <nbahr@atcorp.com>2024-07-16 13:30:35 -0500
commitfd8edc3dfbd41ff1ba8c21ea258276f3dab71e4b (patch)
tree91746c6137c6568ae71295d1347901038dab875d /pimd/pim_instance.c
parent66de92184fe52dd8dbe237e6c34b5457bf465fd3 (diff)
pimd, lib, vtysh: Added new 'router pim[6] [vrf NAME]' config node
Moved all existing global/vrf PIM config to the new subnode. Existing configuration updated to be hidden and deprecated. Both versions of configuration still work together. Signed-off-by: Nathan Bahr <nbahr@atcorp.com>
Diffstat (limited to 'pimd/pim_instance.c')
-rw-r--r--pimd/pim_instance.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/pimd/pim_instance.c b/pimd/pim_instance.c
index b3410d15af..a9eec9a9d2 100644
--- a/pimd/pim_instance.c
+++ b/pimd/pim_instance.c
@@ -201,6 +201,7 @@ static int pim_vrf_config_write(struct vty *vty)
{
struct vrf *vrf;
struct pim_instance *pim;
+ char spaces[10];
RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
pim = vrf->info;
@@ -208,10 +209,24 @@ static int pim_vrf_config_write(struct vty *vty)
if (!pim)
continue;
- if (vrf->vrf_id != VRF_DEFAULT)
+ if (vrf->vrf_id != VRF_DEFAULT) {
vty_frame(vty, "vrf %s\n", vrf->name);
-
- pim_global_config_write_worker(pim, vty);
+ snprintf(spaces, sizeof(spaces), "%s", " ");
+ } else {
+ snprintf(spaces, sizeof(spaces), "%s", "");
+ }
+
+ /* Global IGMP/MLD configuration */
+ if (pim->gm_watermark_limit != 0) {
+#if PIM_IPV == 4
+ vty_out(vty,
+ "%s" PIM_AF_NAME " igmp watermark-warn %u\n",
+ spaces, pim->gm_watermark_limit);
+#else
+ vty_out(vty, "%s" PIM_AF_NAME " mld watermark-warn %u\n",
+ spaces, pim->gm_watermark_limit);
+#endif
+ }
if (vrf->vrf_id != VRF_DEFAULT)
vty_endframe(vty, "exit-vrf\n!\n");