Skip to main content

VPN List

Configure VPN lists.

Diagram

Classes

policy_objects (sdwan)

NameTypeConstraintMandatoryDefault Value
vpn_listsList[vpn_lists]No

vpn_lists (sdwan.policy_objects)

NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[A-Za-z0-9-_]{1,128}$Yes
vpn_idsListInteger[min: 0, max: 65530]No
vpn_id_rangesList[vpn_id_ranges]No

vpn_id_ranges (sdwan.policy_objects.vpn_lists)

NameTypeConstraintMandatoryDefault Value
fromIntegermin: 0, max: 65530Yes
toIntegermin: 0, max: 65530Yes

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