Fix for nat node

Ref #686
This commit is contained in:
Julien Duponchelle 2016-09-22 15:58:31 +02:00
parent 5631e1bd86
commit 6837cc8e23
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -34,7 +34,7 @@ class Nat(Cloud):
if "virbr0" not in [interface["name"] for interface in gns3server.utils.interfaces.interfaces()]: if "virbr0" not in [interface["name"] for interface in gns3server.utils.interfaces.interfaces()]:
raise NodeError("virbr0 is missing. You need to install libvirt") raise NodeError("virbr0 is missing. You need to install libvirt")
self.ports = [ self.ports_mapping = [
{ {
"name": "virbr0", "name": "virbr0",
"type": "ethernet", "type": "ethernet",
@ -53,5 +53,5 @@ class Nat(Cloud):
"node_id": self.id, "node_id": self.id,
"project_id": self.project.id, "project_id": self.project.id,
"status": "started", "status": "started",
"ports_mapping": self.ports "ports_mapping": self.ports_mapping
} }