diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-06-12 07:59:11 -0700 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-06-12 07:59:11 -0700 |
| commit | c43ed2e48af8c787a1ebc4b648f844c44032db35 (patch) | |
| tree | 24e3abff6f724033ab16418961da91ff1ddd6aee /zebra/interface.c | |
| parent | f1aa5d8ac823969694430feec02594c6851e596a (diff) | |
This patch changes BGP from only listening mode for BFD status updates to interactive mode of dynamically registering/deregistering BFD enabled peers with PTM/BFD through zebra. Peer is registered with BFD when it goes into established state and de-registers when it goes out of establish state.
This patch also adds BFD multihop support for BGP. Whether a peer is multi-hop or single hop is determined internally. All IGP peers are considered as multi-hop peers. EBGP peers are considered as single hop unless configured as multi-hop.
BGP BFD command enhancement to configure BFD parameters (detect multiplier, min rx and min tx).
router bgp <as-number>
neighbor <name/ip-address> bfd <detect mult> <min rx> <min tx>
Signed-off-by: Radhika Mahankali <radhika@cumulusnetworks.com>
Reviewed-by: Dinesh G Dutt <ddutt@cumulusnetworks.com>
Reviewed-by: Vipin Kumar <vipin@cumulusnetworks.com>
Reviewed-by: Kanna Rajagopal <kanna@cumulusnetworks.com>
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index 2f8de0b03d..cd9c21a61c 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -684,22 +684,6 @@ if_refresh (struct interface *ifp) if_get_flags (ifp); } -/* BFD session goes down, send message to the protocols. */ -void -if_bfd_session_down (struct interface *ifp, struct prefix *p) -{ - if (IS_ZEBRA_DEBUG_EVENT) - { - char buf[INET6_ADDRSTRLEN]; - - zlog_debug ("MESSAGE: ZEBRA_INTERFACE_BFD_DEST_DOWN %s/%d on %s", - inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN), - p->prefixlen, ifp->name); - } - - zebra_interface_bfd_update (ifp, p); -} - /* Output prefix string to vty. */ static int |
