diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-05 12:08:53 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-05 12:38:12 -0400 |
| commit | a7b2b1e29862f82d8a68bda2c72a460cd26aa5a8 (patch) | |
| tree | 7ac85eac576c6b06fbd4ce16ebf8d5e715ccde8e /pimd/pim_vty.c | |
| parent | 2830b0186384ff53ed33186276936739f2e079cb (diff) | |
pimd: Add the ability to never SPT switchover
Add the ability to allow pim to determine if we should
allow spt-switchover or not on the LHR.
Signed-off-by: Donald Sharp
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index f4bfcc5ce0..3d52dc9c41 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -182,6 +182,12 @@ int pim_global_config_write(struct vty *vty) ssm->plist_name, VTY_NEWLINE); ++writes; } + if (pimg->spt_switchover == PIM_SPT_INFINITY) + { + vty_out (vty, "ip pim spt-switchover infinity-and-beyond%s", + VTY_NEWLINE); + ++writes; + } if (qpim_ssmpingd_list) { struct listnode *node; |
