diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-03-09 14:47:11 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-03-09 18:03:13 +0100 |
commit | c3039903aff9f2c3cb33f4fdd9e9634aa9f09997 (patch) | |
tree | a0fd54d9149bf21475b231ee529785b2c8853917 /data | |
parent | 25b64f32a22c5832eb1eefd1afdfad6efa46bbcb (diff) | |
download | vyos-1x-c3039903aff9f2c3cb33f4fdd9e9634aa9f09997.tar.gz vyos-1x-c3039903aff9f2c3cb33f4fdd9e9634aa9f09997.zip |
qos: T5018: Use configdep to fix interface mirror/redirect issue
This will check if mirror/redirect is present on a QoS interface and use `vyos.configdep` module to update the interface again after QoS is applied.
Diffstat (limited to 'data')
-rw-r--r-- | data/config-mode-dependencies.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/config-mode-dependencies.json b/data/config-mode-dependencies.json index 9e943ba2c..ccee359d1 100644 --- a/data/config-mode-dependencies.json +++ b/data/config-mode-dependencies.json @@ -8,5 +8,25 @@ "ipsec": ["vpn_ipsec"], "openconnect": ["vpn_openconnect"], "sstp": ["vpn_sstp"] + }, + "qos": { + "bonding": ["interfaces-bonding"], + "bridge": ["interfaces-bridge"], + "dummy": ["interfaces-dummy"], + "ethernet": ["interfaces-ethernet"], + "geneve": ["interfaces-geneve"], + "input": ["interfaces-input"], + "l2tpv3": ["interfaces-l2tpv3"], + "loopback": ["interfaces-loopback"], + "macsec": ["interfaces-macsec"], + "openvpn": ["interfaces-openvpn"], + "pppoe": ["interfaces-pppoe"], + "pseudo-ethernet": ["interfaces-pseudo-ethernet"], + "tunnel": ["interfaces-tunnel"], + "vti": ["interfaces-vti"], + "vxlan": ["interfaces-vxlan"], + "wireguard": ["interfaces-wireguard"], + "wireless": ["interfaces-wireless"], + "wwan": ["interfaces-wwan"] } } |