diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-01 11:00:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 11:00:27 +0100 |
commit | 13fddcfef2f9c13dd6e789fa9e8050011241e2b5 (patch) | |
tree | aeccfda0a305cf6aca41630900e75bd32961a911 /interface-definitions/interfaces_input.xml.in | |
parent | 2078253176046ea4d07e69caeb7932ea439b5614 (diff) | |
parent | c9eaafd9f808aba8d29be73054e11d37577e539a (diff) | |
download | vyos-1x-13fddcfef2f9c13dd6e789fa9e8050011241e2b5.tar.gz vyos-1x-13fddcfef2f9c13dd6e789fa9e8050011241e2b5.zip |
Merge pull request #2730 from vyos/mergify/bp/sagitta/pr-2729
T5474: establish common file name pattern for XML conf mode commands (backport #2729)
Diffstat (limited to 'interface-definitions/interfaces_input.xml.in')
-rw-r--r-- | interface-definitions/interfaces_input.xml.in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/interface-definitions/interfaces_input.xml.in b/interface-definitions/interfaces_input.xml.in new file mode 100644 index 000000000..771c47e42 --- /dev/null +++ b/interface-definitions/interfaces_input.xml.in @@ -0,0 +1,27 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="interfaces"> + <children> + <tagNode name="input" owner="${vyos_conf_scripts_dir}/interfaces_input.py"> + <properties> + <help>Input Functional Block (IFB) interface name</help> + <!-- before real devices that redirect --> + <priority>310</priority> + <constraint> + <regex>ifb[0-9]+</regex> + </constraint> + <constraintErrorMessage>Input interface must be named ifbN</constraintErrorMessage> + <valueHelp> + <format>ifbN</format> + <description>Input interface name</description> + </valueHelp> + </properties> + <children> + #include <include/generic-description.xml.i> + #include <include/interface/disable.xml.i> + #include <include/interface/redirect.xml.i> + </children> + </tagNode> + </children> + </node> +</interfaceDefinition> |