mirror of
https://github.com/Telecominfraproject/wlan-ucentral-schema.git
synced 2026-01-27 10:23:38 +00:00
31 lines
830 B
YAML
31 lines
830 B
YAML
description:
|
|
This Object defines the properties of a GREv6 tunnel.
|
|
type: object
|
|
properties:
|
|
mtu:
|
|
description:
|
|
The maximum transmission unit (MTU) size for the GRE tunnel interface.
|
|
The default value is 1280 bytes to reflect OpenWRT GRE Package Defaults.
|
|
type: integer
|
|
minimum: 1280
|
|
maximum: 1500
|
|
default: 1280
|
|
proto:
|
|
description:
|
|
This field must be set to gre6.
|
|
type: string
|
|
const: gre6
|
|
peer-address:
|
|
description:
|
|
This is the IPv6 address of the remote host, that the GRE tunnel shall be
|
|
established with.
|
|
type: string
|
|
format: ipv6
|
|
example: '2405:200:802:600:61::1'
|
|
dhcp-healthcheck:
|
|
description:
|
|
Healthcheck will probe if the remote peer replies to DHCP discovery without sending
|
|
an ACK.
|
|
type: boolean
|
|
default: false
|