diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-01 08:19:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 08:19:09 +0100 |
commit | 12957f9f1aa4ab35c460c03dfb3e213639b25a71 (patch) | |
tree | 1996a41fe650a80339c6fe0ffba62f7ca200aaf4 /interface-definitions | |
parent | 5a524fa718e2536bb920ef41df04d89b2fbb83ac (diff) | |
parent | 5d98e806ef4edb4439620eff60215aaf30b5a592 (diff) | |
download | vyos-1x-12957f9f1aa4ab35c460c03dfb3e213639b25a71.tar.gz vyos-1x-12957f9f1aa4ab35c460c03dfb3e213639b25a71.zip |
Merge pull request #2547 from aapostoliuk/T4704-circinus
policy: T4704: Allowed to set metric (MED) to (+/-)rtt
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/policy.xml.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/interface-definitions/policy.xml.in b/interface-definitions/policy.xml.in index c470cfdb3..0d2ed9746 100644 --- a/interface-definitions/policy.xml.in +++ b/interface-definitions/policy.xml.in @@ -1446,9 +1446,18 @@ <format>u32:0-4294967295</format> <description>Metric value</description> </valueHelp> + <valueHelp> + <format><+/-rtt></format> + <description>Add or subtract round trip time</description> + </valueHelp> + <valueHelp> + <format><rtt></format> + <description>Round trip time</description> + </valueHelp> <constraint> <validator name="numeric" argument="--relative --"/> <validator name="numeric" argument="--range 0-4294967295"/> + <regex>^[+|-]?rtt$</regex> </constraint> </properties> </leafNode> |