diff options
author | GalaxyGorilla <sascha@netdef.org> | 2020-07-10 13:26:55 +0200 |
---|---|---|
committer | GalaxyGorilla <sascha@netdef.org> | 2020-07-10 13:28:43 +0200 |
commit | 4affdba79e306d3eab88af0ed63a7ca38ceb77f9 (patch) | |
tree | 4fc8adba02c7c0a9fa4eea1c48eecd1fa527e867 /pimd/pim_bfd.c | |
parent | Merge pull request #6385 from GalaxyGorilla/bfd_igp_topotest (diff) | |
download | frr-4affdba79e306d3eab88af0ed63a7ca38ceb77f9.tar.xz frr-4affdba79e306d3eab88af0ed63a7ca38ceb77f9.zip |
*: add BFD profile support for IS-IS
BFD profiles can now be used on the interface level like this:
interface eth1
ip router isis 1
isis bfd
isis bfd profile default
Here the 'default' profile needs to be specified as usual in the
bfdd configuration.
Signed-off-by: GalaxyGorilla <sascha@netdef.org>
Diffstat (limited to 'pimd/pim_bfd.c')
-rw-r--r-- | pimd/pim_bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_bfd.c b/pimd/pim_bfd.c index 0df8ea692..146b53fa8 100644 --- a/pimd/pim_bfd.c +++ b/pimd/pim_bfd.c @@ -194,7 +194,7 @@ void pim_bfd_if_param_set(struct interface *ifp, uint32_t min_rx, if (!pim_ifp) return; - bfd_set_param(&(pim_ifp->bfd_info), min_rx, min_tx, detect_mult, + bfd_set_param(&(pim_ifp->bfd_info), min_rx, min_tx, detect_mult, NULL, defaults, &command); if (pim_ifp->bfd_info) { |