summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorNicolas Fort <nicolasfort1988@gmail.com>2024-08-09 14:03:21 +0000
committerChristian Breunig <christian@breunig.cc>2024-08-11 14:50:44 +0200
commitef7e8cbcdf213d04e838c89711b2f2aeb182b311 (patch)
tree04941f289854c430c58dfd57c2739443e39cdad3 /python
parent44a50ed2915371f4e967cf49768e0dd827a48018 (diff)
downloadvyos-1x-ef7e8cbcdf213d04e838c89711b2f2aeb182b311.tar.gz
vyos-1x-ef7e8cbcdf213d04e838c89711b2f2aeb182b311.zip
T6643: firewall: fix ip address range parsing on firewall rules.mergify/bp/sagitta/pr-3964
(cherry picked from commit ff58f3e5f30d3775487a6a3b561863aa37d11d43)
Diffstat (limited to 'python')
-rwxr-xr-x[-rw-r--r--]python/vyos/firewall.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/python/vyos/firewall.py b/python/vyos/firewall.py
index d7b7b80a8..1ef42e9a3 100644..100755
--- a/python/vyos/firewall.py
+++ b/python/vyos/firewall.py
@@ -164,7 +164,19 @@ def parse_rule(rule_conf, hook, fw_name, rule_id, ip_name):
if address_mask:
operator = '!=' if exclude else '=='
operator = f'& {address_mask} {operator} '
- output.append(f'{ip_name} {prefix}addr {operator}{suffix}')
+
+ if suffix.find('-') != -1:
+ # Range
+ start, end = suffix.split('-')
+ if is_ipv4(start):
+ output.append(f'ip {prefix}addr {operator}{suffix}')
+ else:
+ output.append(f'ip6 {prefix}addr {operator}{suffix}')
+ else:
+ if is_ipv4(suffix):
+ output.append(f'ip {prefix}addr {operator}{suffix}')
+ else:
+ output.append(f'ip6 {prefix}addr {operator}{suffix}')
if 'fqdn' in side_conf:
fqdn = side_conf['fqdn']