Bidirectional Forwarding Detection (BFD)
BFD provides a rapid failure detection mechanism for routing
protocols like BGP, EIGRP, IS-IS, and OSPF. It is more efficient and quicker
than traditional reduced timer methods, detecting failures in less than one
second.
- BFD
Use Cases:
- Works
independently of the media, encapsulation, or topology.
- Detects
failures in the forwarding path, including interfaces, data links, and
forwarding planes.
- Not
limited to routing protocols—also used for HSRP, static routes, and other
protocols.
- Advantages
of BFD:
- Detects
failures faster than reduced routing protocol timers.
- Is
lightweight, using the data plane for failure detection, making it less
CPU-intensive than timer-based detection methods.
- Can
be applied consistently across multiple protocols.
- BFD
Configuration for Various Protocols:
For BGP:
router bgp 100
neighbor 172.16.10.2
fall-over bfd
For EIGRP:
router eigrp 1
bfd all-interfaces
For OSPF:
router ospf 1
bfd all-interfaces [strict-mode]
For HSRP:
interface GigabitEthernet0/1
standby bfd
- Technical
Tip: BFD can be configured in strict-mode for OSPF, which ensures that
the OSPF session is only established after a BFD session is established.
Comments
Post a Comment