Transport IPv6 Tracker Group Feature
Configure IPv6 Tracker Group.
Diagram
Classes
transport_profiles (sdwan.feature_profiles)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
ipv6_tracker_groups | List | [ipv6_tracker_groups] | No |
ipv6_tracker_groups (sdwan.feature_profiles.transport_profiles)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[^&<>! "]{1,128}$ | Yes | |
description | String | No | ||
tracker_boolean | Choice | and , or | No | |
tracker_name | String | Regex: ^[^<! ]{1,128}$ | No | |
tracker_name_variable | String | Regex: ^[./\[\]a-zA-Z0-9_-]{1,64}$ | No | |
trackers | List | String[Regex: ^[^<! ]{1,128}$ ] | Yes |
Examples
Example-1: This example demonstrates how to configure an IPv6 tracker group under the transport feature profile with two trackers assigned to a group and a boolean logic set to “and” (meaning both trackers needs to be up for the tracker group to be up).
sdwan: feature_profiles: transport_profiles: - name: basic_transport ipv6_tracker_groups: - name: tracker_group_feature tracker_name: tracker3 tracker_boolean: and trackers: - tracker1_feature - tracker2_feature ipv6_trackers: - name: tracker1_feature endpoint_ip: 2001:db8:1::1 tracker_name: tracker1 - name: tracker2_feature endpoint_ip: 2001:db8:1::2 tracker_name: tracker2
Example-2: This example demonstrates how to configure an IPv6 tracker group under the transport feature profile with two trackers assigned to a group and a boolean logic set to “or” (meaning either one of the trackers needs to be up for the tracker group to be up).
sdwan: feature_profiles: transport_profiles: - name: basic_transport ipv6_tracker_groups: - name: tracker_group_feature tracker_name: tracker3 tracker_boolean: and trackers: - tracker1_feature - tracker2_feature ipv6_trackers: - name: tracker1_feature endpoint_ip: 2001:db8:1::1 tracker_name: tracker1 - name: tracker2_feature endpoint_ip: 2001:db8:1::2 tracker_name: tracker2