diff --git a/cloudvirt/driver.py b/cloudvirt/driver.py index ba1ebf8..6374e52 100644 --- a/cloudvirt/driver.py +++ b/cloudvirt/driver.py @@ -86,6 +86,7 @@ def _nuke_net_entries(self): network_type = netxml_root.find("forward") if "mode" not in network_type.attrib or network_type.attrib["mode"] not in [ "route", + "open", "nat", ]: return @@ -172,6 +173,7 @@ def _network_precheck(self): if "mode" not in network_type.attrib or network_type.attrib["mode"] not in [ "route", + "open", "nat", ]: self.logger.info("prechecks are not used for the route and nat modes")