diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-22 08:37:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 08:37:49 +0200 |
commit | 7321fa364a8c8c0b1c2fe10aa6580171e5860e4d (patch) | |
tree | 324cb3520a7f67c05fc2efc36bfa5aacf16ae940 /interface-definitions/include/ospf/graceful-restart.xml.i | |
parent | e9153730c76f96fb585df6276b6505a00b14b17b (diff) | |
parent | 9e5d0384a0b25949edfd0dfc065b6fe572f943e7 (diff) | |
download | vyos-1x-7321fa364a8c8c0b1c2fe10aa6580171e5860e4d.tar.gz vyos-1x-7321fa364a8c8c0b1c2fe10aa6580171e5860e4d.zip |
Merge pull request #2104 from c-po/t5377-ospf-gr
ospf: T5377: add graceful restart FRR feature (RFC 3623)
Diffstat (limited to 'interface-definitions/include/ospf/graceful-restart.xml.i')
-rw-r--r-- | interface-definitions/include/ospf/graceful-restart.xml.i | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/interface-definitions/include/ospf/graceful-restart.xml.i b/interface-definitions/include/ospf/graceful-restart.xml.i new file mode 100644 index 000000000..37d9a7f13 --- /dev/null +++ b/interface-definitions/include/ospf/graceful-restart.xml.i @@ -0,0 +1,67 @@ +<!-- include start from ospf/graceful-restart.xml.i --> +<node name="graceful-restart"> + <properties> + <help>Graceful Restart</help> + </properties> + <children> + <leafNode name="grace-period"> + <properties> + <help>Maximum length of the grace period</help> + <valueHelp> + <format>u32:1-1800</format> + <description>Maximum length of the grace period in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 5-1800"/> + </constraint> + </properties> + <defaultValue>120</defaultValue> + </leafNode> + <node name="helper"> + <properties> + <help>OSPF graceful-restart helpers</help> + </properties> + <children> + <node name="enable"> + <properties> + <help>Enable helper support</help> + </properties> + <children> + <leafNode name="router-id"> + <properties> + <help>Advertising Router-ID</help> + <valueHelp> + <format>ipv4</format> + <description>Router-ID in IP address format</description> + </valueHelp> + <constraint> + <validator name="ipv4-address"/> + </constraint> + <multi/> + </properties> + </leafNode> + </children> + </node> + <leafNode name="planned-only"> + <properties> + <help>Supported only planned restart</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="supported-grace-time"> + <properties> + <help>Supported grace timer</help> + <valueHelp> + <format>u32:10-1800</format> + <description>Grace interval in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 10-1800"/> + </constraint> + </properties> + </leafNode> + </children> + </node> + </children> +</node> +<!-- include end --> |