mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-14 04:19:00 +00:00
123 lines
2.6 KiB
Python
123 lines
2.6 KiB
Python
#
|
|
# Copyright (C) 2020 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/>.
|
|
|
|
from pydantic import BaseModel, Field
|
|
from typing import Optional, Union, List
|
|
from enum import Enum
|
|
from uuid import UUID
|
|
|
|
from ..common import NodeStatus
|
|
|
|
|
|
class HostInterfaceType(Enum):
|
|
|
|
ethernet = "ethernet"
|
|
tap = "tap"
|
|
|
|
|
|
class HostInterface(BaseModel):
|
|
"""
|
|
Interface on this host.
|
|
"""
|
|
|
|
name: str = Field(..., description="Interface name")
|
|
type: HostInterfaceType = Field(..., description="Interface type")
|
|
special: bool = Field(..., description="Whether the interface is non standard")
|
|
|
|
|
|
class EthernetType(Enum):
|
|
ethernet = "ethernet"
|
|
|
|
|
|
class EthernetPort(BaseModel):
|
|
"""
|
|
Ethernet port properties.
|
|
"""
|
|
|
|
name: str
|
|
port_number: int
|
|
type: EthernetType
|
|
interface: str
|
|
|
|
|
|
class TAPType(Enum):
|
|
tap = "tap"
|
|
|
|
|
|
class TAPPort(BaseModel):
|
|
"""
|
|
TAP port properties.
|
|
"""
|
|
|
|
name: str
|
|
port_number: int
|
|
type: TAPType
|
|
interface: str
|
|
|
|
|
|
class UDPType(Enum):
|
|
udp = "udp"
|
|
|
|
|
|
class UDPPort(BaseModel):
|
|
"""
|
|
UDP tunnel port properties.
|
|
"""
|
|
|
|
name: str
|
|
port_number: int
|
|
type: UDPType
|
|
lport: int = Field(..., gt=0, le=65535, description="Local port")
|
|
rhost: str = Field(..., description="Remote host")
|
|
rport: int = Field(..., gt=0, le=65535, description="Remote port")
|
|
|
|
|
|
class NATBase(BaseModel):
|
|
"""
|
|
Common NAT node properties.
|
|
"""
|
|
|
|
name: str
|
|
node_id: Optional[UUID] = None
|
|
usage: Optional[str] = None
|
|
ports_mapping: Optional[List[Union[EthernetPort, TAPPort, UDPPort]]] = Field(
|
|
None, description="List of port mappings"
|
|
)
|
|
|
|
|
|
class NATCreate(NATBase):
|
|
"""
|
|
Properties to create a NAT node.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class NATUpdate(NATBase):
|
|
"""
|
|
Properties to update a NAT node.
|
|
"""
|
|
|
|
name: Optional[str] = None
|
|
|
|
|
|
class NAT(NATBase):
|
|
|
|
project_id: UUID
|
|
node_id: UUID
|
|
ports_mapping: List[Union[EthernetPort, TAPPort, UDPPort]]
|
|
status: NodeStatus = Field(..., description="NAT node status (read only)")
|