2016-08-19 20:02:39 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-09-05 19:40:49 +03:00
|
|
|
import sys
|
2016-09-23 18:08:05 +03:00
|
|
|
import asyncio
|
2016-08-19 20:02:39 +03:00
|
|
|
from .cloud import Cloud
|
|
|
|
from ...error import NodeError
|
|
|
|
|
2016-08-30 19:27:04 +03:00
|
|
|
import gns3server.utils.interfaces
|
|
|
|
|
2016-08-19 20:02:39 +03:00
|
|
|
|
|
|
|
class Nat(Cloud):
|
|
|
|
"""
|
|
|
|
A portable and preconfigured node allowing topology to get a
|
|
|
|
nat access to the outside
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-04-27 16:26:58 +03:00
|
|
|
|
|
|
|
if sys.platform.startswith("linux"):
|
|
|
|
if "virbr0" not in [interface["name"] for interface in gns3server.utils.interfaces.interfaces()]:
|
|
|
|
raise NodeError("virbr0 is missing. You need to install libvirt")
|
|
|
|
interface = "virbr0"
|
|
|
|
else:
|
2017-09-11 09:02:26 +03:00
|
|
|
interfaces = list(filter(lambda x: 'vmnet8' in x.lower(),
|
|
|
|
[interface["name"] for interface in gns3server.utils.interfaces.interfaces()]))
|
|
|
|
if not len(interfaces):
|
2017-04-27 16:26:58 +03:00
|
|
|
raise NodeError("vmnet8 is missing. You need to install VMware or use the NAT node on GNS3 VM")
|
2017-09-11 09:02:26 +03:00
|
|
|
interface = interfaces[0] # take the first available interface containing the vmnet8 name
|
2016-08-30 19:27:04 +03:00
|
|
|
|
2016-09-22 18:46:32 +03:00
|
|
|
ports = [
|
2016-08-19 20:02:39 +03:00
|
|
|
{
|
2016-09-22 18:46:32 +03:00
|
|
|
"name": "nat0",
|
2016-11-04 18:32:16 +02:00
|
|
|
"type": "ethernet",
|
2017-04-27 16:26:58 +03:00
|
|
|
"interface": interface,
|
2016-09-05 12:43:20 +03:00
|
|
|
"port_number": 0
|
2016-08-19 20:02:39 +03:00
|
|
|
}
|
|
|
|
]
|
2016-09-22 18:46:32 +03:00
|
|
|
super().__init__(*args, ports=ports)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def ports_mapping(self):
|
|
|
|
return self._ports_mapping
|
|
|
|
|
|
|
|
@ports_mapping.setter
|
|
|
|
def ports_mapping(self, ports):
|
|
|
|
# It's not allowed to change it
|
|
|
|
pass
|
2016-08-19 20:02:39 +03:00
|
|
|
|
2016-08-29 19:31:33 +03:00
|
|
|
@classmethod
|
|
|
|
def is_supported(self):
|
2017-04-27 16:26:58 +03:00
|
|
|
return True
|
2016-08-29 19:31:33 +03:00
|
|
|
|
2016-08-19 20:02:39 +03:00
|
|
|
def __json__(self):
|
|
|
|
return {
|
|
|
|
"name": self.name,
|
|
|
|
"node_id": self.id,
|
|
|
|
"project_id": self.project.id,
|
|
|
|
"status": "started",
|
2016-09-22 16:58:31 +03:00
|
|
|
"ports_mapping": self.ports_mapping
|
2016-08-19 20:02:39 +03:00
|
|
|
}
|