diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-06 19:41:19 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-06 19:41:19 +0200 |
commit | d5bd9bec6c213ff12190b03acf248f348c165c13 (patch) | |
tree | f24822e80c58403d7049b7d7e5fa03d895f52dc3 /interface-definitions/include/ospf/interface-common.xml.i | |
parent | 7f38bcaf1fd20b8dc210abd15f95ddd88c27d465 (diff) | |
download | vyos-1x-d5bd9bec6c213ff12190b03acf248f348c165c13.tar.gz vyos-1x-d5bd9bec6c213ff12190b03acf248f348c165c13.zip |
ospf: xml: T3236: restructure include files and make them easier to recognize
Diffstat (limited to 'interface-definitions/include/ospf/interface-common.xml.i')
-rw-r--r-- | interface-definitions/include/ospf/interface-common.xml.i | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/interface-definitions/include/ospf/interface-common.xml.i b/interface-definitions/include/ospf/interface-common.xml.i new file mode 100644 index 000000000..4b0aef380 --- /dev/null +++ b/interface-definitions/include/ospf/interface-common.xml.i @@ -0,0 +1,34 @@ +<!-- include start from ospf/interface-common.xml.i --> +#include <include/bfd.xml.i> +<leafNode name="cost"> + <properties> + <help>Interface cost</help> + <valueHelp> + <format>u32:1-65535</format> + <description>OSPF interface cost</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-65535"/> + </constraint> + </properties> +</leafNode> +<leafNode name="mtu-ignore"> + <properties> + <help>Disable Maximum Transmission Unit (MTU) mismatch detection</help> + <valueless/> + </properties> +</leafNode> +<leafNode name="priority"> + <properties> + <help>Router priority (default: 1)</help> + <valueHelp> + <format>u32:0-255</format> + <description>OSPF router priority cost</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-255"/> + </constraint> + </properties> + <defaultValue>1</defaultValue> +</leafNode> +<!-- include end --> |