diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-01-09 14:55:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-09 14:55:52 +0200 |
| commit | 33f1763bf6434497ad0f7904122d5cb943d20138 (patch) | |
| tree | 8f221183536bdfc2879c74f1c81c82cde730295b /interface-definitions | |
| parent | f80aae18439fe93a32101dfe45ef65812cf91e45 (diff) | |
| parent | a4b3cd33ca11aba579510456941f404839135af4 (diff) | |
| download | vyos-1x-33f1763bf6434497ad0f7904122d5cb943d20138.tar.gz vyos-1x-33f1763bf6434497ad0f7904122d5cb943d20138.zip | |
Merge pull request #4912 from hedrok/T8046-add-link-params-cli
T8046: traffic-engineering: support link-params
Diffstat (limited to 'interface-definitions')
| -rw-r--r-- | interface-definitions/include/isis/protocol-common-config.xml.i | 6 | ||||
| -rw-r--r-- | interface-definitions/protocols_traffic_engineering.xml.in | 108 |
2 files changed, 114 insertions, 0 deletions
diff --git a/interface-definitions/include/isis/protocol-common-config.xml.i b/interface-definitions/include/isis/protocol-common-config.xml.i index 459a048a2..359dbc3ce 100644 --- a/interface-definitions/include/isis/protocol-common-config.xml.i +++ b/interface-definitions/include/isis/protocol-common-config.xml.i @@ -266,6 +266,12 @@ </constraint> </properties> </leafNode> + <leafNode name="export"> + <properties> + <help>Export Traffic Engineering Database, see options under protocols traffic-engineering</help> + <valueless/> + </properties> + </leafNode> </children> </node> <node name="segment-routing"> diff --git a/interface-definitions/protocols_traffic_engineering.xml.in b/interface-definitions/protocols_traffic_engineering.xml.in new file mode 100644 index 000000000..32e1793b1 --- /dev/null +++ b/interface-definitions/protocols_traffic_engineering.xml.in @@ -0,0 +1,108 @@ +<?xml version="1.0" encoding="utf-8"?> +<interfaceDefinition> + <node name="protocols"> + <children> + <node name="traffic-engineering" owner="${vyos_conf_scripts_dir}/protocols_traffic_engineering.py"> + <properties> + <help>Traffic Engineering link parameters</help> + <priority>605</priority> + </properties> + <children> + <tagNode name="admin-group"> + <properties> + <help>Configure administrative groups that can be used in interface configuration</help> + <valueHelp> + <format>txt</format> + <description>Administrative group name</description> + </valueHelp> + <constraint> + <regex>[-a-zA-Z0-9]+</regex> + </constraint> + <constraintErrorMessage>Administrative group must be alphanumeric and can contain hyphens</constraintErrorMessage> + </properties> + <children> + <leafNode name="bit-position"> + <properties> + <help>Specify bit position of the admin group</help> + <valueHelp> + <format>u8:0-31</format> + <description>Admin group bit position</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-31"/> + </constraint> + </properties> + </leafNode> + </children> + </tagNode> + <tagNode name="interface"> + <properties> + <help>Traffic engineering parameters for interface</help> + <completionHelp> + <script>${vyos_completion_dir}/list_interfaces</script> + </completionHelp> + <valueHelp> + <format>txt</format> + <description>Interface to configure name</description> + </valueHelp> + <constraint> + #include <include/constraint/interface-name.xml.i> + </constraint> + </properties> + <children> + <leafNode name="metric"> + <properties> + <help>TE metric</help> + <valueHelp> + <format>u32:1-4294967295</format> + <description>TE Metric (different from the OSPF or ISIS metric)</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-4294967295"/> + </constraint> + </properties> + </leafNode> + <leafNode name="max-bandwidth"> + <properties> + <help>Maximum bandwidth (interface speed by default)</help> + <valueHelp> + <format>u32:1-4294967295</format> + <description>Maximum bandwidth in Mbits/sec</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-4294967295"/> + </constraint> + </properties> + </leafNode> + <leafNode name="max-reservable-bandwidth"> + <properties> + <help>Maximum reservable bandwidth</help> + <valueHelp> + <format>u32:1-4294967295</format> + <description>Maximum reservable bandwidth in Mbits/sec</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-4294967295"/> + </constraint> + </properties> + </leafNode> + <leafNode name="admin-group"> + <properties> + <help>Admin groups of interface</help> + <valueHelp> + <format>txt</format> + <description>Admin group of interface</description> + </valueHelp> + <completionHelp> + <path>protocols traffic-engineering admin-group</path> + </completionHelp> + <multi/> + </properties> + </leafNode> + </children> + </tagNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |
