mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2026-01-27 02:21:39 +00:00
Declare dhcp-relay in interface.ipv4.dhcp.yml, aligns with client and allows setting per logical interface. - STP object typo #7 Fix spelling Additional: schema/ethernet.yml - make power limit an integer Signed-off-by: Mike Hansen <mike.hansen@netexperience.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
description:
|
|
This section describes the DHCP server configuration
|
|
type: object
|
|
properties:
|
|
lease-first:
|
|
description:
|
|
The last octet of the first IPv4 address in this DHCP pool.
|
|
type: integer
|
|
examples:
|
|
- 10
|
|
lease-count:
|
|
description:
|
|
The number of IPv4 addresses inside the DHCP pool.
|
|
type: integer
|
|
examples:
|
|
- 100
|
|
lease-time:
|
|
description:
|
|
How long the lease is valid before a RENEW must be issued.
|
|
type: string
|
|
format: uc-timeout
|
|
default: 6h
|
|
relay-server:
|
|
description:
|
|
Use host at this IPv4 address to forward packets between clients and servers on different subnets.
|
|
type: string
|
|
format: ipv4
|
|
example: 192.168.2.1
|
|
circuit-id-format:
|
|
description:
|
|
This option selects what info shall be contained within a relayed frame's circuit ID.
|
|
The string passed in has placeholders that are placed inside a bracket pair "{}".
|
|
Any text not contained within brackets will be included as freetext.
|
|
Valid placeholders are "Interface, VLAN-ID"
|
|
type: string
|
|
example:
|
|
- \{Interface\}:\{VLAN-ID\}}
|
|
|