Fix for nat node

Ref #686
pull/712/head
Julien Duponchelle 8 years ago
parent 5631e1bd86
commit 6837cc8e23
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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
} }

Loading…
Cancel
Save