Skip to content

IP SLA Track List

Location in GUI: Tenant Template » Tenant Policies » IPSLA Track List

Diagram
NameTypeConstraintMandatoryDefault Value
ip_sla_track_listsList[ip_sla_track_lists]No

ip_sla_track_lists (ndo.tenant_templates.tenant_policies)

Section titled “ip_sla_track_lists (ndo.tenant_templates.tenant_policies)”
NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
descriptionStringRegex: ^[a-zA-Z0-9\\!#$%()*,-./:;@ _{|}~?&+]{1,128}$No
typeChoicepercentage, weightNopercentage
percentage_upIntegermin: 0, max: 100No1
percentage_downIntegermin: 0, max: 100No0
weight_upIntegermin: 0, max: 65535No1
weight_downIntegermin: 0, max: 65535No0
membersList[members]No

members (ndo.tenant_templates.tenant_policies.ip_sla_track_lists)

Section titled “members (ndo.tenant_templates.tenant_policies.ip_sla_track_lists)”
NameTypeConstraintMandatoryDefault Value
destination_ipIPYes
ip_sla_policyStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
scope_typeChoicebd, l3outYes
schemaStringRegex: ^[a-zA-Z0-9\s+_.:-]{1,64}$Yes
templateStringYes
bridge_domainStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$No
l3outStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$No

Example-1: The example below shows a tenant policy template called TP1 that is created under the tenant NDO1 and the site APIC1. The IP SLA track list TL1 is of type percentage with thresholds of 50% up and 20% down. It has two members targeting different destinations with BD and L3Out scopes.

ndo:
tenant_templates:
tenant_policies:
- name: TP1
tenant: NDO1
sites:
- APIC1
ip_sla_track_lists:
- name: TL1
description: Track List 1
type: percentage
percentage_up: 50
percentage_down: 20
members:
- destination_ip: 10.0.0.1
ip_sla_policy: HTTP
scope_type: bd
schema: Schema1
template: Template1
bridge_domain: BD1
- destination_ip: 10.0.0.2
ip_sla_policy: ICMP
scope_type: l3out
schema: Schema1
template: Template1
l3out: L3OUT1

Example-2: The example below shows a weight-based IP SLA track list TL2 with custom weight thresholds.

ndo:
tenant_templates:
tenant_policies:
- name: TP1
tenant: NDO1
sites:
- APIC1
ip_sla_track_lists:
- name: TL2
type: weight
weight_up: 100
weight_down: 50
members:
- destination_ip: 10.0.0.1
ip_sla_policy: ICMP
scope_type: bd
schema: Schema1
template: Template1
bridge_domain: BD1