TLOC List
A TLOC list contains a list of SD-WAN TLOCs, where each TLOC is identified by the color, encapsulation, and system-ip address.
Diagram
Classes
policy_objects (sdwan)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
tloc_lists | List | [tloc_lists] | No |
tloc_lists (sdwan.policy_objects)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[A-Za-z0-9-_]{1,128}$ | Yes | |
tlocs | List | [tlocs] | Yes |
tlocs (sdwan.policy_objects.tloc_lists)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
color | Choice | default , mpls , metro-ethernet , biz-internet , public-internet , lte , 3g , red , green , blue , gold , silver , bronze , custom1 , custom2 , custom3 , private1 , private2 , private3 , private4 , private5 , private6 | Yes | |
encapsulation | Choice | ipsec , gre | Yes | |
tloc_ip | IP | Yes | ||
preference | Integer | min: 0 , max: 4294967295 | No |
Examples
Example-1: This Example shows how to configure a TLOC List without configuring any precedence.
sdwan:
policy_objects:
tloc_lists:
- name: DC_MPLS_No_preference
tlocs:
- color: mpls
encapsulation: ipsec
tloc_ip: 10.0.0.1
Example-2: This Example shows how to configure a TLOC List with preference configured.
tloc_lists:
- name: DC_MPLS_with_Preference
tlocs:
- color: mpls
encapsulation: ipsec
tloc_ip: 10.0.0.1
preference: 100
Example-3: This Example shows how to configure a TLOC List including an entry with preference and the second without preference.
tloc_lists:
- name: DC_MPLS
tlocs:
- color: mpls
encapsulation: ipsec
tloc_ip: 10.0.0.1
preference: 100
- color: mpls
encapsulation: ipsec
tloc_ip: 10.0.0.2