Files
ols-ucentral-schema/schema/interface.ipv6.port-forward.yml
2022-04-20 12:44:17 +02:00

42 lines
893 B
YAML

description:
This section describes an IPv6 port forwarding.
type: object
properties:
protocol:
description:
The layer 3 protocol to match.
type: string
enum:
- tcp
- udp
- any
default: any
external-port:
description:
The external port(s) to forward.
type:
- integer
- string
minimum: 0
maximum: 65535
format: uc-portrange
internal-address:
description:
The internal IP to forward to. The address will be masked and concatenated
with the effective interface subnet.
type: string
format: ipv6
example: '::1234:abcd'
internal-port:
description:
The internal port to forward to. Defaults to the external port if omitted.
type:
- integer
- string
minimum: 0
maximum: 65535
format: uc-portrange
required:
- external-port
- internal-address