From 206018136a10d00b275d85386c5744a555584151 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Mon, 18 Apr 2011 15:13:34 -0700 Subject: lacp: New "strict" lacp mode. When LACP negotiations are unsuccessful, OVS falls back to standard balance-slb bonding. In some cases, users may want to require successful LACP negotiations for any slaves to be enabled at all. This patch implements a new "strict" mode which disables all slaves when LACP negotiations are unsuccessful. --- lib/lacp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/lacp.h') diff --git a/lib/lacp.h b/lib/lacp.h index 2992bcfd7..ad8211efc 100644 --- a/lib/lacp.h +++ b/lib/lacp.h @@ -27,6 +27,7 @@ struct lacp_settings { uint16_t priority; bool active; bool fast; + bool strict; }; void lacp_init(void); -- cgit v1.2.1