diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-07 13:49:47 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-07 13:49:47 +0100 |
commit | ba6be403072459e42a66e1a818580ae3518ebf44 (patch) | |
tree | 9e41fbea11c03ad366f23e9fd1810dfca69e60c7 /interface-definitions/include/rip-timers.xml.i | |
parent | 801ae95327d3a3dd613ad10b6b64a297320f2437 (diff) | |
download | vyos-1x-ba6be403072459e42a66e1a818580ae3518ebf44.tar.gz vyos-1x-ba6be403072459e42a66e1a818580ae3518ebf44.zip |
rip: T2547: xml cleanup so parts can be reused by RIPng
Diffstat (limited to 'interface-definitions/include/rip-timers.xml.i')
-rw-r--r-- | interface-definitions/include/rip-timers.xml.i | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/interface-definitions/include/rip-timers.xml.i b/interface-definitions/include/rip-timers.xml.i new file mode 100644 index 000000000..5ba19bb06 --- /dev/null +++ b/interface-definitions/include/rip-timers.xml.i @@ -0,0 +1,48 @@ +<!-- included start from rip-timers.xml.i --> +<node name="timers"> + <properties> + <help>RIPng timer values</help> + </properties> + <children> + <leafNode name="garbage-collection"> + <properties> + <help>Garbage collection timer</help> + <valueHelp> + <format>u32:5-2147483647</format> + <description>Garbage colletion time (default 120)</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 5-2147483647"/> + </constraint> + </properties> + <defaultValue>120</defaultValue> + </leafNode> + <leafNode name="timeout"> + <properties> + <help>Routing information timeout timer</help> + <valueHelp> + <format>u32:5-2147483647</format> + <description>Routing information timeout timer (default 180)</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 5-2147483647"/> + </constraint> + </properties> + <defaultValue>180</defaultValue> + </leafNode> + <leafNode name="update"> + <properties> + <help>Routing table update timer</help> + <valueHelp> + <format>u32:5-2147483647</format> + <description>Routing table update timer in seconds (default 30)</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 5-2147483647"/> + </constraint> + </properties> + <defaultValue>30</defaultValue> + </leafNode> + </children> +</node> +<!-- included end --> |