diff options
| author | anuradhak <anuradhak@cumulusnetworks.com> | 2017-03-21 10:12:30 -0700 |
|---|---|---|
| committer | anuradhak <anuradhak@cumulusnetworks.com> | 2017-03-23 09:48:04 -0700 |
| commit | d2772e7b65a9967f7698a86c6e70e79bbdae944d (patch) | |
| tree | a515b67d7019fdfff7651597a999557ba6c4c8d4 /pimd/pim_vty.c | |
| parent | 15a5dafe44ea3f64351858496c042e4037c3e750 (diff) | |
pimd: Remove interface type SSM.
Interface type has been replaced with the SSM range config. And SSM
groups can now co-exists with ASM groups. I have left the pim ssm
per-interface cli control hidden. It now enables pim-sm with a warning.
Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Ticket: CM-15344
Testing Done: pim-smoke
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index e6a9d1b9e3..f4bfcc5ce0 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -214,12 +214,8 @@ int pim_interface_config_write(struct vty *vty) if (ifp->info) { struct pim_interface *pim_ifp = ifp->info; - /* IF ip pim ssm */ if (PIM_IF_TEST_PIM(pim_ifp->options)) { - if (pim_ifp->itype == PIM_INTERFACE_SSM) - vty_out(vty, " ip pim ssm%s", VTY_NEWLINE); - else - vty_out(vty, " ip pim sm%s", VTY_NEWLINE); + vty_out(vty, " ip pim sm%s", VTY_NEWLINE); ++writes; } |
