Files
ols-ucentral-schema/schema/interface.tunnel.gre.yml
John Crispin 4278dfb73a gre: add dont fragment flag
Signed-off-by: John Crispin <john@phrozen.org>
2022-12-20 10:48:58 +01:00

28 lines
696 B
YAML

description:
This Object defines the properties of a GRE tunnel.
type: object
properties:
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