mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2025-10-29 09:12:20 +00:00
42 lines
893 B
YAML
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
|