diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-06-16 21:20:39 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2023-01-01 08:14:31 +0100 |
commit | f89a6806d90fd11e0e1e5e922ef95332ad8bfeb8 (patch) | |
tree | 3b99f40da30a23df0f9677974236127de38b44a5 /interface-definitions/include/qos/limiter-actions.xml.i | |
parent | 38e9bcfd496c4203ab6b2551af1f9627a4119191 (diff) | |
download | vyos-1x-f89a6806d90fd11e0e1e5e922ef95332ad8bfeb8.tar.gz vyos-1x-f89a6806d90fd11e0e1e5e922ef95332ad8bfeb8.zip |
qos: T4284: first implementation introducing a new vyos.qos module
Diffstat (limited to 'interface-definitions/include/qos/limiter-actions.xml.i')
-rw-r--r-- | interface-definitions/include/qos/limiter-actions.xml.i | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/interface-definitions/include/qos/limiter-actions.xml.i b/interface-definitions/include/qos/limiter-actions.xml.i deleted file mode 100644 index a993423aa..000000000 --- a/interface-definitions/include/qos/limiter-actions.xml.i +++ /dev/null @@ -1,66 +0,0 @@ -<!-- include start from qos/limiter-actions.xml.i --> -<leafNode name="exceed-action"> - <properties> - <help>Default action for packets exceeding the limiter (default: drop)</help> - <completionHelp> - <list>continue drop ok reclassify pipe</list> - </completionHelp> - <valueHelp> - <format>continue</format> - <description>Don't do anything, just continue with the next action in line</description> - </valueHelp> - <valueHelp> - <format>drop</format> - <description>Drop the packet immediately</description> - </valueHelp> - <valueHelp> - <format>ok</format> - <description>Accept the packet</description> - </valueHelp> - <valueHelp> - <format>reclassify</format> - <description>Treat the packet as non-matching to the filter this action is attached to and continue with the next filter in line (if any)</description> - </valueHelp> - <valueHelp> - <format>pipe</format> - <description>Pass the packet to the next action in line</description> - </valueHelp> - <constraint> - <regex>(continue|drop|ok|reclassify|pipe)</regex> - </constraint> - </properties> - <defaultValue>drop</defaultValue> -</leafNode> -<leafNode name="notexceed-action"> - <properties> - <help>Default action for packets not exceeding the limiter (default: ok)</help> - <completionHelp> - <list>continue drop ok reclassify pipe</list> - </completionHelp> - <valueHelp> - <format>continue</format> - <description>Don't do anything, just continue with the next action in line</description> - </valueHelp> - <valueHelp> - <format>drop</format> - <description>Drop the packet immediately</description> - </valueHelp> - <valueHelp> - <format>ok</format> - <description>Accept the packet</description> - </valueHelp> - <valueHelp> - <format>reclassify</format> - <description>Treat the packet as non-matching to the filter this action is attached to and continue with the next filter in line (if any)</description> - </valueHelp> - <valueHelp> - <format>pipe</format> - <description>Pass the packet to the next action in line</description> - </valueHelp> - <constraint> - <regex>(continue|drop|ok|reclassify|pipe)</regex> - </constraint> - </properties> - <defaultValue>ok</defaultValue> -</leafNode> -<!-- include end --> |