VPN List
Configure VPN lists.
Diagram
Classes
policy_objects (sdwan)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
vpn_lists | List | [vpn_lists] | No |
vpn_lists (sdwan.policy_objects)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[A-Za-z0-9-_]{1,128}$ | Yes | |
vpn_ids | List | Integer[min: 0 , max: 65530 ] | No | |
vpn_id_ranges | List | [vpn_id_ranges] | No |
vpn_id_ranges (sdwan.policy_objects.vpn_lists)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
from | Integer | min: 0 , max: 65530 | Yes | |
to | Integer | min: 0 , max: 65530 | Yes |
Examples
Example-1: This Example shows how to configure a VPN list with a single VPN id.
sdwan:
policy_objects:
vpn_lists:
- name: Corporate_VPN
vpn_ids:
- 10
Example-2: This Example shows how to configure a VPN list using a range of VPNs.
sdwan:
policy_objects:
- name: Corporate_VPNs
vpn_id_ranges:
- from: 10
to: 12
Example-3: This Example shows how to configure a VPN list using one VPN ID and a range of VPNs.
sdwan:
policy_objects:
- name: Corporate_VPNs
vpn_ids:
- 1
vpn_id_ranges:
- from: 10
to: 12