diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-07-15 20:56:53 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-07-15 20:56:53 +0200 |
commit | 63052b8906871dc314945922e7f27ef24e114a45 (patch) | |
tree | c9d8dcb7182f1fca288fc86ff3735ad98f4c1d9f /interface-definitions/system-options.xml.in | |
parent | bee479c9baa92bab3c367d1660061cb8542a67bc (diff) | |
download | vyos-1x-63052b8906871dc314945922e7f27ef24e114a45.tar.gz vyos-1x-63052b8906871dc314945922e7f27ef24e114a45.zip |
http-client: T2651: support specifying source-interface/address for curl
Please note that either interface or address can be configured.
system {
options {
http-client {
source-interface eth0
source-address 1.1.1.1
}
}
}
Diffstat (limited to 'interface-definitions/system-options.xml.in')
-rw-r--r-- | interface-definitions/system-options.xml.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/interface-definitions/system-options.xml.in b/interface-definitions/system-options.xml.in index 48bc353ab..194773329 100644 --- a/interface-definitions/system-options.xml.in +++ b/interface-definitions/system-options.xml.in @@ -33,7 +33,7 @@ <description>Poweroff VyOS</description> </valueHelp> <constraint> - <regex>(ignore|reboot|poweroff)</regex> + <regex>^(ignore|reboot|poweroff)$</regex> </constraint> <constraintErrorMessage>Must be ignore, reboot, or poweroff</constraintErrorMessage> </properties> @@ -44,6 +44,15 @@ <valueless/> </properties> </leafNode> + <node name="http-client"> + <properties> + <help>Global options used for HTTP based commands</help> + </properties> + <children> + #include <include/source-interface.xml.i> + #include <include/source-address-ipv4-ipv6.xml.i> + </children> + </node> </children> </node> </children> |