From 8e8b9b980b549e3388782fbb315c5c26e9a67e37 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Thu, 26 Jun 2014 12:58:04 -0400 Subject: Add OvsBond object and impl for ifcfg format. Supports the configuration of OVS bond interfaces. Also adds the ability to configure extra OVS_OPTIONS for both bonds and bridges (useful for some modes of operation) --- os_net_config/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'os_net_config/__init__.py') diff --git a/os_net_config/__init__.py b/os_net_config/__init__.py index 066ebb5..e2232e4 100644 --- a/os_net_config/__init__.py +++ b/os_net_config/__init__.py @@ -29,8 +29,14 @@ class NetConfig(object): def addInterface(self, interface): raise NotImplemented("addInterface is not implemented.") + def addVlan(self, bridge): + raise NotImplemented("addVlan is not implemented.") + def addBridge(self, bridge): raise NotImplemented("addBridge is not implemented.") + def addBond(self, bridge): + raise NotImplemented("addBond is not implemented.") + def apply(self): raise NotImplemented("apply is not implemented.") -- cgit 1.2.3-korg