diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-08-14 17:33:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 17:33:55 +0100 |
commit | 4806d8755314f0ea3d21a1198e85b6d7ab0d0000 (patch) | |
tree | 1784725c73a0f47f833d6da0d754412e7e25fb0b /python | |
parent | e0ce3f0e5a979e678d20a77f37fb6626806c28a5 (diff) | |
parent | 2d953bedd0e416ead924f77ec612c997f950535a (diff) | |
download | vyos-1x-4806d8755314f0ea3d21a1198e85b6d7ab0d0000.tar.gz vyos-1x-4806d8755314f0ea3d21a1198e85b6d7ab0d0000.zip |
Merge pull request #3981 from nicolas-fort/T6646
T6646: conntrack: in ignore rules, if protocols=all, do not append it to the rule
Diffstat (limited to 'python')
-rwxr-xr-x[-rw-r--r--] | python/vyos/template.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py index aa99bed5a..be9f781a6 100644..100755 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -694,7 +694,8 @@ def conntrack_rule(rule_conf, rule_id, action, ipv6=False): else: for protocol, protocol_config in rule_conf['protocol'].items(): proto = protocol - output.append(f'meta l4proto {proto}') + if proto != 'all': + output.append(f'meta l4proto {proto}') tcp_flags = dict_search_args(rule_conf, 'tcp', 'flags') if tcp_flags and action != 'timeout': |