diff options
author | Christian Breunig <christian@breunig.cc> | 2024-12-08 08:29:50 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-12-16 22:21:36 +0100 |
commit | 4f93cfbc6e66c9a8312bebee1b54d03021ec2072 (patch) | |
tree | 68637e9471396094baa0570bdf8026aa210ef7df /interface-definitions/include | |
parent | 655ecf7715688de3463c258ea5a635dcf00c7150 (diff) | |
download | vyos-1x-4f93cfbc6e66c9a8312bebee1b54d03021ec2072.tar.gz vyos-1x-4f93cfbc6e66c9a8312bebee1b54d03021ec2072.zip |
ospf: T6747: add retransmit-window CLI option
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/ospf/protocol-common-config.xml.i | 2 | ||||
-rw-r--r-- | interface-definitions/include/ospf/retransmit-window.xml.i | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/interface-definitions/include/ospf/protocol-common-config.xml.i b/interface-definitions/include/ospf/protocol-common-config.xml.i index c4778e126..cef832381 100644 --- a/interface-definitions/include/ospf/protocol-common-config.xml.i +++ b/interface-definitions/include/ospf/protocol-common-config.xml.i @@ -321,6 +321,7 @@ <children> #include <include/ospf/authentication.xml.i> #include <include/ospf/intervals.xml.i> + #include <include/ospf/retransmit-window.xml.i> </children> </tagNode> </children> @@ -433,6 +434,7 @@ </leafNode> #include <include/ospf/authentication.xml.i> #include <include/ospf/intervals.xml.i> + #include <include/ospf/retransmit-window.xml.i> #include <include/ospf/interface-common.xml.i> #include <include/isis/ldp-sync-interface.xml.i> <leafNode name="bandwidth"> diff --git a/interface-definitions/include/ospf/retransmit-window.xml.i b/interface-definitions/include/ospf/retransmit-window.xml.i new file mode 100644 index 000000000..a5e20f522 --- /dev/null +++ b/interface-definitions/include/ospf/retransmit-window.xml.i @@ -0,0 +1,15 @@ +<!-- include start from ospf/retransmit-window.xml.i --> +<leafNode name="retransmit-window"> + <properties> + <help>Window for LSA retransmit</help> + <valueHelp> + <format>u32:20-1000</format> + <description>Retransmit LSAs expiring in this window (milliseconds)</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 20-1000"/> + </constraint> + </properties> + <defaultValue>50</defaultValue> +</leafNode> +<!-- include end --> |