diff options
author | jorgp2 <jorgperez2@gmail.com> | 2024-02-25 16:19:47 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 16:19:47 -0600 |
commit | bae7c9e8a299e24c4e6e21045940a3a119649252 (patch) | |
tree | 643bc7bdce26a4181398049d135f6d2c2f449276 | |
parent | ccb40c027d61fc47d2c83ff8826c75576de2f330 (diff) | |
download | vyos-documentation-bae7c9e8a299e24c4e6e21045940a3a119649252.tar.gz vyos-documentation-bae7c9e8a299e24c4e6e21045940a3a119649252.zip |
Add additional step to ingress shaping
In order to set up ingress shaping using the example, you also need to create the ifb0 interface.
Otherwise by following just the commands given you will receive a "Requested redirect interface "ifb0" does not exist!" error.
At least to me it was not clear if these commands also created the IFB interface.
-rw-r--r-- | docs/configuration/trafficpolicy/index.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/configuration/trafficpolicy/index.rst b/docs/configuration/trafficpolicy/index.rst index 93f69f80..3463592f 100644 --- a/docs/configuration/trafficpolicy/index.rst +++ b/docs/configuration/trafficpolicy/index.rst @@ -1203,6 +1203,8 @@ That is how it is possible to do the so-called "ingress shaping". set qos interface ifb0 egress MY-INGRESS-SHAPING set interfaces ethernet eth0 redirect ifb0 + set interfaces input ifb0 + .. warning:: Do not configure IFB as the first step. First create everything else |