diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-19 17:47:23 -0700 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-19 17:47:23 -0700 | 
| commit | d5a5c8f05bc4637dcb113f8285f7db6cfb924b6c (patch) | |
| tree | bd1312d37bb30dfac8d41ee56ae88bce27889996 /zebra/redistribute.h | |
| parent | 04b02fda9ff706fd53fbd17fe1700f567b1575b0 (diff) | |
This patch adds support for a new BFD session down message from zebra to
protocols. BGP and OSPF are integrated to respond this BFD session down message
originated in Zebra via ptmd.
BGP and OSPF now have a bfd command, which tells OSPF/BGP to respond to the
BFD session down message.
OSPF:
interface <>
 ip ospf bfd
BGP:
router bgp <>
  neighbor <> bfd
Please note that these commands don't enable BFD as a protocol. BFD configuration
and paramter tuning are via BFD applicable UI.
Signed-off-by: Vipin Kumar <vipin@cumulusnetworks.com>
Reviewed-by: Shrijeet Mukherjee <shm@cumulusnetworks.com>
Diffstat (limited to 'zebra/redistribute.h')
| -rw-r--r-- | zebra/redistribute.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/redistribute.h b/zebra/redistribute.h index 9ed99bc594..8ed39fce28 100644 --- a/zebra/redistribute.h +++ b/zebra/redistribute.h @@ -45,7 +45,7 @@ extern void zebra_interface_address_add_update (struct interface *,  					 	struct connected *);  extern void zebra_interface_address_delete_update (struct interface *,  						   struct connected *c); - +extern void zebra_interface_bfd_update (struct interface *, struct prefix *);  extern int zebra_check_addr (struct prefix *);  #endif /* _ZEBRA_REDISTRIBUTE_H */  | 
