Network Hierarchy Site
Catalyst SD-WANDefine 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
Section titled “Diagram”Classes
Section titled “Classes”network_hierarchy (sdwan)
Section titled “network_hierarchy (sdwan)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| sites | List | [sites] | No |
sites (sdwan.network_hierarchy)
Section titled “sites (sdwan.network_hierarchy)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: ^[^&<>! "]{1,128}$ | Yes | |
| description | String | No | ||
| address | Class | [address] | No | |
| latitude | Number | No | ||
| location | String | No | ||
| longitude | Number | No | ||
| site_id | Integer | min: 1, max: 4294967295 | No |
address (sdwan.network_hierarchy.sites)
Section titled “address (sdwan.network_hierarchy.sites)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| city | String | No | ||
| country | String | No | ||
| state | String | No | ||
| street | String | No | ||
| zipcode | String | No |
Examples
Section titled “Examples”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.1278This 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.