diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-07-26 16:02:21 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-07-26 16:02:21 +0200 |
commit | 53dc1b16aa506f0351d34196821818ff6c9a33d1 (patch) | |
tree | b9372ef3331857136436bd3c27fd5a5ec9d345c7 /yang/frr-pim.yang | |
parent | Merge pull request #9166 from idryzhov/vtysh-enable (diff) | |
download | frr-53dc1b16aa506f0351d34196821818ff6c9a33d1.tar.xz frr-53dc1b16aa506f0351d34196821818ff6c9a33d1.zip |
pimd: Allow join prune intervals to be as small as 5 seconds
Allow the join-prune interval to be as small as 5 seconds instead
of limiting the value to 60.
This can and will come at a price of being able to converge less
mroutes.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'yang/frr-pim.yang')
-rw-r--r-- | yang/frr-pim.yang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yang/frr-pim.yang b/yang/frr-pim.yang index f73776c1a..e846ffa1f 100644 --- a/yang/frr-pim.yang +++ b/yang/frr-pim.yang @@ -529,7 +529,7 @@ module frr-pim { } leaf join-prune-interval { type uint16 { - range "60..600"; + range "5..600"; } default "60"; description |