bfd: Implement Bidirectional Forwarding Detection.
authorEthan Jackson <ethan@nicira.com>
Fri, 8 Jun 2012 19:42:42 +0000 (12:42 -0700)
committerEthan Jackson <ethan@nicira.com>
Tue, 7 May 2013 23:31:14 +0000 (16:31 -0700)
commitccc096898c4618e8869a7696b40ca7f17e8b9560
tree43b79acea9358603ad168490b31104e5e7cfb225
parentfe7744e84b7af87b7da2b58e5bee4713d18fcce6
bfd: Implement Bidirectional Forwarding Detection.

Traditionally, Open vSwitch has used a variant of 802.1ag "CFM" for
interface liveness detection.  This has served us well until now,
but has several serious drawbacks which have steadily become more
inconvenient.  First, the 802.1ag standard does not implement
several useful features forcing us to (optionally) break
compatibility.  Second, 802.1.ag is not particularly popular
outside of carrier grade networking equipment.  Third, 802.1ag is
simply quite awkward.

In an effort to solve the aforementioned problems, this patch
implements BFD which is ubiquitous, well designed, straight
forward, and implements required features in a standard way.  The
initial cut of the protocol focuses on getting the basics of the
specification correct, leaving performance optimizations, and
advanced features as future work.  The protocol should be
considered experimental pending future testing.

Signed-off-by: Ethan Jackson <ethan@nicira.com>
13 files changed:
lib/automake.mk
lib/bfd.c [new file with mode: 0644]
lib/bfd.h [new file with mode: 0644]
lib/odp-util.c
lib/odp-util.h
lib/util.h
ofproto/ofproto-dpif.c
ofproto/ofproto-provider.h
ofproto/ofproto.c
ofproto/ofproto.h
vswitchd/bridge.c
vswitchd/vswitch.ovsschema
vswitchd/vswitch.xml