aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'os_net_config/__init__.py')
-rw-r--r--os_net_config/__init__.py6
1 files changed, 6 insertions, 0 deletions
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.")