diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-16 14:50:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 14:50:28 +0100 |
commit | 29e8af4dd8396ce8d3427a9a8f7e81a95a550d20 (patch) | |
tree | 548e02f2ddcf3ca4315ef5391f5ca951fb9cb973 | |
parent | 461a106cdaf892a067bcd5630952822242edd411 (diff) | |
parent | 26d78796b099e8c08ec67a42d181a762cc74be37 (diff) | |
download | vyos-1x-29e8af4dd8396ce8d3427a9a8f7e81a95a550d20.tar.gz vyos-1x-29e8af4dd8396ce8d3427a9a8f7e81a95a550d20.zip |
Merge pull request #685 from sever-sever/T3222
bgp: T3222: Fix help descriptions for dampening
-rw-r--r-- | interface-definitions/protocols-bgp.xml.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/interface-definitions/protocols-bgp.xml.in b/interface-definitions/protocols-bgp.xml.in index 61bc6ce86..cec73a15b 100644 --- a/interface-definitions/protocols-bgp.xml.in +++ b/interface-definitions/protocols-bgp.xml.in @@ -511,7 +511,7 @@ <help>Half-life time for dampening [REQUIRED]</help> <valueHelp> <format>u32:1-45</format> - <description>Half-life penalty in seconds</description> + <description>Half-life penalty in minutes</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 1-45"/> @@ -523,7 +523,7 @@ <help>Maximum duration to suppress a stable route [REQUIRED]</help> <valueHelp> <format>u32:1-255</format> - <description>Maximum suppress duration in seconds</description> + <description>Maximum suppress duration in minutes</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 1-255"/> @@ -532,10 +532,10 @@ </leafNode> <leafNode name="re-use"> <properties> - <help>Time to start reusing a route [REQUIRED]</help> + <help>Threshold to start reusing a route [REQUIRED]</help> <valueHelp> <format>u32:1-20000</format> - <description>Re-use time in seconds</description> + <description>Re-use penalty points</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 1-20000"/> @@ -547,7 +547,7 @@ <help>When to start suppressing a route [REQUIRED]</help> <valueHelp> <format>u32:1-20000</format> - <description>Start-suppress-time</description> + <description>Start-suppress penalty points</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 1-20000"/> |