diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-30 23:25:20 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-01-01 09:25:32 +0100 |
commit | c9eaafd9f808aba8d29be73054e11d37577e539a (patch) | |
tree | aeccfda0a305cf6aca41630900e75bd32961a911 /interface-definitions/interfaces-ethernet.xml.in | |
parent | 2078253176046ea4d07e69caeb7932ea439b5614 (diff) | |
download | vyos-1x-c9eaafd9f808aba8d29be73054e11d37577e539a.tar.gz vyos-1x-c9eaafd9f808aba8d29be73054e11d37577e539a.zip |
T5474: establish common file name pattern for XML conf mode commands
We will use _ as CLI level divider. The XML definition filename and also
the Python helper should match the CLI node.
Example:
set interfaces ethernet -> interfaces_ethernet.xml.in
set interfaces bond -> interfaces_bond.xml.in
set service dhcp-server -> service_dhcp-server-xml.in
(cherry picked from commit 4ef110fd2c501b718344c72d495ad7e16d2bd465)
Diffstat (limited to 'interface-definitions/interfaces-ethernet.xml.in')
-rw-r--r-- | interface-definitions/interfaces-ethernet.xml.in | 217 |
1 files changed, 0 insertions, 217 deletions
diff --git a/interface-definitions/interfaces-ethernet.xml.in b/interface-definitions/interfaces-ethernet.xml.in deleted file mode 100644 index 5aaa7095c..000000000 --- a/interface-definitions/interfaces-ethernet.xml.in +++ /dev/null @@ -1,217 +0,0 @@ -<?xml version="1.0"?> -<interfaceDefinition> - <node name="interfaces"> - <properties> - <help>Network interfaces</help> - </properties> - <children> - <tagNode name="ethernet" owner="${vyos_conf_scripts_dir}/interfaces-ethernet.py"> - <properties> - <help>Ethernet Interface</help> - <priority>318</priority> - <valueHelp> - <format>ethN</format> - <description>Ethernet interface name</description> - </valueHelp> - <constraint> - <regex>((eth|lan)[0-9]+|(eno|ens|enp|enx).+)</regex> - </constraint> - <constraintErrorMessage>Invalid Ethernet interface name</constraintErrorMessage> - </properties> - <children> - #include <include/interface/address-ipv4-ipv6-dhcp.xml.i> - #include <include/generic-description.xml.i> - #include <include/interface/dhcp-options.xml.i> - #include <include/interface/dhcpv6-options.xml.i> - <leafNode name="disable-flow-control"> - <properties> - <help>Disable Ethernet flow control (pause frames)</help> - <valueless/> - </properties> - </leafNode> - #include <include/interface/disable-link-detect.xml.i> - #include <include/interface/disable.xml.i> - <leafNode name="duplex"> - <properties> - <help>Duplex mode</help> - <completionHelp> - <list>auto half full</list> - </completionHelp> - <valueHelp> - <format>auto</format> - <description>Auto negotiation</description> - </valueHelp> - <valueHelp> - <format>half</format> - <description>Half duplex</description> - </valueHelp> - <valueHelp> - <format>full</format> - <description>Full duplex</description> - </valueHelp> - <constraint> - <regex>(auto|half|full)</regex> - </constraint> - <constraintErrorMessage>duplex must be auto, half or full</constraintErrorMessage> - </properties> - <defaultValue>auto</defaultValue> - </leafNode> - #include <include/interface/eapol.xml.i> - #include <include/interface/hw-id.xml.i> - #include <include/interface/ipv4-options.xml.i> - #include <include/interface/ipv6-options.xml.i> - #include <include/interface/mac.xml.i> - #include <include/interface/mtu-68-16000.xml.i> - #include <include/interface/mirror.xml.i> - <node name="offload"> - <properties> - <help>Configurable offload options</help> - </properties> - <children> - <leafNode name="gro"> - <properties> - <help>Enable Generic Receive Offload</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="gso"> - <properties> - <help>Enable Generic Segmentation Offload</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="hw-tc-offload"> - <properties> - <help>Enable Hardware Flow Offload</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="lro"> - <properties> - <help>Enable Large Receive Offload</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="rps"> - <properties> - <help>Enable Receive Packet Steering</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="rfs"> - <properties> - <help>Enable Receive Flow Steering</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="sg"> - <properties> - <help>Enable Scatter-Gather</help> - <valueless/> - </properties> - </leafNode> - <leafNode name="tso"> - <properties> - <help>Enable TCP Segmentation Offloading</help> - <valueless/> - </properties> - </leafNode> - </children> - </node> - <leafNode name="speed"> - <properties> - <help>Link speed</help> - <completionHelp> - <list>auto 10 100 1000 2500 5000 10000 25000 40000 50000 100000</list> - </completionHelp> - <valueHelp> - <format>auto</format> - <description>Auto negotiation</description> - </valueHelp> - <valueHelp> - <format>10</format> - <description>10 Mbit/sec</description> - </valueHelp> - <valueHelp> - <format>100</format> - <description>100 Mbit/sec</description> - </valueHelp> - <valueHelp> - <format>1000</format> - <description>1 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>2500</format> - <description>2.5 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>5000</format> - <description>5 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>10000</format> - <description>10 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>25000</format> - <description>25 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>40000</format> - <description>40 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>50000</format> - <description>50 Gbit/sec</description> - </valueHelp> - <valueHelp> - <format>100000</format> - <description>100 Gbit/sec</description> - </valueHelp> - <constraint> - <regex>(auto|10|100|1000|2500|5000|10000|25000|40000|50000|100000)</regex> - </constraint> - <constraintErrorMessage>Speed must be auto, 10, 100, 1000, 2500, 5000, 10000, 25000, 40000, 50000 or 100000</constraintErrorMessage> - </properties> - <defaultValue>auto</defaultValue> - </leafNode> - <node name="ring-buffer"> - <properties> - <help>Shared buffer between the device driver and NIC</help> - </properties> - <children> - <leafNode name="rx"> - <properties> - <help>RX ring buffer</help> - <valueHelp> - <format>u32:80-16384</format> - <description>ring buffer size</description> - </valueHelp> - <constraint> - <validator name="numeric" argument="--range 80-16384"/> - </constraint> - </properties> - </leafNode> - <leafNode name="tx"> - <properties> - <help>TX ring buffer</help> - <valueHelp> - <format>u32:80-16384</format> - <description>ring buffer size</description> - </valueHelp> - <constraint> - <validator name="numeric" argument="--range 80-16384"/> - </constraint> - </properties> - </leafNode> - </children> - </node> - #include <include/interface/redirect.xml.i> - #include <include/interface/vif-s.xml.i> - #include <include/interface/vif.xml.i> - #include <include/interface/vrf.xml.i> - </children> - </tagNode> - </children> - </node> -</interfaceDefinition> |