Skip to content

Network Hierarchy Site

Define sites in the SD-WAN network hierarchy. Sites can be defined at the top level (parented to Global) or nested under any group/region.

Diagram
NameTypeConstraintMandatoryDefault Value
sitesList[sites]No

NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[^&<>! "]{1,128}$Yes
descriptionStringNo
addressClass[address]No
latitudeNumberNo
locationStringNo
longitudeNumberNo
site_idIntegermin: 1, max: 4294967295No

NameTypeConstraintMandatoryDefault Value
cityStringNo
countryStringNo
stateStringNo
streetStringNo
zipcodeStringNo

Example-1: Top-level site with location (manager_version >= 20.18)

sdwan:
network_hierarchy:
sites:
- name: London-Site
site_id: 100
location: London
latitude: 51.5074
longitude: -0.1278

This example configures a top-level site with GPS-based location, valid when manager_version is 20.18 or greater.

Example-2: Site with address (manager_version < 20.18)

sdwan:
network_hierarchy:
sites:
- name: Bangalore-Site
site_id: 122
address:
street: 12th Main Street
city: Bangalore
state: Karnataka
country: India
zipcode: "560001"

This example configures a site with a physical address, valid when manager_version is earlier than 20.18.

Note: A site’s address and location are mutually exclusive. address is only supported when manager_version is < 20.18 with its sub-fields street, city, state, country, zipcode. The location is only supported when manager_version is >= 20.18, this requires both latitude and longitude to also be set.