diff options
author | fett0 <50275740+fett0@users.noreply.github.com> | 2022-05-31 01:46:07 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 06:46:07 +0200 |
commit | 0e32faf6db96262b0a6376b54be033b4b72477f2 (patch) | |
tree | fd1be7c11c2cd31330e46b65b8a20bb14a9cb6e3 /src/conf_mode/policy.py | |
parent | e771eab37de6841b4c3b9d98e8f974dacde34075 (diff) | |
download | vyos-1x-0e32faf6db96262b0a6376b54be033b4b72477f2.tar.gz vyos-1x-0e32faf6db96262b0a6376b54be033b4b72477f2.zip |
IPv6: T3976: add prefix-list and access-list option from ipv6 route-map
Diffstat (limited to 'src/conf_mode/policy.py')
-rwxr-xr-x | src/conf_mode/policy.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/conf_mode/policy.py b/src/conf_mode/policy.py index ef6008140..3008a20e0 100755 --- a/src/conf_mode/policy.py +++ b/src/conf_mode/policy.py @@ -150,6 +150,16 @@ def verify(policy): tmp = dict_search('match.ipv6.address.prefix_list', rule_config) if tmp and tmp not in policy.get('prefix_list6', []): raise ConfigError(f'prefix-list6 {tmp} does not exist!') + + # Specified access_list6 in nexthop must exist + tmp = dict_search('match.ipv6.nexthop.access_list', rule_config) + if tmp and tmp not in policy.get('access_list6', []): + raise ConfigError(f'access_list6 {tmp} does not exist!') + + # Specified prefix-list6 in nexthop must exist + tmp = dict_search('match.ipv6.nexthop.prefix_list', rule_config) + if tmp and tmp not in policy.get('prefix_list6', []): + raise ConfigError(f'prefix-list6 {tmp} does not exist!') # When routing protocols are active some use prefix-lists, route-maps etc. # to apply the systems routing policy to the learned or redistributed routes. |