summaryrefslogtreecommitdiff
path: root/interface-definitions/system-proxy.xml.in
blob: ade168522eb9202265621fdaaec41258da409add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="system">
    <children>
      <node name="proxy" owner="${vyos_conf_scripts_dir}/system-proxy.py">
        <properties>
          <help>Sets a proxy for system wide use</help>
        </properties>
        <children>
          <leafNode name="url">
            <properties>
              <help>Proxy URL</help>
              <constraint>
                <regex>http:\/\/[a-z0-9\.]+$</regex>
              </constraint>
            </properties>
          </leafNode>
          #include <include/port-number.xml.i>
          <leafNode name="username">
            <properties>
              <help>Proxy username</help>
              <constraint>
                <regex>[a-z0-9-_\.]{1,100}$</regex>
              </constraint>
            </properties>
          </leafNode>
          <leafNode name="password">
            <properties>
              <help>Proxy password</help>
            </properties>
          </leafNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>