IPv4 Prefix List
Configure IPv4 prefix lists.
Diagram
Classes
policy_object_profile (sdwan.feature_profiles)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
ipv4_prefix_lists | List | [ipv4_prefix_lists] | No |
ipv4_prefix_lists (sdwan.feature_profiles.policy_object_profile)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[^&<>! "]{1,128}$ | Yes | |
description | String | No | ||
entries | List | [entries] | Yes |
entries (sdwan.feature_profiles.policy_object_profile.ipv4_prefix_lists)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
prefix | IP | Yes | ||
le | Integer | min: 1 , max: 32 | No | |
ge | Integer | min: 1 , max: 32 | No |
Examples
Example-1: This example demonstrates how to configure an IPv4 prefix list that matches the "10.0.0.0/8" prefix (strict), all prefixes within the "172.16.0.0/12" range with a subnet mask length less than or equal to 30, and all prefixes within the "192.168.0.0/16" range with a subnet mask length greater than or equal to 24 and less than or equal to 28.
sdwan:
feature_profiles:
policy_object_profile:
ipv4_prefix_lists:
- name: ipv4_pl_private
entries:
- prefix: 10.0.0.0/8
- prefix: 172.16.0.0/12
le: 30
- prefix: 192.168.0.0/16
ge: 24
le: 28