Files
wlan-ucentral-schema/schema/interface.tunnel.gre.yml
Henry Haller 9710867e1a make the MTU configurable on GRE tunnels
Signed-off-by: Henry Haller <hbh@rgnets.com>
2025-05-19 06:04:41 +02:00

36 lines
946 B
YAML

description:
This Object defines the properties of a GRE 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: 68
maximum: 1500
default: 1280
proto:
description:
This field must be set to gre.
type: string
const: gre
peer-address:
description:
This is the IP address of the remote host, that the GRE tunnel shall be
established with.
type: string
format: ipv4
example: '192.168.100.1'
dhcp-healthcheck:
description:
Healthcheck will probe if the remote peer replies to DHCP discovery without sending
an ACK.
type: boolean
default: false
dont-fragment:
description:
Set “Don't Fragment” flag on encapsulated packets.
type: boolean
default: false