diff options
author | Roman Khramshin <HollyGurza@users.noreply.github.com> | 2024-05-31 16:04:42 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 12:04:42 +0300 |
commit | 5563bcd9eaef5d5d8a020b92d43a86028e3c26c1 (patch) | |
tree | f580a6cfd3afc0f45de784f646d76fb96867241b /interface-definitions/include/qos/class-match-ipv6.xml.i | |
parent | a9fb0ac0ca5644db7bf9d75951b3cd97c3598c60 (diff) | |
download | vyos-1x-5563bcd9eaef5d5d8a020b92d43a86028e3c26c1.tar.gz vyos-1x-5563bcd9eaef5d5d8a020b92d43a86028e3c26c1.zip |
T5307: QoS - traffic-class-map services (#3492)
added new syntax to work with class match filters in QoS policy
Diffstat (limited to 'interface-definitions/include/qos/class-match-ipv6.xml.i')
-rw-r--r-- | interface-definitions/include/qos/class-match-ipv6.xml.i | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/interface-definitions/include/qos/class-match-ipv6.xml.i b/interface-definitions/include/qos/class-match-ipv6.xml.i new file mode 100644 index 000000000..ed7aceff9 --- /dev/null +++ b/interface-definitions/include/qos/class-match-ipv6.xml.i @@ -0,0 +1,31 @@ +<!-- include start from qos/class-match-ipv6.xml.i --> +<node name="ipv6"> + <properties> + <help>Match IPv6 protocol header</help> + </properties> + <children> + <node name="destination"> + <properties> + <help>Match on destination port or address</help> + </properties> + <children> + #include <include/qos/class-match-ipv6-address.xml.i> + #include <include/port-number.xml.i> + </children> + </node> + #include <include/qos/match-dscp.xml.i> + #include <include/qos/max-length.xml.i> + #include <include/ip-protocol.xml.i> + <node name="source"> + <properties> + <help>Match on source port or address</help> + </properties> + <children> + #include <include/qos/class-match-ipv6-address.xml.i> + #include <include/port-number.xml.i> + </children> + </node> + #include <include/qos/tcp-flags.xml.i> + </children> +</node> +<!-- include end --> |