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
|
2018-01-17 08:01:44 +02:00
|
|
|
|
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
|
2018-03-15 15:47:42 +02:00
|
|
|
from gns3server.config import Config
|
2016-08-30 19:27:04 +03:00
|
|
|
|
2018-03-15 12:20:40 +02:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2016-08-19 20:02:39 +03:00
|
|
|
|
|
|
|
class Nat(Cloud):
|
|
|
|
"""
|
2018-03-15 09:17:39 +02:00
|
|
|
A portable and pre-configured node allowing topologies to get a
|
|
|
|
NAT access.
|
2016-08-19 20:02:39 +03:00
|
|
|
"""
|
|
|
|
|
2018-03-15 12:20:40 +02:00
|
|
|
def __init__(self, name, node_id, project, manager, ports=None):
|
2017-04-27 16:26:58 +03:00
|
|
|
|
2021-08-24 14:10:06 +03:00
|
|
|
allowed_interfaces = Config.instance().get_section_config("Server").get("allowed_interfaces", None)
|
|
|
|
if allowed_interfaces:
|
|
|
|
allowed_interfaces = allowed_interfaces.split(',')
|
2017-04-27 16:26:58 +03:00
|
|
|
if sys.platform.startswith("linux"):
|
2018-03-26 10:23:01 +03:00
|
|
|
nat_interface = Config.instance().get_section_config("Server").get("default_nat_interface", "virbr0")
|
2021-08-24 14:10:06 +03:00
|
|
|
if allowed_interfaces and nat_interface not in allowed_interfaces:
|
|
|
|
raise NodeError("NAT interface {} is not allowed be used on this server. "
|
|
|
|
"Please check the server configuration file.".format(nat_interface))
|
2018-03-15 12:20:40 +02:00
|
|
|
if nat_interface not in [interface["name"] for interface in gns3server.utils.interfaces.interfaces()]:
|
|
|
|
raise NodeError("NAT interface {} is missing, please install libvirt".format(nat_interface))
|
|
|
|
interface = nat_interface
|
2017-04-27 16:26:58 +03:00
|
|
|
else:
|
2018-03-26 10:23:01 +03:00
|
|
|
nat_interface = Config.instance().get_section_config("Server").get("default_nat_interface", "vmnet8")
|
2021-08-24 14:10:06 +03:00
|
|
|
if allowed_interfaces and nat_interface not in allowed_interfaces:
|
|
|
|
raise NodeError("NAT interface {} is not allowed be used on this server. "
|
|
|
|
"Please check the server configuration file.".format(nat_interface))
|
2018-03-15 12:20:40 +02:00
|
|
|
interfaces = list(filter(lambda x: nat_interface in x.lower(),
|
2017-09-11 09:02:26 +03:00
|
|
|
[interface["name"] for interface in gns3server.utils.interfaces.interfaces()]))
|
|
|
|
if not len(interfaces):
|
2018-03-15 12:20:40 +02:00
|
|
|
raise NodeError("NAT interface {} is missing. You need to install VMware or use the NAT node on GNS3 VM".format(nat_interface))
|
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
|
|
|
|
2018-03-15 12:20:40 +02:00
|
|
|
log.info("NAT node '{}' configured to use NAT interface '{}'".format(name, interface))
|
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
|
|
|
}
|
|
|
|
]
|
2018-03-15 12:20:40 +02:00
|
|
|
super().__init__(name, node_id, project, manager, ports=ports)
|
2016-09-22 18:46:32 +03:00
|
|
|
|
|
|
|
@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
|
|
|
}
|