From 62bc734ad540cde0cf47b863db686b328d575d33 Mon Sep 17 00:00:00 2001 From: Dan Sneddon Date: Fri, 28 Aug 2015 00:22:27 -0700 Subject: Add support for Linux Bonding to os-net-config ifcfg This change adds support for Linux Bonding to the impl_ifcfg in os-net-config. This change adds support for configuring Linux Bonds using the Bonding module rather than Open vSwitch. Most of the options for Linux Bonds are the same as OVS, with the exception of bonding_options instead of ovs_options. Change-Id: If8c6de1554234277843de9fac58536dd5b0a941b --- etc/os-net-config/samples/linux_bond.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 etc/os-net-config/samples/linux_bond.yaml (limited to 'etc') diff --git a/etc/os-net-config/samples/linux_bond.yaml b/etc/os-net-config/samples/linux_bond.yaml new file mode 100644 index 0000000..566c747 --- /dev/null +++ b/etc/os-net-config/samples/linux_bond.yaml @@ -0,0 +1,13 @@ +network_config: + - + type: linux_bond + name: bond1 + use_dhcp: true + bonding_options: "mode=active-backup" + members: + - + type: interface + name: em1 + - + type: interface + name: em2 -- cgit 1.2.3-korg