diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-06 15:48:42 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-21 20:26:18 -0500 |
| commit | ee1a0718068320dae2f9711bd0aa41ab0b9c3c2a (patch) | |
| tree | a95a8085c46e6587188786ea18155a164d4a741b /pimd/pim_vty.c | |
| parent | 8d90ffd05dd3bfb268e5d212d7f18c61eb3fa69a (diff) | |
pimd: Add ability to tweak join/prune send time
Add the ability to tweak how often we can
send the join prune message.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
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 3a7d056cb5..8815813ce1 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -162,6 +162,12 @@ int pim_global_config_write(struct vty *vty) qpim_register_suppress_time, VTY_NEWLINE); ++writes; } + if (qpim_t_periodic != PIM_DEFAULT_T_PERIODIC) + { + vty_out (vty, "ip pim join-prune-interval %d%s", + qpim_t_periodic, VTY_NEWLINE); + ++writes; + } if (qpim_keep_alive_time != PIM_KEEPALIVE_PERIOD) { vty_out (vty, "ip pim keep-alive-timer %d%s", |
