mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2026-01-27 10:21:47 +00:00
25 lines
576 B
YAML
25 lines
576 B
YAML
description:
|
|
This Object defines the properties of a vxlan tunnel.
|
|
type: object
|
|
properties:
|
|
proto:
|
|
description:
|
|
This field must be set to vxlan.
|
|
type: string
|
|
const: vxlan
|
|
peer-address:
|
|
description:
|
|
This is the IP address of the remote host, that the VXLAN tunnel shall be
|
|
established with.
|
|
type: string
|
|
format: ipv4
|
|
example: '192.168.100.1'
|
|
peer-port:
|
|
description:
|
|
The network port that shall be used to establish the VXLAN tunnel.
|
|
type: integer
|
|
maximum: 65535
|
|
minimum: 1
|
|
examples:
|
|
- 4789
|