diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-02 17:35:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-02 17:35:34 +0100 |
commit | 2d8a7bda382fbd95b4bee7c6e966dfc072b52bfd (patch) | |
tree | 9f1899cd01d0b4729b9dc7eeedb7a3065159473b /python | |
parent | 38a46e1bffd209ae3b91872d4dfb423aff87c10c (diff) | |
parent | d9cc48fe8c6bfce2a82de6ce71d6328036aacd16 (diff) | |
download | vyos-1x-2d8a7bda382fbd95b4bee7c6e966dfc072b52bfd.tar.gz vyos-1x-2d8a7bda382fbd95b4bee7c6e966dfc072b52bfd.zip |
Merge pull request #2930 from vyos/mergify/bp/sagitta/pr-2748
qos: T5848: Add triple-isolate option to CAKE policy config (backport #2748)
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/qos/cake.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/vyos/qos/cake.py b/python/vyos/qos/cake.py index a89b1de1e..1ee7d0fc3 100644 --- a/python/vyos/qos/cake.py +++ b/python/vyos/qos/cake.py @@ -38,6 +38,8 @@ class CAKE(QoSBase): tmp += f' dual-dsthost' if 'dual_src_host' in config['flow_isolation']: tmp += f' dual-srchost' + if 'triple_isolate' in config['flow_isolation']: + tmp += f' triple-isolate' if 'flow' in config['flow_isolation']: tmp += f' flows' if 'host' in config['flow_isolation']: |