mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2025-10-28 16:52:20 +00:00
Remove the AP specific elements of the schema (configuration), and state (reporting) Remove the ucode files that are not used Regenerate the json and documentation files to reflect schema and state changes Signed-off-by: Mike Hansen <mike.hansen@netexperience.com>
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
description:
|
|
A device has certain global properties that are used to derive parts of
|
|
the final configuration that gets applied.
|
|
type: object
|
|
properties:
|
|
ipv4-network:
|
|
description:
|
|
Define the IPv4 range that is delegatable to the downstream interfaces
|
|
This is described as a CIDR block. (192.168.0.0/16, 172.16.128/17)
|
|
type: string
|
|
format: uc-cidr4
|
|
examples:
|
|
- 192.168.0.0/16
|
|
ipv6-network:
|
|
description:
|
|
Define the IPv6 range that is delegatable to the downstream interfaces
|
|
This is described as a CIDR block. (fdca:1234:4567::/48)
|
|
type: string
|
|
format: uc-cidr6
|
|
examples:
|
|
- fdca:1234:4567::/48
|
|
ipv4-blackhole:
|
|
description:
|
|
Define a list of non-interface specific BLACKHOLE (to-nowhere) routes.
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
prefix:
|
|
description:
|
|
Defines a BLACKHOLE route's prefix.
|
|
type: string
|
|
format: uc-cidr4
|
|
examples:
|
|
- 192.168.1.0/24
|
|
vrf:
|
|
description:
|
|
VRF id.
|
|
type: integer
|
|
ipv4-unreachable:
|
|
description:
|
|
Define a list of non-interface specific UNREACHABLE routes.
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
prefix:
|
|
description:
|
|
Defines a UNREACHABLE route's prefix.
|
|
type: string
|
|
format: uc-cidr4
|
|
examples:
|
|
- 192.168.1.0/24
|
|
vrf:
|
|
description:
|
|
VRF id.
|
|
type: integer
|