diff options
author | Nicolas Fort <nicolasfort1988@gmail.com> | 2024-03-05 13:20:44 +0000 |
---|---|---|
committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2024-03-05 13:41:07 +0000 |
commit | 3c0634e572ffdecaf24a9dac16678427f22761ab (patch) | |
tree | 6d1b3cb36cfcf2930b85e80563d8d3fc74bf13d1 /src/conf_mode/firewall.py | |
parent | 450bb16795305e32e46b21da4bb5913843d9d871 (diff) | |
download | vyos-1x-3c0634e572ffdecaf24a9dac16678427f22761ab.tar.gz vyos-1x-3c0634e572ffdecaf24a9dac16678427f22761ab.zip |
T6075: firewall and NAT: check if interface-group exists when using them in firewall|nat rules.
Diffstat (limited to 'src/conf_mode/firewall.py')
-rwxr-xr-x | src/conf_mode/firewall.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/conf_mode/firewall.py b/src/conf_mode/firewall.py index acb7dfa41..3c27655b0 100755 --- a/src/conf_mode/firewall.py +++ b/src/conf_mode/firewall.py @@ -282,6 +282,15 @@ def verify_rule(firewall, rule_conf, ipv6): if direction in rule_conf: if 'name' in rule_conf[direction] and 'group' in rule_conf[direction]: raise ConfigError(f'Cannot specify both interface group and interface name for {direction}') + if 'group' in rule_conf[direction]: + group_name = rule_conf[direction]['group'] + if group_name[0] == '!': + group_name = group_name[1:] + group_obj = dict_search_args(firewall, 'group', 'interface_group', group_name) + if group_obj is None: + raise ConfigError(f'Invalid interface group "{group_name}" on firewall rule') + if not group_obj: + Warning(f'interface-group "{group_name}" has no members!') def verify_nested_group(group_name, group, groups, seen): if 'include' not in group: |