summaryrefslogtreecommitdiffstats
path: root/pimd/pim_vty.c
diff options
context:
space:
mode:
authorroot <root@dev.vmware.com>2018-09-07 13:46:57 +0200
committerroot <root@dev.vmware.com>2018-09-11 07:22:14 +0200
commit2f5e937c49dec6b422e8f2ebede4bded44f70efd (patch)
tree329535ee94261ff4e0adb59390501dcec22ef121 /pimd/pim_vty.c
parentMerge pull request #2873 from vivek-cumulus/evpn-extended-mobility (diff)
downloadfrr-2f5e937c49dec6b422e8f2ebede4bded44f70efd.tar.xz
frr-2f5e937c49dec6b422e8f2ebede4bded44f70efd.zip
pimd: create a new command "ip pim" configuring pim sm
A new command "ip pim" is created to configure pim sm on an interface, which replaces the existing commands "ip pim sm" and "ip pim ssm" and make "ip pim sm" and "ip pim ssm" as hidden commands. The command "ip multicast-routing" is removed since it is already enabled on FRR by default. Signed-off-by: Sarita Patra saritap@vmware.com
Diffstat (limited to '')
-rw-r--r--pimd/pim_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c
index 88be195be..a4aec710e 100644
--- a/pimd/pim_vty.c
+++ b/pimd/pim_vty.c
@@ -267,7 +267,7 @@ int pim_interface_config_write(struct vty *vty)
struct pim_interface *pim_ifp = ifp->info;
if (PIM_IF_TEST_PIM(pim_ifp->options)) {
- vty_out(vty, " ip pim sm\n");
+ vty_out(vty, " ip pim\n");
++writes;
}