HostNatServicePortForwardSpec

HostNatServicePortForwardSpec
HostNatServicePortForwardSpec

This data object type describes the Network Address Translation (NAT) port forwarding specification.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "type": "string",
    "name": "string",
    "hostPort": 0,
    "guestPort": 0,
    "guestIpAddress": "string"
}
string
type
Required

Either "tcp" or "udp".

string
name
Required

The user-defined name to identify the service being forwarded.

No white spaces are allowed in the string.

integer As int32 As int32
hostPort
Required

The port number on the host.

Network traffic sent to the host on this TCP/UDP port is forwarded to the guest at the specified IP address and port.

integer As int32 As int32
guestPort
Required

The port number for the guest.

Network traffic from the host is forwarded to this port.

string
guestIpAddress
Required

The IP address for the guest.

Network traffic from the host is forwarded to this IP address.