diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-07 17:54:50 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-02-08 21:57:03 +0000 |
commit | 402aba6cdb4e5a2e19edfd1a8c4bda6624bfb6e4 (patch) | |
tree | c12e76e2c053395bf9d64d6322dce71dd6670b8a /interface-definitions | |
parent | a2f58cd50cf911e1ac9b4fb0646ab49522bee985 (diff) | |
download | vyos-1x-402aba6cdb4e5a2e19edfd1a8c4bda6624bfb6e4.tar.gz vyos-1x-402aba6cdb4e5a2e19edfd1a8c4bda6624bfb6e4.zip |
rpki: T6023: add support for CLI knobs expire-interval and retry-interval
(cherry picked from commit 17894f6f5d97df7d3ac1cf37ce0e1a96b8fa8e8b)
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/protocols_rpki.xml.in | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/interface-definitions/protocols_rpki.xml.in b/interface-definitions/protocols_rpki.xml.in index 6a38b2961..a2a0a2799 100644 --- a/interface-definitions/protocols_rpki.xml.in +++ b/interface-definitions/protocols_rpki.xml.in @@ -67,12 +67,25 @@ </node> </children> </tagNode> + <leafNode name="expire-interval"> + <properties> + <help>Interval to wait before expiring the cache</help> + <valueHelp> + <format>u32:600-172800</format> + <description>Interval in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 600-172800"/> + </constraint> + </properties> + <defaultValue>7200</defaultValue> + </leafNode> <leafNode name="polling-period"> <properties> - <help>RPKI cache polling period</help> + <help>Cache polling interval</help> <valueHelp> <format>u32:1-86400</format> - <description>Polling period in seconds</description> + <description>Interval in seconds</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 1-86400"/> @@ -80,6 +93,19 @@ </properties> <defaultValue>300</defaultValue> </leafNode> + <leafNode name="retry-interval"> + <properties> + <help>Retry interval to connect to the cache server</help> + <valueHelp> + <format>u32:1-7200</format> + <description>Interval in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-7200"/> + </constraint> + </properties> + <defaultValue>600</defaultValue> + </leafNode> </children> </node> </children> |