diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-02 13:10:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-02 13:10:21 +0100 |
commit | 84b17f0e666b7fb48e2e9cde12ce2e84b59dd5b2 (patch) | |
tree | 9252515ae240a03a3eeb696b6736a86114835519 /python | |
parent | eb41a9a96f5284d49156df9120316f46a6ad2f97 (diff) | |
parent | 762be96f45bb1d9705e45ff554ad483c9d4e10ff (diff) | |
download | vyos-1x-84b17f0e666b7fb48e2e9cde12ce2e84b59dd5b2.tar.gz vyos-1x-84b17f0e666b7fb48e2e9cde12ce2e84b59dd5b2.zip |
Merge pull request #2748 from MattKobayashi/t5848
qos: T5848: Add triple-isolate option to CAKE policy config
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']: |